
        :root {
            --primary-green: #B5EECB;
            --primary-yellow: #FCECA5;
            --primary-purple: #CBC7FC;
            --dark-text: #2c3e50;
            --light-text: #6c757d;
        }
        
        * {
            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-brand img{
            width:250px !important;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1.5rem 0;
            background: transparent !important;
            box-shadow: none;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-text) !important;
            font-weight: 500;
            margin: 0 1rem;
            transition: all 0.3s ease;
            position: relative;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-purple) !important;
            transform: translateY(-2px);
        }
        
        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--primary-purple);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }
        
        .navbar-nav .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-cta {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(203, 199, 252, 0.3);
            color: white;
        }
        
        /* Section Spacing */
        .section-padding {
            padding: 80px 0;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-yellow) 100%);
            min-height: 600px;
            display: flex;
            align-items: center;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            color: var(--dark-text);
            margin-bottom: 2rem;
        }
        
        .hero-image img {
            width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        /* About Section */
        .about-section {
            background: #f8f9fa;
        }
        
        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-yellow), var(--primary-green));
        }
        
        .counter-box {
            text-align: center;
            padding: 2rem;
        }
        
        .counter-box i {
            font-size: 3rem;
            color: var(--primary-purple);
            margin-bottom: 1rem;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark-text);
        }
        
        .counter-box p {
            font-size: 1.1rem;
            color: var(--dark-text);
            margin: 0;
        }
        
        /* Vision Mission */
        .vision-mission-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-10px);
        }
        
        .vision-mission-card i {
            font-size: 3rem;
            color: var(--primary-purple);
            margin-bottom: 1rem;
        }
        
        /* Why Choose Us */
        .why-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary-purple);
        }
        
        .why-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .why-card i {
            font-size: 2.5rem;
            color: var(--primary-purple);
            margin-bottom: 1rem;
        }
        
        .why-card h5 {
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 1rem;
        }
        
        /* Services Section */
        .service-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 1.5rem;
        }
        
        .service-card h5 {
            font-weight: 700;
            color: var(--dark-text);
            margin-bottom: 1rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-purple), var(--primary-green));
            padding: 60px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .cta-section p {
            color: white;
            font-size: 1.2rem;
            margin-bottom: 2rem;
        }
        
        /* FAQ Section */
        .accordion-button {
            background: var(--primary-green);
            color: var(--dark-text);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--primary-purple);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
            border-color: var(--primary-purple);
        }
        
        /* Reviews */
        .review-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 1rem;
        }
        
        .review-card img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-bottom: 1rem;
        }
        
        /* Subscribe Section */
        .subscribe-section {
            background: linear-gradient(135deg, var(--primary-yellow), var(--primary-green));
            padding: 60px 0;
        }
        
        /* Contact Section */
        .contact-info-box {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 2rem;
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary-purple);
            margin-bottom: 1rem;
        }
        
        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 60px 0 20px;
        }
        
        footer h5 {
            color: var(--primary-green);
            margin-bottom: 1.5rem;
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 0.5rem;
        }
        
        footer ul li a {
            color: #b8c1cc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--primary-green);
        }
        
        .footer-subscribe {
            background: rgba(255,255,255,0.1);
            padding: 1.5rem;
            border-radius: 10px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
        }
        
        .footer-bottom a {
            color: var(--primary-green);
            text-decoration: none;
            margin: 0 10px;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .navbar-nav {
                text-align: center;
            }
            
            .navbar-nav .nav-link {
                margin: 0.5rem 0;
            }
        }
