        :root {
            --primary-yellow: #FFD700;
            --accent-black: #1a1a1a;
            --pure-white: #ffffff;
            --soft-gray: #f8f9fa;
            --success-green: #28a745;
            --text-dark: #333333;
      
        }

        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        
       
        /* Hero Section */
        .hero-section {
            background-image: url("../images/home-hero.png");
            background-size: cover;
            background-position: bottom;
            background-attachment: fixed;
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
        }
        
        .hero-content {
            color: var(--pure-white);
            text-align: center;
            z-index: 2;
        }
        .hero-title {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }
        
        .cta-button {
            background: var(--primary-yellow);
            color: var(--accent-black);
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
            color: var(--accent-black);
        }
        
        /* Quick Booking Form */
        .booking-form {
            background: var(--pure-white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-top: 2rem;
        }
        
        .form-control, .form-select {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-yellow);
            box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
        }
        
        .btn-primary {
            background: var(--primary-yellow);
            border: none;
            color: var(--accent-black);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: #e6c200;
            transform: translateY(-1px);
        }
        
        /* Service Cards */
        .service-card {
            background: var(--pure-white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .service-icon {
            font-size: 3rem;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }
        
        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--accent-black);
        }
        
        .service-description {
            color: #666;
            line-height: 1.6;
        }
        
        /* Features Section */
        .feature-item {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
            padding: 20px;
            background: var(--pure-white);
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
        }
        
        .feature-icon {
            font-size: 2rem;
            color: var(--primary-yellow);
            margin-right: 1rem;
            min-width: 60px;
        }
        
        .feature-content h4 {
            color: var(--accent-black);
            margin-bottom: 0.5rem;
        }
        
        .feature-content p {
            color: #666;
            margin: 0;
        }
        
        /* Testimonials */
        .testimonial-card {
            background: var(--pure-white);
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            text-align: center;
            margin: 0 15px;
        }
        
        .testimonial-text {
            font-style: italic;
            color: #666;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }
        
        .testimonial-author {
            font-weight: 600;
            color: var(--accent-black);
        }
        
        .testimonial-rating {
            color: var(--primary-yellow);
            font-size: 1.2rem;
            margin-bottom: 1rem;
        }
        
        /* FAQ Section */
        .faq-item {
            margin-bottom: 1rem;
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .faq-button {
            font-family: "Inter", "Poppins", sans-serif;
            background: var(--pure-white);
            border: none;
            padding: 20px;
            width: 100%;
            text-align: left;
            font-weight: 400;
            color: var(--accent-black);
            transition: all 0.3s ease;
        }
        
        .faq-button:hover {
            background: var(--soft-gray);
        }
        
        .faq-content {
            padding: 0 20px 20px;
            background: var(--pure-white);
        }
        
        /* Footer */
        .footer {
            background: var(--accent-black);
            color: var(--pure-white);
            padding: 50px 0 30px;
        }
        
        .footer h5 {
            color: var(--primary-yellow);
            margin-bottom: 1.5rem;
        }
        
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: var(--primary-yellow);
        }
        
        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #999;
        }
        
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .booking-form {
                margin: 2rem 15px 0;
            }
            
            .service-card {
                margin-bottom: 2rem;
            }
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Typewriter Effect */
        .typed-text {
            border-right: 2px solid var(--primary-yellow);
            animation: blink 1s infinite;
        }
        
        @keyframes blink {
            0%, 50% { border-color: var(--primary-yellow); }
            51%, 100% { border-color: transparent; }
        }
  


        /* Service Image Styling */
.service-image {
    height: 100px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    /* border-radius: 0px; */
    border-top-right-radius: 15px;
    border-top-left-radius: 15px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

/* Keep original service-icon styling for consistency */
.service-icon {
    height: 80px;
    width: 80px;
    background: linear-gradient(135deg, var(--primary-yellow), #ffed4e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--accent-black);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}






 /* Package Cards */
        .package-card {
            border-radius: 15px;
            overflow: hidden;
            border: none;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            margin-bottom: 30px;
            background: var(--pure-white);
        }

        .package-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .package-img {
            height: 220px;
            overflow: hidden;
        }

        .package-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .package-card:hover .package-img img {
            transform: scale(1.05);
        }

        .package-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-yellow);
            color: var(--accent-black);
            padding: 6px 15px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 0.85rem;
        }

        .package-content {
            padding: 25px;
        }

        .package-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--accent-black);
            min-height: 60px;
        }

        .package-description {
            color: #666;
            margin-bottom: 20px;
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .package-keywords {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 20px;
        }

        .keyword {
            background: var(--soft-gray);
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            color: var(--text-dark);
        }

        .btn-package {
            background: var(--primary-yellow);
            color: var(--accent-black);
            border: none;
            padding: 10px 25px;
            border-radius: 30px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-package:hover {
            background: #e6c300;
            color: var(--accent-black);
            transform: translateY(-2px);
        }

        /* Why Choose Us Section */
        .why-choose-section {
            background: var(--soft-gray);
            padding: 80px 0;
        }

        .feature-card {
            background: var(--pure-white);
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 2.5rem;
            color: var(--primary-yellow);
            margin-bottom: 20px;
        }

        .feature-title {
            font-size: 1.3rem;
            margin-bottom: 15px;
            color: var(--accent-black);
        }

        .feature-description {
            color: #666;
            font-size: 0.95rem;
        }
