
        :root {
            --color-lightest: #E0FBFC;
            --color-light: #C2DFE3;
            --color-medium: #9DB4C0;
            --color-dark: #5C6B73;
            --color-accent: #5C6B73;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--color-dark);
            overflow-x: hidden;
            background-color: #ffffff;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        ::-webkit-scrollbar-track {
            background: var(--color-lightest);
        }
        ::-webkit-scrollbar-thumb {
            background: var(--color-medium);
            border-radius: 5px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--color-dark);
        }
        
        /* Navigation */
        .navbar {
            background: transparent !important;
            transition: all 0.4s ease;
            padding: 1.5rem 0;
        }
        
        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0,0,0,0.1);
            padding: 0.8rem 0;
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--color-dark) !important;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .navbar-brand i {
            color: var(--color-medium);
            font-size: 2rem;
        }
        
        .nav-link {
            color: var(--color-dark) !important;
            font-weight: 500;
            margin: 0 0.8rem;
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--color-medium);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        .btn-custom {
            background: var(--color-dark);
            color: white;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid var(--color-dark);
            transition: all 0.3s ease;
        }
        
        .btn-custom:hover {
            background: transparent;
            color: var(--color-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(92, 107, 115, 0.3);
        }
        
        .btn-outline-custom {
            border: 2px solid var(--color-dark);
            color: var(--color-dark);
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-outline-custom:hover {
            background: var(--color-dark);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            background: linear-gradient(135deg, var(--color-lightest) 0%, var(--color-light) 100%);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        
        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: rgba(157, 180, 192, 0.2);
            border-radius: 50%;
            animation: float 20s infinite ease-in-out;
        }
        
        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 600px;
            height: 600px;
            background: rgba(194, 223, 227, 0.3);
            border-radius: 50%;
            animation: float 15s infinite ease-in-out reverse;
        }
        
        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size:2.5rem;
            text-transform: uppercase;
            font-weight: 800;
            color: var(--color-dark);
            line-height: 1.5;
            margin-bottom: 1.5rem;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: var(--color-medium);
            margin-bottom: 2rem;
            font-weight: 400;
        }
        
        .hero-image {
            position: relative;
            z-index: 2;
        }
        
        .hero-image img {
            border-radius: 30px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform 0.5s ease;
        }
        
        .hero-image:hover img {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        /* Section Styling */
        section {
            padding: 6rem 0;
        }
        
        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 1rem;
            text-align: center;
        }
        
        .section-subtitle {
            color: var(--color-medium);
            text-align: center;
            margin-bottom: 4rem;
            font-size: 1.1rem;
        }
        
        /* About Section */
        .about-section {
            background: white;
        }
        
        .about-image {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px 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 {
            padding: 2rem;
        }
        
        .about-content p {
            color: var(--color-dark);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-medium) 100%);
            color: white;
            padding: 5rem 0;
        }
        
        .counter-item {
            text-align: center;
            padding: 2rem;
        }
        
        .counter-number {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--color-lightest);
            display: block;
            margin-bottom: 0.5rem;
        }
        
        .counter-label {
            font-size: 1.1rem;
            color: var(--color-light);
        }
        
        /* Vision & Mission */
        .vision-mission-section {
        }
        
        .vm-card {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .vm-card:hover {
            transform: translateY(-10px);
        }
        
        .vm-icon {
            width: 80px;
            height: 80px;
            background: var(--color-lightest);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2.5rem;
            color: var(--color-dark);
        }
        
        .vm-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--color-dark);
            margin-bottom: 1rem;
        }
        
        /* Why Choose Us */
        .why-choose-section {
            background: white;
        }
        
        .feature-box {
            padding: 2rem;
            text-align: center;
            border-radius: 15px;
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .feature-box:hover {
            background: var(--color-lightest);
            transform: translateY(-5px);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: var(--color-light);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--color-dark);
        }
        
        .feature-title {
            font-weight: 600;
            color: var(--color-dark);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .feature-desc {
            color: var(--color-medium);
            font-size: 0.95rem;
            line-height: 1.6;
        }
        
        /* Work Process */
        .process-section {
            background: linear-gradient(135deg, var(--color-light) 0%, var(--color-lightest) 100%);
        }
        
        .process-step {
            position: relative;
            text-align: center;
            padding: 2rem;
        }
        
        .process-number {
            width: 80px;
            height: 80px;
            background: var(--color-dark);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            font-weight: 700;
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 2;
        }
        
        .process-step:not(:last-child) .process-number::after {
            content: '';
            position: absolute;
            top: 50%;
            right: -100%;
            width: 100%;
            height: 3px;
            background: var(--color-medium);
            z-index: -1;
        }
        
        .process-title {
            font-weight: 600;
            color: var(--color-dark);
            margin-bottom: 1rem;
        }
        
        /* Booking Form */
        .booking-section {
            background: white;
        }
        
        .booking-form {
            background: var(--color-lightest);
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        
        .form-control {
            border: 2px solid var(--color-light);
            border-radius: 10px;
            padding: 1rem;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--color-medium);
            box-shadow: 0 0 0 0.2rem rgba(157, 180, 192, 0.25);
        }
        
        .form-label {
            font-weight: 500;
            color: var(--color-dark);
            margin-bottom: 0.5rem;
        }
        
        /* Services Section */
        .services-section {
            background: var(--color-lightest);
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 35px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .service-img {
            height: 320px;
            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: 2rem;
        }
        
        .service-title {
            font-weight: 700;
            color: var(--color-dark);
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }
        
        .service-desc {
            color: var(--color-medium);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }
        
        /* Reviews Section */
        .reviews-section {
            background: white;
        }
        
        .review-card {
            background: var(--color-lightest);
            padding: 2.5rem;
            border-radius: 20px;
            margin: 1rem;
            position: relative;
            transition: transform 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
        }
        
        .review-stars {
            color: #FFD700;
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }
        
        .review-text {
            color: var(--color-dark);
            font-style: italic;
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        
        .reviewer-name {
            font-weight: 600;
            color: var(--color-dark);
        }
        
        .reviewer-location {
            color: var(--color-medium);
            font-size: 0.9rem;
        }
        
        /* FAQ Section */
        .faq-section {
            
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 1rem;
            border-radius: 15px !important;
            overflow: hidden;
        }
        
        .accordion-button {
            background: white;
            color: var(--color-dark);
            font-weight: 600;
            padding: 1.5rem;
            border: none;
            box-shadow: none !important;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--color-dark);
            color: white;
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235C6B73'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-button:not(.collapsed)::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-body {
            background: white;
            color: var(--color-medium);
            padding: 1.5rem;
            line-height: 1.7;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-medium) 100%);
            color: white;
            text-align: center;
            padding: 5rem 0;
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .cta-text {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            color: var(--color-light);
        }
        
        .btn-white {
            background: white;
            color: var(--color-dark);
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 600;
            border: 2px solid white;
            transition: all 0.3s ease;
        }
        
        .btn-white:hover {
            background: transparent;
            color: white;
        }
        
        /* Contact Section */
        .contact-section {
            background: white;
        }
        
        .contact-info-box {
            background: var(--color-lightest);
            padding: 2rem;
            border-radius: 15px;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            transition: transform 0.3s ease;
        }
        
        .contact-info-box:hover {
            transform: translateX(10px);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--color-dark);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            flex-shrink: 0;
        }
        
        .contact-details h5 {
            color: var(--color-dark);
            font-weight: 600;
            margin-bottom: 0.3rem;
        }
        
        .contact-details p {
            color: var(--color-medium);
            margin: 0;
        }
        
        .contact-form-container {
            background: var(--color-lightest);
            padding: 3rem;
            border-radius: 20px;
        }
        
        /* Footer */
        footer {
            background: var(--color-dark);
            color: white;
            padding: 5rem 0 2rem;
        }
        
        .footer-col {
            margin-bottom: 2rem;
        }
        
        .footer-title {
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--color-lightest);
        }
        
        .footer-desc {
            color: var(--color-light);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: var(--color-light);
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .footer-links a:hover {
            color: var(--color-lightest);
            transform: translateX(5px);
        }
        
        .newsletter-form .form-control {
            background: rgba(255,255,255,0.1);
            border: 1px solid var(--color-medium);
            color: white;
            margin-bottom: 1rem;
        }
        
        .newsletter-form .form-control::placeholder {
            color: var(--color-light);
        }
        
        .newsletter-form .btn {
            width: 100%;
            background: var(--color-lightest);
            color: var(--color-dark);
            border: none;
            font-weight: 600;
        }
        
        .newsletter-form .btn:hover {
            background: var(--color-light);
        }
        
        .footer-bottom {
            border-top: 1px solid var(--color-medium);
            margin-top: 3rem;
            padding-top: 2rem;
            text-align: center;
            color: var(--color-light);
        }
        
        .footer-bottom a {
            color: var(--color-lightest);
            text-decoration: none;
            margin: 0 1rem;
        }
        
        /* Alert Messages */
        .alert-custom {
            display: none;
            border-radius: 10px;
            font-weight: 500;
            margin-top: 1rem;
        }
        
        /* Responsive */
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.8rem;
            }
            .section-title {
                font-size: 2.2rem;
            }
            .process-step:not(:last-child) .process-number::after {
                display: none;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            .hero-section {
                min-height: auto;
                padding: 8rem 0 4rem;
            }
            section {
                padding: 4rem 0;
            }
        }


        /* Enhanced Work Process Section Styles */
.process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(157, 180, 192, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(194, 223, 227, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem 0;
}

.process-step-wrapper {
    margin-bottom: 4rem;
    position: relative;
}

.process-step-card {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 3rem;
    align-items: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
}

.process-step-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 80px rgba(92, 107, 115, 0.15);
    border-color: var(--color-light);
}

.step-number-badge {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.step-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(157, 180, 192, 0.2);
    line-height: 1;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.step-icon-wrapper {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-dark) 0%, var(--color-medium) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(92, 107, 115, 0.3);
    transition: all 0.3s ease;
}

.process-step-card:hover .step-icon-wrapper {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(92, 107, 115, 0.4);
}

.step-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.step-content {
    flex: 1;
}

.step-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-medium), var(--color-light));
    border-radius: 2px;
}

.step-desc {
    color: var(--color-medium);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.step-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.step-features li {
    color: var(--color-dark);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.step-features i {
    color: var(--color-medium);
    font-size: 1rem;
}

.step-visual {
    width: 280px;
    height: 200px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.step-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-step-card:hover .step-visual img {
    transform: scale(1.1);
}

.step-visual::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(92, 107, 115, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

/* Connector Line */
.process-connector {
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.3;
}

/* Alternating Layout */
.process-step-wrapper:nth-child(even) .process-step-card {
    grid-template-columns: auto 1fr auto;
    direction: rtl;
}

.process-step-wrapper:nth-child(even) .process-step-card > * {
    direction: ltr;
}

.process-step-wrapper:nth-child(even) .step-content {
    text-align: right;
}

.process-step-wrapper:nth-child(even) .step-title::after {
    left: auto;
    right: 0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .process-step-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .process-step-wrapper:nth-child(even) .process-step-card {
        direction: ltr;
    }
    
    .process-step-wrapper:nth-child(even) .step-content {
        text-align: center;
    }
    
    .process-step-wrapper:nth-child(even) .step-title::after {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }
    
    .step-visual {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .step-features {
        align-items: center;
    }
    
    .process-connector {
        display: none;
    }
}

@media (max-width: 576px) {
    .process-step-card {
        padding: 2rem 1.5rem;
    }
    
    .step-icon-wrapper {
        width: 80px;
        height: 80px;
    }
    
    .step-icon-wrapper i {
        font-size: 2rem;
    }
    
    .step-number {
        font-size: 3rem;
    }
    
    .step-title {
        font-size: 1.4rem;
    }
    
    .step-visual {
        height: 160px;
    }
}

/* Animation for connector line */
@keyframes dash {
    to {
        stroke-dashoffset: -24;
    }
}

.process-connector path {
    animation: dash 1s linear infinite;
}

/* Hover effect for step cards */
.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(224, 251, 252, 0.5) 0%, rgba(194, 223, 227, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.process-step-card:hover::before {
    opacity: 1;
}