        /* ============================================
           MODERN DESIGN SYSTEM WITH GSAP ANIMATIONS
           - Deep Ocean Blue (#003D82) for trust
           - Light Sky Blue (#E8F4F8) for calm
           - Teal Accent (#4ECDC4) for highlights
           - Premium spacing and typography
           ============================================ */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-blue: #003D82;
            --dark-blue: #002855;
            --light-blue: #E8F4F8;
            --sky-blue: #4ECDC4;
            --off-white: #F8FAFB;
            --text-dark: #1a1a1a;
            --text-light: #ffffff;
            --text-muted: #6b7280;
            --border-light: #e5e7eb;
            --shadow-sm: 0 2px 8px rgba(0, 61, 130, 0.06);
            --shadow-md: 0 8px 24px rgba(0, 61, 130, 0.1);
            --shadow-lg: 0 16px 40px rgba(0, 61, 130, 0.12);
            --shadow-xl: 0 20px 50px rgba(0, 61, 130, 0.15);
        }

        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            background-color: var(--off-white);
            line-height: 1.6;
            overflow-x: hidden;
            font-weight: 400;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            color: var(--primary-blue);
            letter-spacing: -0.5px;
        }

        h1 { font-size: 3.5rem; line-height: 1.15; }
        h2 { font-size: 2.75rem; line-height: 1.2; }
        h3 { font-size: 1.75rem; line-height: 1.3; }
        h4 { font-size: 1.25rem; line-height: 1.4; }

        p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
        }

        /* ============================================
           SMOOTH SCROLLING
           ============================================ */

        html {
            scroll-behavior: smooth;
        }

        /* ============================================
           NAVIGATION BAR
           ============================================ */

        .navbar {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            box-shadow: var(--shadow-md);
            padding: 1.2rem 0;
            position: sticky;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

  
.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-light) !important;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

 

        .navbar-brand i {
            font-size: 1.75rem;
        }

        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            margin: 0 0.75rem;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.95rem;
        }

        .navbar-nav .nav-link:hover {
            color: var(--sky-blue) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--sky-blue), transparent);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }

        .btn-nav {
            background: linear-gradient(135deg, var(--sky-blue) 0%, #3db8b0 100%);
            color: var(--text-dark);
            font-weight: 600;
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            box-shadow: var(--shadow-sm);
        }

        .btn-nav:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        /* ============================================
           HERO SECTION - COMPACT & FANCY
           ============================================ */

       
        /* ============================================
           FEATURES SECTION
           ============================================ */

        .features {
            padding: 100px 0;
            background: linear-gradient(180deg, var(--off-white) 0%, #ffffff 100%);
            position: relative;
        }

        .section-title {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-title h2 {
            font-size: 2.75rem;
            margin-bottom: 1rem;
            color: var(--primary-blue);
            font-weight: 800;
        }

        .section-title p {
            font-size: 1.1rem;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
            font-weight: 400;
        }

        .feature-card {
            background: var(--text-light);
            border: 1px solid var(--border-light);
            border-radius: 20px;
            padding: 3rem 2.5rem;
            text-align: center;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-sm);
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--sky-blue), var(--primary-blue));
            transform: scaleX(0);
            transition: transform 0.4s ease;
            transform-origin: left;
        }

        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: var(--shadow-lg);
            border-color: var(--sky-blue);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            color: var(--text-light);
            font-size: 2.2rem;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-md);
        }

        .feature-card:hover .feature-icon {
            background: linear-gradient(135deg, var(--sky-blue) 0%, #3db8b0 100%);
            transform: scale(1.15) rotate(10deg);
            box-shadow: var(--shadow-lg);
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--primary-blue);
            font-weight: 700;
        }

        .feature-card p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            font-weight: 400;
        }

        /* ============================================
           SERVICES SECTION
           ============================================ */

        .services {
            padding: 100px 0;
            background: var(--off-white);
        }

        .service-item {
            background: var(--text-light);
            border-left: 4px solid var(--sky-blue);
            border-radius: 12px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            transition: all 0.4s ease;
            box-shadow: var(--shadow-sm);
        }

        .service-item:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-md);
            border-left-color: var(--primary-blue);
        }

        .service-item h4 {
            color: var(--primary-blue);
            margin-bottom: 1rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .service-item i {
            color: var(--sky-blue);
            font-size: 1.5rem;
        }

        .service-item p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 0;
        }

        /* ============================================
           PRICING SECTION
           ============================================ */

     
        /* ============================================
           TESTIMONIALS SECTION
           ============================================ */

        .testimonials {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: var(--text-light);
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(78, 205, 196, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .testimonials .section-title h2,
        .testimonials .section-title p {
            color: var(--text-light);
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 16px;
            padding: 2.5rem;
            margin-bottom: 2rem;
            backdrop-filter: blur(20px);
            transition: all 0.4s ease;
            position: relative;
            z-index: 2;
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.12);
            transform: translateY(-8px);
            border-color: rgba(78, 205, 196, 0.3);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
        }

        .stars {
            color: var(--sky-blue);
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
            letter-spacing: 2px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.95);
        }

        .testimonial-author {
            font-weight: 700;
            color: var(--sky-blue);
            font-size: 1rem;
        }

        .testimonial-role {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.75);
            margin-top: 0.25rem;
        }

        /* ============================================
           CTA SECTION
           ============================================ */

        .cta {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-blue) 0%, rgba(232, 244, 248, 0.5) 100%);
            text-align: center;
            position: relative;
        }

        .cta h2 {
            font-size: 2.75rem;
            margin-bottom: 1.5rem;
            color: var(--primary-blue);
            font-weight: 800;
        }

        .cta p {
            font-size: 1.1rem;
            color: var(--text-muted);
            margin-bottom: 2.5rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-cta {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: var(--text-light);
            border: none;
            padding: 1.1rem 2.8rem;
            font-size: 1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-md);
        }

        .btn-cta:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
            color: var(--text-light);
            text-decoration: none;
        }

        /* ============================================
           FOOTER
           ============================================ */

        footer {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: var(--text-light);
            padding: 4rem 0 1.5rem;
        }

        footer h5 {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            font-weight: 700;
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        footer ul li {
            margin-bottom: 0.75rem;
        }

        footer a {
            color: rgba(255, 255, 255, 0.75);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        footer a:hover {
            color: var(--sky-blue);
            transform: translateX(4px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2.5rem;
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.9rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-links a {
            width: 45px;
            height: 45px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transition: all 0.3s ease;
            font-size: 1rem;
        }

        .social-links a:hover {
            background: var(--sky-blue);
            color: var(--text-dark);
            transform: translateY(-5px);
            border-color: var(--sky-blue);
        }

        /* ============================================
           RESPONSIVE DESIGN
           ============================================ */

        @media (max-width: 992px) {
            h1 { font-size: 2.75rem; }
            h2 { font-size: 2.25rem; }
            
            .hero {
                padding: 50px 0;
                min-height: auto;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            
        }

        @media (max-width: 768px) {
            h1 { font-size: 2.25rem; }
            h2 { font-size: 1.75rem; }
            h3 { font-size: 1.4rem; }

            .section-title h2 {
                font-size: 2rem;
            }

            .cta h2 {
                font-size: 2rem;
            }

            .navbar-brand {
                font-size: 1.25rem;
            }

            

            .features, .services,  .testimonials, .cta {
                padding: 60px 0;
            }

            .feature-card, .service-item {
                padding: 2rem 1.5rem;
            }

        }

        @media (max-width: 576px) {
            h1 { font-size: 1.75rem; }
            h2 { font-size: 1.5rem; }
            h3 { font-size: 1.2rem; }

            .hero h1 {
                font-size: 1.5rem;
            }

            .hero p {
                font-size: 0.9rem;
            }

            .section-title h2 {
                font-size: 1.5rem;
            }

            .cta h2 {
                font-size: 1.5rem;
            }

            .feature-card, .service-item, .pricing-card {
                padding: 1.5rem;
            }

            .price {
                font-size: 2rem;
            }

            .hero {
                padding: 40px 0;
            }

            .features, .services, .pricing, .testimonials, .cta {
                padding: 40px 0;
            }

            
        }

        /* ============================================
           UTILITY CLASSES
           ============================================ */

        .text-white {
            color: var(--text-light);
        }

        .text-primary {
            color: var(--primary-blue);
        }

        .bg-light-blue {
            background-color: var(--light-blue);
        }

        .transition-smooth {
            transition: all 0.3s ease;
        }

        .rounded-lg {
            border-radius: 20px;
        }

        .shadow-md {
            box-shadow: var(--shadow-md);
        }
            /* ============================================
           HERO SECTION
           ============================================ */

        .hero {
            background: linear-gradient(135deg, var(--primary-blue) 0%, var(--dark-blue) 100%);
            color: var(--text-light);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            right: -100px;
            width: 400px;
            height: 400px;
            background: rgba(78, 205, 196, 0.1);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 1.5rem;
            line-height: 1.2;
            animation: slideInLeft 0.8s ease-out;
        }

        .hero p {
            font-size: 1.25rem;
            color: rgba(255, 255, 255, 0.95);
            margin-bottom: 2rem;
            max-width: 600px;
            animation: slideInLeft 0.8s ease-out 0.2s both;
        }

     
        .hero-image {
            animation: slideInRight 0.8s ease-out;
        }

        .hero-image img {
            max-width: 100%;
            height: auto;
            filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.2));
        }


     

 

        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1rem;
                padding: 10px;
             }

            .section-title h2 {
                font-size: 2rem;
            }

            .cta h2 {
                font-size: 2rem;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .navbar-brand {
                font-size: 1.25rem;
            }

            .hero {
                padding: 60px 0;
            }

            .features, .services, .pricing, .testimonials, .cta {
                padding: 60px 0;
            }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 0.95rem;
            }

            .section-title h2 {
                font-size: 1.75rem;
            }

            .cta h2 {
                font-size: 1.75rem;
            }

            .feature-card, .service-item, .pricing-card {
                padding: 1.5rem;
            }

            .price {
                font-size: 2.5rem;
            }

            .hero {
                padding: 40px 0;
            }

            .features, .services, .pricing, .testimonials, .cta {
                padding: 40px 0;
            }
        }

        /* ============================================
           UTILITY CLASSES
           ============================================ */

        .text-white {
            color: var(--text-light);
        }

        .text-primary {
            color: var(--primary-blue);
        }

        .bg-light-blue {
            background-color: var(--light-blue);
        }

        .transition-smooth {
            transition: all 0.3s ease;
        }

        .rounded-lg {
            border-radius: 15px;
        }

        .shadow-md {
            box-shadow: var(--shadow-md);
        }
    
        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height:100px;
            background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'><path d='M0,0 C240,60 480,120 720,60 C960,0 1200,120 1440,60 V120 H0 Z' fill='%23f8f9fa'/></svg>");
            background-size: cover;
            z-index: 1;
        }
        .container-fluid {
            position: relative;
            z-index: 2;
        }
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
        }
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            padding: 10px;
        }
        .btn-primary-hero {
            display: inline-block;
            padding: 12px 30px;
            background: #fff;
            color: var(--primary-blue);
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .btn-primary-hero:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        .hero-image {
            position: relative;
        }
        .hero-image > div {
            width: 100%;
            height: 400px;
            background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(78,205,196,0.1) 100%);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease;
        }
        .hero-image:hover > div {
            transform: scale(1.05);
        }
        #particles-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: 1;
        }
        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255,255,255,0.6);
            border-radius: 50%;
            pointer-events: none;
            transition: all 0.3s ease;
        }
        .particle:hover {
            transform: scale(2);
            background: rgba(255,255,255,1);
            box-shadow: 0 0 10px rgba(255,255,255,0.8);
        }
.imagelogo{
    width:80px;
    height:70px;
}