    :root {
      --primary-color: #0057D9;
      --secondary-color: #002B5B;
      --light-bg: #F5F7FA;
      --dark-text: #0A0A0A;
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--dark-text);
      line-height: 1.6;
    }
    
    /* Navbar Styles */
    .navbar {
      background: transparent !important;
      padding: 1rem 0;
      transition: all 0.3s ease;
    }
    
    .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
      color: var(--secondary-color) !important;
    }
    
    .navbar-nav .nav-link {
      color: var(--dark-text) !important;
      font-weight: 500;
      margin: 0 0.5rem;
            transition: color 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }
        
        .btn-cta {
            background: var(--primary-color);
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-cta:hover {
            background: var(--secondary-color);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 87, 217, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(0, 87, 217, 0.1) 0%, rgba(0, 43, 91, 0.05) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(0, 87, 217, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-content h1 {
            font-size:4.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 2rem;
        }
        
        .btn-hero {
            background: var(--primary-color);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-hero:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 87, 217, 0.3);
            color: white;
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background: white;
        }
        
        .about-img {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-content h2 {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .about-content p {
            color: #666;
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        /* Counter Section */
        .counter-section {
            background: var(--primary-color);
            padding: 60px 0;
            color: white;
        }
        
        .counter-box {
            text-align: center;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
        }
        
        .counter-box p {
            font-size: 1.1rem;
            margin: 0;
        }
        
        /* Vision & Mission */
        .vision-mission {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .vm-box {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            height: 100%;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease;
        }
        
        .vm-box:hover {
            transform: translateY(-5px);
        }
        
        .vm-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .vm-box h3 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        /* Why Choose Us */
        .why-choose {
            padding: 80px 0;
            background: white;
        }
        
        .feature-box {
            text-align: center;
            padding: 2rem;
            transition: all 0.3s ease;
            border-radius: 10px;
        }
        
        .feature-box:hover {
            background: var(--light-bg);
            transform: translateY(-5px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .feature-box h4 {
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 1.5rem;
        }
        
        .service-card-body h5 {
            color: var(--secondary-color);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .service-card-body p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 1rem;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background: white;
        }
        
        .review-card {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            position: relative;
        }
        
        .review-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 4rem;
            color: var(--primary-color);
            opacity: 0.2;
        }
        
        .review-content {
            position: relative;
            z-index: 1;
        }
        
        .review-stars {
            color: #FFD700;
            margin-bottom: 1rem;
        }
        
        .review-author {
            font-weight: 600;
            color: var(--secondary-color);
            margin-top: 1rem;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--light-bg);
        }
        
        .accordion-button {
            background: white;
            color: var(--secondary-color);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-color);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .btn-cta-white {
            background: white;
            color: var(--primary-color);
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-cta-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
            color: var(--primary-color);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background: white;
        }
        
        .contact-info {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 15px;
            height: 100%;
        }
        
        .contact-info-item {
            margin-bottom: 1.5rem;
        }
        
        .contact-info-item i {
            color: var(--primary-color);
            font-size: 1.5rem;
            margin-right: 1rem;
        }
        
        .contact-form {
            background: var(--light-bg);
            padding: 2rem;
            border-radius: 15px;
        }
        
        .form-control, .form-select {
            border: 1px solid #ddd;
            border-radius: 8px;
            padding: 0.75rem;
            margin-bottom: 1rem;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(0, 87, 217, 0.25);
        }
        
        /* Footer */
        footer {
            background: var(--secondary-color);
            color: white;
            padding: 50px 0 20px;
        }
        
        .footer-widget h4 {
            margin-bottom: 1.5rem;
            color: white;
        }
        
        .footer-widget ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 0.5rem;
        }
        
        .footer-widget ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-widget ul li a:hover {
            color: white;
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 1rem;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.5rem;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0.5rem 1rem;
            border-radius: 0 5px 5px 0;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--secondary-color);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 2rem;
            padding-top: 2rem;
            text-align: center;
        }
        
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            margin: 0 0.5rem;
        }
        
        .footer-bottom a:hover {
            color: white;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .navbar-nav {
                background: white;
                padding: 1rem;
                border-radius: 10px;
                margin-top: 1rem;
            }
        }
