
        :root {
            --primary-color: #abc4ff;
            --secondary-color: #b6ccfe;
            --tertiary-color: #c1d3fe;
            --dark-color: #1a1a2e;
            --light-color: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1.5rem 0;
            background-color: transparent !important;
            box-shadow: none;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
            text-align: center;
        }
        
        .navbar-nav .nav-item {
            margin: 0 1rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            transition: all 0.3s ease;
            padding: 0.5rem 1rem;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .cta-btn {
            background-color: var(--primary-color);
            color: white !important;
            border-radius: 30px;
            padding: 0.5rem 1.5rem !important;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cta-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            padding: 5rem 0;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        }
        
        .hero-content h1 {
            font-size: 5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: #333;
        }
        
        .hero-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Section Styles */
        .section-padding {
            padding: 5rem 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            text-align: center;
            color: var(--dark-color);
        }
        
        .bg-light-alt {
            background-color: var(--tertiary-color);
        }
        
        .bg-primary-alt {
            background-color: var(--primary-color);
        }
        
        /* About Section */
        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-content h3 {
            font-size: 1.8rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        .about-content p {
            margin-bottom: 1.5rem;
        }
        
        .read-more-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.7rem 1.5rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .read-more-btn:hover {
            background-color: var(--secondary-color);
            transform: translateY(-2px);
        }
        
        /* Counter Section */
        .counter-box {
            text-align: center;
            padding: 2rem;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
        }
        
        .counter-box:hover {
            transform: translateY(-5px);
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .counter-box h3 {
            font-size: 2rem;
            font-weight: 700;
            color: var(--dark-color);
        }
        
        .counter-box p {
            color: #666;
        }
        
        /* Vision Mission */
        .vision-mission-box {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            height: 100%;
        }
        
        .vision-mission-box h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
        }
        
        /* Why Choose Us */
        .why-choose-box {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .why-choose-box:hover {
            transform: translateY(-5px);
        }
        
        .why-choose-box i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 1.5rem;
        }
        
        .why-choose-box h4 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        /* Services */
        .service-card {
            background: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 1.5rem;
        }
        
        .service-card-body h4 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--dark-color);
        }
        
        .service-card-body p {
            margin-bottom: 1.5rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary-color), var(--tertiary-color));
            padding: 5rem 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--dark-color);
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cta-btn-large {
            background-color: var(--dark-color);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-size: 1.1rem;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .cta-btn-large:hover {
            background-color: #333;
            transform: translateY(-2px);
        }
        
        /* FAQ */
        .accordion-button {
            background-color: var(--primary-color);
            color: var(--dark-color);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--secondary-color);
            color: var(--dark-color);
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        /* Reviews */
        .review-card {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 1rem;
        }
        
        .review-card p {
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .review-card h5 {
            font-weight: 600;
            color: var(--dark-color);
        }
        
        .review-card small {
            color: #666;
        }
        
        /* Newsletter */
        .newsletter-form {
            max-width: 500px;
            margin: 0 auto;
        }
        
        .newsletter-input {
            border-radius: 30px;
            border: none;
            padding: 0.8rem 1.5rem;
            margin-bottom: 1rem;
        }
        
        .newsletter-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            width: 100%;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background-color: var(--secondary-color);
        }
        
        /* Contact */
        .contact-info-box {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
            margin-bottom: 2rem;
        }
        
        .contact-info-box i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 1rem;
        }
        
        .contact-form {
            background: white;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .form-control {
            border-radius: 10px;
            border: 1px solid #ddd;
            padding: 0.8rem 1rem;
            margin-bottom: 1rem;
        }
        
        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.25rem rgba(171, 196, 255, 0.25);
        }
        
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.8rem 2rem;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            background-color: var(--secondary-color);
        }
        
        /* Footer */
        footer {
            background-color: var(--dark-color);
            color: white;
            padding: 4rem 0 2rem;
        }
        
        footer h5 {
            font-size: 1.3rem;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 0.8rem;
        }
        
        footer ul li a {
            color: #ccc;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--primary-color);
        }
        
        .footer-cta {
            background-color: var(--primary-color);
            color: var(--dark-color);
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            margin-bottom: 1.5rem;
        }
        
        .footer-cta a {
            color: var(--dark-color);
            font-weight: 600;
            text-decoration: none;
        }
        
        .footer-cta a:hover {
            text-decoration: underline;
        }
        
        .copyright {
            border-top: 1px solid #444;
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: #ccc;
        }
        
        .copyright a {
            color: var(--primary-color);
            text-decoration: none;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .navbar-nav {
                flex-direction: column;
            }
            
            .navbar-nav .nav-item {
                margin: 0.5rem 0;
            }
        }
