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

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #2c3e50;
            background: #f8f9fa;
            padding-top: 0;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #022d62 0%, #034078 100%);
            z-index: 1000;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        header.scrolled {
            box-shadow: 0 4px 20px rgba(0,0,0,0.15);
        }

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            color: white;
        }

        .logo-icon {
            width: 45px;
            height: 45px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            color: white;
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
            align-items: center;
        }

        nav a {
            text-decoration: none;
            color: white;
            font-weight: 500;
            font-size: 1rem;
            transition: color 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: #60A5FA;
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: #60A5FA;
            transition: width 0.3s ease;
        }

        nav a:hover::after,
        nav a.active::after {
            width: 100%;
        }

        .nav-cta {
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white !important;
            padding: 10px 25px;
            border-radius: 6px;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.3);
        }

        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(2,45,98,0.4);
            color: white !important;
            background: rgba(255, 255, 255, 0.3);
        }

        .nav-cta::after {
            display: none;
        }

        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            padding: 8px;
            position: relative;
        }

        .mobile-menu-toggle span {
            width: 25px;
            height: 3px;
            background: white;
            transition: all 0.3s ease;
            transform-origin: center;
        }

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

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

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

        /* Tablet-wide tweaks (769px-900px) */
        @media (max-width: 900px) and (min-width: 769px) {
            .container {
                padding: 0 16px;
            }

            header {
                height: 70px;
            }

            .header-content {
                padding: 10px 0;
                gap: 14px;
            }

            nav ul {
                gap: 20px;
            }

            nav a {
                font-size: 0.95rem;
            }

            .nav-cta {
                padding: 8px 16px;
                font-size: 0.95rem;
            }

            .hero {
                padding: 70px 0 clamp(170px, 32vw, 240px);
            }

            .hero-content {
                flex-direction: column;
                gap: 28px;
                text-align: center;
            }

            .hero-left {
                max-width: 100%;
                order: 2;
            }

            .hero-right {
                order: 1;
            }

            .hero-image img {
                max-width: 80%;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 0;
            }

            header {
                height: 70px;
            }

            .header-content {
                padding: 10px 0;
            }

            .logo-text {
                font-size: 1.3rem;
            }

            .mobile-menu-toggle {
                display: flex;
            }

            nav {
                position: absolute;
                top: 60px;
                left: 0;
                right: 0;
                background: linear-gradient(135deg, #022d62 0%, #034078 100%);
                box-shadow: 0 4px 10px rgba(0,0,0,0.1);
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.3s ease;
                z-index: 999;
            }

            nav.active {
                max-height: 400px;
            }

            nav ul {
                flex-direction: column;
                padding: 20px;
                gap: 15px;
                margin: 0;
            }

            nav a {
                display: block;
                width: 100%;
                color: white;
                padding: 12px 15px;
                border-radius: 6px;
                transition: all 0.3s ease;
            }

            nav a:hover {
                background: rgba(255, 255, 255, 0.1);
                color: #60A5FA;
            }

            .nav-cta {
                background: rgba(255, 255, 255, 0.2);
                border: 1px solid rgba(255, 255, 255, 0.3);
                text-align: center;
                margin-top: 10px;
            }

            .nav-cta:hover {
                background: rgba(255, 255, 255, 0.3);
            }

            /* Hero Section Responsive */
            .hero {
                padding: 60px 0 clamp(160px, 34vw, 240px);
                min-height: auto;
                height: auto;
            }

            .hero::after {
                height: clamp(100px, 2vw, 200px);
                transform: scaleX(2.5);
            }


            .hero-content {
                flex-direction: column;
                gap: 30px;
                text-align: center;
                padding: 20px 0;
            }

            .hero-left {
                max-width: 100%;
                order: 2;
            }

            .hero-right {
                order: 1;
            }

            .hero-image img {
                max-width: 90%;
                margin: 0 auto;
            }

            .hero h1 {
                font-size: 2.2rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 1rem;
                margin-bottom: 25px;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 15px;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
                padding: 15px 25px;
            }

            /* Footer Responsive */
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .footer-logo {
                justify-content: center;
            }

            .footer-description {
                max-width: 100%;
                margin: 0 auto 25px;
            }

            .social-links {
                justify-content: center;
            }

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

            .footer-bottom-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-bottom-links {
                justify-content: center;
                flex-wrap: wrap;
            }

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

        @media (max-width: 480px) {
            .container {
                padding: 0 15px;
                margin-bottom: 40px;
            }

            header {
                height: 60px;
            }

            .header-content {
                padding: 8px 0;
            }

            .logo-text {
                font-size: 1.1rem;
            }

            .hero {
                padding: 50px 0 clamp(140px, 38vw, 220px);
            }

            .hero::after {
                height: clamp(110px, 32vw, 180px);
                transform: scaleX(1.25);
            }


            .hero-content {
                gap: 20px;
                padding: 15px 0;
            }

            .hero h1 {
                font-size: 1.8rem;
                line-height: 1.2;
            }

            .hero p {
                font-size: 0.95rem;
                margin-bottom: 20px;
            }

            .hero-image img {
                max-width: 95%;
                border-radius: 15px;
            }

            .cta-buttons {
                gap: 12px;
            }

            .btn {
                padding: 12px 20px;
                font-size: 0.9rem;
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #022d62 0%, #034078 50%, #0a5ca8 100%);
            color: white;
            padding: 80px 0 clamp(180px, 30vw, 260px);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: clamp(70px, 10vw, 240px);
            background: #fff;
            border-radius: 50% 50% 0 0 / 100% 100% 0 0;
            transform: scaleX(1.5);
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.3;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.3);
            z-index: 1;
            animation: fadeInDown 0.8s ease-out;
            margin: 0 auto 16px;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .hero-text {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-left {
            flex: 1;
            max-width: 600px;
        }

        .hero-right {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero-image {
            position: relative;
            z-index: 3;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            transition: transform 0.3s ease;
        }

        .hero-image img:hover {
            transform: scale(1.05);
        }

        .hero-design {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            z-index: 1;
            pointer-events: none;
        }

        .floating-shields {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .shield {
            position: absolute;
            font-size: 2rem;
            opacity: 0.3;
            animation: float 6s ease-in-out infinite;
        }

        .shield-1 {
            top: 20%;
            left: 5%;
            animation-delay: 0s;
        }

        .shield-2 {
            top: 60%;
            left: 15%;
            animation-delay: 1.5s;
        }

        .shield-3 {
            top: 30%;
            right: 10%;
            animation-delay: 3s;
        }

        .shield-4 {
            top: 70%;
            right: 20%;
            animation-delay: 4.5s;
        }

        .shield-5 {
            top: 40%;
            left: 50%;
            animation-delay: 2s;
        }

        .shield-6 {
            top: 15%;
            right: 40%;
            animation-delay: 5s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
        }

        .hero p {
            font-size: 1.3rem;
            margin-bottom: 30px;
            opacity: 0.95;
        }

        .badge {
            display: inline-block;
            font-weight: 600;
            background: rgba(255,255,255,0.2);
            padding: 8px 20px;
            border-radius: 50px;
            margin-bottom: 30px;
            backdrop-filter: blur(10px);
        }

        .cta-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn {
            padding: 15px 35px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background: white;
            color: #022d62;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
        }

        /* Feature Highlights Section */
        .feature-highlights {
            text-align: center;
            margin-bottom: 80px;
            padding: 60px 0;
            background: #f8f9fa;
            border-radius: 12px;
        }

        .feature-highlights h3 {
            font-size: 2rem;
            color: #022d62;
            margin-bottom: 15px;
        }

        .feature-subtitle {
            font-size: 1.1rem;
            color: #7f8c8d;
            margin-bottom: 40px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            max-width: 900px;
            margin: 0 auto;
        }

        .highlight-item {
            text-align: center;
            padding: 30px 20px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(2,45,98,0.15);
        }

        .highlight-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .highlight-item h4 {
            font-size: 1.2rem;
            color: #022d62;
            margin-bottom: 10px;
        }

        .highlight-item p {
            color: #7f8c8d;
            font-size: 0.95rem;
        }

        /* Testimonials Section */
        .testimonials {
            display: none;
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, #022d62, transparent);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            left: 20px;
            font-size: 120px;
            color: #022d62;
            opacity: 0.1;
            font-family: Georgia, serif;
        }

        .testimonial-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #022d62, #034078);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(2,45,98,0.2);
        }

        .testimonial-content {
            position: relative;
            z-index: 2;
        }

        .testimonial-content p {
            font-style: italic;
            color: #2c3e50;
            margin-bottom: 25px;
            line-height: 1.7;
            font-size: 1.05rem;
            position: relative;
            z-index: 2;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-top: 20px;
            border-top: 1px solid #e9ecef;
        }

        .author-image {
            flex-shrink: 0;
        }

        .author-image img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid #022d62;
            box-shadow: 0 4px 15px rgba(2,45,98,0.2);
            transition: all 0.3s ease;
        }

        /* Testimonials small screens */
        @media (max-width: 480px) {
            .testimonials {
                padding: 60px 0;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .testimonial-card {
                padding: 24px;
                border-radius: 14px;
            }

            .testimonial-content p {
                font-size: 0.95rem;
                line-height: 1.6;
            }

            .author-image img {
                width: 48px;
                height: 48px;
                border-width: 2px;
            }
        }

        .testimonial-card:hover .author-image img {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(2,45,98,0.3);
        }

        .author-info {
            flex: 1;
        }

        .testimonial-author strong {
            color: #022d62;
            display: block;
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 3px;
        }

        .testimonial-author span {
            color: #7f8c8d;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .testimonial-rating {
            display: flex;
            gap: 3px;
            margin-bottom: 15px;
        }

        .testimonial-rating .star {
            color: #ffc107;
            font-size: 18px;
        }

        /* Services Section */
        .services {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .service-item {
            text-align: center;
            padding: 30px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }

        .service-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(2,45,98,0.15);
        }

        .service-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .service-item h4 {
            font-size: 1.2rem;
            color: #022d62;
            margin-bottom: 10px;
        }

        .service-item p {
            color: #7f8c8d;
            font-size: 0.95rem;
        }

        /* Features Section */
        .features {
            padding: 0px 0px 80px 0px;
            background: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: #2c3e50;
            margin-bottom: 15px;
        }

        .section-title p {
            font-size: 1.2rem;
            color: #7f8c8d;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .feature-card {
            background: white;
            border-radius: 14px;
            padding: 28px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.06);
            transition: all 0.3s ease;
            border: 1px solid #e8eef6;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 45px rgba(2,45,98,0.15);
            border-color: #022d62;
        }

        .feature-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            background: linear-gradient(135deg, #022d62 0%, #034078 100%);
            color: white;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 18px;
            transition: transform 0.35s ease;
            transform-origin: center;
        }

        .feature-card:hover .feature-icon {
            transform: rotate(-8deg) scale(1.06);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #2c3e50;
        }

        .feature-card p {
            color: #7f8c8d;
            line-height: 1.7;
        }

        /* Showcase Section */
        .showcase {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
        }

        .showcase-header {
            text-align: center;
            max-width: 760px;
            margin: 0 auto 50px;
        }

        .showcase h2 {
            font-size: 2.4rem;
            color: #022d62;
            margin: 18px 0 12px;
        }

        .showcase p {
            color: #5a6c7d;
            font-size: 1.05rem;
            line-height: 1.7;
        }

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

        .glass-card {
            padding: 16px;
            border-radius: 16px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            box-shadow: 0 20px 60px rgba(2, 45, 98, 0.18);
            border: 1px solid rgba(3, 64, 120, 0.12);
        }

        .glass-card img {
            width: 100%;
            display: block;
            border-radius: 12px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        }

        .slider {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            background: #0b2850;
        }

        .slides {
            display: flex;
            transition: transform 0.6s ease;
            will-change: transform;
        }

        .slide {
            min-width: 100%;
            position: relative;
            opacity: 0;
            transform: scale(0.98);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }

        .slide.active {
            opacity: 1;
            transform: scale(1);
        }

        .slide img {
            display: block;
            width: 100%;
            border-radius: 12px;
        }

        .slide-caption {
            position: absolute;
            left: 16px;
            bottom: 16px;
            right: 16px;
            background: rgba(2, 45, 98, 0.85);
            color: white;
            padding: 10px 14px;
            border-radius: 10px;
            font-size: 0.95rem;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
        }

        .slider-control {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: #356490;
            border: 1px solid rgba(255,255,255,0.35);
            color: white;
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.25s ease;
            backdrop-filter: blur(6px);
        }

        .slider-control:hover {
            /* background: #356490; */
            transform: translateY(-50%) scale(1.05);
        }

        .slider-control.prev { left: 12px;
            
         }
        .slider-control.next { right: 12px; }

        .slider-dots {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
        }

        .slider-dots button {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            border: none;
            background: rgba(255,255,255,0.4);
            cursor: pointer;
            transition: all 0.25s ease;
            padding: 0;
        }

        .slider-dots button.active {
            background: #fff;
            transform: scale(1.15);
            box-shadow: 0 0 0 4px rgba(255,255,255,0.15);
        }

        @media (max-width: 768px) {
            .slide-caption {
                font-size: 0.9rem;
                left: 12px;
                right: 12px;
                bottom: 12px;
            }

            .slider-control {
                width: 34px;
                height: 34px;
            }
        }

        @media (max-width: 480px) {
            .slide-caption {
                font-size: 0.9rem;
                left: 12px;
                right: 12px;
                bottom: 12px;
            }

            .slider-control {
                width: 34px;
                height: 34px;
            }
        }

        @media (max-width: 500px) {
            .slide-caption {
                display: none;
            }
        }

        .showcase-details {
            display: flex;
            flex-direction: column;
            gap: 18px;
        }

        .detail {
            display: flex;
            gap: 16px;
            padding: 16px;
            background: white;
            border-radius: 12px;
            box-shadow: 0 8px 30px rgba(0,0,0,0.06);
            border: 1px solid #e8eef6;
        }

        .detail-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: linear-gradient(135deg, #022d62 0%, #034078 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }

        .detail-text h3 {
            margin: 0 0 6px;
            color: #022d62;
            font-size: 1.1rem;
        }

        .detail-text p {
            margin: 0;
            color: #5a6c7d;
            line-height: 1.5;
        }

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

            .showcase-header h2 {
                font-size: 2.1rem;
            }
        }

        @media (max-width: 600px) {
            .showcase {
                padding: 60px 0;
            }

            .glass-card {
                padding: 12px;
            }

            .detail {
                align-items: flex-start;
            }

          
        }

        /* Stats Section */
        .stats {
            display: none;
            color: #2c3e50;
            padding: 45px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

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

        @media (max-width: 992px) and (min-width: 600px) {
            .stats-grid {
                grid-template-columns: repeat(2, minmax(0, 1fr));
            }
        }

        .stat-item h3 {
            font-size: 3rem;
            margin-bottom: 10px;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Pricing Section */
        .pricing {
            padding: 90px 0;
            background: linear-gradient(135deg, #f6f9ff 0%, #eef3ff 40%, #f8f9ff 100%);
        }

        .pricing-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
            gap: 32px;
            max-width: 1040px;
            margin: 0 auto 30px;
        }

        .pricing-card {
            background: linear-gradient(145deg, rgba(255,255,255,0.96) 0%, rgba(249,252,255,0.92) 100%);
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(2,45,98,0.12);
            border: 1px solid rgba(2,45,98,0.08);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .pricing-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 60px rgba(2,45,98,0.18);
            border-color: rgba(2,45,98,0.2);
        }

        .pricing-card.premium {
            border: 1.5px solid #022d62;
            box-shadow: 0 20px 70px rgba(2,45,98,0.25);
            background: radial-gradient(circle at 20% 20%, rgba(96,165,250,0.08), transparent 45%),
                radial-gradient(circle at 80% 0%, rgba(2,45,98,0.12), transparent 40%),
                linear-gradient(145deg, rgba(255,255,255,1), rgba(234,243,255,0.96));
            position: relative;
        }

        .plan-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 7px 14px;
            border-radius: 999px;
            font-size: 0.85rem;
            font-weight: 700;
            margin-bottom: 16px;
            background: rgba(2,45,98,0.08);
            color: #022d62;
            width: fit-content;
        }

        .plan-badge.popular {
            background: #022d62;
            color: white;
        }



        .pricing-card h3 {
            font-size: 1.4rem;
            margin: 0;
            color: #022d62;
        }

        .plan-note {
            color: #5a6c7d;
            margin: 6px 0 16px;
            font-size: clamp(0.95rem, 0.5vw + 0.8rem, 1.05rem);
        }

        .features-list {
            text-align: left;
            margin: 24px 0 22px;
        }

        .features-list li {
            padding: 10px 0;
            border-bottom: 1px solid #ecf0f1;
            list-style: none;
            position: relative;
            padding-left: 30px;
        }

        .features-list li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #27ae60;
            font-weight: bold;
            font-size: 1.2rem;
        }



        .pricing-footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            margin-top: 10px;
            padding: 16px 20px;
            border-radius: 12px;
            background: rgba(2,45,98,0.06);
            border: 1px solid rgba(2,45,98,0.08);
        }

        .pricing-note {
            color: #022d62;
            font-weight: 600;
        }

        .pricing-note a {
            color: #034078;
            font-weight: 700;
            text-decoration: none;
        }

        .pricing-cta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        /* Pricing buttons */
        .pricing-card .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            margin-top: auto;
            padding: 14px 18px;
            border-radius: 12px;
            background: linear-gradient(135deg, #022d62 0%, #0f6cc7 100%);
            color: #fff;
            border: none;
            box-shadow: 0 14px 30px rgba(2,45,98,0.22);
            letter-spacing: 0.3px;
            position: relative;
            overflow: hidden;
            transition: all 0.25s ease;
        }

        .pricing-card .btn::after {
            content: '';
            position: absolute;
            top: 0;
            left: -40%;
            width: 40%;
            height: 100%;
            background: linear-gradient(120deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
            transform: skewX(-20deg);
            opacity: 0;
            transition: all 0.35s ease;
        }

        .pricing-card .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 18px 38px rgba(2,45,98,0.26);
        }

        .pricing-card .btn:hover::after {
            left: 120%;
            opacity: 1;
        }

        .pricing-head {
            margin-bottom: 36px;
        }

        @media (max-width: 768px) {
            .pricing {
                padding: 70px 0;
            }

            .pricing-footer {
                flex-direction: column;
                align-items: flex-start;
            }

            .pricing-card {
                padding: 32px;
            }
        }

        /* FAQ Section */
        .faq {
            padding: 90px 0;
            background: linear-gradient(135deg, #f8fbff 0%, #eef3ff 45%, #e6f0ff 100%);
            position: relative;
            overflow: hidden;
        }

        .faq::before,
        .faq::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: rgba(2,45,98,0.06);
            filter: blur(0px);
        }

        .faq::before {
            width: 260px;
            height: 260px;
            top: -80px;
            left: -120px;
        }

        .faq::after {
            width: 280px;
            height: 280px;
            bottom: -120px;
            right: -140px;
        }

        .faq-list {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .faq-item {
            background: rgba(255,255,255,0.9);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(2,45,98,0.08);
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(2,45,98,0.06);
        }

        .faq-item:hover {
            box-shadow: 0 14px 36px rgba(2,45,98,0.14);
            transform: translateY(-2px);
        }

        .faq-item.active {
            box-shadow: 0 16px 40px rgba(2,45,98,0.16);
            border-color: rgba(2,45,98,0.2);
        }

        .faq-question {
            padding: 22px 24px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 600;
            color: #2c3e50;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            user-select: none;
            gap: 18px;
        }

        .faq-question:hover {
            color: #022d62;
        }

       
        
        .faq-toggle {
    font-size: 1.4rem;
    font-weight: 500;
    color: #022d62;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    background: rgba(2, 45, 98, 0.12);
    transition: all 0.3s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-content: space-around;
    justify-content: space-between;
}

        .faq-item.active .faq-toggle {
            background: #022d62;
            color: white;
        }

        .faq-answer {
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            color: #5a6c7d;
            line-height: 1.6;
            background: linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 100%);
        }

        .faq-item.active .faq-answer {
            padding: 0 25px 20px;
            max-height: 250px;
        }

        /* Footer CTA */
        .footer-cta {
            position: relative;
            background: linear-gradient(135deg, #022d62 0%, #0b4a92 50%, #0f6cc7 100%);
            color: #f8fbff;
            padding: 70px 0;
            text-align: center;
            overflow: hidden;
        }

        .footer-cta::before,
        .footer-cta::after {
            content: '';
            position: absolute;
            border-radius: 50%;
            background: rgba(255,255,255,0.08);
            filter: blur(0px);
        }

        .footer-cta::before {
            width: 220px;
            height: 220px;
            top: -60px;
            left: -40px;
        }

        .footer-cta::after {
            width: 280px;
            height: 280px;
            bottom: -80px;
            right: -50px;
        }

        .footer-cta h2 {
            font-size: 2.1rem;
            margin-bottom: 16px;
            font-weight: 700;
            color: #fefefe;
        }

        .footer-cta p {
            font-size: 1.2rem;
            margin-bottom: 28px;
            opacity: 0.95;
            color: #dfefff;
        }

        .footer-cta .container {
            position: relative;
            z-index: 1;
            max-width: 640px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-cta .btn {
            background: #fefefe;
            color: #0b4a92;
            border: none;
            box-shadow: 0 12px 30px rgba(0,0,0,0.2);
            padding: 12px 22px;
            border-radius: 10px;
            transition: all 0.25s ease;
            font-size: 1rem;
            align-self: center;
            width: auto;
        }

        .footer-cta .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 16px 40px rgba(0,0,0,0.25);
        }

        /* Money Back Guarantee Section */
        .money-back-guarantee {
            background: #e6f1f7;
            padding: 90px 0;
            text-align: center;
        }

        .guarantee-badge {
            margin-bottom: 24px;
        }

        .guarantee-img {
            width: 140px;
            height: auto;
            border-radius: 50%;
            box-shadow: 0 8px 25px rgba(2,45,98,0.15);
        }

        .money-back-guarantee h2 {
            font-size: 2.4rem;
            color: #0d1b2a;
            margin-bottom: 18px;
            font-weight: 700;
        }

        .money-back-guarantee .separator {
            width: 120px;
            height: 2px;
            background: #0d6fb8;
            margin: 0 auto 24px auto;
            border-radius: 4px;
        }

        .money-back-guarantee p {
            font-size: 1rem;
            color: #1c2c3d;
            max-width: 640px;
            margin: 0 auto;
            line-height: 1.6;
        }

        /* Footer */
        footer {
            background: #022d62;
            color: white;
            padding: 60px 0 20px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
        }

        /* .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        } */

        .footer-content {
            display: flex;
            margin-bottom: 40px;
            justify-content: space-between;
        }

        @media (max-width: 768px) {
            .footer-content {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }

        .footer-section h3 {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #60A5FA;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            text-decoration: none;
            color: white;
        }

        .footer-logo .logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .footer-logo .logo-text {
            font-size: 1.3rem;
            font-weight: 700;
        }

        .footer-description {
            color: #b8c5d6;
            line-height: 1.6;
            margin-bottom: 25px;
            max-width: 300px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

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

        .social-link:hover {
            background: #022d62;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(2,45,98,0.3);
        }

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

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: #b8c5d6;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }

        .footer-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: #60A5FA;
            transition: width 0.3s ease;
        }

        .footer-links a:hover {
            color: #60A5FA;
        }

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

        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 6px;
            color: white;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .newsletter-form input:focus {
            outline: none;
            border-color: #60A5FA;
            background: rgba(255, 255, 255, 0.15);
        }

        .newsletter-btn {
            padding: 12px 20px;
            background: linear-gradient(135deg, #022d62 0%, #034078 100%);
            color: white;
            border: none;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(2,45,98,0.3);
        }

        .newsletter-message {
            font-size: 0.85rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .newsletter-message.success {
            color: #4ade80;
            opacity: 1;
        }

        .newsletter-message.error {
            color: #f87171;
            opacity: 1;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 30px;
        }

        .footer-bottom-content {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
        }

        .footer-bottom-links {
            display: flex;
            gap: 20px;
        }

        .footer-bottom-links a {
            color: #b8c5d6;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: #60A5FA;
        }

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
            }

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

        /* 1024px and 1440px specific adjustments for hero container */
        @media (max-width: 1440px) and (min-width: 901px) {
            .hero .container {
                margin-top: 40px;
            }
        }
