body, html { 
    font-family: Arial, sans-serif;
  /*  background: url('/images/sustainability.jpg') no-repeat center center;*/
  display: flex;
  flex-direction: column;
  min-height: 100vh;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden; /* Yatay kaydırmayı tamamen kapatır */
}    

/* Header ve Menü */
.custom-bg {
    background-color: #004080 !important;
}

.custom-bg .navbar-nav .nav-link,
.custom-bg .dropdown-menu .dropdown-item {
    color: #ffffff !important;
}

.custom-bg .navbar-nav .nav-link:hover,
.custom-bg .dropdown-menu .dropdown-item:hover {
    color: #ffcc00 !important; /* Hover için örnek bir renk */
}

.custom-bg .dropdown-menu {
    background-color: #003366; /* Dropdown için daha koyu bir renk */
}


/* Kullanıcı menüsü (user-dropdown) için genel stil */
.user-dropdown {
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 4px 8px;  /* Daha küçük padding */
    border-radius: 5px;
    background-color: transparent;
    color: inherit;
    transition: background-color 0.3s, color 0.3s;
}

/* Hover durumunda arka plan hafif değişsin */
.user-dropdown:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

/* Tıklandığında (active) arka planın beyazlamasını engelle */
.user-dropdown:active {
    background-color: transparent;
}

/* Profil resmi için boyut küçültme */
.profile-pic {
    display: inline-block;
    vertical-align: middle;
    width: 30px;  /* Önceki boyuttan daha küçük */
    height: 30px;
    overflow: hidden;
    border-radius: 50%;
    margin-right: 5px;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-menu {
    background-color: #004080;
}

/* Dropdown menü alt öğeleri: hover durumunda yalnızca metin ve ikon sarı olsun */
.dropdown-menu .dropdown-item {
    transition: color 0.3s, background-color 0.3s;
    background-color: transparent; /* Arka plan sabit kalsın */
}

.dropdown-menu .dropdown-item:hover {
    background-color: transparent;
    color: #ffc107; /* Sarı renk */
}

.dropdown-menu .dropdown-item:hover i {
    color: #ffc107; /* İkon da sarı olsun */
}





/* Menü Arka Plan Rengini Düzenle */
header {
background-color: #004080 !important; /* Profesyonel bir mavi ton */
color: white;
padding: 10px 20px;
}
.navbar-brand img {
    max-height: 40px;
}




.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #004080;
    color: white;
    padding: 10px 20px;
    flex-wrap: wrap;
}

.navbar-toggler {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    display: none;
}

.menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.menu li {
    display: inline;
}

.menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s;
}

.menu a:hover {
    color: #ffcc00;
}

.user-options {
    display: flex;
    align-items: center;
    gap: 10px;
}

.language-select {
    margin-left: 10px;
    background-color: white;
    color: #004080;
    border: none;
    padding: 5px;
    border-radius: 5px;
    font-size: 14px;
}

/* Mobil Uyum */
@media (max-width: 768px) {
    .navbar-toggler {
        display: block;
    }

    .menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #004080;
        padding: 10px;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        margin-bottom: 10px;
    }

    .menu a {
        text-align: center;
    }
}


.logo-container {
margin-right: 20px; /* Logonun menü öğelerinden uzak durmasını sağlar */
}

.logo {
width: 50px; /* Logo boyutunu ayarlayın */
height: auto;
}







/* İkonlar */
.icons {
display: flex;
gap: 15px;
}

.icon {
width: 24px;
height: 24px;
display: block;
transition: transform 0.3s ease;
}

.icon:hover {
transform: scale(1.1);
}


.login-link {
margin-right: 10px;
text-decoration: none;
color: #fefefe;
font-weight: bold;
}


.login-link:hover {
color: #ffcc00; /* Sarı hover efekti */
}




/* styles/home.css */

/* Hero Section */
.hero-section { 
position: relative;

background-size: cover;
height: 100vh;
color: white;
text-align: center;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}

.hero-content h1 {
font-size: 3rem;
font-weight: bold;
margin-top: 10%;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
font-size: 1.5rem;
margin: 10px 0 20px;
text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
}

.start-button {
display: inline-block;
margin-top: 10%;
padding: 10px 20px;
font-size: 1rem;
font-weight: bold;
color: white;
border: 2px solid white;
border-radius: 5px;
text-decoration: none;
transition: background-color 0.3s, color 0.3s;
}

.start-button:hover {
background-color: white;
color: #004080;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
.hero-content h1 {
    font-size: 2rem;
}

.hero-content p {
    font-size: 1rem;
}

.start-button {
    padding: 8px 16px;
    font-size: 0.9rem;
}

.icon-section {
    gap: 20px;
}

.icon-circle {
    width: 60px;
    height: 60px;
    font-size: 1rem;
}
}

/* Menu ve Footer Renk Uyumunu Sağlayalım */
.custom-footer-spacing {
margin-top: 2rem; /* 2 rem'lik bir boşluk */
}

footer {
background-color: #004080; /* Menüyle aynı renk */
color: white;
text-align: center;
padding: 20px 0;
}

footer p {
margin: 0;
font-size: 0.9rem;
}



.content {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.full-width-image {
width: 100%;
height: auto; /* Oranı korur */
display: block; /* Çevresinde boşluk bırakmaz */
margin: 0;
padding: 0;
height: 100vh; /* Tarayıcı penceresinin tamamını kaplar */
object-fit: cover; /* Resmi kırpmadan/düzgün bir şekilde ölçeklendirir */

}

.focus-info {
    font-style: italic;
    font-weight: normal;
    color: #4A90E2; /* Mavi ton */
    font-size: 0.8 em;
    margin-top: 3px;
}

.pricing-section .pricing-card {
    perspective: 1000px;
    transition: transform 0.6s;
    transform-style: preserve-3d;
    box-shadow: 0px 15px 39px 0px rgba(8, 18, 109, 0.1) !important;
    border-radius: 10px;
    overflow: visible;
}

.pricing-section .pricing-card:hover {
    transform: rotateY(10deg) scale(1.05);
}

.pricing-section .card-body {
    background: linear-gradient(134deg, #00a4db 0%, #00269e 100%);
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 20px;
    color: white;
    position: relative;
}

.pricing-section .price {
    font-size: 3rem;
    font-weight: bold;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.pricing-section .feature-list {
    list-style-type: none;
    padding: 0;
}

.pricing-section .feature-list li {
    margin-bottom: 10px;
    color: #f0f0f0;
    font-size: 1rem;
}

.pricing-section .feature-list li::before {
    content: "✓";
    margin-right: 10px;
    color: #ffcc00;
    font-weight: bold;
}

.pricing-section .btn-custom {
    background-color: #ffffff;
    color: #007ac7;
    border: 2px solid #ffcc00;
    padding: 14px 45px;
    border-radius: 45px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    font-family: "Poppins", sans-serif;
    text-transform: capitalize;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

.pricing-section .btn-custom:hover {
    background-color: #ffcc00;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 224, 216, 0.4);
}

.pricing-section .popular-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background-color: #ffcc00;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0, 224, 216, 0.3);
}

.pricing-section .hover-bg-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(134deg, #00a4db 0%, #00269e 100%);
    z-index: -1;
    opacity: 0;
    transition: ease 0.3s;
}

.pricing-section .hover-bg-primary:hover:before {
    opacity: 1;
}

.pricing-section .hover-bg-primary:hover * {
    color: #fff !important;
}
