 

        :root {
            --primary-color: #1a1a1a;
            --secondary-color: #64748b;
            --accent-color: #3b82f6;
            --light-gray: #f8fafc;
            --border-color: #e2e8f0;
        }
        
        body {
            font-family: 'Montserrat', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.7;
            color: var(--primary-color);
            font-weight: 400;
        }
        
        /* Custom Bootstrap Overrides */
        .btn-primary {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            font-weight: 500;
            padding: 12px 24px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        
        .btn-primary:hover {
            background-color: #333; 
            border-color: #333;
            transform: translateY(-1px);
        }
        
        .btn-outline-primary {
            color: white;
            border-color: var(--border-color);
            font-weight: 500;
            padding: 12px 24px;
            border-radius: 8px;
            transition: all 0.2s ease;
        }
        
        .btn-outline-primary:hover {
            color: black;
            background-color: white;
            border-color: #cbd5e1;
            
        }
        
        /* Header Styles */
        .navbar {
            background-color: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border-color);
            padding: 20px 0;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color) !important;
            letter-spacing: -0.02em;
        }
        
        .navbar-nav .nav-link {
            color: var(--secondary-color) !important;
            font-weight: 500;
            font-size: 0.95rem;
            margin: 0 8px;
            padding: 8px 12px !important;
            transition: color 0.2s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .dropdown-menu {
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.1);
            padding: 16px 0;
            min-width: 220px;
        }
        
        .dropdown-item {
            padding: 12px 24px;
            color: var(--secondary-color);
            font-size: 0.9rem;
            transition: all 0.2s ease;
            border-left: 3px solid transparent;
        }
        
        .dropdown-item:hover {
            background-color: var(--light-gray);
            color: var(--primary-color);
            border-left-color: var(--primary-color);
        }
        
        .dropdown-item.featured {
            background-color: #f1f5f9;
            color: var(--primary-color);
            font-weight: 500;
            border-left-color: var(--accent-color);
        }
        
        
        /* MSEA Section */
          .msea-section {
            background: white;
            color: black;
            padding: 100px 0 10px;
            position: relative;
            overflow: hidden;
        }
         .msea-subtitle {
            font-size: 1.25rem;
            color: var(--secondary-color);
            line-height: 1.6;
            font-weight: 400;
            margin-bottom: 2.5rem;
            color:black;
        }
        
        
        /* Hero Section 
        .hero-section {
            background: linear-gradient(135deg, var(--light-gray) 0%, #f1f5f9 100%);
            padding: 140px 0 100px;
            position: relative;
        }
        
            
        
        /* Hero Section */
          .hero-section {
            background: linear-gradient(135deg, rgba(27, 65, 146, 0.9), rgba(54, 104, 209, 0.9)), 
            url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ff000008" points="0,0 1000,300 1000,1000 0,700"/></svg>');
            color: white;
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff18"/><circle cx="80" cy="80" r="1.5" fill="%23ffffff28"/><circle cx="40" cy="80" r="1.5" fill="%23fbff0025"/></svg>');
            animation: float 20s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }
        
        
        .hero-content {
            position: relative;
            z-index: 1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            line-height: 1.1;
            color: var(--primary-color);
            letter-spacing: -0.03em;
            margin-bottom: 1.5rem;
            color:white;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--secondary-color);
            line-height: 1.6;
            font-weight: 400;
            margin-bottom: 2.5rem;
            color:white;
        }
        
        .stat-card {
             text-align: center;
            padding: 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.25rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: white;
            font-weight: 500;
        }
        
        .success-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            border: 1px solid rgba(0,0,0,0.06);
            position: relative;
            overflow: hidden;
        }
        
     /*   .success-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(135deg, #f1f5f9 0%, var(--border-color) 100%);
            border-radius: 20px 20px 0 0;
        } */
        
        .success-avatar {
            position: relative;
            z-index: 2;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 2rem;
            font-weight: 600;
            border: 4px solid white;
            box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
            margin: 0 auto 20px;
        }
        
        .metrics-row {
            background: var(--light-gray);
            border-radius: 12px;
            border: 1px solid var(--border-color);
            padding: 16px;
            margin: 20px 0;
        }
        
        .metric-item {
            text-align: center;
        }
        
        .metric-number {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 4px;
        }
        
        .metric-label {
            font-size: 0.75rem;
            color: var(--secondary-color);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .growth-chart {
            width: 100%;
            height: 60px;
            margin: 16px 0;
            position: relative;
            background: var(--light-gray);
            border-radius: 8px;
            overflow: hidden;
        }
        
        .chart-bar {
            position: absolute;
            bottom: 0;
            background: linear-gradient(to top, var(--accent-color), #60a5fa);
            border-radius: 4px 4px 0 0;
            animation: growBar 2s ease-out forwards;
        }
        
        .chart-bar:nth-child(1) { left: 10%; width: 8%; animation-delay: 0.5s; }
        .chart-bar:nth-child(2) { left: 25%; width: 8%; animation-delay: 0.7s; }
        .chart-bar:nth-child(3) { left: 40%; width: 8%; animation-delay: 0.9s; }
        .chart-bar:nth-child(4) { left: 55%; width: 8%; animation-delay: 1.1s; }
        .chart-bar:nth-child(5) { left: 70%; width: 8%; animation-delay: 1.3s; }
        
        @keyframes growBar {
            from { height: 0; }
            to { height: var(--final-height, 100%); }
        }
        
        .success-quote {
            position: relative;
            padding: 16px 0;
            color:black;
        }
        
     
        
        /* Section Styles */
        .section-title {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        
        .section-subtitle {
            font-size: 1.2rem;
            color: var(--secondary-color);
            margin-bottom: 4rem;
            line-height: 1.6;
        }
        
        .problem-card {
            background: #2684FE;
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid var(--border-color);
            transition: all 0.2s ease;
            height: 100%;
            color:white;
        }
        
        .problem-card p{
            color:#edf1f7;
        }
        
        .problem-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.08);
        }
        
        .problem-icon {
            width: 48px;
            height: 48px;
            background: #caddfc;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.25rem;
            font-size: 1.5rem;
        }
        
        .solution-features {
            list-style: none;
            padding: 0;
        }
        
        .solution-features li {
            padding: 16px 0;
            padding-left: 32px;
            position: relative;
            font-size: 1.05rem;
            color: var(--secondary-color);
            line-height: 1.6;
        }
        
        .solution-features li::before {
            content: '✓';
            position: absolute;
            left: 0;
            top: 16px;
            color: #10b981;
            font-weight: 600;
        }
        
        .solution-visual {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            text-align: center;
        }
        
        .solution-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1.5rem;
            margin-top: 2rem;
        }
        
        .solution-stat {
            background: var(--light-gray);
            padding: 1.5rem;
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }
        
        .solution-stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.25rem;
        }
        
        .quote-block {
            font-style: italic;
            font-size: 1.1rem;
            color: var(--secondary-color);
            border-left: 3px solid var(--border-color);
            padding-left: 1.5rem;
            margin: 2rem 0;
            line-height: 1.6;
        }
        
        /* Service Cards */
        .service-card {
            background: white;
            border: 1px solid var(--border-color);
            border-radius: 20px;
            transition: all 0.2s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            border-color: #cbd5e1;
        }
        
        .service-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(45deg, #89abf5, #d1e0ff);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }
        
        .service-price {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--primary-color);
            margin: 1.5rem 0;
        }
        
        .old-price {
            text-decoration: line-through;
            color: #94a3b8;
            font-size: 1rem;
            font-weight: 400;
        }
        
        .service-features {
            list-style: none;
            padding: 0;
        }
        
        .service-features li {
            padding: 8px 0;
            color: var(--secondary-color);
            font-size: 0.95rem;
            padding-left: 20px;
            position: relative;
        }
        
        .service-features li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--secondary-color);
        }
        
        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.2s ease;
            height: 100%;
        }
        
        .testimonial-card:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.06);
        }
        
        .testimonial-text {
            font-style: italic;
            font-size: 1.05rem;
            color: var(--secondary-color);
            line-height: 1.6;
        }
        
        .author-avatar {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* About Section */
        .about-image {
            width: 280px;
            height: 280px;
            border-radius: 20px;
            background: #caddfc;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: var(--secondary-color);
            font-weight: 600;
            margin: 0 auto;
        }
        
        .credential-badge {
            background: #f1f5f9;
            color: var(--secondary-color);
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-block;
            margin: 6px 6px 6px 0;
        }
        
        /* Final CTA */
        .cta-section {
            background-color: var(--primary-color);
            color: white;
        }
        
        .cta-title {
            font-size: 2.8rem;
            font-weight: 700;
            letter-spacing: -0.02em;
            margin-bottom: 1.5rem;
        }
        
        .cta-subtitle {
            font-size: 1.25rem;
            color: #cbd5e1;
            line-height: 1.6;
            margin-bottom: 3rem;
        }
        
        .btn-light {
            background-color: white;
            color: var(--primary-color);
            font-weight: 500;
            padding: 18px 36px;
            border-radius: 12px;
            transition: all 0.2s ease;
        }
        
        .btn-light:hover {
            background-color: var(--light-gray);
            transform: translateY(-2px);
        }
        
        .btn-outline-light {
            color: white;
            border-color: #374151;
            font-weight: 500;
            padding: 18px 36px;
            border-radius: 12px;
            transition: all 0.2s ease;
        }
        
        .btn-outline-light:hover {
            border-color: #4b5563;
            background-color: rgba(255,255,255,0.05);
            color: white;
        }
        
        .guarantee-box {
            background: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 16px;
            padding: 2rem;
            margin: 2rem 0;
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title,
            .cta-title {
                font-size: 2rem;
            }
            
            .stat-card {
                text-align: center;
                margin-bottom: 2rem;
            }
        }
 
 
     .center{
            text-align:center;
        }