
        :root {
            --primary-color: #348aa7;
            --light-bg: #ebf2fa;
            --accent-color: #ffd97d;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .cta-btn {
            background-color: var(--primary-color);
            color: white !important;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .cta-btn:hover {
            background-color: #2a6d85;
            color: white !important;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 138, 167, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, rgba(52, 138, 167, 0.9), rgba(52, 138, 167, 0.7)), 
                        url('https://images.pexels.com/photos/271639/pexels-photo-271639.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
            background-size: cover;
            background-position: center;
            min-height: 90vh;
            display: flex;
            align-items: center;
            color: white;
            position: relative;
        }
        
        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }
        
        .hero-content p {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .hero-cta {
            background-color: var(--accent-color);
            color: #333;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 30px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .hero-cta:hover {
            background-color: #ffc833;
            color: #333;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 217, 125, 0.4);
        }
        
        /* About Section */
        .about-section {
            padding: 5rem 0;
            background-color: white;
        }
        
        .about-image {
            border-radius: 15px;
            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.3s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        .about-content h2 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .about-content p {
            color: #666;
            margin-bottom: 1rem;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--light-bg);
            padding: 4rem 0;
        }
        
        .counter-box {
            text-align: center;
            padding: 2rem;
        }
        
        .counter-box i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 0.5rem;
        }
        
        .counter-label {
            color: #666;
            font-weight: 500;
        }
        
        /* Vision & Mission */
        .vision-mission-section {
            padding: 5rem 0;
            background-color: white;
        }
        
        .vision-box, .mission-box {
            background-color: var(--light-bg);
            padding: 3rem;
            border-radius: 15px;
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-box:hover, .mission-box:hover {
            transform: translateY(-5px);
        }
        
        .vision-box h3, .mission-box h3 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        /* Why Choose Us */
        .why-choose-section {
            padding: 5rem 0;
            background-color: var(--light-bg);
        }
        
        .feature-box {
            text-align: center;
            padding: 2rem;
            background-color: white;
            border-radius: 15px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover .feature-icon {
            background-color: var(--accent-color);
            transform: rotate(360deg);
        }
        
        .feature-icon i {
            font-size: 2rem;
            color: white;
        }
        
        .feature-box h4 {
            color: var(--primary-color);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        /* Services Section */
        .services-section {
            padding: 5rem 0;
            background-color: white;
        }
        
        .service-card {
            background-color: var(--light-bg);
            border-radius: 15px;
            overflow: hidden;
            height: 100%;
            transition: all 0.3s ease;
            border: none;
        }
        
        .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 h5 {
            color: var(--primary-color);
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .service-card p {
            color: #666;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
        }
        
        .service-read-more {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .service-read-more:hover {
            color: #2a6d85;
            transform: translateX(5px);
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 5rem 0;
            background-color: var(--light-bg);
        }
        
        .review-card {
            background-color: white;
            padding: 2rem;
            border-radius: 15px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .stars {
            color: var(--accent-color);
            margin-bottom: 1rem;
        }
        
        .review-text {
            color: #666;
            font-style: italic;
            margin-bottom: 1.5rem;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
        }
        
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: var(--primary-color);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            margin-right: 1rem;
        }
        
        .reviewer-name {
            font-weight: 600;
            color: #333;
            margin: 0;
        }
        
        .reviewer-location {
            color: #666;
            font-size: 0.9rem;
            margin: 0;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 5rem 0;
            background-color: white;
        }
        
        .accordion-button {
            background-color: var(--light-bg);
            color: var(--primary-color);
            font-weight: 600;
            border: none;
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-body {
            color: #666;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), #2a6d85);
            padding: 5rem 0;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-weight: 700;
            margin-bottom: 1.5rem;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
        }
        
        .cta-button {
            background-color: var(--accent-color);
            color: #333;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 30px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .cta-button:hover {
            background-color: #ffc833;
            color: #333;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 217, 125, 0.4);
        }
        
        /* Contact Section */
        .contact-section {
            padding: 5rem 0;
            background-color: var(--light-bg);
        }
        
        .contact-info-box {
            background-color: white;
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            transition: all 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary-color);
            margin-bottom: 1rem;
        }
        
        .contact-form {
            background-color: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 10px;
            padding: 0.75rem 1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 0.2rem rgba(52, 138, 167, 0.25);
        }
        
        .submit-btn {
            background-color: var(--primary-color);
            color: white;
            padding: 0.75rem 2rem;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            background-color: #2a6d85;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(52, 138, 167, 0.3);
        }
        
        /* Footer */
        footer {
            background-color: #2c3e50;
            color: white;
            padding: 3rem 0 1rem;
        }
        
        .footer-widget h5 {
            color: var(--accent-color);
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .footer-widget ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-widget ul li {
            margin-bottom: 0.75rem;
        }
        
        .footer-widget ul li a {
            color: #bdc3c7;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-widget ul li a:hover {
            color: var(--accent-color);
        }
        
        .newsletter-form {
            display: flex;
            gap: 0.5rem;
            margin-top: 1rem;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 0.5rem 1rem;
            border: none;
            border-radius: 25px;
        }
        
        .newsletter-form button {
            background-color: var(--primary-color);
            color: white;
            border: none;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: var(--accent-color);
            color: #333;
        }
        
        .footer-bottom {
            border-top: 1px solid #34495e;
            margin-top: 2rem;
            padding-top: 1rem;
            text-align: center;
        }
        
        .footer-bottom a {
            color: var(--accent-color);
            text-decoration: none;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
