
        :root {
            --lavender: #E6E6FA;
            --soft-blue: #ADD8E6;
            --white: #FFFFFF;
            --primary-color: #6B7FD7;
            --secondary-color: #4A90E2;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            display: flex;
            align-items: center;
            font-weight: 600;
            color: var(--primary-color) !important;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 1.5rem;
            color: var(--secondary-color);
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }

        .nav-item{
            margin-left:25px !important;
        }
        
        .btn-cta {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(107, 127, 215, 0.4);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--lavender) 0%, var(--soft-blue) 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content h1 {
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #333;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }
        
        .btn-hero {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-hero:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
            color: white;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--secondary-color);
            border-radius: 2px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto 50px;
        }
        
        /* About Section */
        .about-image {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-content p {
            margin-bottom: 20px;
            color: #555;
        }
        
        .btn-read-more {
            background: transparent;
            color: var(--primary-color);
            border: 2px solid var(--primary-color);
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-read-more:hover {
            background: var(--primary-color);
            color: white;
            transform: translateY(-2px);
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            color: white;
            padding: 60px 0;
        }
        
        .counter-item {
            text-align: center;
        }
        
        .counter-item i {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Vision & Mission */
        .vision-mission-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .vision-mission-card i {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            background: var(--lavender);
            transform: translateY(-5px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .feature-box h4 {
            font-weight: 600;
            margin-bottom: 15px;
            color: #333;
        }
        
        .feature-box p {
            color: #666;
        }
        
        /* Work Process */
        .process-step {
            text-align: center;
            position: relative;
            padding: 0 15px;
        }
        
        .process-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 35px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: var(--soft-blue);
            z-index: -1;
        }
        
        .process-icon {
            width: 70px;
            height: 70px;
            background: var(--lavender);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            transition: all 0.3s ease;
        }
        
        .process-step:hover .process-icon {
            background: var(--primary-color);
            color: white;
        }
        
        .process-icon i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        
        .process-step:hover .process-icon i {
            color: white;
        }
        
        /* Services Section */
        .service-card {
            background: var(--lavender);
            border-radius: 10px;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-img {
            height: 300px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h4 {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--primary-color);
        }
        
        .service-content p {
            color: #555;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        /* Reviews Section */
        .review-card {
            background: white;
            border-radius: 10px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }
        
        .review-rating {
            color: #FFC107;
            margin-bottom: 15px;
        }
        
        .review-text {
            color: #555;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .review-author {
            display: flex;
            align-items: center;
        }
        
        .review-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }
        
        .review-author h5 {
            margin: 0;
            font-weight: 600;
        }
        
        .review-author span {
            color: #888;
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .accordion-button {
            background-color: var(--lavender);
            color: var(--primary-color);
            font-weight: 500;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-large {
            background: white;
            color: var(--primary-color);
            border: none;
            padding: 15px 40px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .btn-cta-large:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 255, 255, 0.3);
            color: var(--primary-color);
        }
        
        /* Contact Section */
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-info-item i {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-right: 15px;
            width: 40px;
            text-align: center;
        }
        
        .contact-form {
            background: var(--lavender);
            padding: 30px;
            border-radius: 10px;
        }
        
        .form-control, .form-select {
            border: none;
            border-radius: 5px;
            padding: 12px 15px;
            margin-bottom: 15px;
        }
        
        .form-control:focus, .form-select:focus {
            box-shadow: 0 0 0 0.25rem rgba(107, 127, 215, 0.25);
            border-color: var(--primary-color);
        }
        
        /* Footer */
        footer {
            background: #2c3e50;
            color: white;
            padding: 70px 0 20px;
        }
        
        .footer-widget h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-widget h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--secondary-color);
        }
        
        .footer-widget p {
            color: #bbb;
            line-height: 1.8;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: var(--soft-blue);
        }
        
        .newsletter-form {
            display: flex;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            border: none;
            border-radius: 5px 0 0 5px;
        }
        
        .newsletter-form button {
            background: var(--primary-color);
            color: white;
            border: none;
            padding: 0 20px;
            border-radius: 0 5px 5px 0;
            transition: background 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--secondary-color);
        }
        
        .copyright {
            text-align: center;
            margin-top: 50px;
            padding-top: 20px;
            border-top: 1px solid #444;
            color: #bbb;
        }
        
        .copyright a {
            color: var(--soft-blue);
            text-decoration: none;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .process-step:not(:last-child):after {
                display: none;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
        }
