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

        :root {
            --bg-primary: #0a0a0f;
            --bg-secondary: #1a1a2e;
            --bg-card: #16162a;
            --accent: #d4af37;
            --accent-dark: #b8941f;
            --text-primary: #ffffff;
            --text-secondary: #b8b8c8;
            --border: #2a2a3e;
            --shadow: rgba(212, 175, 55, 0.1);
        }

        body.home-light-theme {
            --bg-primary: #f8f9fa;
            --bg-secondary: #ffffff;
            --bg-card: #ffffff;
            --accent: #8b6914;
            --accent-dark: #6f5310;
            --text-primary: #1a1a2e;
            --text-secondary: #4a4a5e;
            --border: #e0e0e8;
            --shadow: rgba(139, 105, 20, 0.1);
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            line-height: 1.6;
            transition: all 0.3s ease;
            overflow-x: hidden;
        }

         /* NAVBAR STYLES */
        .main-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: var(--bg-card);
            border-bottom: 2px solid var(--border);
            z-index: 1000;
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px var(--shadow);
        }

        .main-header .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            font-size: 24px;
            font-weight: 800;
            color: var(--text-primary);
            transition: all 0.3s ease;
        }

        .logo img {
            height: 45px;
            width: auto;
        }

        .logo-text {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: transparent;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .nav-toggle span {
            width: 25px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
            transition: all 0.3s ease;
        }

        .nav-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .nav-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .nav-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .main-nav ul {
            display: flex;
            list-style: none;
            gap: 5px;
            align-items: center;
            margin: 0;
            padding: 0;
        }

        .main-nav > ul > li {
            position: relative;
        }

        .main-nav > ul > li > a {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 12px 18px;
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .main-nav > ul > li > a:hover {
            background: var(--bg-secondary);
            color: var(--accent);
        }

        .main-nav > ul > li > a i {
            font-size: 10px;
            transition: transform 0.3s ease;
        }

        .has-dropdown:hover > a i {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--bg-card);
            border: 2px solid var(--border);
            border-radius: 12px;
            min-width: 250px;
            padding: 8px;
            margin-top: 8px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            box-shadow: 0 10px 40px var(--shadow);
            list-style: none;
        }

        .has-dropdown:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            margin: 0;
        }

        .dropdown-menu li a,
        .dropdown-menu li span {
            display: block;
            padding: 12px 16px;
            color: var(--text-primary);
            text-decoration: none;
            border-radius: 8px;
            font-size: 14px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .dropdown-menu li a:hover {
            background: var(--bg-secondary);
            color: var(--accent);
            transform: translateX(5px);
        }

        .dropdown-menu li span {
            color: var(--text-secondary);
            cursor: default;
        }

        .dropdown-menu li span i {
            margin-right: 8px;
            color: var(--accent);
        }

        .nav-register-btn a {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: var(--bg-primary);
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .nav-register-btn a:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px var(--shadow);
        }

        .theme-toggle {
            position: fixed;
            top: 90px;
            right: 30px;
            z-index: 999;
            background: var(--bg-card);
            border: 2px solid var(--border);
            border-radius: 50px;
            padding: 12px 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 20px var(--shadow);
            transition: all 0.3s ease;
        }

        .theme-toggle:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px var(--shadow);
        }

        .theme-toggle i {
            font-size: 18px;
            color: var(--accent);
        }

        /* Responsive adjustments for Navbar */
        @media (max-width: 1024px) {
            .nav-toggle {
                display: flex;
            }

            .main-nav {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: var(--bg-card);
                border-right: 2px solid var(--border);
                transition: left 0.3s ease;
                overflow-y: auto;
                padding: 20px;
            }

            .main-nav.active {
                left: 0;
            }

            .main-nav ul {
                flex-direction: column;
                gap: 10px;
                width: 100%;
            }

            .main-nav > ul > li {
                width: 100%;
            }

            .main-nav > ul > li > a {
                width: 100%;
                justify-content: space-between;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                margin-top: 8px;
                display: none;
                border: 1px solid var(--border);
            }

            .has-dropdown.active .dropdown-menu {
                display: block;
            }

            .has-dropdown > a {
                cursor: pointer;
            }

            .nav-register-btn {
                width: 100%;
            }

            .nav-register-btn a {
                width: 100%;
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .theme-toggle {
                top: 20px;
                right: 70px;
                padding: 10px 16px;
            }

            .theme-toggle span {
                display: none;
            }

            .main-header .container {
                padding: 15px 20px;
            }

            .logo img {
                height: 35px;
            }
        }

        .home-theme-toggle {
            position: fixed;
            top: 90px;
            right: 30px;
            z-index: 1000;
            background: var(--bg-card);
            border: 2px solid var(--border);
            border-radius: 50px;
            padding: 12px 24px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 4px 20px var(--shadow);
            transition: all 0.3s ease;
        }

        .home-theme-toggle:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 30px var(--shadow);
        }

        .home-theme-toggle i {
            font-size: 18px;
            color: var(--accent);
        }

        /* HERO SECTION */
        .home-hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 90px 20px;
        }

        .home-floating-elements {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .home-float-item {
            position: absolute;
            border: 2px solid var(--border);
            border-radius: 20px;
            opacity: 0.1;
            animation: home-float 20s infinite ease-in-out;
        }

        .home-float-item:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
            background: linear-gradient(135deg, var(--accent) 0%, transparent 100%);
        }

        .home-float-item:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 10%;
            animation-delay: 5s;
            background: linear-gradient(225deg, var(--accent) 0%, transparent 100%);
        }

        .home-float-item:nth-child(3) {
            width: 150px;
            height: 150px;
            bottom: 15%;
            left: 15%;
            animation-delay: 10s;
            background: linear-gradient(315deg, var(--accent) 0%, transparent 100%);
        }

        @keyframes home-float {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg);
            }
            33% {
                transform: translate(30px, -30px) rotate(120deg);
            }
            66% {
                transform: translate(-20px, 20px) rotate(240deg);
            }
        }

        .home-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

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

        .home-hero-content {
            animation: home-slideInLeft 1s ease;
        }

        @keyframes home-slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .home-hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            padding: 10px 20px;
            border-radius: 50px;
            margin-bottom: 30px;
            font-size: 14px;
            color: var(--accent);
            font-weight: 600;
        }

        .home-hero-title {
            font-size: 68px;
            font-weight: 900;
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .home-hero-title .home-highlight {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            position: relative;
            display: inline-block;
        }

        .home-hero-description {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .home-hero-stats-inline {
            display: flex;
            gap: 40px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .home-stat-inline {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .home-stat-icon {
            width: 50px;
            height: 50px;
            background: var(--bg-card);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--accent);
            border: 1px solid var(--border);
        }

        .home-stat-info h4 {
            font-size: 24px;
            font-weight: 800;
            color: var(--accent);
        }

        .home-stat-info p {
            font-size: 12px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .home-cta-buttons {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }

        .home-btn {
            padding: 18px 40px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .home-btn-primary {
            background: var(--accent);
            color: var(--bg-primary);
            box-shadow: 0 10px 30px var(--shadow);
        }

        .home-btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: 0 15px 40px var(--shadow);
        }

        .home-btn-secondary {
            background: transparent;
            color: var(--text-primary);
            border: 2px solid var(--border);
        }

        .home-btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: translateY(-3px);
        }

        /* HERO VISUAL ELEMENT */
        .home-hero-visual {
            position: relative;
            animation: home-slideInRight 1s ease;
        }

        @keyframes home-slideInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .home-visual-container {
            position: relative;
            width: 100%;
            aspect-ratio: 1;
        }

        .home-visual-circle {
            position: absolute;
            border: 2px solid var(--border);
            border-radius: 50%;
            animation: home-rotate 30s linear infinite;
        }

        .home-circle-1 {
            width: 100%;
            height: 100%;
            border-color: var(--accent);
            opacity: 0.3;
        }

        .home-circle-2 {
            width: 80%;
            height: 80%;
            top: 10%;
            left: 10%;
            border-color: var(--accent);
            opacity: 0.2;
            animation-direction: reverse;
        }

        .home-circle-3 {
            width: 60%;
            height: 60%;
            top: 20%;
            left: 20%;
            border-color: var(--accent);
            opacity: 0.1;
        }

        @keyframes home-rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .home-central-icon {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 50px;
            color: var(--bg-primary);
            box-shadow: 0 20px 60px var(--shadow);
            animation: home-pulse 3s ease-in-out infinite;
        }

        @keyframes home-pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.1); }
        }

        .home-orbit-dots {
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--accent);
            border-radius: 50%;
            box-shadow: 0 5px 15px var(--shadow);
        }

        .home-dot-1 {
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            animation: home-orbitDot 5s linear infinite;
        }

        .home-dot-2 {
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            animation: home-orbitDot 5s linear infinite 1.67s;
        }

        .home-dot-3 {
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            animation: home-orbitDot 5s linear infinite 3.34s;
        }

        @keyframes home-orbitDot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.3; transform: scale(0.5); }
        }

        /* Hero Search Container */
.hero-search-wrapper {
    position: absolute;
    top: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 600px;
    z-index: 10;
}

.search-toggle-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.search-tab {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-tab i {
    font-size: 16px;
}

.search-tab:hover {
    border-color: var(--accent);
    color: var(--text-primary);
}

.search-tab.active {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-color: var(--accent);
    color: var(--bg-primary);
}

.search-container {
    background: var(--bg-card);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px var(--shadow);
    backdrop-filter: blur(10px);
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-secondary);
    border: 2px solid var(--border);
    border-radius: 50px;
    padding: 8px 8px 8px 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--shadow);
}

.search-icon {
    color: var(--accent);
    font-size: 18px;
}

.search-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-primary);
    font-size: 15px;
    padding: 8px 0;
}

.search-input::placeholder {
    color: var(--text-secondary);
}

.search-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    color: var(--bg-primary);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.search-btn:hover {
    transform: translateX(3px);
    box-shadow: 0 5px 15px var(--shadow);
}

.search-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.filter-select {
    padding: 10px 15px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--accent);
}

.filter-select option {
    background: var(--bg-card);
    color: var(--text-primary);
}

.filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.filter-btn i:first-child {
    color: var(--accent);
    font-size: 14px;
}

.filter-btn i:last-child {
    font-size: 10px;
    color: var(--text-secondary);
    transition: transform 0.3s ease;
}

.filter-btn:hover {
    background: var(--bg-card);
    border-color: var(--accent);
    transform: translateY(-2px);
}

.filter-btn:hover i:last-child {
    transform: rotate(180deg);
}

.filter-btn.active {
    background: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.filter-btn.active i {
    color: var(--bg-primary);
}

@media (max-width: 1024px) {
    .hero-search-wrapper {
        top: 120px;
        max-width: 90%;
    }

    .search-toggle-tabs {
        flex-wrap: wrap;
        gap: 8px;
    }

    .search-tab {
        padding: 10px 20px;
        font-size: 13px;
    }

    .search-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .search-input-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
        padding: 10px 15px;
    }

    .search-input {
        font-size: 14px;
        width: 100%;
    }

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

@media (max-width: 768px) {
    .hero-search-wrapper {
        top: 100px;
    }

    .search-filters {
        grid-template-columns: 1fr;
    }

    .search-tab,
    .search-btn,
    .filter-btn {
        width: 100%;
        justify-content: center;
    }

    .search-input-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .search-input {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-search-wrapper {
        top: 80px;
    }

    .search-tab {
        font-size: 12px;
        padding: 8px 16px;
    }

    .search-btn {
        font-size: 13px;
        padding: 10px 16px;
    }

    .filter-select {
        font-size: 12px;
    }

    .filter-btn {
        font-size: 12px;
        padding: 10px 16px;
    }

    .search-toggle-tabs {
        gap: 6px;
    }
}


/* Responsive */
@media (max-width: 768px) {
    .hero-search-wrapper {
        position: static;
        transform: none;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .search-toggle-tabs {
        flex-wrap: wrap;
    }

    .search-tab span {
        display: none;
    }

    .search-filters {
        grid-template-columns: 1fr;
    }

    .search-btn span {
        display: none;
    }
}

        /* JOURNEY SECTION */
        .home-journey-section {
            padding: 120px 20px;
            background: var(--bg-secondary);
            position: relative;
        }

        .home-section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .home-section-tag {
            color: var(--accent);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .home-section-title {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .home-section-description {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        .home-journey-timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }

        .home-timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(to bottom, var(--accent), transparent);
            transform: translateX(-50%);
        }

        .home-journey-step {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            gap: 40px;
            margin-bottom: 60px;
            align-items: center;
        }

        .home-step-content {
            background: var(--bg-card);
            padding: 40px;
            border-radius: 24px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
        }

        .home-step-content:hover {
            transform: translateX(-10px);
            box-shadow: 0 20px 60px var(--shadow);
            border-color: var(--accent);
        }

        .home-journey-step:nth-child(even) .home-step-content:hover {
            transform: translateX(10px);
        }

        .home-step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 800;
            color: var(--bg-primary);
            box-shadow: 0 10px 30px var(--shadow);
            position: relative;
            z-index: 2;
        }

        .home-step-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--accent);
        }

        .home-step-description {
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .home-journey-step:nth-child(odd) .home-step-content:nth-child(3) {
            grid-column: 3;
        }

        .home-journey-step:nth-child(even) .home-step-content:nth-child(1) {
            grid-column: 1;
        }

        /* INNOVATIVE CTA SECTION */
        .home-cta-section {
            padding: 120px 20px;
            background: var(--bg-primary);
            position: relative;
            overflow: hidden;
        }

        .home-cta-background {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
        }

        .home-cta-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .home-cta-content {
            padding: 60px;
            background: var(--bg-card);
            border-radius: 30px;
            border: 2px solid var(--border);
            position: relative;
            overflow: hidden;
        }

        .home-cta-content::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            opacity: 0.05;
            animation: home-rotateGradient 15s linear infinite;
        }

        @keyframes home-rotateGradient {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .home-cta-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
            line-height: 1.2;
        }

        .home-cta-text {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            position: relative;
            line-height: 1.8;
        }

        .home-cta-features {
            display: grid;
            gap: 20px;
            margin-bottom: 40px;
            position: relative;
        }

        .home-cta-feature {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: var(--bg-secondary);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .home-cta-feature:hover {
            transform: translateX(10px);
            background: var(--bg-primary);
        }

        .home-feature-icon {
            width: 40px;
            height: 40px;
            background: var(--accent);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--bg-primary);
            font-size: 18px;
        }

        .home-cta-form {
            background: var(--bg-secondary);
            padding: 50px;
            border-radius: 30px;
            border: 2px solid var(--border);
            box-shadow: 0 30px 80px var(--shadow);
        }

        .home-form-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .home-form-header h3 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .home-form-header p {
            color: var(--text-secondary);
        }

        .home-form-group {
            margin-bottom: 25px;
        }

        .home-form-group label {
            display: block;
            margin-bottom: 10px;
            font-weight: 600;
            color: var(--text-secondary);
            font-size: 14px;
        }

        .home-form-group input,
        .home-form-group select,
        .home-form-group textarea {
            width: 100%;
            padding: 16px 20px;
            background: var(--bg-card);
            border: 2px solid var(--border);
            border-radius: 12px;
            color: var(--text-primary);
            font-size: 16px;
            transition: all 0.3s ease;
            font-family: inherit;
        }

        .home-form-group input:focus,
        .home-form-group select:focus,
        .home-form-group textarea:focus {
            outline: none;
            border-color: var(--accent);
            box-shadow: 0 0 0 3px var(--shadow);
        }

        .home-form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .home-form-submit {
            width: 100%;
            padding: 18px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            border: none;
            border-radius: 12px;
            color: var(--bg-primary);
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .home-form-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px var(--shadow);
        }

        @media (max-width: 1024px) {
            .home-hero-grid,
            .home-cta-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .home-hero-visual {
                order: -1;
            }

            .home-timeline-line {
                left: 40px;
            }

            .home-journey-step {
                grid-template-columns: auto 1fr;
                gap: 30px;
            }

            .home-journey-step:nth-child(odd) .home-step-content:nth-child(3),
            .home-journey-step:nth-child(even) .home-step-content:nth-child(1) {
                grid-column: 2;
            }
        }

        @media (max-width: 768px) {
            .home-hero-title {
                font-size: 42px;
            }

            .home-section-title {
                font-size: 32px;
            }

            .home-cta-title {
                font-size: 32px;
            }

            .home-cta-content,
            .home-cta-form {
                padding: 30px;
            }

            .home-theme-toggle {
                top: 20px;
                right: 20px;
            }

            .home-hero-stats-inline {
                gap: 20px;
            }
        }

        /* Footer */
       /* == CREATIVE FOOTER == */
.creative-footer {
    background: var(--bg-secondary);
    position: relative;
    margin-top: 100px;
    padding: 80px 20px 40px;
}

.footer-waves {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 120px;
    overflow: hidden;
    line-height: 0;
}

.footer-waves svg {
    width: 100%;
    height: 120px;
    display: block;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr;
    gap: 50px;
    margin-bottom: 60px;
}

/* Brand Section */
.footer-brand {
    padding-right: 20px;
}

.brand-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: var(--bg-primary);
    margin-bottom: 20px;
    box-shadow: 0 10px 30px var(--shadow);
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--accent);
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 25px;
}

.brand-stats {
    display: flex;
    gap: 25px;
}

.mini-stat {
    display: flex;
    flex-direction: column;
}

.mini-stat strong {
    font-size: 24px;
    color: var(--accent);
    font-weight: 800;
}

.mini-stat span {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Links Section */
.footer-links-section h4,
.footer-contact-cards h4,
.footer-locations h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-links-section h4 i,
.footer-contact-cards h4 i,
.footer-locations h4 i {
    color: var(--accent);
    font-size: 18px;
}

.link-items {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.link-items a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: transparent;
}

.link-items a:hover {
    background: var(--bg-card);
    color: var(--accent);
    padding-left: 20px;
}

.link-items a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.link-items a:hover i {
    transform: translateX(5px);
}

/* Contact Cards */
.footer-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    gap: 15px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: var(--accent);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-icon.inquiry {
    background: rgba(212, 175, 55, 0.1);
    color: var(--accent);
}

.contact-icon.support {
    background: rgba(52, 152, 219, 0.1);
    color: #3498db;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.contact-info a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--accent);
}

/* Locations */
.footer-locations {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.location-card:hover {
    border-color: var(--accent);
    transform: translateX(5px);
}

.location-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
}

.location-badge.branch {
    background: #3498db;
}

.location-card h5 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.location-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer Bottom */
.footer-bottom-creative {
    padding-top: 40px;
    border-top: 2px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.copyright {
    color: var(--text-secondary);
    font-size: 14px;
}

.copyright strong {
    color: var(--accent);
}

.footer-links-inline {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
}

.footer-links-inline a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links-inline a:hover {
    color: var(--accent);
}

.footer-links-inline span {
    color: var(--border);
}

.footer-social-creative {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social-creative span {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.social-icons-creative {
    display: flex;
    gap: 12px;
}

.social-icons-creative a {
    width: 45px;
    height: 45px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icons-creative a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icons-creative a:hover::before {
    opacity: 1;
}

.social-icons-creative a:hover {
    transform: translateY(-5px) scale(1.1);
}

.social-facebook {
    background: #1877f2;
    color: white;
}

.social-twitter {
    background: #1da1f2;
    color: white;
}

.social-linkedin {
    background: #962fbf;
    color: white;
}

.social-whatsapp {
    background: #25d366;
    color: white;
}

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

@media (max-width: 768px) {
    .creative-footer {
        margin-top: 60px;
        padding: 60px 20px 30px;
    }
    
    .footer-waves {
        top: -60px;
        height: 80px;
    }
    
    .footer-waves svg {
        height: 80px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom-creative {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-left {
        align-items: center;
    }
    
    .footer-social-creative {
        flex-direction: column;
        gap: 15px;
    }
}






























                /* UNIQUE HERO SECTION */
        .hero-section {
            min-height: 80vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            padding: 100px 20px 60px;
        }

        .hero-grid-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(var(--border) 1px, transparent 1px),
                linear-gradient(90deg, var(--border) 1px, transparent 1px);
            background-size: 50px 50px;
            opacity: 0.1;
            animation: gridMove 20s linear infinite;
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        .hero-spotlight {
            position: absolute;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
            opacity: 0.15;
            border-radius: 50%;
            filter: blur(80px);
            animation: spotlightMove 15s ease-in-out infinite;
        }

        .spotlight-1 {
            top: -200px;
            left: -200px;
        }

        .spotlight-2 {
            bottom: -200px;
            right: -200px;
            animation-delay: 7.5s;
        }

        @keyframes spotlightMove {
            0%, 100% { transform: translate(0, 0) scale(1); }
            50% { transform: translate(100px, 100px) scale(1.2); }
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 1;
        }

        .hero-content-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 80px;
            align-items: center;
        }

        .hero-text {
            animation: fadeInUp 1s ease;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 30px;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .breadcrumb a {
            color: var(--accent);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .breadcrumb a:hover {
            color: var(--accent-dark);
        }

        .hero-title {
            font-size: 64px;
            font-weight: 900;
            margin-bottom: 25px;
            line-height: 1.1;
        }

        .hero-title .gradient-text {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-description {
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            line-height: 1.8;
        }

        .hero-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .metric-box {
            background: var(--bg-card);
            padding: 25px;
            border-radius: 16px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

        .metric-box:hover {
            transform: translateY(-5px);
            border-color: var(--accent);
            box-shadow: 0 10px 30px var(--shadow);
        }

        .metric-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent);
            margin-bottom: 5px;
        }

        .metric-label {
            font-size: 13px;
            color: var(--text-secondary);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-visual {
            position: relative;
            height: 400px;
        }

        .service-bubbles {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .bubble {
            position: absolute;
            background: var(--bg-card);
            border: 2px solid var(--border);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 10px;
            padding: 20px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .bubble:hover {
            transform: scale(1.1);
            border-color: var(--accent);
            box-shadow: 0 15px 40px var(--shadow);
            z-index: 10;
        }

        .bubble-large {
            width: 180px;
            height: 180px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            animation: pulse 3s ease-in-out infinite;
        }

        .bubble-large i {
            font-size: 50px;
            color: var(--bg-primary);
        }

        .bubble-large span {
            color: var(--bg-primary);
            font-weight: 700;
            text-align: center;
        }

        .bubble-medium {
            width: 120px;
            height: 120px;
        }

        .bubble-medium i {
            font-size: 32px;
            color: var(--accent);
        }

        .bubble-medium span {
            font-size: 12px;
            text-align: center;
            font-weight: 600;
        }

        .bubble-1 { top: 0; left: 0; animation: float1 6s ease-in-out infinite; }
        .bubble-2 { top: 0; right: 0; animation: float2 7s ease-in-out infinite; }
        .bubble-3 { bottom: 0; left: 0; animation: float3 8s ease-in-out infinite; }
        .bubble-4 { bottom: 0; right: 0; animation: float4 9s ease-in-out infinite; }

        @keyframes float1 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(10px, 10px); }
        }

        @keyframes float2 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-10px, 10px); }
        }

        @keyframes float3 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(10px, -10px); }
        }

        @keyframes float4 {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(-10px, -10px); }
        }

        @keyframes pulse {
            0%, 100% { transform: translate(-50%, -50%) scale(1); }
            50% { transform: translate(-50%, -50%) scale(1.05); }
        }

        /* SERVICES SHOWCASE */
        /* .services-showcase {
            padding: 100px 20px;
            background: var(--bg-secondary);
        }

        .section-intro {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-tag {
            display: inline-block;
            background: var(--bg-card);
            color: var(--accent);
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
            border: 1px solid var(--border);
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 700px;
            margin: 0 auto;
        }

        .services-layout {
            display: grid;
            gap: 40px;
        }

        .service-block {
            display: grid;
            grid-template-columns: 400px 1fr;
            gap: 50px;
            background: var(--bg-card);
            border-radius: 30px;
            padding: 50px;
            border: 2px solid var(--border);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: linear-gradient(to bottom, var(--accent), transparent);
            transform: scaleY(0);
            transition: transform 0.4s ease;
        }

        .service-block:hover::before {
            transform: scaleY(1);
        }

        .service-block:hover {
            transform: translateX(10px);
            border-color: var(--accent);
            box-shadow: 0 20px 60px var(--shadow);
        }

        .service-block:nth-child(even) {
            grid-template-columns: 1fr 400px;
        }

        .service-block:nth-child(even) .service-visual {
            order: 2;
        }

        .service-block:nth-child(even):hover {
            transform: translateX(-10px);
        }

        .service-visual {
            position: relative;
            background: var(--bg-secondary);
            border-radius: 20px;
            padding: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border);
        }

        .service-icon-large {
            width: 150px;
            height: 150px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            border-radius: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 70px;
            color: var(--bg-primary);
            box-shadow: 0 20px 50px var(--shadow);
            position: relative;
        }

        .icon-badge {
            position: absolute;
            top: -10px;
            right: -10px;
            width: 50px;
            height: 50px;
            background: var(--bg-primary);
            border: 3px solid var(--accent);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--accent);
        }

        .service-details {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .service-number {
            font-size: 14px;
            color: var(--accent);
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .service-name {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .service-description {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .service-features {
            display: grid;
            gap: 15px;
            margin-bottom: 30px;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .feature-icon {
            width: 24px;
            height: 24px;
            background: var(--accent);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: var(--bg-primary);
            flex-shrink: 0;
            margin-top: 2px;
        }

        .service-cta {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 14px 30px;
            background: transparent;
            border: 2px solid var(--border);
            color: var(--text-primary);
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            width: fit-content;
        }

        .service-cta:hover {
            border-color: var(--accent);
            color: var(--accent);
            transform: translateX(5px);
        } */

      

/* General Link Style */
a {
    text-decoration: none;
    color: inherit;
}

/* Services Showcase Section */
.services-showcase {
    padding: 100px 20px;
    background: var(--bg-secondary);
    /* The container itself needs to be scrollable if you want the sticky effect */
    /* If the body is your main scroll container, you might not need overflow-y here. */
    /* Example: min-height ensures enough scroll for sticky elements */
    min-height: 150vh; /* Adjust based on content */
    position: relative; /* For stacking context or contained positioning */
    display: flex; /* To center the layout horizontally */
    justify-content: center;
    align-items: flex-start; /* Align content to the top */
}

.section-intro {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    display: inline-block;
    background: var(--bg-card);
    color: var(--accent);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border: 1px solid var(--border);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Services Layout Container */
.services-layout {
    display: grid;
    /* We'll use CSS custom properties to control the sticky offset and z-index */
    /* This makes it easier to manage values for each card */
    --sticky-offset: 40px; /* Base offset from the top for sticky cards */
    --card-overlap: -120px; /* Negative margin for overlap */

    max-width: 1200px; /* Limit width of the layout */
    width: 100%;
    margin-top: 100px; /* Space above the first sticky card */
}

.service-block {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    background: var(--bg-card);
    border-radius: 30px;
    padding: 50px;
    border: 2px solid var(--border);
    transition: all 0.4s ease;
    position: sticky; /* Each service block is sticky */
    top: var(--sticky-offset); /* Sticky position based on custom property */
    margin-bottom: var(--card-overlap); /* Overlap based on custom property */
    z-index: 10; /* Base z-index, will be overridden for each card */
    box-shadow: 0 10px 30px var(--shadow); /* So they stand out */
}

/* Adjust z-index for each card to create the stacking effect */
/* The last card should have the highest z-index if you want newer cards to appear on top */
/* Or the first card highest if you want newer cards to appear underneath */
/* Here, we make newer cards appear on top as they become sticky */
.service-block:nth-child(1) { z-index: 10; top: var(--sticky-offset); }
.service-block:nth-child(2) { z-index: 11; top: calc(var(--sticky-offset) + 20px); }
.service-block:nth-child(3) { z-index: 12; top: calc(var(--sticky-offset) + 40px); }
.service-block:nth-child(4) { z-index: 13; top: calc(var(--sticky-offset) + 60px); }
.service-block:nth-child(5) { z-index: 14; top: calc(var(--sticky-offset) + 80px); }
/* Add more as needed for the number of service blocks you have */


/* Pseudo-element for accent border */
.service-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent), transparent);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

.service-block:hover::before {
    transform: scaleY(1);
}

.service-block:hover {
    transform: translateX(10px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px var(--shadow);
}

.service-block:nth-child(even) {
    grid-template-columns: 1fr 400px;
}

.service-block:nth-child(even) .service-visual {
    order: 2;
}

.service-block:nth-child(even):hover {
    transform: translateX(-10px);
}

.service-visual {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.service-icon-large {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 70px;
    color: var(--bg-primary);
    box-shadow: 0 20px 50px var(--shadow);
    position: relative;
}

.icon-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 50px;
    height: 50px;
    background: var(--bg-primary);
    border: 3px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
}

.service-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-number {
    font-size: 14px;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-name {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.service-description {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--accent);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--bg-primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    border: 2px solid var(--border);
    color: var(--text-primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    width: fit-content;
}

.service-cta:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateX(5px);
}

/* ======================================= */
/* RESPONSIVE DESIGN - Media Queries       */
/* ======================================= */

/* Large screens (e.g., desktops larger than 1200px) */
@media (min-width: 1200px) {
    /* No specific changes needed here as the base is designed for larger screens */
}

/* Medium screens (e.g., tablets, small desktops) */
@media (max-width: 992px) {
    .section-title {
        font-size: 40px;
    }

    .section-subtitle {
        font-size: 17px;
    }

    .service-block {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
        padding: 40px;
        gap: 30px;
        --card-overlap: -80px; /* Adjust overlap for smaller cards */
    }

    .service-block:nth-child(even) {
        grid-template-columns: 1fr; /* Keep stacked for even cards too */
    }

    .service-block:nth-child(even) .service-visual {
        order: unset; /* Reset order for stacking */
    }

    .service-visual {
        padding: 30px;
    }

    .service-icon-large {
        width: 120px;
        height: 120px;
        font-size: 60px;
    }

    .icon-badge {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .service-name {
        font-size: 30px;
    }

    .service-description {
        font-size: 16px;
    }

    .services-layout {
        --sticky-offset: 20px; /* Adjust sticky offset for smaller screens */
    }

    /* Adjust specific sticky tops for responsive */
    .service-block:nth-child(1) { top: var(--sticky-offset); }
    .service-block:nth-child(2) { top: calc(var(--sticky-offset) + 15px); }
    .service-block:nth-child(3) { top: calc(var(--sticky-offset) + 30px); }
    .service-block:nth-child(4) { top: calc(var(--sticky-offset) + 45px); }
    .service-block:nth-child(5) { top: calc(var(--sticky-offset) + 60px); }
}

/* Small screens (e.g., mobile phones) */
@media (max-width: 768px) {
    .services-showcase {
        padding: 60px 15px;
    }

    .section-intro {
        margin-bottom: 50px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .service-block {
        padding: 30px;
        margin-bottom: -60px; /* Further adjust overlap for small screens */
    }

    .service-visual {
        padding: 20px;
    }

    .service-icon-large {
        width: 100px;
        height: 100px;
        font-size: 50px;
    }

    .icon-badge {
        width: 35px;
        height: 35px;
        font-size: 14px;
        top: -8px;
        right: -8px;
    }

    .service-name {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .service-description {
        font-size: 15px;
        margin-bottom: 20px;
    }

    .service-features {
        gap: 10px;
        margin-bottom: 20px;
    }

    .service-cta {
        padding: 12px 25px;
        font-size: 14px;
    }

    .services-layout {
        margin-top: 50px; /* Reduce top margin for services layout */
        --sticky-offset: 10px; /* Minimal sticky offset */
    }

    /* Adjust specific sticky tops for mobile */
    .service-block:nth-child(1) { top: var(--sticky-offset); }
    .service-block:nth-child(2) { top: calc(var(--sticky-offset) + 10px); }
    .service-block:nth-child(3) { top: calc(var(--sticky-offset) + 20px); }
    .service-block:nth-child(4) { top: calc(var(--sticky-offset) + 30px); }
    .service-block:nth-child(5) { top: calc(var(--sticky-offset) + 40px); }
}

/* Extra small screens (e.g., very small phones) */
@media (max-width: 480px) {
    .section-title {
        font-size: 28px;
    }
    .service-block {
        padding: 20px;
        margin-bottom: -40px;
    }
    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 40px;
    }
    .icon-badge {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    .service-name {
        font-size: 20px;
    }
    .service-details {
        text-align: center; /* Center text on very small screens if visual is gone */
    }
    .service-cta {
        margin: 0 auto; /* Center CTA if text is centered */
    }
}

        /* PROCESS SECTION */
        .process-section {
            padding: 100px 20px;
            background: var(--bg-primary);
            position: relative;
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 60px;
        }

        .process-card {
            background: var(--bg-card);
            padding: 40px 30px;
            border-radius: 24px;
            border: 2px solid var(--border);
            text-align: center;
            position: relative;
            transition: all 0.3s ease;
        }

        .process-card::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -30px;
            width: 30px;
            height: 2px;
            background: var(--border);
            transform: translateY(-50%);
        }

        .process-card:last-child::after {
            display: none;
        }

        .process-card:hover {
            transform: translateY(-10px);
            border-color: var(--accent);
            box-shadow: 0 20px 50px var(--shadow);
        }

        .process-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 24px;
            font-weight: 800;
            color: var(--bg-primary);
        }

        .process-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .process-description {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* INDUSTRIES SECTION */
        .industries-section {
            padding: 100px 20px;
            background: var(--bg-secondary);
        }

        .industries-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
            margin-top: 60px;
        }

        .industry-card {
            background: var(--bg-card);
            padding: 35px;
            border-radius: 20px;
            border: 2px solid var(--border);
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .industry-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--accent) 0%, transparent 100%);
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .industry-card:hover::before {
            opacity: 0.05;
        }

        .industry-card:hover {
            transform: scale(1.05);
            border-color: var(--accent);
            box-shadow: 0 15px 40px var(--shadow);
        }

        .industry-icon {
            width: 70px;
            height: 70px;
            background: var(--bg-secondary);
            border: 2px solid var(--border);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            color: var(--accent);
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .industry-name {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }

        .industry-count {
            font-size: 14px;
            color: var(--text-secondary);
            position: relative;
            z-index: 1;
        }

        /* CTA BANNER */
        .cta-banner {
            padding: 100px 20px;
            background: var(--bg-primary);
        }

        .cta-content {
            background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
            padding: 80px 60px;
            border-radius: 30px;
            border: 2px solid var(--border);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-content::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
            opacity: 0.03;
            animation: rotateBackground 20s linear infinite;
        }

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

        .cta-banner-title {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 20px;
            position: relative;
        }

        .cta-banner-text {
            font-size: 18px;
            color: var(--text-secondary);
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            position: relative;
        }

        .btn {
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
            color: var(--bg-primary);
            box-shadow: 0 10px 30px var(--shadow);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 45px var(--shadow);
        }

        @media (max-width: 1024px) {
            .hero-content-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .service-block,
            .service-block:nth-child(even) {
                grid-template-columns: 1fr;
            }

            .service-block:nth-child(even) .service-visual {
                order: 1;
            }

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

            .process-card::after {
                display: none;
            }

            .theme-toggle,
    .home-theme-toggle {
        display: none !important;
    }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 42px;
            }

            .section-title {
                font-size: 32px;
            }

            .service-name {
                font-size: 28px;
            }

            .process-grid {
                grid-template-columns: 1fr;
            }

            .hero-metrics {
                grid-template-columns: 1fr;
            }

            .cta-banner-title {
                font-size: 32px;
            }

            .service-block {
                padding: 30px;
            }
        }

         































       /* Inquiry Form */
.form-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.form-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.form-modal {
  background-color: var(--bg-card);
  padding: 10px 20px;
  border-radius: 10px;
  position: relative;
  width: 90%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
   color: var(--text-primary); 
}

.form-modal-overlay.active .form-modal {
  transform: translateY(0);
}

.close-modal-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.8em;
  color: var(--text-secondary);
  cursor: pointer;
  transition: color 0.3s ease;
}

.close-modal-btn:hover {
  color: var(--accent);;
}

.modal-header {
  text-align: center;
  margin-bottom: 30px;
}

.modal-header h2 {
  font-size: 2.2em;
  color: var(--accent);;
  margin-bottom: 8px;
}

.modal-header p {
  color: var(--text-secondary); ;
  font-size: 1em;
}

.inquiry-form .form-group {
  margin-bottom: 20px;
}

.inquiry-form label {
  display: block;
  font-size: 1em;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-weight: 700;
}

.inquiry-form input[type="text"],
.inquiry-form input[type="email"],
.inquiry-form input[type="tel"] {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border); 
  border-radius: 5px;
  background-color: var(--bg-secondary); ;
  color: var(--text-primary); ;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.inquiry-form input[type="text"]:focus,
.inquiry-form input[type="email"]:focus,
.inquiry-form input[type="tel"]:focus {
  border-color:  var(--accent);;
  outline: none;
  box-shadow: 0 0 0 2px  var(--shadow); ;
}

.inquiry-form .submit-btn {
  width: 100%;
  padding: 15px;
  font-size: 1.1em;
  margin-top: 20px;
  background-color:var(--accent);
  color:var(--bg-card);
  text-align: center;
}



/* Popup */
/* .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: none; 
  justify-content: center;
  align-items: center;
  z-index: 9999;
} */

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.6);
  display: flex; /* Keep this to center content, but use opacity/visibility for toggle */
  justify-content: center;
  align-items: center;
  z-index: 9999;
  /* Add these for smooth transition */
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none; /* Prevents interaction when hidden */
}

/* NEW RULE FOR SHOWING THE POPUP */
.popup-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto; /* Allows interaction when shown */
}

.popup-overlay h2 {
  color: var(--accent); ;
  margin-bottom: 15px;
}

.popup-overlay label {
  text-align: left;
  font-weight: 600;
}

.popup-content {
  background-color:var(--bg-card);
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

.popup-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

.popup-content form input[type="text"],
.popup-content form input[type="tel"] { /* Added tel as you have it in JS */
    width: 100%;
    margin: 10px 0;
    padding: 10px;
    font-size: 1em;
    border: 1px solid var(--border); /* Added */
    border-radius: 5px; /* Added */
    background-color: var(--text-primary); /* Added */
    color: var(--bg-primary); /* Added */
}

.popup-content form button {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%); /* Changed to gradient */
  color: var(--bg-primary); /* Changed */
  border: none;
  cursor: pointer;
  padding: 15px; /* Added for consistency */
  font-weight: 700; /* Added */
  border-radius: 5px; /* Added */
  align-items: center;
}
