  /* Navbar */ 
    .navbar a { text-decoration: none; color: inherit; }
.navbar ul { list-style: none; padding: 0; margin: 0; }

.navbar {
  
    background-color: transparent; 
    border-bottom: 1px solid transparent; 
    color: #fff;
    box-shadow: none; 
    position: fixed;  
    top: 0;
    z-index: 1000;
    width: 100%; 
    transition: background-color 0.4s ease, border-bottom 0.4s ease, box-shadow 0.4s ease; 
}

 
.navbar.scrolled {
    background-color: #000;  
    border-bottom: 1px solid #000;  
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
}

.navbar-container {
    display: flex;
    justify-content: space-between; 
    align-items: center;
    padding: 1rem 2.5rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.navbar-brand img { max-height: 40px; width: auto; }
.navbar-brand { margin-right: 3rem; } 

.navbar-left-content, .navbar-right-content {
    display: flex;
    align-items: center;
}

.main-nav, .login-nav { display: flex; align-items: center; margin-left: 0; }
.nav-item { position: relative; margin-left: 0; margin-right: 1.5rem; }
.main-nav .nav-item:last-child { margin-right: 0; }
.login-item { margin-right: 0; }

.nav-link {
    display: flex; 
    align-items: center; 
    padding: 0.75rem 1rem; 
    transition: all 0.3s ease;
    font-weight: 500; color: #fff; border-radius: 4px;
}
.nav-link:hover { color: #52BCAD; }

 
.nav-link-icon {
    margin-left: 8px; 
    transition: transform 0.3s ease;  
    display: inline-block; 
}

 
.has-dropdown:hover .nav-link-icon {
    transform: rotate(180deg);
}

 
.login-button, .login-button-mobil {
    background: #52BCAD;
    color: #FFFFFF !important;
    padding: 0.6rem 2.2rem;
    min-width: 120px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none; 
    transition: all 0.4s ease;
    border: none; 
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.login-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.2);
    transform: skewX(-20deg);
    transition: all 0.4s ease;
}
.login-button:hover::before { left: 100%; }
.login-button:hover { 
    box-shadow: 0 6px 20px rgba(105, 105, 106, 0.6); 
    background: #537A7C;
}

.login-item-mobil { display: none; } 
.item-mobil { display: none; } 
.navbar-toggle { display: none; cursor: pointer; font-size: 1.75rem; color: #fff; margin-left: 1rem; }
.navbar-toggle .fa-times { display: none; }
.navbar-toggle.active .fa-times { display: block; }
.navbar-toggle.active .fa-bars { display: none; }

 

.has-dropdown {
    position: relative; 
}

.dropdown-menu {
    position: absolute;
    top: 100%; 
    left: 0;
    z-index: 1000;
    background-color: #000; 
    border: 1px solid #333;
    min-width: 220px;
    margin: 0;
    list-style: none;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    
    
    max-height: 0;  
    opacity: 0;
    padding: 0;
    overflow: hidden;
    pointer-events: none; 
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out, padding 0.3s ease-out;
}

 
.has-dropdown:hover .dropdown-menu { 
    max-height: 200px; 
    opacity: 1;
    pointer-events: auto;
    padding: 0.5rem 0; 
}

.dropdown-item a {
    color: #fff;
    padding: 0.75rem 1.25rem;
    display: block;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: 400;
}

.dropdown-item a:hover {
    background-color: #1a1a1a;
    color: #52BCAD; 
}

 

 
.no-scroll {
    overflow: hidden;
    width: 100%;
}

@media (max-width: 992px) {
 
    .navbar {
        position: sticky; 
        background-color: #000;
        border-bottom: 1px solid #000;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }
    
    .navbar-container { padding: 1rem 1.5rem; max-width: unset; }
    .navbar-brand { margin-right: 0; }
    .navbar-brand img { max-height: 35px; }
    
    .main-nav, .login-nav { 
        display: flex; flex-direction: column; width: 100vw;  
        position: fixed; left: 0; background-color: #000;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1); border-top: 1px solid #000;
        align-items: center; transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
        opacity: 0; z-index: 999;
    }
    
    .main-nav {
        top: 65px; 
        height: calc(100vh - 65px); 
        overflow-y: auto; 
        padding-bottom: 1rem; 
    }

    .login-nav { display: none; position: static; width: 100%; height: auto; background-color: transparent; 
        padding: 0; box-shadow: none; border-top: none; transform: none; transition: none;
    }

    .login-item { display: none !important; }
    .login-item-mobil { display: flex; width: 100%; margin: 1rem auto 0 auto; }
  
 
.contact-address-mobil, .contact-phone-mobil {
   
    width: 70%; 
    margin: 0.5rem auto;  
    padding: 0;
}

 
.contact-address-mobil .nav-link,
.contact-phone-mobil .nav-link {
   
    padding: 1rem;
    background-color: #1a1a1a;  
    justify-content: flex-start;  
    font-weight: 400;
}

 
.contact-address-mobil .nav-link i,
.contact-phone-mobil .nav-link i {
    color: #52BCAD;  
    font-size: 1.1rem;
    margin-right: 12px;  
}

 
.contact-address-mobil .nav-link,
.contact-phone-mobil .nav-link {
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: left;  
}


 
.login-item-mobil {
    margin: 1rem auto 2rem auto;  
}
    .main-nav.active { transform: translateX(0); opacity: 1; }
    
    .login-nav.active { display: flex; flex-direction: column; opacity: 1; margin-top: 1rem; }

    .nav-item {
        margin: 0; width: 100%; display: flex; flex-direction: column;
        align-items: center; justify-content: center; padding: 0;
        transition: none; 
        transform: none; 
        opacity: 1; 
    }
    
    .nav-link { 
        padding: 1rem; 
        color: #fff; 
        border-radius: 0; 
        width: 100%; 
        justify-content: center; 
    }

    .navbar-toggle { display: block; z-index: 1002; }
    
   .login-button, .login-button-mobil{
    width: calc(100% - 2rem); text-align: center; padding: 1rem;
    margin: 1rem auto;
   }
   
  

    .dropdown-menu {
        position: static; 
        max-height: 0;  
        padding: 0; 
        opacity: 0;
        transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out; 
        width: 100%;
        background-color: #111; 
        pointer-events: none;
        display: block; 
    }

   
    .has-dropdown.active-dropdown .dropdown-menu {
        opacity: 1;
        pointer-events: auto;
  
    }
    
    .dropdown-item a {
        padding: 0.75rem 1rem 0.75rem 2.5rem; 
        text-align: center; 
    }
}

@media (max-width: 576px) {
    .navbar-container { padding: 0.9rem 1rem; }
    .navbar-brand img { max-height: 30px; }
    .navbar-toggle { font-size: 1.5rem; }
    .login-button, .login-button-mobil { padding: 0.8rem; font-size: 0.9rem; }
}
          /*Hero Bölümü */
       .hero-section {
            position: relative;
            width: 100%;
            height: 95vh; 
            min-height: 550px; 
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #fff;
            text-align: center; 
            overflow: hidden;
            font-family: 'Poppins', sans-serif;
            padding: 2rem;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            
            z-index: -2;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
     background: linear-gradient(135deg, rgba(82, 188, 173, 0.30) 0%, rgba(0, 51, 54, 0.45) 100%);
            z-index: -1;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 650px; 
            margin-bottom: 2rem;
            padding: 0 1rem;
        }

        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 800; 
            margin-bottom: 1.5rem;
            line-height: 1.1; 
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
            opacity: 0;  
            transform: translateY(20px);  
            animation: fadeInSlideUp 0.8s ease-out forwards;  
            animation-delay: 0.2s;  
        }
        
      
        .hero-content h1 .highlight {
            color: #C2DF93; 
        }

        .hero-content p {
            font-size: 1.1rem; 
            font-weight: 400;
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
            opacity: 0;  
            transform: translateY(20px);  
            animation: fadeInSlideUp 0.8s ease-out forwards;  
            animation-delay: 0.5s;  
        }

         
        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-bottom: 3rem; 
            flex-wrap: wrap; 
            opacity: 0;  
            transform: translateY(20px);  
            animation: fadeInSlideUp 0.8s ease-out forwards;  
            animation-delay: 0.8s;  
        }

        .hero-button {
            display: inline-flex;
            align-items: center; 
            padding: 0.8rem 2rem; 
            border-radius: 50px;
            font-size: 1rem; 
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); 
            white-space: nowrap; 
        }
        
        .hero-button i {
            margin-right: 8px; 
            font-size: 1.1rem;
        }

        .hero-button.primary {
            background-color: #114F4F;
            color: #fff;
        }

        .hero-button.primary:hover { 
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

        .hero-button.secondary {
            background-color: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .hero-button.secondary:hover {
            background-color: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
        }

       
        .hero-info-cards {
            display: flex;
            justify-content: center;
            gap: 2rem; 
            flex-wrap: wrap; 
            position: relative;
            z-index: 1;
            width: 90%; 
            max-width: 1200px; 
            margin: 0 auto; 
        }

        .info-card {
            display: flex;
            align-items: center;
            color: #fff;
            font-size: 1rem; 
            font-weight: 500;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
            background-color: rgba(0, 0, 0, 0.2); 
            padding: 0.6rem 1rem;
            border-radius: 6px;
            opacity: 0;  
            transform: translateY(20px);  
            animation: fadeInSlideUp 0.8s ease-out forwards;  
           
        }
        .info-card:nth-child(1) { animation-delay: 1.1s; }
        .info-card:nth-child(2) { animation-delay: 1.3s; }
        .info-card:nth-child(3) { animation-delay: 1.5s; }

        .info-card i {
            margin-right: 0.6rem; 
            font-size: 1.4rem; 
            color: #52BCAD; 
        }

    
        @keyframes fadeInSlideUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

     
        .desktop-break {
            display: none;
        }
        @media (min-width: 769px) {
            .desktop-break {
                display: block; 
            }
        }

        @media (max-width: 1200px) {
            .hero-content h1 {
                font-size: 3.2rem;
            }
            .hero-info-cards {
                width: 95%; 
            }
        }

        @media (max-width: 992px) {
            .hero-section {
                height: auto; 
                min-height: 550px;
                padding-top: 5rem;
                padding-bottom: 5rem;
            }
            .hero-content h1 {
                font-size: 2.5rem;
                margin-bottom: 1rem;
            }
            .hero-buttons {
                flex-direction: column; 
                gap: 0.8rem; 
            }
            .hero-button {
                padding: 0.8rem 2rem;
                width: 75%; 
                max-width: 380px; 
                margin: 0 auto; 
            }
            .hero-info-cards {
                gap: 1.5rem;
                flex-direction: column; 
            }
            .info-card {
                justify-content: center; 
                font-size: 1rem;
                width: 80%;
                max-width: 300px;
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
            .hero-button {
                width: 90%; 
                max-width: 350px;
                padding: 0.7rem 1.5rem;
                font-size: 0.95rem;
            }
        }
          /* Hakkımızda */
    .about-section {
        padding: 6rem 0; 
        background-color: #0C1616;
        overflow-x: hidden;  
    }

    .about-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 1.5rem;
        display: flex;
        align-items: center; 
        gap: 3rem;
        flex-wrap: wrap; 
    }

    
    .anim-item {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInSlideUp 0.8s ease-out forwards;
    }
    
  
    @keyframes fadeInSlideUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

 
    .about-content {
        flex: 1;
        min-width: 300px;
    }

    .about-subheading {
        font-size: 1.1rem;
        font-weight: 600;
        color: #C1DE92; 
        margin-bottom: 0.5rem;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .about-heading {
        font-size: 2.5rem;
        font-weight: 700;
        line-height: 1.3;
        color: #fff;
        margin-bottom: 1.5rem;
    }

    .about-heading .highlight-text {
        color: #C1DE92; 
    }

    .about-description {
        font-size: 1rem;
        color: #7D9D9F;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

 
    .about-features {
        display: flex;
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .feature-item {
        display: flex;
        align-items: flex-start;
        width: calc(50% - 0.75rem); 
        font-size: 1rem;
        color: #fff;
        line-height: 1.4;
    }

 
    .icon-circle {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 40px;  
        height: 40px;  
        border-radius: 50%;  
        background-color: #114F4F;  
        margin-right: 1rem;
        flex-shrink: 0;  
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        border: 1px solid #cce5ff;
    }

    .feature-icon {
        color: #fff;  
        font-size: 1.1rem;
    }

   
    .about-image-wrapper {
        flex: 1;
        min-width: 300px;
        position: relative;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
    }
    
    .about-image {
        display: block;
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

     
    .geometric-shape {
        position: absolute;
        bottom: -20px; 
        right: -20px; 
        width: 100px;
        height: 100px;
        background-color: #114F4F;  
        border-radius: 12px;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 5px 15px rgba(39, 218, 107, 0.5);
        z-index: 2;
        transform: rotate(-10deg); 
        transition: transform 0.5s ease;
    }

    .investing-icon {
        color: #fff;  
        font-size: 2.5rem;
    }
    
    .about-image-wrapper:hover .geometric-shape {
        transform: rotate(0deg); 
    }
    
    
    @media (max-width: 992px) {
        .about-container {
            flex-direction: column; 
        }
        
        .about-content, .about-image-wrapper {
            flex: none;
            width: 100%; 
            min-width: unset;
        }

        .about-content {
            order: 2; 
            padding-top: 2rem;
        }

        .about-image-wrapper {
            order: 1; 
            margin-top: 1rem;
        }

       
        .anim-item {
             opacity: 1;
             transform: none;
             animation: none;
        }

        .geometric-shape {
            bottom: -10px;
            right: 10px;
            width: 80px;
            height: 80px;
        }

        .investing-icon {
            font-size: 2rem;
        }
    }

    @media (max-width: 576px) {
        .about-section {
            padding: 4rem 0;
        }
        .feature-item {
            width: 100%;  
        }
    }
    /* Neden biz */
        .neden-biz-section {
            padding: 6rem 0;
            background-color: #0C1616; 
        }

      
        .neden-biz-header {
            max-width: 800px;
            margin: 0 auto 3rem auto;
            text-align: center;
            padding: 0 1.5rem;
        }

        .neden-biz-subheading {
            font-size: 1rem;
            font-weight: 600;
            color: #C2DF93;
            margin-bottom: 0.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .neden-biz-heading {
            font-family: 'Poppins', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            color: #fff;
        }

  
        .neden-biz-container {
            max-width: 1280px; 
            margin: 0 auto;
            padding: 0 1.5rem;
            display: flex;
            flex-direction: column;
            gap: 15px; 
        }

      
        .neden-biz-item {
            background-color: #0C1616; 
            padding: 1.5rem 2rem; 
            border-radius: 10px;
            border-bottom: 1px solid #ddd;
            position: relative;
            overflow: hidden;
            cursor: pointer;
            transition: box-shadow 0.4s ease, transform 0.3s ease; 
            min-height: 160px; 
            display: flex;
            align-items: center;
        }

        .neden-biz-item:hover {
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
            transform: translateY(-3px); 
        }
        
     
        .neden-biz-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0; 
            background-color: #114F4F; 
            transition: height 0.4s ease-out; 
            z-index: 0; 
            border-radius: 10px;
        }

        .neden-biz-item:hover::before {
            height: 100%; 
        }

     
 
        .item-content-wrapper {
            display: flex;
            width: 100%;
            position: relative;
            z-index: 3; 
            align-items: center; 
            width: 100%;
        }

    
        .icon-text-group {
            display: flex;
            align-items: center; 
            flex: 0 0 45%; 
            padding-right: 1.5rem;
            transition: all 0.4s ease; 
        }

       
        .reason-icon-circle {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 55px;
            height: 55px;
            border-radius: 50%;
            background-color: #114F4F;
            margin-right: 1.2rem;
            flex-shrink: 0;
            transition: background-color 0.4s ease;
        }

        .reason-icon {
            color: #C2DF93;
            font-size: 1.8rem;
        }
         .neden-biz-item:hover .reason-icon {
            color: #fff;

         }

    
        .reason-title {
            font-size: 1.35rem; 
            font-weight: 700;
            color: #fff;
            transition: color 0.4s ease;
            font-family: 'Poppins', sans-serif;
            margin: 0; 
            line-height: 1.2;
        }

      
        .reason-description {
            flex: 0 0 55%; 
            padding-left: 1.5rem; 
            border-left: 1px solid #7D9D9F; 
            transition: all 0.4s ease; 
        }

        .reason-description p {
            font-size: 0.95rem; 
            color: #7D9D9F;
            margin: 0;
            line-height: 1.7;
        }

       
        .reason-image-overlay {
            position: absolute;  
            top: 0;
            left: 0;
            width: 0; 
            height: 100%; 
            background-size: cover; 
            background-position: center;
            transition: width 0.4s ease-out, opacity 0.4s ease;
            z-index: 1; 
            border-radius: 10px 0 0 10px; 
            opacity: 0.8; 
        }

        .neden-biz-item:hover .reason-image-overlay {
            width: 120px; 
            opacity: 1;
        }

      
        .neden-biz-item:hover .icon-text-group {
            padding-left: 120px; 
            padding-right: 1.5rem; 
        }

        .neden-biz-item:hover .reason-description {
            padding-left: 2.5rem; 
        }

     
        .neden-biz-item:hover .reason-icon-circle {
            background-color: #52BCAD; 
        }

        .neden-biz-item:hover .reason-title {
            color: #fff; 
        }

        .neden-biz-item:hover .reason-description p {
            color: #7D9D9F; 
        }

 
        @media (max-width: 992px) {
            .neden-biz-heading { font-size: 2.2rem; }
            
         
            .neden-biz-item {
                display: block; 
                align-items: initial;
                padding: 1.5rem;  
                min-height: initial;
                overflow: visible; 
                border:none;
            }
            .neden-biz-item:hover { 
                box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); 
                transform: none; 
            }
            .neden-biz-item::before { 
                height: 0 !important;
            }

           
            .reason-image-overlay {
                position: static;  
                order: 2;  
                width: 100%; 
                height: 150px;  
                opacity: 1; 
                margin: 1rem 0; 
                transition: none;
                z-index: 1; 
                border-radius: 6px; 
            }
            .neden-biz-item:hover .reason-image-overlay {
                width: 100%; 
                opacity: 1;
            }

           
            .item-content-wrapper {
                flex-direction: column;  
                align-items: flex-start; 
                width: 100%;
            }

          
            .icon-text-group {
                order: 1;  
                flex: none;
                width: 100%;
                margin-bottom: 0; 
                padding: 0; 
                transition: none;
            }
            .neden-biz-item:hover .icon-text-group {
                padding: 0; 
            }
            
          
            .reason-description {
                order: 3;  
                flex: none;
                padding: 0; 
                border: none; 
                padding-top: 0.5rem; 
                width: 100%;
            }
            .reason-description p {
                font-size: 0.95rem; 
                line-height: 1.6;
            }
            .neden-biz-item:hover .reason-description {
                padding: 0;
            }
            
            
            .neden-biz-item:hover .reason-icon-circle { background-color: #007bff; }
            .neden-biz-item:hover .reason-title { color: #343a40; }
            .neden-biz-item:hover .reason-description p { color: #6c757d; }
            
           
            .reason-icon-circle { width: 45px; height: 45px; margin-right: 1rem; }
            .reason-icon { font-size: 1.4rem; }
            .reason-title { font-size: 1.1rem; }
        }

        @media (max-width: 576px) {
            .neden-biz-heading { font-size: 1.8rem; }
        }
       
/* EKİBİMİZ BÖLÜMÜ */ 
.ekibimiz-section {
    padding: 6rem 0;
    background-color: #ECF8F8;
}

.ekibimiz-header {
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    text-align: center;
    padding: 0 1.5rem;
}

.ekibimiz-subheading {
    font-size: 0.95rem;
    font-weight: 600;
    color: #6DC7BA;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
}

.ekibimiz-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #222;
}

 
.ekibimiz-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

 
.ekip-uyesi-kart {
    background-color: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.35s ease;
    cursor: pointer;
    position: relative;
}

.ekip-uyesi-kart:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.16);
}

 
.ekip-resim-wrapper {
    position: relative;
    height: 380px;  
    overflow: hidden;
}

.ekip-resmi {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ekip-uyesi-kart:hover .ekip-resmi {
    transform: scale(1.08);
}

 
.ekip-bilgi-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.3) 60%, transparent);
    padding: 2rem 1.2rem 1.2rem;
    color: white;
    text-align: left;
    z-index: 2;
}

.ekip-ad {
    font-family: 'Poppins', sans-serif;
    font-size: 1.28rem;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.ekip-pozisyon {
    font-size: 0.92rem;
    font-weight: 500;
    color: #e0e0e0;
    margin: 0;
    opacity: 0.95;
}

 
.ekip-sosyal-medya {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 12px;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.ekip-uyesi-kart:hover .ekip-sosyal-medya {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.ekip-sosyal-medya a {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1.35rem;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.ekip-sosyal-medya a:hover {
    background-color: #52BCAD;
    border-color: #52BCAD;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.3);
}

 
@media (max-width: 1200px) {
    .ekibimiz-container {
        grid-template-columns: repeat(3, 1fr);
    }
    .ekip-resim-wrapper { height: 360px; }
}

@media (max-width: 992px) {
    .ekibimiz-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .ekip-resim-wrapper { height: 340px; }
    .ekibimiz-heading { font-size: 2.4rem; }
}

@media (max-width: 576px) {
    .ekibimiz-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .ekip-resim-wrapper { height: 380px; }
    .ekibimiz-heading { font-size: 2rem; }
    .ekip-bilgi-overlay { padding: 1.8rem 1rem 1rem; }
}
 
/* BLOG BÖLÜMÜ  */ 
.blog-section {
    padding: 7rem 0;
    background-color: #0C1616;
}

.blog-header {
    max-width: 800px;
    margin: 0 auto 4.5rem auto;
    text-align: center;
    padding: 0 1.5rem;
}

.blog-subheading {
    font-size: 0.95rem;
    font-weight: 600;
    color: #C2DF93;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 0.6rem;
}

.blog-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
}

 
.blog-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

 
.blog-kart {
    background: #114F4F;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
}

.blog-kart:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.14);
}

 
.blog-resim-wrapper {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-resmi {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-kart:hover .blog-resmi {
    transform: scale(1.06);
}

 
.blog-kategori {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: #000;
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.3);
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.blog-kart:hover .blog-kategori {
    background-color: #52BCAD;
    transform: translateY(-2px);
}

 
.blog-icerik {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-baslik {
    margin: 0 0 1rem 0;
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    line-height: 1.4;
    font-weight: 700;
}

.blog-baslik a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

 
.blog-ozet {
    color: #7D9D9F;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
    flex-grow: 1;
}

 
.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: #7D9D9F;
    font-weight: 500;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-yazar {
    color: #fff;
    font-weight: 600;
}

.blog-ayirac {
    color: #ccc;
    font-weight: 300;
}

 
.blog-devam {
    color: #7D9D9F;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.blog-devam::after {
    content: '→';
    font-weight: bold;
    transition: transform 0.3s ease;
}

.blog-devam:hover {
    color: #C2DF93;
}

.blog-devam:hover::after {
    transform: translateX(5px);
}

 
.blog-tumunu-gor {
    text-align: center;
    margin-top: 3.5rem;
}

.btn-outline {
    display: inline-block;
    padding: 13px 38px;
    border: 2.2px solid #007bff;
    color: #007bff;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    text-decoration: none;
    background: transparent;
    transition: all 0.35s ease;
    position: relative;
}

.btn-outline::after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn-outline:hover {
    background: #007bff;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 123, 255, 0.28);
}

.btn-outline:hover::after {
    transform: translateX(4px);
}

 
@media (max-width: 992px) {
    .blog-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
    }
    .blog-resim-wrapper {
        height: 280px;
    }
    .blog-heading {
        font-size: 2.4rem;
    }
}

@media (max-width: 576px) {
    .blog-section {
        padding: 5rem 0;
    }
    .blog-heading {
        font-size: 2rem;
    }
    .blog-icerik {
        padding: 1.5rem;
    }
    .blog-kategori {
        font-size: 0.78rem;
        padding: 6px 12px;
    }
}
/* Footer bölümü */
.footer-section {
    background-color: #0C1616;
    color: #ddd;
    padding-top: 4.5rem; 
    border-top: 1px solid #222;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.2fr 1fr;
    gap: 2.5rem;
}

 
.footer-logo-img {
    height: 48px;
    width: auto;
    filter: brightness(0) invert(1);  
    margin-bottom: 1rem;
    display: block;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #7D9D9F;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

 
.footer-sosyal {
    display: flex;
    gap: 14px;
}

.footer-sosyal a {
    width: 42px;
    height: 42px;
    background: #222;
    color: #fff;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none !important;
    border: 1px solid #333;
}

.footer-sosyal a:hover {
    background: #388077;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    border-color: #388077;
}

 
.footer-baslik {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.3rem;
    position: relative;
    padding-bottom: 0.7rem;
}

.footer-baslik::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 36px;
    height: 3px;
    background: #7D9D9F;
    border-radius: 2px;
}

 
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #7D9D9F;
    text-decoration: none !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #388077;
    transform: translateX(5px);
}

 
.footer-blog a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #222;
    text-decoration: none !important;
}

.blog-mini-title {
    font-size: 0.88rem;
    color: #7D9D9F;
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-mini-date {
    font-size: 0.78rem;
    color: #7D9D9F;
    margin-left: 12px;
}

 
.footer-iletisim li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    font-size: 0.92rem;
}

.footer-iletisim i {
    color: #7D9D9F;
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.footer-iletisim a {
    color: #7D9D9F;
    text-decoration: none !important;
}

.footer-iletisim a:hover {
    color: #388077;
}

 
.footer-bottom {
    margin-top: 3rem;
    padding: 1.5rem 0;
    background: #0C1616;
    border-top: 1px solid #222;
    font-size: 0.88rem;
    color: #777;
}

.footer-bottom .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-kvkk a {
    color: #7D9D9F;
    text-decoration: none !important;
}

.footer-kvkk a:hover {
    color: #388077;
    text-decoration: underline !important;
}

 
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }
    .footer-logo-img {
        margin: 0 auto 1rem;
    }
    .footer-desc {
        max-width: 100%;
        margin: 0 auto 1.5rem;
    }
    .footer-sosyal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-baslik::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-iletisim li {
        justify-content: center;
    }
    .footer-bottom .footer-container {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}
/* TOP BUTTON */ 
.top-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.15));
}

.top-button.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-button:hover {
    transform: scale(1.12);
}

 
.top-circle {
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.top-button:hover .top-circle {
    transform: rotate(360deg);
    transition: transform 0.6s ease;
}

 
.circle-bg {
    transition: stroke 0.3s ease;
}

.top-button:hover .circle-bg {
    stroke: #ccc;
}

 
.circle-progress {
    transition: stroke-dasharray 0.1s linear;
}

 
.arrow-up {
    transition: stroke 0.3s ease;
}

.top-button:hover .arrow-up {
    stroke: #52BCAD;
}

 
@media (max-width: 576px) {
    .top-button {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
}
       /* HERO BANNER STYLES */
        .hero-banner {
            position: relative;
            width: 100%;
            height: 400px;  
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center; 
            padding-left: 10%; 
            color: white; 
            text-align: left;
        }

        .hero-banner .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5); 
            z-index: 1; 
        }

        .hero-banner .content-wrapper {
            position: relative;
            z-index: 2; 
        }

        .hero-banner h1 {
            font-size: 3.5rem;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }

        .hero-banner .breadcrumb {
            font-size: 1.1rem;
            font-weight: 300;
        }

        .hero-banner .breadcrumb a {
            color: #f1f1f1; 
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .hero-banner .breadcrumb a:hover {
            color: #e9ecef;
        }

        .hero-banner .breadcrumb .active {
            color: #C1DE92; 
            font-weight: 500; 
        }

        /* GENEL YAPILANDIRMA VE RESPONSIVE İÇİN */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .about-content {
            padding: 80px 0;
            background-color: #0c1616;
        }

        .about-content .row {
            display: flex;
            flex-wrap: wrap;
            align-items: center; 
            gap: 30px; 
        }

        .about-content .col-image,
        .about-content .col-text {
            flex: 1 1 45%; 
            min-width: 300px; 
        }

        /* RESİM ALANI STYLES */
        .main-image-container {
            position: relative;
            width: 100%;
            padding-bottom: 56.25%; /* 16:9 oranında yükseklik */
            overflow: hidden;
            margin-bottom: 20px; 
        }

        .main-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            transition: transform 0.4s ease-in-out;
        }

        /* KÜÇÜK RESİM KAPSAYICISI (Sol Alt Köşe - YATAY DİZİLİŞ) */
        .thumbnail-images {
            position: absolute;
            bottom: 20px;   
            left: 20px;     
            z-index: 10;
            display: flex;
            flex-direction: row; 
            gap: 15px; 
        }

        /* KÜÇÜK RESİM STİLLERİ (Yatay Dizilişe Uygun) */
        .thumbnail {
            width: 120px;   
            height: 90px;   
            object-fit: cover;
            border: 3px solid #ffffff;
            cursor: pointer;
            margin-bottom: 0; 
            margin-top: 0; 
            margin-right: 0; 
            border-radius: 4px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s ease, border-color 0.3s ease, z-index 0.3s ease;
            
            transform-origin: center center; 
            transform: rotate(var(--rotation, 0deg)); 
        }

        .thumbnail:hover,
        .thumbnail.active-thumb {
            border-color: #ffc107; 
            transform: rotate(var(--rotation, 0deg)) scale(1.1); 
            z-index: 15; 
            position: relative; 
        }


        /* METİN ALANI STYLES */
        .subheading {
            display: block;
            color: #C1DE92;
            font-weight: 500;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .col-text h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .col-text p {
            margin-bottom: 15px;
            color: #7D9D9F;
        }

        /* DÜĞME STYLES */
        .btn-primary {
            display: inline-block;
            padding: 10px 25px;
            background-color: #52BCAD; 
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: background-color 0.3s ease, transform 0.3s ease;
            margin-top: 10px;
            font-weight: 500;
        }

        .btn-primary:hover {
            background-color: #4E5B5C;
            transform: translateY(-2px);
        }

        /* Mobil Uyum (768px ve altı) - GÜNCELLENDİ */
        @media (max-width: 768px) {
            .about-content .row {
                flex-direction: column;
            }
            .about-content .col-text {
                order: 1; 
            }
            .about-content .col-image {
                order: 2; 
                margin-bottom: 0; /* Küçük resimler kalktığı için boşluğu kaldır */
            }

            /* KÜÇÜK RESİM KAPSAYICISINI VE İÇİNDEKİLERİ TAMAMEN GİZLE */
            .thumbnail-images {
                display: none !important; 
            }
            
            /* Büyük resim kapsayıcısının altında mobil boşluk kalmasın */
            .main-image-container {
                margin-bottom: 30px; 
            }

            /* Resimdeki hafif döndürmeyi mobilde kaldırabiliriz */
            .main-image {
                transform: none !important;
            }
        }
        /* YENİ BÖLÜM: VİZYON VE DEĞERLER */
.vision-values-section {
    padding: 60px 0; /* Üst ve alttan boşluğu azalttık */
    background-color: #ffffff; 
}

/* Kapsayıcı konteynerin genişliğini artırdık */
.container { 
    max-width: 1400px; /* Maksimum genişliği 1200px'den 1400px'e çıkardık */
    margin: 0 auto;
    padding: 0 15px; 
}

.vision-values-section .vision-values-row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch; 
    border-radius: 8px; 
    box-shadow: 0 10px 30px rgba(0,0,0,0.05); 
}

.vision-values-section .vision-image-col {
    flex: 1 1 50%; 
    position: relative;
    overflow: hidden;
    min-height: 400px; /* Yüksekliği 550px'den 400px'e düşürdük */
    border-radius: 8px 0 0 8px; 
}

.vision-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease-in-out;
    border-radius: 8px 0 0 8px;
}

.vision-values-section .vision-content-col {
    flex: 1 1 50%; 
    background-color: #ffffff; /* Gri arka planı beyaz yaptık */
    padding: 40px; /* İç boşluğu azalttık */
    display: flex;
    flex-direction: column;
    justify-content: center; 
    border-radius: 0 8px 8px 0; 
    margin-left: 0; 
    z-index: 1; 
}

/* YENİ EKLEME: Başlık ve Paragrafı resmin üzerine taşıma (Opsiyonel) */
/* Eğer başlık ve paragrafın resmin üzerine taşmasını istiyorsanız, resim sütununa bir içerik bindirebiliriz.
Ancak burada sadece gri alandan kurtulup yüksekliği ayarladık.
Eğer resmin *üstüne* taşmasını istiyorsanız, HTML yapısını değiştirmemiz gerekir.
Mevcut isteğe göre (yükseklik azalsın, gri kalksın, genişlik artsın) bu ayarlar yeterli olacaktır. */

.vision-values-section .content-overlay {
    position: relative;
    z-index: 6;
    padding-left: 0; 
}

.vision-values-section .subheading {
    margin-bottom: 10px;
    color: #52bcad; 
    font-weight: 700;
}

.vision-values-section h2 {
    font-size: 2rem; /* Başlık boyutunu da hafif azalttık */
    margin-bottom: 20px;
    color: #212529;
}

.vision-values-section p {
    margin-bottom: 25px;
    color: #7D9D9F;
    font-size: 1rem;
}

/* LİSTE STİLLERİ (Değişmedi - İki sütunlu kalacak) */
.values-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap; 
    gap: 15px; 
}

.values-list li {
    flex: 1 1 calc(50% - 15px); 
    max-width: calc(50% - 15px); 
    display: flex;
    flex-direction: column; 
    padding: 15px; /* İç boşluğu azalttık */
    background-color: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: 1px solid #dee2e6;
    height: auto; 
}

.values-list li:hover {
    background-color: #e6f0ff; 
    transform: translateY(-3px); /* Kayma efektini hafif azalttık */
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.1);
    border-color: #114F4F; 
}

.value-header {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.value-header i {
    font-size: 1.1rem;
    margin-right: 10px;
    color: #ced4da; 
    transition: color 0.3s ease;
}

.values-list li:hover .value-header i {
    color: #114F4F; 
}

.value-header span {
    font-weight: 700;
    color: #343a40;
    font-size: 1.05rem; /* Yazı boyutunu hafif azalttık */
}

.values-list li p {
    margin-bottom: 0;
    font-size: 0.9rem; /* Yazı boyutunu hafif azalttık */
    color: #7D9D9F;
}

/* İkon Görünürlük Ayarları (Aynı kalacak) */
.values-list li:hover .far.fa-circle {
    display: none; 
}
.values-list li:hover .fas.fa-dot-circle {
    display: inline-block !important; 
    color: #114F4F; 
}
.values-list li .fas.fa-dot-circle {
    display: none; 
}


/* RESPONSIVE AYARLAR (Genişlik güncellendi) */
@media (max-width: 1200px) { /* Artık 1200px altında tablet düzenine geçebiliriz */
    .vision-values-section .vision-image-col,
    .vision-values-section .vision-content-col {
        flex: 1 1 100%; 
        min-height: auto;
    }
    
    .vision-values-section .vision-image-col {
        border-radius: 8px 8px 0 0; 
        min-height: 250px; /* Mobil/Tablet resim yüksekliğini azalttık */
    }
    
    .vision-values-section .vision-content-col {
        border-radius: 0 0 8px 8px; 
        padding: 30px;
    }

    .values-list li {
        flex: 1 1 calc(50% - 7.5px); 
        max-width: calc(50% - 7.5px);
    }
}

@media (max-width: 768px) {
    .values-list li {
        flex: 1 1 100%; 
        max-width: 100%;
    }
    
    .vision-values-section h2 {
        font-size: 1.6rem;
    }
}