﻿
        /* CSS Root Variables - Teal & Gold Palette */
        :root {
            --body: #FFFFFF;
            --black: #000000;
            --white: #FFFFFF;
            --theme: #C5A059; /* Metallic Gold Accent */
            --theme-hover: #A8833E;
            --theme-glow: rgba(197, 160, 89, 0.3);
            --header: #046a58; /* Deep Teal Primary */
            --header-dark: #023a30; /* Extra Dark Teal */
            --text: #4a5568;
            --border: #e2e8f0;
            --bg: #f4f8f7;
            --heading-color: #06312a;
            --paragraph-color: #556065;
            --gradient-primary: linear-gradient(135deg, #046a58 0%, #023d33 100%);
            --gradient-gold: linear-gradient(135deg, #d4af37 0%, #aa820a 100%);
            --glass-bg: rgba(255, 255, 255, 0.9);
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html, body {
            font-family: 'Inter', sans-serif;
            background-color: var(--body);
            color: var(--text);
            font-size: 16px;
            line-height: 1.6;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, h5, h6 {
            color: var(--heading-color);
            font-weight: 700;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: all 0.3s ease;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .d-flex {
            display: flex;
        }

        .justify-content-between {
            justify-content: space-between;
        }

        .align-items-center {
            align-items: center;
        }

        .text-center {
            text-align: center;
        }

        .section-padding {
            padding: 90px 0;
            position: relative;
        }

        .theme-btn {
            background: var(--gradient-gold);
            color: #06312a;
            padding: 14px 28px;
            border-radius: 6px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            border: none;
            cursor: pointer;
            font-weight: 700;
            font-size: 15px;
            box-shadow: 0 8px 20px var(--theme-glow);
            transition: all 0.3s ease;
        }

            .theme-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
                color: #000000;
            }

        .theme-btn-outline {
            background: transparent;
            color: var(--heading-color);
            border: 2px solid var(--header);
            padding: 12px 24px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

            .theme-btn-outline:hover {
                background: var(--header);
                color: var(--white);
            }

        /* Top Bar Styling */
        .header-top-section {
            background-color: var(--header-dark);
            color: var(--white);
            padding: 12px 0;
            font-size: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header-top-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .contact-list, .header-menu, .social-icon {
            list-style: none;
            display: flex;
            gap: 20px;
            align-items: center;
        }

            .contact-list li i {
                color: var(--theme);
                margin-right: 8px;
            }

            .social-icon a:hover {
                color: var(--theme);
            }

        /* Main Navigation Header & Sticky Functionality */
        header#masthead {
            position: sticky;
            top: 0;
            z-index: 1000;
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(4, 106, 88, 0.08);
        }

        .header-main {
            padding: 15px 0;
            position: relative;
        }

        .logo h2 {
            font-size: 26px;
            font-weight: 800;
            letter-spacing: -0.5px;
            color: var(--header);
        }

        .logo span {
            color: var(--theme);
        }

        .main-menu ul {
            list-style: none;
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .main-menu li {
            position: relative;
        }

            .main-menu li a {
                font-weight: 600;
                color: var(--heading-color);
                padding: 20px 0;
                display: inline-block;
                font-size: 15px;
            }

                .main-menu li a:hover {
                    color: var(--header);
                }

        .sub-menu {
            display: none !important;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: var(--header-dark);
            padding: 15px 0;
            min-width: 200px;
            border-radius: 0 0 6px 6px;
            z-index: 999;
            flex-direction: column;
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

            .sub-menu li a {
                color: var(--white) !important;
                font-size: 14px;
                padding: 8px 20px !important;
            }

                .sub-menu li a:hover {
                    background-color: var(--header);
                    color: var(--theme) !important;
                }

        .main-menu li:hover .sub-menu {
            display: flex !important;
        }

        .menu-toggle {
            display: none;
            font-size: 24px;
            color: var(--heading-color);
            cursor: pointer;
        }

        /* University Logo Infinite Marquee Ticker */
        .marquee-container {
            overflow: hidden;
            background: var(--header-dark);
            color: #fff;
            padding: 18px 0;
            white-space: nowrap;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .marquee-track {
            display: inline-block;
            animation: scrollMarquee 25s linear infinite;
        }

            .marquee-track span {
                font-size: 15px;
                font-weight: 600;
                margin: 0 35px;
                opacity: 0.9;
                letter-spacing: 0.5px;
            }

                .marquee-track span i {
                    color: var(--theme);
                    margin-right: 8px;
                }

        @keyframes scrollMarquee {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Hero / Swiper Slider Layout with Floating Visuals */
        .hero-slider-container {
            width: 100%;
            position: relative;
            background-color: var(--bg);
        }

        .hero-slide-item {
            padding: 140px 0 160px;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            position: relative;
        }

            .hero-slide-item::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                background: linear-gradient(90deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.2) 100%);
                z-index: 1;
            }

        .hero-grid {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-content h6 {
            color: var(--header);
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
            background: rgba(4, 106, 88, 0.1);
            display: inline-block;
            padding: 6px 14px;
            border-radius: 30px;
            font-weight: 700;
        }

        .hero-content h1 {
            font-size: 56px;
            line-height: 1.15;
            margin-bottom: 20px;
            color: var(--heading-color);
        }

        .hero-content p {
            font-size: 18px;
            margin-bottom: 35px;
            color: var(--paragraph-color);
        }

        .hero-graphic-card {
            position: relative;
            text-align: right;
        }

            .hero-graphic-card img {
                width: 100%;
                max-width: 440px;
                border-radius: 16px;
                box-shadow: 0 20px 40px rgba(4,106,88,0.2);
                border: 4px solid var(--theme);
            }

        .floating-badge {
            position: absolute;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            padding: 15px 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
            border: 1px solid rgba(197, 160, 89, 0.4);
            display: flex;
            align-items: center;
            gap: 12px;
            text-align: left;
            z-index: 3;
            animation: floatAnim 4s ease-in-out infinite;
        }

        .badge-1 {
            top: -20px;
            left: -20px;
        }

        .badge-2 {
            bottom: -20px;
            right: 20px;
            animation-delay: 2s;
        }

        .floating-badge i {
            font-size: 26px;
            color: var(--header);
        }

        .floating-badge h5 {
            font-size: 16px;
            margin: 0;
            color: var(--heading-color);
        }

        .floating-badge p {
            font-size: 12px;
            margin: 0;
            color: var(--text);
        }

        @keyframes floatAnim {
            0%, 100% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-10px);
            }
        }

        /* Statistics Counter Section */
        .stats-section {
            background: var(--gradient-primary);
            color: var(--white);
            padding: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            text-align: center;
            position: relative;
            z-index: 2;
        }

        .stat-item h3 {
            color: var(--theme);
            font-size: 46px;
            margin-bottom: 5px;
            background: linear-gradient(180deg, #f3e5ab 0%, #c5a059 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .stat-item p {
            color: #e0f2fe;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* About Section Graphics */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .about-image-wrapper {
            position: relative;
        }

            .about-image-wrapper img.main-img {
                width: 85%;
                border-radius: 12px;
                box-shadow: 0 15px 35px rgba(0,0,0,0.1);
            }

            .about-image-wrapper img.overlay-img {
                position: absolute;
                bottom: -30px;
                right: 0;
                width: 55%;
                border-radius: 12px;
                border: 6px solid #ffffff;
                box-shadow: 0 20px 40px rgba(0,0,0,0.15);
            }

        .experience-badge {
            position: absolute;
            top: 20px;
            left: 0;
            background: var(--gradient-gold);
            color: #06312a;
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 10px 25px var(--theme-glow);
        }

            .experience-badge h4 {
                font-size: 32px;
                color: #06312a;
                margin: 0;
                line-height: 1;
            }

            .experience-badge p {
                font-size: 12px;
                margin: 0;
                text-transform: uppercase;
                letter-spacing: 1px;
                font-weight: 700;
            }

        .about-list {
            list-style: none;
            margin: 25px 0;
        }

            .about-list li {
                margin-bottom: 12px;
                font-weight: 600;
                color: var(--heading-color);
                display: flex;
                align-items: center;
                font-size: 16px;
            }

                .about-list li i {
                    color: var(--header);
                    font-size: 18px;
                    margin-right: 12px;
                    background: rgba(4, 106, 88, 0.1);
                    padding: 6px;
                    border-radius: 50%;
                }

        /* Directors & Team Section Styling */
        .directors-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-top: 40px;
        }

        .director-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 35px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            position: relative;
            transition: all 0.3s ease;
        }

            .director-card:hover {
                transform: translateY(-5px);
                border-color: var(--theme);
                box-shadow: 0 15px 35px rgba(4, 106, 88, 0.1);
            }

        .director-profile {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .director-img {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--theme);
            box-shadow: 0 6px 15px var(--theme-glow);
        }

        .director-details h3 {
            font-size: 20px;
            margin-bottom: 4px;
        }

        .director-details span {
            color: var(--header);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .director-message {
            position: relative;
            background: #f4f8f7;
            padding: 20px;
            border-radius: 10px;
            border-left: 4px solid var(--header);
            font-style: italic;
            color: var(--paragraph-color);
            font-size: 14px;
            line-height: 1.7;
        }

            .director-message i.fa-quote-left {
                color: var(--theme);
                font-size: 18px;
                margin-right: 8px;
                opacity: 0.8;
            }

        .director-social {
            display: flex;
            gap: 12px;
            margin-top: 20px;
        }

            .director-social a {
                width: 36px;
                height: 36px;
                border-radius: 50%;
                background: #eef4f3;
                color: var(--heading-color);
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 14px;
                transition: all 0.3s;
            }

                .director-social a:hover {
                    background: var(--header);
                    color: var(--white);
                }

        /* Services Cards with Image Headers */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 50px;
        }

        .service-card-items {
            background: var(--white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
            border: 1px solid var(--border);
            transition: all 0.3s ease;
        }

            .service-card-items:hover {
                transform: translateY(-8px);
                box-shadow: 0 15px 35px rgba(4, 106, 88, 0.12);
                border-color: var(--header);
            }

        .service-thumb {
            height: 180px;
            width: 100%;
            overflow: hidden;
            position: relative;
        }

            .service-thumb img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform 0.5s ease;
            }

        .service-card-items:hover .service-thumb img {
            transform: scale(1.1);
        }

        .service-content {
            padding: 25px 20px;
        }

            .service-content h3 {
                font-size: 19px;
                margin-bottom: 12px;
            }

            .service-content p {
                font-size: 14px;
                margin-bottom: 20px;
                color: var(--paragraph-color);
            }

        .card-link {
            color: var(--header);
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        /* Interactive Country Selection Grid */
        .countries-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 25px;
            margin-top: 40px;
        }

        .country-card {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 12px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 4px 15px rgba(0,0,0,0.03);
            transition: all 0.3s ease;
        }

            .country-card:hover {
                border-color: var(--theme);
                box-shadow: 0 12px 30px rgba(4,106,88,0.12);
                transform: translateY(-5px);
            }

        .country-img-box {
            height: 150px;
            position: relative;
            overflow: hidden;
        }

            .country-img-box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .country-flag-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            font-size: 28px;
            background: rgba(255,255,255,0.9);
            padding: 2px 10px;
            border-radius: 20px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .country-info {
            padding: 20px;
            text-align: center;
        }

            .country-info h4 {
                font-size: 18px;
                margin-bottom: 6px;
            }

            .country-info p {
                font-size: 13px;
                color: var(--paragraph-color);
            }

        /* Country Wise Comparison Table Section */
        .comparison-table-wrapper {
            overflow-x: auto;
            margin-top: 40px;
            background: var(--white);
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            border: 1px solid var(--border);
        }

        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            text-align: left;
        }

            .comparison-table th, .comparison-table td {
                padding: 18px 24px;
                border-bottom: 1px solid var(--border);
                font-size: 14px;
            }

            .comparison-table th {
                background-color: var(--header-dark);
                color: var(--white);
                font-size: 15px;
            }

            .comparison-table tr:hover {
                background-color: #f4f8f7;
            }

        .tag-success {
            background: rgba(4, 106, 88, 0.1);
            color: var(--header);
            padding: 4px 10px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 12px;
        }

        /* Interactive Multi-Step Lead Wizard */
        .wizard-section {
            background: linear-gradient(180deg, #f4f8f7 0%, #e2eeec 100%);
        }

        .wizard-wrapper {
            background: var(--white);
            padding: 45px;
            border-radius: 16px;
            box-shadow: 0 20px 50px rgba(4,106,88,0.08);
            max-width: 900px;
            margin: 0 auto;
        }

        .wizard-steps-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 35px;
            position: relative;
        }

            .wizard-steps-header::before {
                content: '';
                position: absolute;
                top: 20px;
                left: 0;
                width: 100%;
                height: 2px;
                background: var(--border);
                z-index: 1;
            }

        .step-indicator {
            position: relative;
            z-index: 2;
            background: var(--white);
            padding: 0 10px;
            text-align: center;
        }

        .step-circle {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--border);
            color: var(--text);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            margin: 0 auto 8px;
            transition: all 0.3s;
        }

        .step-indicator.active .step-circle {
            background: var(--gradient-primary);
            color: var(--white);
            box-shadow: 0 5px 15px rgba(4,106,88,0.3);
        }

        .step-indicator span {
            font-size: 13px;
            font-weight: 600;
            color: var(--heading-color);
        }

        .wizard-step-content {
            display: none;
        }

            .wizard-step-content.active {
                display: block;
                animation: fadeIn 0.4s ease;
            }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

            .form-group.full-width {
                grid-column: span 2;
            }

            .form-group label {
                font-size: 14px;
                font-weight: 600;
                color: var(--heading-color);
                margin-bottom: 8px;
            }

        .form-control {
            padding: 14px 16px;
            border: 1px solid var(--border);
            border-radius: 6px;
            font-size: 14px;
            outline: none;
            background-color: #fafafa;
            transition: all 0.3s;
        }

            .form-control:focus {
                border-color: var(--header);
                background-color: #fff;
                box-shadow: 0 0 0 3px rgba(4, 106, 88, 0.15);
            }

        .wizard-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        /* 4 Step Process Cards */
        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin-top: 50px;
        }

        .process-item {
            background: var(--white);
            padding: 30px 20px;
            border-radius: 12px;
            border: 1px solid var(--border);
            position: relative;
            transition: all 0.3s;
        }

            .process-item:hover {
                border-color: var(--header);
                box-shadow: 0 10px 25px rgba(4,106,88,0.08);
            }

            .process-item .step-num {
                width: 50px;
                height: 50px;
                background: var(--gradient-primary);
                color: white;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                font-weight: 800;
                font-size: 18px;
                margin-bottom: 20px;
                box-shadow: 0 8px 15px rgba(4,106,88,0.25);
            }

            .process-item h3 {
                font-size: 18px;
                margin-bottom: 10px;
            }

            .process-item p {
                font-size: 14px;
                color: var(--paragraph-color);
            }

        /* FAQ Accordion */
        .faq-accordion {
            max-width: 850px;
            margin: 40px auto 0;
        }

        .faq-item {
            background: var(--white);
            border: 1px solid var(--border);
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 2px 8px rgba(0,0,0,0.02);
        }

        .faq-header {
            padding: 20px 25px;
            font-weight: 700;
            font-size: 16px;
            color: var(--heading-color);
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .faq-header i {
                transition: transform 0.3s ease;
                color: var(--header);
            }

        .faq-body {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease, padding 0.3s ease;
            padding: 0 25px;
            background-color: #fafafa;
            color: var(--paragraph-color);
            font-size: 14px;
        }

        .faq-item.active .faq-header i {
            transform: rotate(180deg);
        }

        .faq-item.active .faq-body {
            max-height: 200px;
            padding: 15px 25px 25px;
        }

        /* Premium Professional Footer Styling */
        .footer-section {
            background-color: var(--header-dark);
            background-image: radial-gradient(rgba(197, 160, 89, 0.08) 1px, transparent 0);
            background-size: 24px 24px;
            color: rgba(255, 255, 255, 0.8);
            padding: 80px 0 0;
            position: relative;
            border-top: 3px solid var(--theme);
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1.2fr 1.2fr 2fr;
            gap: 40px;
            padding-bottom: 60px;
        }

        .footer-brand .footer-logo {
            font-size: 28px;
            font-weight: 800;
            color: var(--theme);
            letter-spacing: -0.5px;
            margin-bottom: 15px;
            display: inline-block;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 20px;
        }

        .trust-badges {
            display: flex;
            gap: 12px;
            margin-top: 15px;
        }

        .trust-badge-item {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(197, 160, 89, 0.3);
            padding: 6px 12px;
            border-radius: 6px;
            font-size: 12px;
            color: var(--theme);
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .footer-item h5 {
            color: var(--white);
            margin-bottom: 20px;
            font-size: 18px;
            position: relative;
            padding-bottom: 10px;
        }

            .footer-item h5::after {
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                width: 35px;
                height: 2px;
                background: var(--gradient-gold);
                border-radius: 2px;
            }

        .footer-item ul {
            list-style: none;
        }

            .footer-item ul li {
                margin-bottom: 12px;
            }

                .footer-item ul li a {
                    font-size: 14px;
                    color: rgba(255, 255, 255, 0.75);
                    display: inline-flex;
                    align-items: center;
                    gap: 8px;
                    transition: all 0.3s ease;
                }

                    .footer-item ul li a:hover {
                        color: var(--theme);
                        transform: translateX(5px);
                    }

                    .footer-item ul li a i {
                        font-size: 10px;
                        color: var(--theme);
                    }

        .footer-contact-list {
            list-style: none;
        }

            .footer-contact-list li {
                display: flex;
                gap: 12px;
                margin-bottom: 15px;
                font-size: 14px;
                color: rgba(255, 255, 255, 0.75);
            }

                .footer-contact-list li i {
                    color: var(--theme);
                    font-size: 16px;
                    margin-top: 3px;
                }

        .newsletter-box {
            background: rgba(255, 255, 255, 0.04);
            padding: 20px;
            border-radius: 10px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            margin-top: 15px;
        }

            .newsletter-box p {
                font-size: 13px;
                margin-bottom: 12px;
                color: rgba(255, 255, 255, 0.8);
            }

        .newsletter-form {
            display: flex;
            gap: 8px;
        }

            .newsletter-form input {
                background: rgba(0, 0, 0, 0.2);
                border: 1px solid rgba(255, 255, 255, 0.15);
                padding: 10px 14px;
                border-radius: 6px;
                color: #fff;
                font-size: 13px;
                outline: none;
                width: 100%;
            }

                .newsletter-form input:focus {
                    border-color: var(--theme);
                }

            .newsletter-form button {
                background: var(--gradient-gold);
                border: none;
                color: #06312a;
                padding: 10px 16px;
                border-radius: 6px;
                cursor: pointer;
                font-weight: 700;
                transition: all 0.3s;
            }

                .newsletter-form button:hover {
                    transform: scale(1.05);
                }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 25px 0;
            font-size: 14px;
            background-color: rgba(0, 0, 0, 0.2);
            padding-bottom: 90px;
        }

        .footer-bottom-wrapper {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 15px;
        }

        .footer-legal-links {
            display: flex;
            gap: 20px;
            list-style: none;
        }

            .footer-legal-links a {
                color: rgba(255, 255, 255, 0.6);
                font-size: 13px;
            }

                .footer-legal-links a:hover {
                    color: var(--theme);
                }

        /* Floating Desktop WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 25px;
            right: 25px;
            background-color: #25d366;
            color: #ffffff;
            width: 60px;
            height: 60px;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s;
        }

            .whatsapp-float:hover {
                transform: scale(1.1);
                color: #ffffff;
            }

        /* Mobile Sticky Bottom Quick Action Bar */
        .mobile-bottom-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: #ffffff;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.12);
            z-index: 9999;
            padding: 10px 15px;
        }

            .mobile-bottom-bar .bar-btn {
                flex: 1;
                text-align: center;
                padding: 12px 0;
                border-radius: 6px;
                font-weight: 700;
                font-size: 14px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 8px;
            }

        .bar-btn.call {
            background: #f0f2f5;
            color: #111;
        }

        .bar-btn.whatsapp {
            background: #25d366;
            color: #fff;
            margin: 0 8px;
        }

        .bar-btn.apply {
            background: var(--header);
            color: #fff;
        }

        /* Responsive Breakpoints */
        @media (max-width: 992px) {
            .hero-grid, .about-grid, .directors-grid, .footer-grid, .stats-grid, .form-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .hero-graphic-card {
                display: none;
            }

            .form-group.full-width {
                grid-column: span 1;
            }

            .services-grid, .process-grid, .countries-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .menu-toggle {
                display: block;
            }

            .main-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                background-color: #FFFFFF;
                box-shadow: 0 10px 15px rgba(0,0,0,0.1);
                padding: 20px;
                z-index: 1000;
            }

                .main-menu.active {
                    display: block;
                }

                .main-menu ul {
                    flex-direction: column;
                    align-items: flex-start;
                    gap: 10px;
                }

                .main-menu li {
                    width: 100%;
                }

                    .main-menu li a {
                        padding: 10px 0;
                        width: 100%;
                        border-bottom: 1px solid var(--border);
                    }

            .header-action {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .mobile-bottom-bar {
                display: flex;
            }

            .whatsapp-float {
                bottom: 85px;
            }
        }

        @media (max-width: 576px) {
            .services-grid, .process-grid, .countries-grid {
                grid-template-columns: 1fr;
            }

            .hero-content h1 {
                font-size: 34px;
            }

            .header-top-section {
                display: none;
            }

            .wizard-wrapper {
                padding: 25px;
            }

            .director-card {
                padding: 25px;
            }
        }
   