 :root {
            --primary-blue: #1a6db0;
            --primary-green: #93be1e;
            --white: #ffffff;
            --black: #000000;
            --light-grey: #f8f9fa;
            --text-grey: #666666;
            --accent-blue: #0066ff;
            --dark-blue: #001a4d;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
            color: var(--black);
            line-height: 1.6;
            overflow-x: hidden;
            background: var(--white);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        /* Preloader */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #3983bf;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.8s, visibility 0.8s;
        }

        .preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .loader-content {
            text-align: center;
        }

        .loader-logo {
            font-family: 'Poppins', sans-serif;
            font-size: 72px;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 20px;
        }

        .loader-tagline {
            font-size: 18px;
            color: var(--white);
            font-weight: 600;
            letter-spacing: 2px;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
        }

        .logo {
            font-family: 'Poppins', sans-serif;
            font-size: 28px;
            font-weight: 900;
            color: var(--primary-blue);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s ease;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--white);
            font-weight: 900;
        }

        .logo:hover {
            transform: translateY(-2px);
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        .nav-item {
            position: relative;
        }

        .nav-link {
            color: var(--black);
            text-decoration: none;
            font-size: 15px;
            font-weight: 600;
            padding: 10px 0;
            position: relative;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .nav-link i {
            font-size: 12px;
            transition: transform 0.3s ease;
        }

        .nav-item:hover .nav-link {
            color: var(--primary-blue);
        }

        .nav-item:hover .nav-link i {
            transform: rotate(180deg);
        }

        .dropdown-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 240px;
            padding: 15px 0;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            z-index: 100;
        }

        .nav-item:hover .dropdown-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-menu li {
            list-style: none;
        }

        .dropdown-menu a {
            display: block;
            padding: 10px 25px;
            color: var(--black);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .dropdown-menu a:hover {
            background: var(--light-grey);
            color: var(--primary-blue);
            padding-left: 30px;
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .nav-contact {
            display: flex;
            flex-direction: column;
            align-items: flex-end;
        }

        .nav-contact-label {
            font-size: 12px;
            color: var(--text-grey);
            font-weight: 500;
            margin-bottom: 2px;
        }

        .nav-contact-phone {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary-blue);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .nav-contact-phone:hover {
            color: var(--primary-green);
        }

        .nav-cta {
            padding: 12px 28px;
            background: var(--primary-green);
            color: var(--white);
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(147, 190, 30, 0.3);
        }

        .nav-cta:hover {
            background: var(--primary-blue);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(26, 109, 176, 0.4);
        }

        .nav-cta i {
            font-size: 16px;
            transition: transform 0.3s ease;
        }

        .nav-cta:hover i {
            transform: translateX(5px);
        }

        .mobile-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
        }

        .mobile-toggle span {
            width: 28px;
            height: 3px;
            background: var(--black);
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }

        .apply-banner {
            background: var(--accent-blue);
            color: var(--white);
            text-align: center;
            padding: 12px 20px;
            position: fixed;
            top: 80px;
            width: 100%;
            z-index: 999;
            transition: all 0.3s ease;
        }

        .apply-banner a {
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .apply-banner a:hover {
            text-decoration: underline;
        }

        /* Hero Section */
        .hero {
            position: relative;
            height: 100vh;
            display: flex;
            align-items: center;
            overflow: hidden;
            margin-top: 125px;
        }

        .parallax-bg {
            position: absolute;
            width: 100%;
            height: 120%;
            top: -10%;
            left: 0;
            background: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920&h=1080&fit=crop') center/cover no-repeat;
            z-index: 1;
        }

        .hero-overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(26, 109, 176, 0.85);
            z-index: 2;
        }

        .hero-content {
            position: relative;
            z-index: 3;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            color: var(--white);
        }

        .hero-badge {
            display: inline-block;
            background: var(--primary-green);
            color: var(--white);
            padding: 10px 24px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 24px;
        }

        .hero-title {
            font-size: 72px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 24px;
            max-width: 1000px;
        }

        .hero-subtitle {
            font-size: 24px;
            line-height: 1.6;
            margin-bottom: 40px;
            max-width: 800px;
            font-weight: 500;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .btn-primary, .btn-secondary {
            padding: 16px 40px;
            border-radius: 6px;
            text-decoration: none;
            font-size: 16px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background: var(--primary-green);
            color: var(--white);
        }

        .btn-primary:hover {
            background: var(--black);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
        }

        .btn-secondary {
            background: var(--white);
            color: var(--primary-blue);
        }

        .btn-secondary:hover {
            background: var(--black);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* About Section */
        .about {
            padding: 100px 0;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .about-content-wrapper {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .about-images {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .about-main-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .about-main-image img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .about-main-image:hover img {
            transform: scale(1.05);
        }

        .about-grid-images {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .grid-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .grid-image img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .grid-image:hover img {
            transform: scale(1.05);
        }

        .experience-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgb(0 34 102 / 75%);
            padding: 25px 20px;
            text-align: center;
            color: var(--white);
        }

        .experience-overlay h3 {
            font-size: 42px;
            font-weight: 900;
            line-height: 1;
            margin-bottom: 5px;
            color: var(--white);
        }

        .experience-overlay p {
            font-size: 14px;
            font-weight: 600;
            margin: 0;
            color: var(--white);
        }

        .about-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 102, 255, 0.1);
            color: #0066ff;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .about-badge i {
            font-size: 14px;
        }

        .about-text h2 {
            font-size: 42px;
            font-weight: 800;
            color: #001a4d;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .about-text p {
            font-size: 16px;
            color: var(--text-grey);
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .custom-plan-box {
            display: flex;
            align-items: center;
            gap: 20px;
            /* background: #0066ff; */
            padding: 25px 30px;
            border-radius: 12px;
            margin-bottom: 30px;
            /* box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2); */
        }

        .plan-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .plan-icon i {
            font-size: 28px;
            color: #001a4d;
        }

        .custom-plan-box h4 {
            font-size: 18px;
            font-weight: 700;
            color: #001a4d;
            margin: 0;
            line-height: 1.4;
        }
        .custom-plan-box {
    display: flex;
    align-items: center;
    gap: 20px;
    /* background: #0066ff; */
    background: transparent;
    border: 2px solid #0066ff;
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.15);
    transition: all 0.3s ease;
}

.custom-plan-box:hover {
    border-color: var(--primary-green);
    box-shadow: 0 10px 30px rgba(147, 190, 30, 0.2);
    transform: translateY(-3px);
}

.plan-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 102, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.custom-plan-box:hover .plan-icon {
    background: rgba(147, 190, 30, 0.15);
}

.plan-icon i {
    font-size: 28px;
    color: #0066ff;
    transition: all 0.3s ease;
}

.custom-plan-box:hover .plan-icon i {
    color: var(--primary-green);
}

.custom-plan-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #001a4d;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.custom-plan-box:hover h4 {
    color: var(--primary-green);
}

        .about-checklist {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 35px;
        }

        .check-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
        }

        .check-item i {
            font-size: 20px;
            color: #0066ff;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .check-item span {
            font-size: 15px;
            color: var(--text-grey);
            line-height: 1.6;
        }

        .about-actions {
            display: flex;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .btn-more {
            padding: 16px 32px;
            background: #0066ff;
            color: var(--white);
            text-decoration: none;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-more:hover {
            background: #0052cc;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 102, 255, 0.3);
        }

        .call-us {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .call-us:hover {
            transform: translateX(5px);
        }

        .call-icon {
            width: 55px;
            height: 55px;
            background: #0066ff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .call-icon i {
            font-size: 22px;
            color: var(--white);
        }

        .call-text {
            display: flex;
            flex-direction: column;
        }

        .call-text span {
            font-size: 13px;
            color: var(--text-grey);
            font-weight: 500;
        }

        .call-text strong {
            font-size: 20px;
            color: #001a4d;
            font-weight: 800;
        }

        /* Services Section */
        .services {
            position: relative;
            padding: 100px 0;
            background: #f5f5f5;
            overflow: hidden;
        }

        .services::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(26, 109, 176, 0.02) 35px, rgba(26, 109, 176, 0.02) 70px),
                repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(147, 190, 30, 0.02) 35px, rgba(147, 190, 30, 0.02) 70px);
            z-index: 1;
            opacity: 0.7;
        }

        .services::after {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(147, 190, 30, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
        }

        .services-content {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .services-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 102, 255, 0.1);
            color: #0066ff;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .services-badge i {
            font-size: 14px;
        }

        .section-title {
            font-size: 48px;
            font-weight: 800;
            color: #001a4d;
            margin-bottom: 16px;
            line-height: 1.2;
        }

        .services-grid-wrapper {
            position: relative;
            margin-bottom: 60px;
            overflow: hidden;
        }

        .services-grid {
            display: flex;
            gap: 30px;
            transition: transform 0.5s ease;
        }

        .service-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            cursor: pointer;
            flex: 0 0 calc(25% - 22.5px);
            height: 400px;
            transition: all 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        .service-image {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        .service-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0, 26, 77, 0.95) 0%, rgba(0, 26, 77, 0.7) 60%, transparent 100%);
            padding: 30px 25px;
            transition: all 0.4s ease;
        }

        .service-content {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
        }

        .service-content h3 {
            font-size: 22px;
            font-weight: 700;
            color: var(--white);
            margin: 0;
            line-height: 1.3;
            max-width: 70%;
        }

        .service-arrow {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
            flex-shrink: 0;
        }

        .service-arrow i {
            font-size: 18px;
            color: var(--white);
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-arrow {
            background: #0066ff;
            border-color: #0066ff;
        }

        .service-card:hover .service-arrow i {
            transform: translateX(5px);
        }

        .slider-navigation {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 30px;
        }

        .slider-btn {
            width: 50px;
            height: 50px;
            background: var(--white);
            border: 2px solid #e0e0e0;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .slider-btn:hover {
            background: #0066ff;
            border-color: #0066ff;
        }

        .slider-btn i {
            font-size: 18px;
            color: #001a4d;
            transition: color 0.3s ease;
        }

        .slider-btn:hover i {
            color: var(--white);
        }

        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 20px;
        }

        .dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #d0d0d0;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: #0066ff;
            width: 30px;
            border-radius: 5px;
        }

        .services-cta {
            text-align: center;
            margin-top: 50px;
        }

        .cta-badge {
            display: inline-flex;
            align-items: center;
            gap: 15px;
            background: var(--white);
            padding: 15px 30px;
            border-radius: 50px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .free-badge {
            background: #0066ff;
            color: var(--white);
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 700;
        }

        .cta-text {
            font-size: 16px;
            color: var(--text-grey);
            font-weight: 500;
        }

        .cta-link {
            color: #001a4d;
            font-weight: 700;
            text-decoration: underline;
            font-size: 16px;
            transition: color 0.3s ease;
        }

        .cta-link:hover {
            color: #0066ff;
        }

        /* Stats Section */
        .stats {
            padding: 100px 0;
            background: var(--white);
            position: relative;
            overflow: hidden;
        }

        .stats-content-wrapper {
            position: relative;
            z-index: 2;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .stats-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 102, 255, 0.1);
            color: #0066ff;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .stats-text h2 {
            font-size: 42px;
            font-weight: 800;
            color: #001a4d;
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .stats-text p {
            font-size: 16px;
            color: var(--text-grey);
            line-height: 1.8;
            margin-bottom: 35px;
        }

        .stats-checklist {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 40px;
        }

        .check-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .stats-numbers {
            display: flex;
            align-items: center;
            gap: 30px;
            padding-top: 30px;
            border-top: 1px solid #e0e0e0;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item h3 {
            font-size: 48px;
            font-weight: 900;
            color: #001a4d;
            line-height: 1;
            margin-bottom: 8px;
        }

        .stat-item h3::after {
            content: '+';
        }

        .stat-item p {
            font-size: 14px;
            color: var(--text-grey);
            font-weight: 600;
            margin: 0;
        }

        .stat-divider {
            width: 1px;
            height: 60px;
            background: #e0e0e0;
        }

        .stats-images {
            position: relative;
            display: flex;
            gap: 20px;
        }

        .stats-grid-images {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .stats-img-top,
        .stats-img-bottom {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }

        .stats-img-top img,
        .stats-img-bottom img {
            width: 100%;
            height: 300px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .stats-img-top:hover img,
        .stats-img-bottom:hover img {
            transform: scale(1.05);
        }

        .stats-main-image {
            position: relative;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
        }

        .stats-main-image img {
            width: 100%;
            height: 620px;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .stats-main-image:hover img {
            transform: scale(1.05);
        }

        /* Benefits Section */
        .benefits {
            padding: 100px 0;
            background: linear-gradient(135deg, #001a4d 0%, #002855 50%, #001a4d 100%);
            position: relative;
            overflow: hidden;
        }

        .benefits::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 20% 20%, rgba(0, 102, 255, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 80% 80%, rgba(147, 190, 30, 0.12) 0%, transparent 40%),
                radial-gradient(circle at 50% 50%, rgba(0, 102, 255, 0.08) 0%, transparent 60%),
                repeating-linear-gradient(0deg, transparent, transparent 3px, rgba(255, 255, 255, 0.015) 3px, rgba(255, 255, 255, 0.015) 6px),
                repeating-linear-gradient(90deg, transparent, transparent 3px, rgba(255, 255, 255, 0.015) 3px, rgba(255, 255, 255, 0.015) 6px);
            z-index: 1;
            animation: benefitsShimmer 15s ease-in-out infinite;
        }

        @keyframes benefitsShimmer {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        .benefits::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 800px;
            height: 800px;
            background: 
                radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 50%),
                conic-gradient(from 0deg at 50% 50%, 
                    rgba(0, 102, 255, 0.05) 0deg, 
                    transparent 60deg, 
                    rgba(147, 190, 30, 0.05) 120deg, 
                    transparent 180deg, 
                    rgba(0, 102, 255, 0.05) 240deg, 
                    transparent 300deg, 
                    rgba(0, 102, 255, 0.05) 360deg);
            border-radius: 50%;
            z-index: 1;
            animation: benefitsRotate 30s linear infinite;
        }

        @keyframes benefitsRotate {
            from { transform: translate(-50%, -50%) rotate(0deg); }
            to { transform: translate(-50%, -50%) rotate(360deg); }
        }

        .benefits-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 40px;
            position: relative;
            z-index: 2;
        }

        .benefits-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .benefits .section-title {
            color: var(--white);
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            margin: 60px 0;
        }

        .benefit-card {
            background: rgba(255, 255, 255, 0.05);
            padding: 40px 30px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .benefit-card:hover {
            background: rgba(0, 102, 255, 0.2);
            border-color: #0066ff;
            transform: translateY(-8px);
        }

        .benefit-icon {
            width: 70px;
            height: 70px;
            background: rgba(0, 102, 255, 0.2);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            transition: all 0.3s ease;
        }

        .benefit-card:hover .benefit-icon {
            background: #0066ff;
        }

        .benefit-icon i {
            font-size: 32px;
            color: #0066ff;
            transition: all 0.3s ease;
        }

        .benefit-card:hover .benefit-icon i {
            color: var(--white);
        }

        .benefit-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 12px;
        }

        .benefit-card p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.6;
        }

        /* ============================================
   OUR TEAM SECTION - MOBILE RESPONSIVE FIX
   ============================================ */

/* Base Styles (Desktop - Already exists in your CSS) */
.our-team {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.team-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.team-title {
    font-size: 48px;
    font-weight: 800;
    color: #001a4d;
    line-height: 1.2;
    margin-bottom: 30px;
}

.team-description {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.team-description p {
    font-size: 16px;
    color: #666666;
    line-height: 1.8;
    margin: 0;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 2px solid #f8f9fa;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: #0066ff;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.2);
}

.stat-box h3 {
    font-size: 36px;
    font-weight: 900;
    color: #001a4d;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.stat-box:hover h3 {
    color: #ffffff;
}

.stat-box p {
    font-size: 14px;
    color: #666666;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.stat-box:hover p {
    color: #ffffff;
}

.team-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    height: 600px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.team-image:hover img {
    transform: scale(1.05);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    .our-team {
        padding: 80px 0;
    }

    .team-container {
        gap: 60px;
        padding: 0 30px;
    }

    .team-title {
        font-size: 42px;
    }

    .team-description p {
        font-size: 15px;
    }

    .team-image {
        height: 500px;
    }

    .team-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
        margin-top: 35px;
        padding-top: 35px;
    }

    .stat-box {
        padding: 18px 15px;
    }

    .stat-box h3 {
        font-size: 32px;
    }

    .stat-box p {
        font-size: 13px;
    }
}

/* Tablet Portrait (768px and below) */
@media (max-width: 768px) {
    .our-team {
        padding: 60px 0;
    }

    .team-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }

    /* Reverse order - Image first on mobile for visual impact */
    .team-image {
        order: -1;
        height: 400px;
        border-radius: 12px;
    }

    .team-content {
        order: 1;
    }

    .team-badge {
        font-size: 12px;
        padding: 7px 18px;
    }

    .team-title {
        font-size: 36px;
        margin-bottom: 25px;
    }

    .team-description {
        gap: 18px;
    }

    .team-description p {
        font-size: 15px;
        line-height: 1.7;
    }

    .team-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
        margin-top: 30px;
        padding-top: 30px;
    }

    .stat-box {
        padding: 15px 10px;
        border-radius: 10px;
    }

    .stat-box h3 {
        font-size: 28px;
        margin-bottom: 3px;
    }

    .stat-box p {
        font-size: 12px;
        line-height: 1.3;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .our-team {
        padding: 50px 0;
    }

    .team-container {
        gap: 30px;
        padding: 0 15px;
    }

    .team-image {
        height: 300px;
        border-radius: 10px;
    }

    .team-badge {
        font-size: 11px;
        padding: 6px 15px;
        gap: 6px;
    }

    .team-badge i {
        font-size: 12px;
    }

    .team-title {
        font-size: 28px;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .team-description {
        gap: 15px;
    }

    .team-description p {
        font-size: 14px;
        line-height: 1.7;
    }

    .team-stats {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 25px;
        padding-top: 25px;
        border-top: 1px solid #f8f9fa;
    }

    .stat-box {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .stat-box h3 {
        font-size: 32px;
        margin-bottom: 5px;
    }

    .stat-box p {
        font-size: 13px;
        line-height: 1.4;
    }

    /* Better hover states for mobile */
    .stat-box:active {
        background: #0066ff;
        transform: scale(0.98);
    }

    .stat-box:active h3,
    .stat-box:active p {
        color: #ffffff;
    }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
    .our-team {
        padding: 40px 0;
    }

    .team-container {
        gap: 25px;
        padding: 0 10px;
    }

    .team-image {
        height: 280px;
    }

    .team-title {
        font-size: 24px;
    }

    .team-description p {
        font-size: 13px;
    }

    .stat-box {
        padding: 18px 12px;
    }

    .stat-box h3 {
        font-size: 28px;
    }

    .stat-box p {
        font-size: 12px;
    }
}
       
        /* Testimonials Section */
        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(circle at 15% 25%, rgba(26, 109, 176, 0.04) 0%, transparent 50%),
                radial-gradient(circle at 85% 75%, rgba(147, 190, 30, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 50% 10%, rgba(0, 102, 255, 0.03) 0%, transparent 40%),
                repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(26, 109, 176, 0.015) 40px, rgba(26, 109, 176, 0.015) 80px),
                repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(147, 190, 30, 0.015) 40px, rgba(147, 190, 30, 0.015) 80px);
            z-index: 1;
        }

        .testimonials::after {
            content: '';
            position: absolute;
            top: -20%;
            right: -15%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(147, 190, 30, 0.08) 0%, rgba(26, 109, 176, 0.03) 40%, transparent 70%);
            border-radius: 50%;
            z-index: 1;
            animation: testimonialFloat 20s ease-in-out infinite;
        }

        @keyframes testimonialFloat {
            0%, 100% { 
                transform: translate(0, 0) scale(1);
                opacity: 0.6;
            }
            50% { 
                transform: translate(-30px, 30px) scale(1.1);
                opacity: 0.8;
            }
        }

        .testimonials-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
        }

        .testimonials-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 102, 255, 0.1);
            color: #0066ff;
            padding: 10px 24px;
            border-radius: 25px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }

        .testimonials-content {
            display: grid;
            grid-template-columns: 1.8fr 1fr;
            gap: 50px;
            margin-top: 60px;
            align-items: start;
        }

        .testimonials-slider-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 20px;
        }

        .testimonials-slider {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .testimonial-card {
            position: relative;
            background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
                padding: 14px 14px;
            border-radius: 20px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.06);
            transition: all 0.4s ease;
            border: 1px solid rgba(26, 109, 176, 0.08);
            overflow: hidden;
            display: flex;
            flex-direction: column;
            min-height: 320px;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                linear-gradient(135deg, rgba(26, 109, 176, 0.02) 0%, transparent 50%),
                repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0, 102, 255, 0.01) 20px, rgba(0, 102, 255, 0.01) 40px);
            z-index: 0;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .testimonial-card:hover::before {
            opacity: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 45px rgba(0, 102, 255, 0.12);
            border-color: rgba(0, 102, 255, 0.15);
        }

        .star-rating {
            display: flex;
            gap: 6px;
            margin-bottom: 25px;
            position: relative;
            z-index: 1;
        }

        .star-rating i {
            color: #0066ff;
            font-size: 22px;
            filter: drop-shadow(0 2px 4px rgba(0, 102, 255, 0.2));
        }

        .testimonial-text {
            font-size: 16px;
            line-height: 1.8;
            color: #5a5a5a;
            margin-bottom: auto;
            position: relative;
            z-index: 1;
            font-weight: 400;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 15px;
            position: relative;
            z-index: 1;
            margin-top: 30px;
            padding-top: 25px;
            border-top: 1px solid rgba(26, 109, 176, 0.08);
        }

        .author-left {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .testimonial-author img {
            width: 55px;
            height: 55px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--light-grey);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover .testimonial-author img {
            border-color: rgba(0, 102, 255, 0.3);
            transform: scale(1.05);
        }

        .author-info h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 0;
        }

        .author-info p {
            font-size: 13px;
            color: var(--text-grey);
            margin: 0;
            display: none;
        }

        .quote-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(26, 109, 176, 0.05) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .quote-icon i {
            font-size: 20px;
            color: #0066ff;
        }

        .author-info h4 {
            font-size: 19px;
            font-weight: 700;
            color: var(--dark-blue);
            margin-bottom: 5px;
        }

        .author-info p {
            font-size: 14px;
            color: var(--text-grey);
            margin: 0;
        }

        .testimonials-stats {
            position: sticky;
            top: 120px;
        }

        .stats-card {
            background: linear-gradient(135deg, #0d4d7a 0%, #1a6db0 50%, #0066ff 100%);
            padding: 0;
            border-radius: 24px;
            box-shadow: 0 25px 70px rgba(0, 102, 255, 0.35);
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .stats-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(147, 190, 30, 0.1) 0%, transparent 50%),
                url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="50" height="50" patternUnits="userSpaceOnUse"><path d="M 50 0 L 0 0 0 50" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            z-index: 1;
        }

        .stats-card::after {
            content: '';
            position: absolute;
            top: -30%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(147, 190, 30, 0.15) 0%, transparent 60%);
            border-radius: 50%;
            z-index: 1;
            animation: statsGlow 10s ease-in-out infinite;
        }

        @keyframes statsGlow {
            0%, 100% { 
                transform: translate(0, 0) scale(1);
                opacity: 0.6;
            }
            50% { 
                transform: translate(-20px, 20px) scale(1.1);
                opacity: 0.9;
            }
        }

        .stat-item-large {
            padding: 50px 45px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.15);
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .stat-item-large:hover {
            background: rgba(255, 255, 255, 0.05);
        }

        .stat-item-large:last-child {
            border-bottom: none;
        }

        .stat-item-large h3 {
            font-size: 80px;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 12px;
            line-height: 1;
            text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            letter-spacing: -2px;
        }

        .stat-item-large p {
            font-size: 17px;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
            font-weight: 500;
        }

        .stat-item-large .stat-icon {
            display: none;
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            gap: 12px;
            margin-top: 50px;
        }

        .testimonial-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: #d0d0d0;
            cursor: pointer;
            transition: all 0.4s ease;
        }

        .testimonial-dot.active {
            background: #0066ff;
            width: 45px;
            border-radius: 7px;
        }

        /* CTA Section */
        .cta {
            padding: 100px 0;
            background: var(--primary-green);
            color: var(--white);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
            padding: 0 40px;
        }

        .cta-content h2 {
            font-size: 48px;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .cta-content p {
            font-size: 20px;
            margin-bottom: 40px;
            font-weight: 500;
        }

        .btn-white {
            padding: 18px 45px;
            background: var(--white);
            color: var(--primary-green);
            text-decoration: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s ease;
        }

        .btn-white:hover {
            background: var(--black);
            color: var(--white);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #003d6b 0%, #001a4d 100%);
            color: var(--white);
            padding: 0;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?w=1920&h=800&fit=crop') center/cover;
            opacity: 0.05;
            z-index: 0;
        }

        .footer-top {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-cta-text h2 {
            font-size: 48px;
            font-weight: 900;
            color: var(--white);
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .footer-cta-text p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        .footer-cta-button {
            position: relative;
        }

        .rotating-contact-btn {
            position: relative;
            width: 160px;
            height: 160px;
            display: flex;
            align-items: center;
            justify-content: center;
            animation: rotate-circle 20s linear infinite;
        }

        @keyframes rotate-circle {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .rotating-contact-btn svg {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .rotating-contact-btn text {
            font-size: 11px;
            font-weight: 700;
            fill: var(--white);
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .contact-btn-center {
            position: absolute;
            width: 80px;
            height: 80px;
            background: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(147, 190, 30, 0.4);
        }

        .contact-btn-center:hover {
            background: var(--white);
            transform: scale(1.1);
        }

        .contact-btn-center i {
            font-size: 28px;
            color: var(--white);
            transition: all 0.3s ease;
        }

        .contact-btn-center:hover i {
            color: var(--primary-green);
            transform: rotate(45deg);
        }

        .footer-content {
            position: relative;
            z-index: 1;
            max-width: 1400px;
            margin: 0 auto;
            padding: 80px 40px 40px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 80px;
            margin-bottom: 60px;
        }

        .footer-about .logo {
            color: var(--white);
            margin-bottom: 25px;
            font-size: 32px;
        }

        .footer-about .logo-icon {
            width: 50px;
            height: 50px;
            font-size: 28px;
        }

        .footer-about p {
            font-size: 16px;
            line-height: 1.9;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 30px;
        }

        .footer-tagline {
            display: inline-block;
            background: rgba(147, 190, 30, 0.2);
            color: var(--primary-green);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 13px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 25px;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .social-links a:hover {
            background: var(--primary-green);
            border-color: var(--primary-green);
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(147, 190, 30, 0.4);
        }

        .footer-section h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 30px;
            color: var(--white);
            position: relative;
            padding-bottom: 15px;
        }

        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-green);
            border-radius: 2px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 15px;
        }

        .footer-section ul li:last-child {
            margin-bottom: 0;
        }

        .footer-section a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-section a i {
            font-size: 12px;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-green);
            padding-left: 10px;
        }

        .footer-section a:hover i {
            opacity: 1;
        }

        .footer-contact {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 15px;
            padding: 18px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(8px);
            border-color: var(--primary-green);
        }

        .contact-item i {
            font-size: 22px;
            color: var(--primary-green);
            margin-top: 3px;
            flex-shrink: 0;
        }

        .contact-item-text {
            flex: 1;
        }

        .contact-item-text a,
        .contact-item-text span {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 15px;
            line-height: 1.6;
            display: block;
        }

        .contact-item-text a:hover {
            color: var(--primary-green);
        }

        .contact-item-text strong {
            color: var(--white);
            font-weight: 700;
            font-size: 16px;
            display: block;
            margin-bottom: 5px;
        }

        .footer-bottom {
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom-left {
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .footer-bottom p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }

        .footer-bottom p i {
            color: var(--primary-green);
            margin: 0 5px;
        }

        .footer-bottom p a {
            color: var(--primary-green);
            text-decoration: none;
        }

        .footer-links {
            display: flex;
            gap: 30px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-green);
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-green);
        }

        .footer-links a:hover::after {
            width: 100%;
        }

        .certifications {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-top: 20px;
        }

        .cert-badge {
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            font-size: 12px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.8);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .cert-badge i {
            color: var(--primary-green);
        }

        /* Quote Modal */
        .quote-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            z-index: 10000;
            align-items: center;
            justify-content: center;
        }

        .quote-modal.active {
            display: flex;
        }

        .modal-content {
            background: var(--white);
            padding: 50px;
            border-radius: 8px;
            max-width: 600px;
            width: 90%;
            position: relative;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            background: var(--light-grey);
            color: var(--black);
            border: none;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .modal-close:hover {
            background: var(--primary-green);
            color: var(--white);
        }

        .modal-header {
            margin-bottom: 30px;
        }

        .modal-header h3 {
            font-size: 32px;
            font-weight: 900;
            color: var(--black);
            margin-bottom: 10px;
        }

        .modal-header h3 span {
            color: var(--primary-green);
        }

        .modal-header p {
            font-size: 16px;
            color: var(--text-grey);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            font-size: 14px;
            font-weight: 700;
            color: var(--black);
            margin-bottom: 8px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 14px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 6px;
            font-family: 'Inter', sans-serif;
            font-size: 15px;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-blue);
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: var(--primary-blue);
            color: var(--white);
            border: none;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            background: var(--primary-green);
            transform: translateY(-2px);
        }

        /* Scroll Top */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--primary-blue);
            border-radius: 6px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 20px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
        }

        .scroll-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--primary-green);
            transform: translateY(-5px);
        }

        /* Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.6s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .service-card {
                flex: 0 0 calc(50% - 15px);
            }
        }

        @media (max-width: 1024px) {
            .nav-contact {
                display: none;
            }

            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 40px;
            }

            .team-container {
                gap: 60px;
            }

            .team-stats {
                grid-template-columns: repeat(3, 1fr);
            }

            .testimonials-content {
                grid-template-columns: 1fr;
            }

            .testimonials-slider {
                grid-template-columns: 1fr;
            }

            .stats-content-wrapper {
                grid-template-columns: 1fr;
            }

            .about-content-wrapper {
                grid-template-columns: 1fr;
            }

            .benefits-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .mobile-toggle {
                display: flex;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                right: 0;
                background: var(--white);
                flex-direction: column;
                padding: 20px;
                gap: 0;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                display: flex;
            }

            .nav-item {
                width: 100%;
                border-bottom: 1px solid var(--light-grey);
            }

            .nav-link {
                padding: 15px 0;
            }

            .dropdown-menu {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                padding-left: 20px;
                display: none;
            }

            .nav-item:hover .dropdown-menu {
                display: block;
            }

            .hero {
                margin-top: 125px;
                height: auto;
                padding: 60px 0;
            }

            .hero-title {
                font-size: 42px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-buttons {
                flex-direction: column;
            }

            .section-title {
                font-size: 32px;
            }

            .service-card {
                flex: 0 0 100%;
            }

            .footer-top {
                flex-direction: column;
                gap: 40px;
                text-align: center;
                padding: 60px 40px;
            }

            .footer-cta-text h2 {
                font-size: 36px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-section h4::after {
                left: 0;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }

            .footer-bottom-left {
                flex-direction: column;
                gap: 15px;
            }

            .footer-links {
                flex-direction: column;
                gap: 15px;
            }

            .certifications {
                justify-content: center;
            }

            .apply-banner {
                font-size: 13px;
                padding: 10px;
            }

            .benefits-grid {
                grid-template-columns: 1fr;
            }

            .team-stats {
                grid-template-columns: 1fr;
            }

            .check-row {
                grid-template-columns: 1fr;
            }

            .stats-numbers {
                flex-direction: column;
                gap: 20px;
            }

            .stat-divider {
                display: none;
            }
        }

        @media (max-width: 480px) {
            .nav-container {
                padding: 0 20px;
            }

            .logo {
                font-size: 22px;
            }

            .logo-icon {
                width: 38px;
                height: 38px;
                font-size: 20px;
            }

            .hero-title {
                font-size: 32px;
            }

            .hero-subtitle {
                font-size: 16px;
            }

            .section-title {
                font-size: 28px;
            }

            .modal-content {
                padding: 30px 20px;
            }

            .cta-content h2 {
                font-size: 32px;
            }

            .team-title {
                font-size: 32px;
            }
        }
        /* ============================================
   Our Projects Section - CSS Only
   ============================================ */

/* Our Projects Section */
.our-projects {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.projects-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.projects-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 102, 255, 0.1);
    color: #0066ff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.projects-description {
    font-size: 16px;
    color: var(--text-grey);
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.project-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin: 50px 0 60px;
}

.filter-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #0066ff;
    border-color: #0066ff;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    cursor: pointer;
}

.project-card.hide {
    display: none;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 26, 77, 0.95) 0%, rgba(0, 26, 77, 0.6) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-info {
    margin-bottom: 20px;
}

.project-category {
    display: inline-block;
    background: #0066ff;
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.project-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.3;
}

.project-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.project-details {
    display: flex;
    gap: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
}

.detail-item i {
    font-size: 16px;
    color: #0066ff;
}

.projects-footer {
    text-align: center;
    margin-top: 50px;
}

.btn-view-all {
    padding: 16px 40px;
    background: #0066ff;
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(147, 190, 30, 0.4);
}

.btn-view-all i {
    font-size: 16px;
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Projects Section */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .project-image {
        height: 400px;
    }
}
@media (max-width: 768px) {
.nav-cta {
    padding: 8px;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex
;
    align-items: center;
    gap: 10px;
    transition: all 0.3s 
ease;
    box-shadow: 0 4px 15px rgba(147, 190, 30, 0.3);
}
}
@media (max-width: 768px) {
    .our-projects {
        padding: 50px 0;
    }

    .projects-container {
        padding: 0 20px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .project-filter {
        margin: 30px 0 40px;
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .project-image {
        height: 350px;
    }

    .project-overlay {
        padding: 20px;
    }

    .project-info h3 {
        font-size: 20px;
    }

    .project-info p {
        font-size: 14px;
    }

    .project-details {
        gap: 15px;
        padding-top: 15px;
    }

    .detail-item {
        font-size: 13px;
    }

    .projects-footer {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .projects-badge {
        font-size: 12px;
        padding: 6px 16px;
    }

    .projects-description {
        font-size: 14px;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .project-image {
        height: 300px;
    }

    .project-category {
        font-size: 11px;
        padding: 5px 12px;
    }

    .project-info h3 {
        font-size: 18px;
    }

    .project-info p {
        font-size: 13px;
    }

    .btn-view-all {
        padding: 14px 30px;
        font-size: 15px;
        width: 100%;
        justify-content: center;
    }
}
/* ============================================
   BLOG PAGE SPECIFIC STYLES
   ============================================ */

/* Blog Hero Section */
.blog-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
    background: linear-gradient(135deg, rgba(0, 61, 77, 0.9) 0%, rgba(26, 109, 176, 0.85) 100%),
                url('https://images.unsplash.com/photo-1484480974693-6ca0a78fb36b?w=1920&h=800&fit=crop') center/cover;
}

.blog-hero-content {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    color: var(--white);
    text-align: center;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

.blog-hero h1 {
    font-size: 56px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-hero p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Blog Content Section */
.blog-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
    
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

/* Blog Main Content */
.blog-main h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--dark-blue);
    margin-bottom: 40px;
}

/* Category Filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-grey);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.blog-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: grid;
    grid-template-columns: 350px 1fr;
    height: 320px;
}

.blog-card.hide {
    display: none;
}

.blog-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.blog-image {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.blog-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-meta {
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-grey);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.meta-item i {
    color: var(--primary-green);
    font-size: 16px;
}

.blog-content h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 15px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-content h3 {
    color: var(--primary-green);
}

.blog-excerpt {
    font-size: 15px;
    color: var(--text-grey);
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--light-grey);
}

.author-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark-blue);
}

.read-more {
    padding: 10px 24px;
    background: var(--primary-green);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.read-more:hover {
    background: var(--primary-blue);
    transform: translateX(5px);
}

.read-more i {
    font-size: 12px;
}

/* Featured Post */
.featured-post {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    height: auto;
    position: relative;
}

.featured-post .blog-image {
    height: 400px;
}

.featured-post .blog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 26, 77, 0.95) 0%, rgba(0, 26, 77, 0.7) 60%, transparent 100%);
    color: var(--white);
    padding: 50px;
}

.featured-badge {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.featured-post .blog-meta {
    color: rgba(255, 255, 255, 0.9);
}

.featured-post .blog-meta i {
    color: var(--primary-green);
}

.featured-post .blog-content h3 {
    font-size: 42px;
    color: var(--white);
    margin-bottom: 20px;
}

.featured-post .blog-excerpt {
    color: rgba(255, 255, 255, 0.95);
    font-size: 16px;
    max-width: 800px;
}

.featured-post .blog-footer {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.featured-post .author-name {
    color: var(--white);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--light-grey);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark-blue);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-green);
}

/* Search Widget */
.search-form {
    position: relative;
}

.search-form input {
    width: 100%;
    padding: 15px 50px 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s ease;
}

.search-form input:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.search-form button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: var(--primary-green);
    border: none;
    border-radius: 6px;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-form button:hover {
    background: var(--primary-blue);
}

/* Categories Widget */
.categories-list {
    list-style: none;
}

.categories-list li {
    margin-bottom: 12px;
}

.categories-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: var(--white);
    border-radius: 8px;
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
}

.categories-list a:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateX(5px);
}

.category-count {
    width: 30px;
    height: 30px;
    background: var(--light-grey);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.categories-list a:hover .category-count {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Recent Posts Widget */
.recent-posts-list {
    list-style: none;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.recent-post-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.recent-post-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-content h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 8px;
    line-height: 1.4;
}

.recent-post-content a {
    text-decoration: none;
    color: var(--dark-blue);
    transition: color 0.3s ease;
}

.recent-post-content a:hover {
    color: var(--primary-green);
}

.recent-post-date {
    font-size: 13px;
    color: var(--text-grey);
    display: flex;
    align-items: center;
    gap: 5px;
}

.recent-post-date i {
    color: var(--primary-green);
    font-size: 12px;
}

/* Tags Widget */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-item {
    padding: 8px 18px;
    background: var(--white);
    color: var(--dark-blue);
    text-decoration: none;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.tag-item:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Newsletter Widget */
.newsletter-widget {
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-blue) 100%);
    color: var(--white);
}

.newsletter-widget h3 {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.newsletter-widget p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    line-height: 1.6;
}

.newsletter-form input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    margin-bottom: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 15px;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
    width: 100%;
    padding: 15px;
    background: var(--white);
    color: var(--primary-green);
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 60px;
}

.pagination a,
.pagination span {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    color: var(--dark-blue);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

.pagination a:hover,
.pagination span.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .blog-container {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .blog-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        height: 40vh;
           
    }

    .blog-hero h1 {
        font-size: 36px;
    }

    .blog-hero p {
        font-size: 16px;
    }

    .blog-main h2 {
        font-size: 28px;
    }

    .category-filter {
        gap: 10px;
    }

    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .featured-post .blog-image {
        height: 300px;
    }

    .featured-post .blog-content {
        padding: 30px 20px;
    }

    .featured-post .blog-content h3 {
        font-size: 28px;
    }

    .blog-content h3 {
        font-size: 20px;
    }

    .sidebar-widget {
        padding: 25px 20px;
    }
}
/* ============================================
   MEGA MENU STYLES
   ============================================ */

.mega-menu-item {
    position: relative;
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 1000px;
    max-width: 1200px;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 1000;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mega-menu-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega-menu-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    padding: 35px 25px 25px;
}

.mega-menu-column {
    padding: 0 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
}

.mega-menu-column:last-child {
    border-right: none;
}

.mega-menu-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-list li {
    margin-bottom: 0;
}

.mega-menu-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: var(--text-grey);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.mega-menu-list a i {
    font-size: 16px;
    color: var(--primary-green);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.mega-menu-list a:hover {
    background: rgba(0, 102, 255, 0.08);
    color: var(--primary-blue);
    padding-left: 20px;
    transform: translateX(5px);
}

.mega-menu-list a:hover i {
    color: var(--primary-blue);
    transform: scale(1.15);
}

/* Mega Menu Animation */
@keyframes megaMenuSlideDown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.mega-menu-item:hover .mega-menu {
    animation: megaMenuSlideDown 0.4s ease forwards;
}

/* ============================================
   RESPONSIVE MEGA MENU
   ============================================ */

@media (max-width: 1400px) {
    .mega-menu {
        min-width: 900px;
        left: 0;
        transform: translateX(0) translateY(10px);
    }
    
    .mega-menu-item:hover .mega-menu {
        transform: translateX(0) translateY(0);
    }
    
    .mega-menu-container {
        padding: 30px 20px 20px;
    }
}

@media (max-width: 1024px) {
    .mega-menu {
        min-width: 100%;
        left: 0;
        right: 0;
    }
    
    .mega-menu-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .mega-menu-column {
        border-right: none;
        padding: 0 10px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .mega-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        min-width: 100%;
        border-radius: 0;
        border: none;
        display: none;
    }
    
    .mega-menu-item:hover .mega-menu {
        display: block;
        animation: none;
    }
    
    .mega-menu-container {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 10px;
    }
    
    .mega-menu-column {
        padding: 0;
        margin-bottom: 15px;
        border-right: none;
    }
    
    .mega-menu-title {
        font-size: 14px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .mega-menu-list a {
        padding: 10px 12px;
        font-size: 13px;
    }
    
    .mega-menu-list a:hover {
        padding-left: 12px;
        transform: none;
    }
    
    /* Mobile Toggle for Mega Menu */
    .mega-menu-item .nav-link {
        position: relative;
    }
    
    .mega-menu-item .nav-link::after {
        content: '';
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 480px) {
    .mega-menu-list a {
        gap: 8px;
        font-size: 12px;
    }
    
    .mega-menu-list a i {
        font-size: 14px;
    }
}