@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Refined Brand Colors */
    --navy: #1A365D;
    --navy-light: #2D3748;
    --azure: #2B6CB0;
    --green: #48BB78;
    --solar-orange: #F59E0B;
    --pure-white: #FFFFFF;
    --offset-white: #F8FAFC;
    --light-grey: #F1F5F9;

    /* GRadients */
    --main-gradient: linear-gradient(135deg, var(--navy) 0%, #102A43 100%);
    --accent-gradient: linear-gradient(90deg, #F59E0B 0%, #48BB78 100%);
    --btn-gradient: linear-gradient(135deg, #48BB78 0%, #38A169 100%);

    /* Shadows & Effects */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(26, 54, 93, 0.06);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.08);

    /* Container & Spacing */
    --container-max-width: 1200px;
    --border-radius-lg: 24px;
    --border-radius-md: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--navy-light);
    background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)), url('Görseller/istockphoto-2032036470-612x612.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    line-height: 1.65;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--navy);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* --- REVEAL ANIMATION --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.5rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(72, 187, 120, 0.15);
    /* Çok şeffaf marka yeşili */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 0.3rem 0;
    box-shadow: 0 4px 30px rgba(72, 187, 120, 0.05);
    /* Çok hafif yeşilimsi gölge */
    border-bottom: 1px solid rgba(72, 187, 120, 0.1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--navy);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--green);
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- BUTTONS --- */
.btn-primary {
    background: var(--green);
    color: var(--pure-white);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 10px 20px rgba(72, 187, 120, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(72, 187, 120, 0.3);
    filter: brightness(1.05);
}

.btn-secondary {
    padding: 0.8rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    border: 2px solid #E2E8F0;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #F8FAFC;
    border-color: #CBD5E0;
    transform: translateY(-2px);
}

/* --- HERO SECTION --- */
.hero {
    padding: 220px 0 160px;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.3)), url('Görseller/Paragraf metniniz 1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.hero-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(72, 187, 120, 0.1);
    color: var(--green);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero p {
    font-size: 1.2rem;
    color: var(--navy-light);
    margin-bottom: 3rem;
    max-width: 600px;
}

/* --- BENTO GRID --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
}

.bento-item {
    background: var(--pure-white);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    border: 1px solid #F1F5F9;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(72, 187, 120, 0.2);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.bento-item.medium {
    grid-column: span 2;
    grid-row: span 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(72, 187, 120, 0.08);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    color: var(--green);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 991px) {
    .header-cta .btn-primary {
        display: none;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: block;
        font-size: 24px;
        color: var(--green);
        cursor: pointer;
    }
}

/* --- FEATURE CARDS --- */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: -80px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--pure-white);
    padding: 35px 30px;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 10px 40px rgba(26, 54, 93, 0.04);
    text-align: left;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.feature-card>* {
    position: relative;
    z-index: 2;
    /* Arka plan görüntüsünün üzerinde kalması için */
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* Overlay for images to keep text readable */
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 10, 0.7));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

/* Individual Card Images */
.card-enerji::before {
    background-image: url('Görseller/enerji.jpg');
}

.card-isg::before {
    background-image: url('Görseller/isg.jpg');
}

.card-saf::before {
    background-image: url('Görseller/saf.jpg');
}

.card-robot::before {
    background-image: url('Görseller/robotla\ temizlik.jpg');
}

.feature-card:hover::before,
.feature-card:hover::after {
    opacity: 1;
}

.feature-card:hover h3,
.feature-card:hover p {
    color: white !important;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(26, 54, 93, 0.15);
}

/* --- ENERGY EFFICIENCY DETAIL PAGE --- */
.detail-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.4)), url('Görseller/Paragraf metniniz 1.png');
    background-size: cover;
    background-attachment: fixed;
    margin-bottom: 60px;
}

.level-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: var(--border-radius-lg);
    padding: 50px;
    margin-bottom: 50px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-md);
}

.impact-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-family: 'Outfit';
}

.badge-low {
    background: #E6FFFA;
    color: #319795;
}

.badge-medium {
    background: #FFFAF0;
    color: #D69E2E;
}

.badge-high {
    background: #FFF5F5;
    color: #E53E3E;
}

.level-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.level-img {
    width: 100%;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 991px) {
    .level-grid {
        grid-template-columns: 1fr;
    }

    .level-card {
        padding: 30px;
    }
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(72, 187, 120, 0.06);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: var(--green);
    color: var(--pure-white);
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    color: var(--navy);
}

.feature-card p {
    font-size: 0.95rem;
    color: #718096;
    margin: 0;
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: -60px;
    }
}

/* --- PRODUCT SECTION --- */
.product-section {
    padding: 100px 0;
    background: transparent;
}

.product-section h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--navy);
}

.btn-about {
    display: inline-block;
    background: var(--green);
    color: white;
    padding: 12px 35px;
    border-radius: 100px;
    font-weight: 700;
    margin-bottom: 2.5rem;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(72, 187, 120, 0.2);
}

.product-intro {
    font-size: 1.15rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 4rem;
    max-width: 900px;
}

.product-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.bullet-list {
    list-style: none;
    padding: 0;
}

.bullet-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.bullet-list li::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="%2348BB78" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-circle-dot-2"><circle cx="12" cy="12" r="10"/><path d="M12 9a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z" fill="%2348BB78"/></svg>') no-repeat center;
    background-size: contain;
}

/* --- IMPORTANCE SECTION --- */
.importance-section {
    padding: 120px 0;
    background: transparent;
}

.importance-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(0, 0, 10, 0.15);
    background: linear-gradient(135deg, rgba(72, 187, 120, 0.1), rgba(45, 55, 72, 0.05));
    padding: 12px;
    /* Dış çerçeve boşluğu */
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    perspective: 1000px;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    /* Kırpılmadan tam halini göstermek için */
    border-radius: 20px;
    display: block;
    transition: transform 0.8s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(-5deg) translateY(-10px);
    box-shadow: 0 40px 100px rgba(72, 187, 120, 0.15);
    border-color: rgba(72, 187, 120, 0.3);
}

.image-wrapper:hover img {
    transform: scale(1.02);
}

.overlay-buttons {
    position: absolute;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 5;
}

.overlay-btn {
    background: white;
    padding: 10px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.overlay-btn:hover {
    transform: translateX(10px);
    background: var(--green);
    color: white;
}

.overlay-btn.wa:hover {
    background: #25D366;
    border-color: #25D366;
}

.mini-tag-group {
    display: flex;
    gap: 8px;
    margin-bottom: 25px;
}

.mini-tag {
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
}

.mini-tag.green {
    background: var(--green);
    color: white;
}

.mini-tag.grey {
    background: #e2e8f0;
    color: var(--green);
}

.importance-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--navy);
}

.importance-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.importance-icon-circle {
    width: 56px;
    height: 56px;
    background: rgba(72, 187, 120, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--green);
}

.importance-feature h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--navy);
}

.importance-feature p {
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

.support-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 20px;
}


/* --- FOOTER --- */
footer {
    padding: 80px 0 40px;
    background: rgba(72, 187, 120, 0.05);
    /* Çok şeffaf yeşil */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(72, 187, 120, 0.1);
    text-align: center;
}

.footer-social a {
    color: #718096;
    font-size: 1.25rem;
    margin: 0 15px;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: var(--green);
}

/* --- CERTIFICATIONS SECTION --- */
.cert-section {
    padding: 50px 0 30px;
    background: transparent;
    text-align: center;
}

.cert-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 25px;
}

.cert-item {
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    filter: grayscale(80%);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cert-item:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.15);
    border-color: rgba(72, 187, 120, 0.3);
}

.cert-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}


/* --- FAQ ACCORDION --- */
.faq-section {
    padding: 100px 0;
    background: transparent;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--pure-white);
    border-radius: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 10px 30px rgba(26, 54, 93, 0.03);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--green);
    box-shadow: 0 15px 40px rgba(72, 187, 120, 0.08);
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--navy);
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    user-select: none;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--navy-light);
    line-height: 1.7;
    font-size: 1rem;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 30px 30px;
    max-height: 300px;
    opacity: 1;
}

.faq-icon {
    transition: transform 0.4s ease;
    color: var(--green);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* --- INTERACTIVE MAP (USER PREFERRED MODE) --- */
.map-section {
    padding: 120px 0;
    background: #020617;
    color: white;
    overflow: hidden;
}

.map-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    background: #050b1a;
    border-radius: 40px;
    padding: 10px;
    box-shadow: 0 40px 120px rgba(0, 0, 0, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
}

.map-view {
    position: relative;
    width: 100%;
    padding-top: 50%;
    /* 2:1 Widescreen Aspect Ratio */
    background-image: url('Görseller/Ekran görüntüsü 2026-04-03 035853.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-hotspot {
    position: absolute;
    width: 20px;
    height: 20px;
    cursor: pointer;
    z-index: 10;
    transform: translate(-50%, -50%);
}

/* Central glowing core */
.map-hotspot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #fff;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow:
        0 0 10px #fff,
        0 0 20px #f6e05e,
        0 0 40px #f6e05e,
        0 0 60px rgba(246, 224, 94, 0.4);
    z-index: 2;
}

/* Pulsing radar effect */
.map-hotspot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(246, 224, 94, 0.6);
    border-radius: 50%;
    animation: hotspotPulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    z-index: 1;
}

@keyframes hotspotPulse {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
        box-shadow: 0 0 0 0 rgba(246, 224, 94, 0.7);
    }

    70% {
        transform: scale(3.5);
        opacity: 0;
        box-shadow: 0 0 0 15px rgba(246, 224, 94, 0);
    }

    100% {
        transform: scale(3.5);
        opacity: 0;
        box-shadow: 0 0 0 0 rgba(246, 224, 94, 0);
    }
}

.map-tooltip {
    position: absolute;
    bottom: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(15px);
    color: white;
    padding: 18px 22px;
    border-radius: 18px;
    font-size: 0.85rem;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    z-index: 100;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
    text-align: left;
}

.map-hotspot:hover .map-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tooltip-city {
    font-weight: 800;
    font-size: 0.95rem;
    color: #f6e05e;
    margin-bottom: 8px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.tooltip-stats {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tooltip-stats::before {
    content: '';
    width: 4px;
    height: 4px;
    background: var(--green);
    border-radius: 50%;
}

.tooltip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tooltip-list li {
    padding: 4px 0;
    font-weight: 400;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .map-container {
        border-radius: 0;
        padding: 60px 15px;
        background: #020617;
        border: none;
    }

    .map-hotspot::before {
        width: 6px;
        height: 6px;
    }

    .map-tooltip {
        min-width: 160px;
        padding: 12px;
    }
}


/* --- LOGO CAROUSEL --- */
.logo-carousel-section {
    padding: 90px 0;
    /* More vertical breathing room */
    overflow: hidden;
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-slider {
    position: relative;
    width: 100%;
    height: 120px;
    /* Taller slider */
    display: flex;
    align-items: center;
}

.logo-track {
    display: flex;
    width: max-content;
    animation: logoScroll 50s linear infinite;
    /* Slower, smoother scroll for larger logos */
    gap: 100px;
    /* More space between logos */
    align-items: center;
    padding-left: 100px;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-track img {
    height: 65px;
    /* Larger logo height */
    width: auto;
    max-width: 220px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.05));
    /* Soft shadow */
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.logo-track img:hover {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
    /* Stronger shadow */
    transform: scale(1.2) translateY(-5px);
    /* More prominent lift and scale */
    z-index: 10;
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .logo-track img {
        height: 35px;
    }

    .logo-track {
        gap: 40px;
    }
}