
        :root {
            --primary-color: #4682B4;
            --secondary-color: #B3E5FC;
            --accent-color: #FFFFFF;
            --dark-color: #2c3e50;
            --light-gray: #f8f9fa;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: transparent !important;
            padding: 20px 0;
            transition: all 0.3s ease;
        }
        
        .navbar-brand {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary-color) !important;
        }
        
        .navbar-brand i {
            color: var(--primary-color);
            margin-right: 10px;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-color) !important;
            font-weight: 500;
            margin: 0 15px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--primary-color) !important;
        }
        
        .cta-btn {
            background: linear-gradient(135deg, var(--primary-color), #5a9fd4);
            color: white !important;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
            border: none;
            cursor: pointer;
        }
        
        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(70, 130, 180, 0.3);
            color: white !important;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.pexels.com/photos/106399/pexels-photo-106399.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-section h1 {
            font-size: 5.5rem;
            font-weight: 700;
            color: var(--dark-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-section p {
            font-size: 1.2rem;
            color: var(--dark-color);
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* Section Styles */
        .section-title {
            font-size: 2.5rem;
            font-weight: 600;
            color: var(--dark-color);
            margin-bottom: 50px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-color);
        }
        
        /* About Section */
        .about-section {
            padding: 80px 0;
            background-color: var(--accent-color);
        }
        
        .about-image img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .about-text {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--dark-color);
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--primary-color), #5a9fd4);
            padding: 80px 0;
            color: white;
        }
        
        .counter-box {
            text-align: center;
            padding: 30px;
            background: rgba(255,255,255,0.1);
            border-radius: 10px;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
        }
        
        .counter-box:hover {
            transform: translateY(-5px);
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        /* Vision Mission Section */
        .vision-mission-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .vision-mission-box {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vision-mission-box:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-box h3 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .vision-mission-box i {
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        /* Features Section */
        .features-section {
            padding: 80px 0;
            background-color: var(--accent-color);
        }
        
        .feature-box {
            text-align: center;
            padding: 40px 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #5a9fd4);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 2rem;
        }
        
        .feature-box h4 {
            color: var(--dark-color);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        /* Services Section */
        .services-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .service-card {
            background: white;
            border-radius: 10px;
            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: 350px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 30px;
        }
        
        .service-card-body h4 {
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 600;
        }
        
        .service-card-body p {
            color: var(--dark-color);
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        /* Reviews Section */
        .reviews-section {
            padding: 80px 0;
            background-color: var(--accent-color);
        }
        
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 30px;
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card p {
            color: var(--dark-color);
            font-style: italic;
            margin-bottom: 15px;
            line-height: 1.6;
        }
        
        .review-card h6 {
            color: var(--primary-color);
            font-weight: 600;
        }
        
        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background-color: var(--light-gray);
        }
        
        .accordion-button {
            background-color: white;
            color: var(--dark-color);
            font-weight: 500;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--secondary-color);
            color: var(--primary-color);
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            border-radius: 10px !important;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-color), #5a9fd4);
            padding: 80px 0;
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .cta-section .cta-btn {
            background: white;
            color: var(--primary-color) !important;
            font-weight: 600;
            padding: 15px 40px;
            font-size: 1.1rem;
        }
        
        .cta-section .cta-btn:hover {
            background: var(--accent-color);
            color: var(--primary-color) !important;
        }
        
        /* Contact Section */
        .contact-section {
            padding: 80px 0;
            background-color: var(--accent-color);
        }
        
        .contact-info {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .contact-info h5 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .contact-info p {
            color: var(--dark-color);
            margin-bottom: 10px;
        }
        
        .contact-info i {
            color: var(--primary-color);
            margin-right: 10px;
            width: 20px;
        }
        
        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .contact-form h5 {
            color: var(--primary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .form-control, .form-select {
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 12px;
            margin-bottom: 20px;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: none;
        }
        
        /* Footer */
        .footer {
            background: linear-gradient(135deg, var(--dark-color), #34495e);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer h5 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 10px;
        }
        
        .footer ul li a {
            color: white;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: var(--secondary-color);
        }
        
        .subscribe-form {
            display: flex;
            margin-top: 20px;
        }
        
        .subscribe-form input {
            flex: 1;
            padding: 12px;
            border: none;
            border-radius: 50px 0 0 50px;
            background: rgba(255,255,255,0.1);
            color: white;
        }
        
        .subscribe-form input::placeholder {
            color: rgba(255,255,255,0.7);
        }
        
        .subscribe-form button {
            background: var(--primary-color);
            border: none;
            padding: 12px 20px;
            border-radius: 0 50px 50px 0;
            color: white;
            cursor: pointer;
            transition: background 0.3s ease;
        }
        
        .subscribe-form button:hover {
            background: #5a9fd4;
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
        }
        
        .copyright a {
            color: var(--secondary-color);
            text-decoration: none;
            margin: 0 10px;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .counter-number {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
        }
