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

:root {
    --tj-color-theme-primary: #1db9a5;
    --tj-color-bg-dark: #0b1f1e;
    --tj-color-bg-darker: #0a1918;
    --tj-space-edge: 15px;
}

/* Custom Scrollbar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scrollbar-width: thin;
    scrollbar-color: var(--tj-color-theme-primary) #E8F3F2;
}

*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

*::-webkit-scrollbar-track {
    background: #E8F3F2;
}

*::-webkit-scrollbar-thumb {
    background: var(--tj-color-theme-primary);
    border-radius: 3px;
}

*::-webkit-scrollbar-thumb:hover {
    background: #24d4bd;
}

html {
    background: #E8F3F2;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: #fff;
    margin: var(--tj-space-edge);
    margin-bottom: 0;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    :root {
        --tj-space-edge: 10px;
    }
}

/* ========================================
   TOP NAVIGATION
   ======================================== */
.top-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    min-width: 950px;
    max-width: 95%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background: rgba(11, 31, 30, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    will-change: transform, opacity;
}

.top-nav.nav-hidden {
    transform: translate(-50%, -100px);
    opacity: 0;
    pointer-events: none;
}

.nav-right {
    display: flex;
    align-items: center;
}

.nav-logo {
    position: relative;
    left: 0;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 36px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    background: transparent;
    padding: 0;
}

.nav-menu li a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.nav-menu li a svg {
    opacity: 0.7;
    transition: transform 0.3s ease;
}

.nav-menu li a:hover svg {
    transform: rotate(180deg);
}

/* HAMBURGER */
.hamburger-btn {
    position: relative;
    right: 0;
    z-index: 1001;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 12px;
    width: 44px;
    height: 44px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.12);
}

.hamburger-btn span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    background: var(--tj-color-bg-dark);
    border-radius: 20px;
    margin-bottom: 20px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("../images/hero/h5-hero-img.webp") center/cover no-repeat;
    opacity: 0.65;
    /* Slightly less opaque to let the dark background bleed through more */
    filter: brightness(0.8) contrast(1.2) saturate(0.9);
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    /* Dramatically darken the edges to focus on the subjects */
    background: radial-gradient(circle at 65% 40%, transparent 10%, rgba(11, 31, 30, 0.45) 40%, rgba(11, 31, 30, 0.98) 90%);
}

/* Hero Shapes */
.hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape-lines-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 450px;
    height: 450px;
    opacity: 0.25;
    /* Very subtle, just like the reference */
    object-fit: contain;
    object-position: left top;
    z-index: 1;
    mix-blend-mode: screen;
}

.shape-lines-right {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 450px;
    height: 450px;
    opacity: 0.2;
    object-fit: contain;
    object-position: right bottom;
    z-index: 1;
    mix-blend-mode: screen;
}

/* Teal Glow Effects - Based on reference image */
.glow-top-right {
    position: absolute;
    top: 5%;
    right: -5%;
    width: 650px;
    height: 650px;
    background: radial-gradient(circle, rgba(29, 185, 165, 0.5) 0%, transparent 75%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.glow-bottom-left {
    position: absolute;
    top: 25%;
    left: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(29, 185, 165, 0.5) 0%, transparent 75%);
    filter: blur(100px);
    pointer-events: none;
    z-index: 1;
}

.shape-circle-top {
    position: absolute;
    left: 60px;
    top: 100px;
    width: 80px;
    height: 80px;
    animation: rotate 20s linear infinite;
}

.shape-dots-right {
    position: absolute;
    right: 100px;
    bottom: 120px;
    width: 60px;
    height: 60px;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hero Content - SOLDA (Absolute) */
.hero-content {
    position: absolute;
    left: 240px;
    top: 45%;
    transform: translateY(-50%);
    max-width: 900px;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.6rem, 6vw, 6.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
}

.hero-title .accent {
    color: #1db9a5;
}

/* Primary Button - HIZLI ve MODERN HOVER */
.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 10px 10px 10px 32px;
    /* Asymmetric padding for circle icon */
    background: #1db9a5;
    color: #ffffff;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 25px rgba(29, 185, 165, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-icon {
    width: 44px;
    height: 44px;
    background: #0b1f1e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: all 0.3s ease;
}

.primary-btn:hover {
    background: #fff;
    color: #1db9a5;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.primary-btn:hover .btn-icon {
    background: #1db9a5;
    color: #0b1f1e;
    transform: scale(1.05);
}

.primary-btn:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(29, 185, 165, 0.4);
}

.primary-btn .btn-arrow {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-btn:hover .btn-arrow {
    transform: rotate(45deg);
    /* Point straight right (horizontal) */
}

/* Hero Box - SAĞDA ve AŞAĞIDA (Absolute) */
.hero-box {
    position: absolute;
    right: 180px;
    top: 55%;
    background: rgba(255, 255, 255, 0.12);
    /* Slightly more visible glassmorphism */
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 32px;
    /* Increased padding */
    border-radius: 24px;
    max-width: 350px;
    /* Increased width */
    color: #fff;
    z-index: 2;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.hero-box-icon {
    width: 36px;
    height: 36px;
    background: rgba(29, 185, 165, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.hero-box p {
    font-size: 16px;
    /* Increased font size */
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    /* White text for dark box */
    margin-bottom: 24px;
}

.counter {
    display: flex;
    align-items: baseline;
}

.count {
    font-size: 56px;
    /* Increased counter size */
    font-weight: 700;
    color: #3FBDAC;
    line-height: 1;
}

.count-suffix {
    font-size: 32px;
    /* Increased suffix size */
    font-weight: 600;
    color: #fff;
    /* White suffix for dark box */
}

.count-suffix sup {
    font-size: 16px;
    color: #1db9a5;
}

/* Scroll Down */
.scroll-down {
    position: absolute;
    left: 40px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transform: none;
    z-index: 1;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: #fff;
}

.scroll-text {
    margin-bottom: 8px;
}

.scroll-icon {
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* ========================================
   OFFCANVAS MENU
   ======================================== */
.offcanvas {
    position: fixed;
    inset: 0;
    z-index: 2000;
    pointer-events: none;
}

.offcanvas.active {
    pointer-events: all;
}

.offcanvas-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.offcanvas.active .offcanvas-overlay {
    opacity: 1;
}

.offcanvas-panel {
    position: absolute;
    right: 0;
    top: 0;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background: rgba(20, 32, 32, 0.98);
    backdrop-filter: blur(20px);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.offcanvas.active .offcanvas-panel {
    transform: translateX(0);
}

/* Offcanvas Header */
.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.offcanvas-logo .logo {
    height: 32px;
}

.offcanvas-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.offcanvas-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Offcanvas Text */
.offcanvas-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Offcanvas Sections */
.offcanvas-section {
    margin-bottom: 32px;
}

.offcanvas-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #fff;
}

/* Search */
.offcanvas-search {
    position: relative;
    display: flex;
    align-items: center;
}

.offcanvas-search input {
    width: 100%;
    padding: 14px 50px 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.offcanvas-search input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.offcanvas-search input:focus {
    border-color: rgba(29, 185, 165, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.search-btn {
    position: absolute;
    right: 6px;
    width: 38px;
    height: 38px;
    background: #1db9a5;
    border: none;
    border-radius: 6px;
    color: #0b1f1e;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #1ec9b4;
}

.mobile-only-section {
    display: none;
    /* Hide on desktop by default */
}

/* Offcanvas Menu */
.offcanvas-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.offcanvas-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.offcanvas-menu li:last-child {
    border-bottom: none;
}

.offcanvas-menu li a {
    display: block;
    padding: 12px 0;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.offcanvas-menu li a:hover {
    color: #1db9a5;
    padding-left: 10px;
}

/* Contact Info */
.offcanvas-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    font-size: 12px;
    color: #1db9a5;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.info-value {
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-value:hover {
    color: #1db9a5;
}

/* Social Icons */
.offcanvas-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: #1db9a5;
    border-color: #1db9a5;
    color: #0b1f1e;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
    position: relative;
    background: #0a1918;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

/* Newsletter Section */
.footer-newsletter {
    padding: 80px 80px 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.newsletter-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 50px 60px;
}

.newsletter-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    line-height: 1.2;
    flex-shrink: 0;
}

.newsletter-form-wrapper {
    flex: 1;
    max-width: 500px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-form input[type="email"] {
    flex: 1;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input[type="email"]:focus {
    border-color: rgba(29, 185, 165, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    background: #1db9a5;
    color: #0b1f1e;
    border: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(29, 185, 165, 0.4);
}

.newsletter-agree {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    cursor: pointer;
}

.newsletter-agree input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #1db9a5;
}

.newsletter-agree a {
    color: #fff;
    font-weight: 500;
    text-decoration: none;
}

.newsletter-agree a:hover {
    color: #1db9a5;
}

/* Footer Main */
.footer-main {
    padding: 80px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-logo img {
    height: 32px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer-awards {
    display: flex;
    gap: 16px;
}

.award-badge {
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.award-badge:hover {
    opacity: 1;
}

.footer-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #fff;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: #1db9a5;
    transform: translateX(4px);
}

.badge-new {
    display: inline-block;
    padding: 2px 8px;
    background: #1db9a5;
    color: #0b1f1e;
    font-size: 10px;
    font-weight: 600;
    border-radius: 10px;
    text-transform: uppercase;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact .contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-contact .contact-item span,
.footer-contact .contact-item a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact .contact-item a:hover {
    color: #1db9a5;
}

.contact-hours {
    flex-direction: row !important;
    align-items: center;
    gap: 8px !important;
    color: rgba(255, 255, 255, 0.6);
}

.contact-hours svg {
    flex-shrink: 0;
}

/* Footer Copyright */
.footer-copyright {
    padding: 24px 80px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.copyright-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.copyright-text a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #1db9a5;
    border-color: #1db9a5;
    color: #0b1f1e;
}

.copyright-menu {
    display: flex;
    gap: 24px;
}

.copyright-menu a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright-menu a:hover {
    color: #1db9a5;
}

/* Footer Shapes */
.footer-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.footer-shape-1 {
    position: absolute;
    left: 0;
    top: 0;
    width: 400px;
    height: 400px;
}

.footer-shape-2 {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 400px;
    height: 400px;
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.delay-1 {
    transition-delay: 0.15s;
}

.delay-2 {
    transition-delay: 0.3s;
}

/* ========================================
   RESPONSIVE
   ======================================== */
/* ========================================
   RESPONSIVE - HEADER & HERO
   ======================================== */

/* Large Desktop to Small Desktop */
@media (max-width: 1400px) {
    .hero-content {
        left: 120px;
    }

    .hero-box {
        right: 100px;
    }
}

@media (max-width: 1200px) {
    .top-nav {
        min-width: 90%;
        padding: 8px 18px;
    }

    .nav-logo {
        left: 0;
    }

    .hamburger-btn {
        right: 0;
    }



    .nav-menu li a {
        padding: 8px 14px;
        font-size: 13px;
    }

    .hero-content {
        left: 80px;
        max-width: 480px;
    }

    .hero-title {
        font-size: clamp(2.2rem, 5vw, 3.5rem);
        margin-bottom: 25px;
    }

    .hero-box {
        right: 60px;
        max-width: 260px;
        padding: 20px;
    }
}

/* Tablet - Hide Nav Menu */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }

    .mobile-only-section {
        display: block;
        /* Show menu in offcanvas on tablet/mobile */
    }

    .top-nav {
        width: calc(100% - 40px);
        min-width: auto;
        padding: 8px 20px;
        top: 20px;
    }

    .nav-logo {
        left: 0;
    }

    .hamburger-btn {
        right: 0;
    }

    /* Hero adjustments for tablet */
    .hero-content {
        left: 60px;
        top: 38%;
        max-width: 420px;
    }

    .hero-title {
        font-size: clamp(2rem, 5.5vw, 2.6rem);
        margin-bottom: 24px;
    }

    .hero-box {
        right: 40px;
        top: 50%;
        max-width: 240px;
        padding: 18px;
    }

    .hero-box p {
        font-size: 13px;
        margin-bottom: 14px;
    }

    .count {
        font-size: 40px;
    }

    .count-suffix {
        font-size: 24px;
    }

    .primary-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .newsletter-content {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }

    .newsletter-title {
        width: 100%;
    }

    .newsletter-form-wrapper {
        width: 100%;
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

/* Mobile - Stack Layout */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 24px 60px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 12px 12px 0 0;
    }

    .top-nav {
        width: calc(100% - 30px);
        top: 15px;
        padding: 6px 16px;
        border-radius: 50px;
    }

    .nav-logo-img {
        height: 30px;
    }

    .hamburger-btn {
        width: 40px;
        height: 40px;
    }

    .hero-content {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        max-width: 100%;
        padding: 0;
        margin-bottom: 32px;
        text-align: center;
    }

    .hero-title {
        font-size: clamp(1.7rem, 9vw, 2.4rem);
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .primary-btn {
        padding: 14px 24px;
        font-size: 14px;
    }

    .hero-box {
        position: relative;
        right: auto;
        top: auto;
        max-width: 320px;
        margin: 0 auto;
        padding: 20px;
    }

    .hero-box p {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .count {
        font-size: 36px;
    }

    .count-suffix {
        font-size: 22px;
    }

    .scroll-down {
        display: none;
    }

    .shape-lines-left,
    .shape-lines-right,
    .shape-circle-top,
    .shape-dots-right {
        opacity: 0.5;
        transform: scale(0.7);
    }

    .offcanvas-panel {
        padding: 24px;
    }

    .footer-newsletter,
    .footer-main,
    .footer-copyright {
        padding-left: 24px;
        padding-right: 24px;
    }

    .footer-newsletter {
        padding-top: 50px;
        padding-bottom: 40px;
    }

    .newsletter-content {
        padding: 30px 24px;
        gap: 24px;
    }

    .newsletter-title {
        font-size: 1.4rem;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        padding: 14px 18px;
    }

    .newsletter-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .newsletter-agree {
        justify-content: center;
        text-align: center;
        flex-wrap: wrap;
    }

    .footer-main {
        padding: 50px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-logo img {
        margin-bottom: 16px;
    }

    .footer-desc {
        max-width: 300px;
    }

    .footer-title {
        margin-bottom: 20px;
    }

    .footer-links {
        align-items: center;
    }

    .footer-links a:hover {
        transform: none;
    }

    .footer-contact {
        align-items: center;
    }

    .footer-contact .contact-item {
        align-items: center;
        text-align: center;
    }

    .contact-hours {
        justify-content: center;
    }

    .footer-copyright {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .copyright-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-social {
        order: -1;
        gap: 12px;
    }

    .footer-social a {
        width: 40px;
        height: 40px;
    }

    .copyright-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .copyright-text {
        order: 1;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 90px 16px 40px;
        border-radius: 12px 12px 0 0;
    }

    .top-nav {
        padding: 12px 16px;
    }

    .nav-logo-img {
        height: 26px;
    }

    .hamburger-btn {
        width: 36px;
        height: 36px;
        border-radius: 6px;
    }

    .hamburger-btn span {
        width: 16px;
    }

    .hero-title {
        font-size: clamp(1.4rem, 10vw, 2rem);
        margin-bottom: 15px;
    }

    .primary-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .hero-box {
        max-width: 100%;
        padding: 16px;
    }

    .count {
        font-size: 32px;
    }

    .count-suffix {
        font-size: 20px;
    }

    /* Footer - Small Mobile */
    .footer-newsletter,
    .footer-main,
    .footer-copyright {
        padding-left: 16px;
        padding-right: 16px;
    }

    .newsletter-content {
        padding: 24px 16px;
    }

    .newsletter-title {
        font-size: 1.2rem;
    }

    .newsletter-btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .newsletter-agree {
        font-size: 11px;
    }

    .footer-main {
        padding: 40px 16px;
    }

    .footer-grid {
        gap: 32px;
    }

    .footer-title {
        font-size: 15px;
    }

    .footer-links a,
    .footer-contact .contact-item span,
    .footer-contact .contact-item a {
        font-size: 13px;
    }

    .copyright-text,
    .copyright-menu a {
        font-size: 12px;
    }
}

/* ========================================
   LANGUAGE SWITCHER
   ======================================== */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-right: 15px;
    /* Space before hamburger */
}

.lang-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    color: #fff;
}

.lang-btn.active {
    color: #1db9a5;
    font-weight: 600;
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

/* Mobile Language Switcher in Offcanvas */
.offcanvas-lang {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lang-switcher-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lang-btn-mobile {
    width: 100%;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.lang-btn-mobile:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.lang-btn-mobile.active {
    background: rgba(29, 185, 165, 0.15);
    border-color: #1db9a5;
    color: #1db9a5;
}

/* Responsive for Language Switcher */
@media (max-width: 992px) {
    .lang-switcher {
        display: none;
    }
}

/* ========================================
   SOLUTIONS SECTION
   ======================================== */
.solutions-section {
    background: #e8f3f2;
    padding: 100px 0;
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 20px;
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

/* Solutions Header */
.solutions-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 40px;
}

.solutions-header-left {
    max-width: 600px;
}

.solutions-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1db9a5;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.solutions-subtitle svg {
    width: 16px;
    height: 16px;
}

.solutions-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 600;
    color: #0b1f1e;
    line-height: 1.2;
    margin: 0;
}

.solutions-explore-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #0b1f1e;
    color: #fff;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.solutions-explore-btn:hover {
    background: #1db9a5;
    transform: translateY(-2px);
}

.solutions-explore-btn svg {
    transform: rotate(45deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.solutions-explore-btn:hover svg {
    transform: rotate(45deg) translateX(3px) rotateY(360deg);
}

/* Solution Cards */
.solution-card {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    height: 320px;
    position: relative;
    transition: background 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.solution-card:hover {
    background: #1db9a5;
    box-shadow: 0 12px 40px rgba(29, 185, 165, 0.3);
}

.solution-card-title {
    font-size: 18px;
    font-weight: 600;
    color: #0b1f1e;
    margin: 0;
    line-height: 1.3;
    transition: color 0.4s ease;
}

.solution-card:hover .solution-card-title {
    color: #fff;
}

/* Icon with gradient circle - ABSOLUTE FIXED position */
.solution-card-icon {
    position: absolute;
    left: 28px;
    top: 50%;
    transform: translateY(-50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(29, 185, 165, 0.15) 0%, rgba(255, 255, 255, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1db9a5;
    transition: all 0.5s ease;
    perspective: 1000px;
}

.solution-card-icon svg {
    width: 38px;
    height: 38px;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .solution-card-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(29, 185, 165, 0.2) 100%);
    color: #fff;
    transform: translateY(-50%) scale(1.05);
}

.solution-card:hover .solution-card-icon svg {
    transform: rotateY(360deg);
}

/* Description and Button share same bottom area */
.solution-card-desc {
    position: absolute;
    bottom: 28px;
    left: 28px;
    right: 28px;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.solution-card:hover .solution-card-desc {
    opacity: 0;
}

/* Learn More button - hidden by default, visible on hover */
.solution-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: #0b1f1e;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    visibility: hidden;
    position: absolute;
    bottom: 28px;
    left: 28px;
    transform: translateY(20px) scale(0.9);
}

.solution-card-btn span {
    display: inline-block;
    transition: transform 1.0s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    perspective: 1000px;
}

.solution-card:hover .solution-card-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition-delay: 0.1s;
}

.solution-card-btn:hover span {
    transform: rotateY(360deg);
}

.solution-card-btn:hover {
    background: #fff;
    color: #0b1f1e;
}

.solution-card-btn svg {
    transition: transform 0.3s ease;
}

.solution-card-btn:hover svg {
    transform: rotate(45deg) translateX(2px);
}

/* Splide Overrides - Slider stays within container */
.solutions-slider {
    margin-top: 20px;
}

.solutions-slider .splide__track {
    overflow: hidden;
}

.solutions-slider .splide__slide {
    padding: 10px 0;
}

/* Pagination Dots */
.solutions-slider .splide__pagination {
    position: relative;
    bottom: auto;
    margin-top: 40px;
    gap: 8px;
    display: flex;
    justify-content: center;
}

.solutions-slider .splide__pagination__page {
    width: 10px;
    height: 10px;
    background: rgba(11, 31, 30, 0.2);
    border: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 1;
    cursor: pointer;
}

.solutions-slider .splide__pagination__page.is-active {
    background: #1db9a5;
    width: 32px;
    border-radius: 5px;
}

/* Solutions Responsive */
@media (max-width: 992px) {
    .solutions-container {
        padding: 0 40px;
    }

    .solutions-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .solutions-section {
        padding: 60px 0 80px;
    }

    .solutions-container {
        padding: 0 24px;
    }

    .solutions-header {
        margin-bottom: 40px;
    }

    .solution-card {
        height: auto;
        min-height: 320px;
        padding: 24px;
        padding-bottom: 0px;
        /* Space for button */
    }

    .solution-card-title {
        font-size: 16px;
    }

    .solution-card-icon {
        width: 60px;
        height: 60px;
    }

    /* Mobile: Always show description */
    .solution-card-desc {
        opacity: 1 !important;
    }

    /* Mobile: Always show Learn More button */
    .solution-card-btn {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        position: absolute;
        bottom: 5px;
        left: auto;
        right: 10px;
        padding: 10px 16px;
        font-size: 12px;
    }

    /* Disable hover effects on mobile */
    .solution-card:hover .solution-card-icon {
        transform: none;
    }

    .solution-card:hover .solution-card-icon svg {
        animation: none;
    }
}

/* ========================================
   PARTNERSHIP SECTION
   ======================================== */
.partnership-section {
    position: relative;
    background: var(--tj-color-bg-dark);
    overflow: hidden;
    padding: 80px 0 100px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.partnership-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 80px;
}

/* Header Side-by-Side */
.sec-heading.style-3 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    margin-bottom: 50px;
}

.subtitle-text {
    flex: 0 0 auto;
    width: 280px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.h5-about-content-right {
    flex: 1;
}

.sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tj-color-theme-primary);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.h5-about-counter {
    display: flex;
    align-items: baseline;
    font-weight: 700;
    line-height: 1;
    color: #fff !important;
    margin: 50px 0 0 0;
    opacity: 1;
    visibility: visible;
}

.h5-about-counter .count {
    color: #fff !important;
    display: inline-block;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}


.h5-about-counter-symbol {
    font-size: 2rem;
    color: var(--tj-color-theme-primary);
    margin-left: 4px;
    font-weight: 500;
}

.partnership-section .sec-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 600;
    line-height: 1.15;
    color: rgba(255, 255, 255, 0.2);
    /* Sönük başlangıç rengi */
    margin: 0;
    letter-spacing: -0.01em;
}

.reveal-text {
    background: linear-gradient(to right, #ffffff var(--reveal-progress, 0%), rgba(255, 255, 255, 0.2) var(--reveal-progress, 0%));
    background-clip: text;
    /* Standard property */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background 0.1s ease;
    /* Smooth gradient shift */
    display: inline;
}

/* TJ Primary Button Style */
.tj-primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: var(--tj-color-theme-primary);
    color: var(--tj-color-bg-dark);
    padding: 6px 6px 6px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none !important;
    margin-top: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tj-primary-btn .btn-icon {
    width: 44px;
    height: 44px;
    background: #0b1f1e;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.tj-primary-btn:hover {
    background: #fff;
    color: #0b1f1e;
}

.tj-primary-btn:hover .btn-icon {
    background: #1db9a5;
    color: #fff;
    transform: rotate(45deg);
}

/* Partner Slider Styles */
.partner-slider {
    margin-top: 30px;
    padding: 0 60px;
}

.partner-card {
    position: relative;
    width: 240px;
    height: 240px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    cursor: pointer;
    margin: 0;
}

.partner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.6s ease;
    transform: scale(1.2);
    z-index: 1;
}

.partner-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(11, 31, 30, 0.4);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 2;
}

.partner-logo {
    position: relative;
    z-index: 3;
    transition: transform 0.6s ease;
}

.partner-logo img {
    max-width: 140px;
    max-height: 50px;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.4s ease;
}

/* Hover Effect: Rectangle to Circle + Background Image */
.partner-card:hover {
    border-radius: 50%;
    border-color: var(--tj-color-theme-primary);
    background: rgba(255, 255, 255, 0.08);
}

.partner-card:hover .partner-bg {
    opacity: 1;
    transform: scale(1);
}

.partner-card:hover::after {
    opacity: 1;
}

.partner-card:hover .partner-logo img {
    opacity: 1;
    filter: brightness(1) invert(0);
}

/* Background Shapes */
.partnership-section .bg-shape-1,
.partnership-section .bg-shape-2,
.partnership-section .bg-shape-3 {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.partnership-section .bg-shape-1 {
    top: -50px;
    left: -50px;
    width: 400px;
    opacity: 0.3;
}

.partnership-section .bg-shape-2 {
    bottom: -50px;
    right: -50px;
    width: 350px;
    opacity: 0.3;
}

.partnership-section .bg-shape-3 {
    top: -50px;
    /* Moved up to hang from top */
    left: 50%;
    transform: translateX(-50%) scaleY(-1);
    width: 1200px;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 1200px) {
    .sec-heading.style-3 {
        gap: 60px;
    }

    .partner-slider {
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    .sec-heading.style-3 {
        flex-direction: column;
        gap: 30px;
    }

    /* Left align everything on tablet */
    .subtitle-text {
        width: 100%;
        align-items: flex-start;
    }

    .h5-about-counter {
        justify-content: flex-start;
        margin-top: 30px;
    }

    .h5-about-counter .count {
        font-size: 4.5rem;
    }

    .partnership-section .container {
        padding: 0 40px;
    }

    .partnership-section .sec-title {
        font-size: clamp(1.8rem, 4vw, 2.4rem);
    }

    .tj-primary-btn {
        margin-top: 30px;
    }

    .partner-slider {
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .partnership-section {
        padding: 60px 0;
        border-radius: 12px;
    }

    .partnership-section .container {
        padding: 0 24px;
    }

    .sec-heading.style-3 {
        gap: 20px;
        margin-bottom: 40px;
    }

    .sub-title {
        font-size: 14px;
    }

    .h5-about-counter {
        margin-top: 20px;
    }

    .h5-about-counter .count {
        font-size: 3rem;
    }

    .h5-about-counter-symbol {
        font-size: 1.5rem;
    }

    /* Smaller title on mobile */
    .partnership-section .sec-title {
        font-size: clamp(1.4rem, 5vw, 1.8rem);
    }

    .tj-primary-btn {
        margin-top: 24px;
        padding: 6px 6px 6px 20px;
        font-size: 14px;
        gap: 14px;
    }

    .tj-primary-btn .btn-icon {
        width: 36px;
        height: 36px;
    }

    .partner-slider {
        margin-top: 30px;
        padding: 0;
    }

    .partner-card {
        width: 140px;
        height: 100px;
    }

    .partner-logo img {
        max-width: 70px;
    }
}

@media (max-width: 480px) {
    .partnership-section {
        padding: 40px 0;
    }

    .partnership-section .container {
        padding: 0 16px;
    }

    .partnership-section .sec-title {
        font-size: 1.3rem;
    }

    .partner-card {
        width: 110px;
        height: 80px;
    }

    .partner-logo img {
        max-width: 60px;
    }
}

/* ========================================
   STRATEGY SECTION
   ======================================== */
.strategy-section {
    background: #E8F3F2;
    /* Match the page background for contrast around the main white container */
    padding: 80px 0;
}

.strategy-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--tj-space-edge);
}

/* Main Heading Box */
.h5-strategy-heading {
    background: #fff;
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

.h5-strategy-heading .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1db9a5;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 24px;
}

.h5-strategy-heading .sec-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 600;
    color: #0b1f1e;
    line-height: 1.2;
    margin-bottom: 40px;
    max-width: 1100px;
}

/* Cards Grid */
.strategy-cards-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.strategy-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    min-height: 400px;
    transition: transform 0.3s ease;
}

.strategy-card:hover {
    transform: translateY(-5px);
}

.strategy-card-title {
    font-size: 20px;
    font-weight: 600;
    color: #0b1f1e;
    line-height: 1.4;
    margin-bottom: 30px;
    /* Removed inherit to prevent white text issue */
}

/* Card 1: Avatars & Counter */
.avatar-group {
    display: flex;
    margin-bottom: 40px;
}

.avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 4px solid #fff;
    overflow: hidden;
    margin-right: -20px;
    background: #eee;
}

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

.strategy-card-counter {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px dashed rgba(0, 0, 0, 0.1);
}

.counter-val {
    font-size: 72px;
    font-weight: 700;
    color: #1db9a5;
    line-height: 1;
    margin-bottom: 15px;
}

.counter-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Card 2: Chart */
.strategy-card-chart {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 180px;
    margin-bottom: 20px;
}

.chart-bars .bar {
    flex: 1;
    max-width: 40px;
    /* Slimmer bars */
    background: #D1ECE9;
    border-radius: 6px;
    height: 0;
    /* Start at 0 for animation */
    transition: height 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.strategy-card.active .chart-bars .bar {
    height: var(--height);
    /* Animate to target height when card is revealed */
}

.chart-bars .bar.highlight {
    background: #1db9a5;
}

.chart-label {
    color: #1db9a5;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Card 3: Dark Theme */
.strategy-card-dark {
    background: linear-gradient(rgba(11, 31, 30, 0.9), rgba(11, 31, 30, 0.9)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=800&q=80');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.strategy-card-dark .strategy-card-title {
    color: #fff;
}

.strategy-card-dark .strategy-card-desc {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.strategy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.tag {
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    transition: all 0.3s ease;
}

.tag:hover {
    background: #1db9a5;
    color: #0b1f1e;
}

/* Responsive */
@media (max-width: 1200px) {
    .strategy-cards-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .h5-strategy-heading {
        padding: 40px;
    }

    .strategy-cards-row {
        grid-template-columns: 1fr;
    }

    .counter-val {
        font-size: 56px;
    }
}

@media (max-width: 600px) {
    .h5-strategy-heading {
        padding: 30px 20px;
    }
}

/* ========================================
   SCROLL TO TOP PROGRESS
   ======================================== */
.progress-wrap {
    position: fixed;
    right: 40px;
    bottom: 40px;
    height: 60px;
    width: 60px;
    cursor: pointer;
    display: block;
    border-radius: 50%;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.progress-wrap.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.progress-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(29, 185, 165, 0.2);
}

.progress-wrap::after {
    display: none;
}

.progress-circle path {
    fill: none;
    stroke: #1db9a5;
    stroke-width: 4;
    box-sizing: border-box;
    transition: all 0.4s ease;
}

.progress-wrap .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 11px;
    font-weight: 700;
    color: #0b1f1e;
    transition: all 0.3s ease;
}

.progress-wrap .progress-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    color: #1db9a5;
    transition: all 0.3s ease;
}

.progress-wrap:hover .progress-text {
    opacity: 0;
    transform: translate(-50%, -70%);
}

.progress-wrap:hover .progress-arrow {
    opacity: 1;
    transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
    .progress-wrap {
        right: 20px;
        bottom: 20px;
        height: 50px;
        width: 50px;
    }

    .progress-wrap .progress-text {
        font-size: 10px;
    }
}

/* ========================================
   PRELOADER
   ======================================== */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: #0b1f1e;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.preloader-hidden {
    opacity: 0 !important;
    visibility: hidden !important;
}

.loader-circle {
    width: 60px;
    height: 60px;
    border: 3px solid rgba(29, 185, 165, 0.1);
    border-top: 3px solid #1db9a5;
    border-radius: 50%;
    animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* ========================================
   MODERN ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1.2s cubic-bezier(0.2, 0.6, 0.2, 1);
    will-change: transform, opacity;
}

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

/* Split Text Animation */
.split-text {
    display: block;
    overflow: visible;
}

.split-word {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    vertical-align: top;
    line-height: inherit;
    /* Ensure word inherits heading's line height */
}

.split-char {
    display: inline-block;
    transform: translateY(110%);
    transition: transform 1s cubic-bezier(0.2, 0.6, 0.2, 1);
    will-change: transform;
}

.split-text.active .split-char {
    transform: translateY(0);
}

/* Staggered Delay Helpers */
.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.stagger-5 {
    transition-delay: 0.5s;
}