
        :root {
            --white: #FFFFFF;
            --light-gray: #F5F5F5;
            --dark: #333333;
            --primary: #2c5f7c;
            --accent: #4a90a4;
        }
        
        * {
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            color: var(--dark);
            background-color: var(--white);
        }
        
        /* Navbar Styles */
        .navbar {
            background-color: transparent !important;
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background-color: var(--white) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--dark) !important;
            font-size: 1.5rem;
        }
        
        .nav-link {
            color: var(--dark) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s;
        }
        
        .nav-link:hover {
            color: var(--primary) !important;
        }
        
        .btn-cta {
            background-color: var(--primary);
            color: var(--white) !important;
            padding: 0.5rem 1.5rem;
            border-radius: 25px;
            font-weight: 600;
            transition: all 0.3s;
        }
        
        .btn-cta:hover {
            background-color: var(--accent);
            transform: translateY(-2px);
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(74,144,164,0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        
        .hero-title {
            font-size:5rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: #666;
            margin-bottom: 2rem;
            line-height: 1.8;
        }
        
        .hero-img {
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        /* Section Styles */
        section {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .section-subtitle {
            text-align: center;
            color: #666;
            margin-bottom: 3rem;
            font-size: 1.1rem;
        }
        
        /* About Section */
        .about-img {
            border-radius: 20px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .about-text {
            line-height: 1.8;
            color: #555;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--primary);
            color: var(--white);
            padding: 60px 0;
        }
        
        .counter-item {
            text-align: center;
            padding: 20px;
        }
        
        .counter-number {
            font-size: 3rem;
            font-weight: 700;
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .counter-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        /* Vision & Mission */
        .vision-mission-card {
            background-color: var(--light-gray);
            padding: 40px;
            border-radius: 15px;
            height: 100%;
            transition: transform 0.3s;
        }
        
        .vision-mission-card:hover {
            transform: translateY(-5px);
        }
        
        .vision-mission-card i {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }
        
        /* Why Choose Us */
        .feature-box {
            padding: 30px;
            background-color: var(--white);
            border-radius: 10px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s;
            border: 1px solid #eee;
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        }
        
        .feature-box i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .feature-box h4 {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .feature-box p {
            color: #666;
            margin: 0;
            line-height: 1.6;
        }
        
        /* Work Process */
        .process-step {
            text-align: center;
            padding: 40px 20px;
            position: relative;
        }
        
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, var(--primary), var(--accent));
            transform: translateY(-50%);
        }
        
        .process-icon {
            width: 80px;
            height: 80px;
            background-color: var(--primary);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.5rem;
        }
        
        .process-step h4 {
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        /* Services */
        .service-card {
            background-color: var(--light-gray);
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            transition: all 0.3s;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        .service-img {
            height: 220px;
            object-fit: cover;
            width: 100%;
        }
        
        .service-content {
            padding: 25px;
        }
        
        .service-content h3 {
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }
        
        .service-content p {
            color: #666;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        .btn-read-more {
            display: inline-block;
            text-align: center;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            padding: 0.5rem 1.5rem;
            border: 2px solid var(--primary);
            border-radius: 25px;
            transition: all 0.3s;
        }
        
        .btn-read-more:hover {
            background-color: var(--primary);
            color: var(--white);
        }
        
        /* Reviews */
        .review-card {
            background-color: var(--white);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            margin-bottom: 30px;
            position: relative;
        }
        
        .review-card::before {
            content: '"';
            font-size: 4rem;
            color: var(--primary);
            opacity: 0.2;
            position: absolute;
            top: 10px;
            left: 20px;
        }
        
        .review-text {
            font-style: italic;
            color: #555;
            margin-bottom: 1.5rem;
            line-height: 1.8;
        }
        
        .reviewer-name {
            font-weight: 600;
            color: var(--dark);
            margin-bottom: 0.25rem;
        }
        
        .reviewer-location {
            color: #888;
            font-size: 0.9rem;
        }
        
        .stars {
            color: #ffc107;
            margin-bottom: 1rem;
        }
        
        /* FAQ Section */
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 10px !important;
            overflow: hidden;
        }
        
        .accordion-button {
            background-color: var(--light-gray);
            color: var(--dark);
            font-weight: 600;
            padding: 1.5rem;
            box-shadow: none !important;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--primary);
            color: var(--white);
        }
        
        .accordion-body {
            padding: 1.5rem;
            color: #666;
            line-height: 1.7;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .btn-cta-white {
            background-color: var(--white);
            color: var(--primary) !important;
            padding: 1rem 2.5rem;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            margin-top: 1.5rem;
            transition: all 0.3s;
        }
        
        .btn-cta-white:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        /* Contact Section */
        .contact-info-box {
            background-color: var(--light-gray);
            padding: 30px;
            border-radius: 15px;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .contact-info-box i {
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        .contact-info-box h5 {
            font-weight: 600;
            margin-bottom: 0.5rem;
        }
        
        .contact-info-box p {
            margin: 0;
            color: #666;
        }
        
        .contact-form {
            background-color: var(--white);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .form-control {
            padding: 0.75rem 1rem;
            border-radius: 8px;
            border: 1px solid #ddd;
            margin-bottom: 1.5rem;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(44,95,124,0.25);
        }
        
        .alert {
            display: none;
            margin-bottom: 1rem;
        }
        
        /* Booking Form */
        .booking-form {
            background-color: var(--light-gray);
            padding: 40px;
            border-radius: 15px;
        }
        
        /* Footer */
        footer {
            background-color: var(--dark);
            color: var(--white);
            padding: 60px 0 30px;
        }
        
        .footer-col {
            margin-bottom: 30px;
        }
        
        .footer-col h4 {
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--white);
        }
        
        .footer-col p {
            color: #aaa;
            line-height: 1.8;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: #aaa;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: var(--white);
        }
        
        .newsletter-form .form-control {
            background-color: rgba(255,255,255,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            color: var(--white);
        }
        
        .newsletter-form .form-control::placeholder {
            color: #aaa;
        }
        
        .btn-subscribe {
            background-color: var(--primary);
            color: var(--white);
            border: none;
            padding: 0.75rem 1.5rem;
            border-radius: 5px;
            font-weight: 600;
            width: 100%;
            margin-top: 0.5rem;
        }
        
        .footer-bottom {
            border-top: 1px solid #444;
            padding-top: 30px;
            margin-top: 30px;
            text-align: center;
            color: #888;
        }
        
        .footer-bottom a {
            color: #aaa;
            text-decoration: none;
            margin: 0 10px;
        }
        
        .footer-bottom a:hover {
            color: var(--white);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .process-step:not(:last-child)::after {
                display: none;
            }
            
            section {
                padding: 60px 0;
            }
        }
