 
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        html {
            overflow-x: hidden;
            width: 100%;
        }
        
         :root {
            --primary: #1a5276;
            --primary-light: #2c7fb8;
            --secondary: #e67e22;
            --secondary-light: #f39c12;
            --light: #f5f5f5;
            --dark: #333;
            --gray: #777;
            --success: #27ae60;
             --whatsapp: #25D366;
        }
      
.footer-column .map-container {
    margin-top: 20px;
    width: 100%;
}

.footer-column .map-container iframe {
    width: 100%; 
    border: 0;   
}
   
.about-image {
  width: 100%;
  height: 100vh; /* or set to 400px / auto depending on section design */
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* fills the area while keeping aspect ratio */
  object-position: center;
  display: block;
}
   
        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 70px;
            height: 70px;
            bottom: 30px;
            right: 25px;
            background-color: var(--whatsapp);
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
            animation: none;
        }
        
        .whatsapp-float i {
            font-size: 38px;
        }
        
        /* Call Floating Button (green) */
        .call-float {
            position: fixed;
            width: 70px;
            height: 70px;
            bottom: 30px;
            left: 25px;
            background-color: var(--success);
            color: white;
            border-radius: 50px;
            text-align: center;
            font-size: 30px;
            box-shadow: 0 4px 20px rgba(39, 174, 96, 0.4);
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            animation: pulse-call 2s infinite;
            text-decoration: none;
        }

        .call-float:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(39, 174, 96, 0.6);
            animation: none;
        }

        .call-float i {
            font-size: 38px;
        }

        @keyframes pulse-call {
            0% {
                box-shadow: 0 0 0 0 rgba(39, 174, 96, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(39, 174, 96, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(39, 174, 96, 0);
            }
        }
        
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }
        body {
            background-color: #f9f9f9;
            color: var(--dark);
            line-height: 1.6;
            overflow-x: hidden;
            width: 100%;
            max-width: 100vw;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        img {
            max-width: 100%;
            height: auto;
        }
        
        .btn {
            display: inline-block;
            background: var(--secondary);
            color: white;
            padding: 14px 28px;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s ease;
            box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
            position: relative;
            overflow: hidden;
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .btn:hover {
            background: var(--secondary-light);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
        }
        
        .btn-primary {
            background: var(--primary);
            box-shadow: 0 4px 15px rgba(26, 82, 118, 0.3);
        }
        
        .btn-primary:hover {
            background: var(--primary-light);
            box-shadow: 0 6px 20px rgba(26, 82, 118, 0.4);
        }
        
        section {
            padding: 100px 0;
        }
        
#home {
    padding: 0;
}
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--secondary);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }
        
        .section-title p {
            color: var(--gray);
            max-width: 700px;
            margin: 25px auto 0;
            font-size: 1.1rem;
        }
        /* Header Styles */
        
        header {
            background-color: rgba(255, 255, 255, 0.95);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.4s ease;
        }
        
        header.scrolled {
            padding: 5px 0;
            background-color: rgba(255, 255, 255, 0.98);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            transition: all 0.4s ease;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo h1 {
            font-size: 1.8rem;
            color: var(--primary);
            font-weight: 700;
        }
        
        .logo span {
            color: var(--secondary);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 500;
            transition: color 0.3s;
            padding: 5px 0;
            position: relative;
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after,
        nav ul li a.active::after {
            width: 100%;
        }
        
        nav ul li a:hover,
        nav ul li a.active {
            color: var(--secondary);
        }
        
        .mobile-menu {
            display: none;
            font-size: 1.5rem;
            cursor: pointer;
            color: var(--primary);
        }
        /* Hero Section */


        /* --- MODIFIED HERO RULE (slideshow via CSS background-image animation) --- */
.hero {
    /* default to the first image in the cycle */
    background-image: linear-gradient(rgba(134, 130, 130, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/13740078/pexels-photo-13740078.jpeg');
    min-height: 100vh; /* Makes the hero section fill the entire screen height */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 400px 0 120px;
    margin-top: 0;
    position: relative;
    overflow: hidden;

    /* animate through a sequence of background images (slideshow) */
    animation: heroImageCycle 18s infinite;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(230, 126, 34, 0.2), rgba(26, 82, 118, 0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero .btn {
    animation: fadeInUp 1s ease 0.6s both;
}

/* --- HERO SLIDESHOW KEYFRAMES (includes the two user-provided images) --- */
@keyframes heroImageCycle {
    /* 6 images spaced evenly over the animation duration */
    0%, 16.66% {
        background-image: linear-gradient(rgba(134, 130, 130, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/13740078/pexels-photo-13740078.jpeg');
    }

    16.67%, 33.33% {
        background-image: linear-gradient(rgba(134, 130, 130, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/2920064/pexels-photo-2920064.jpeg?_gl=1*9wc7m6*_ga*OTkyNzg4NDcuMTc1NTA4MTk4Mw..*_ga_8JE65Q40S6*czE3NjExNTA3NzckbzE0JGcwJHQxNzYxMTUwNzc3JGo2MCRsMCRoMA..');
    }

    50.01%, 66.66% {
        background-image: linear-gradient(rgba(134, 130, 130, 0.7), rgba(0, 0, 0, 0.7)), url('https://akm-img-a-in.tosshub.com/indiatoday/images/story/202204/0Q2A4461_C.jpg?VersionId=3riZalCRDMkRTb9xwoLmiLc8qSEvQqB6&size=690:388');
    }

    66.67%, 83.33% {
        /* user-added: Maruti Suzuki Dzire (blue) */
        background-image: linear-gradient(rgba(134, 130, 130, 0.7), rgba(0, 0, 0, 0.7)), url('https://www.carandbike.com/_next/image?url=https%3A%2F%2Fimages.carandbike.com%2Fcar-images%2Fgallery%2Forig%2Fmaruti-suzuki%2F2025-new-dzire%2Fexterior%2Fmaruti-suzuki-dzire_blue_9.jpg&w=1600&q=75');
    }

    83.34%, 100% {
        /* user-added: Toyota Innova Crysta photo */
        background-image: linear-gradient(rgba(134, 130, 130, 0.7), rgba(0, 0, 0, 0.7)), url('https://cdn-s3.autocarindia.com/Toyota/innova-crysta/_DSC1216.JPG?w=640&q=75');
    }
}
        /* Booking Form */
        
        .booking-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            margin-top: -100px;
            position: relative;
            z-index: 10;
            transform: translateY(50px);
            opacity: 0;
            animation: fadeInUp 1s ease 0.8s forwards;
        }
        
        .form-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -10px;
        }
        
        .form-group {
            flex: 1 0 200px;
            padding: 0 10px;
            margin-bottom: 20px;
            position: relative;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--primary);
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 14px 15px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(26, 82, 118, 0.1);
            outline: none;
        }
        
        .form-group.full-width {
            flex: 1 0 100%;
            text-align: center;
            margin-top: 10px;
        }
        /* Services Section */
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        
        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.4s ease;
            position: relative;
            z-index: 1;
        }
        
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            opacity: 0;
            transition: all 0.4s ease;
            z-index: -1;
        }
        
        .service-card:hover::before {
            height: 100%;
            opacity: 1;
        }
        
        .service-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card:hover .service-icon,
        .service-card:hover .service-content h3,
        .service-card:hover .service-content p {
            color: white;
        }
        
        .service-icon {
            background: var(--primary);
            color: white;
            font-size: 2.8rem;
            padding: 30px;
            text-align: center;
            transition: all 0.4s ease;
        }
        
        .service-content {
            padding: 30px;
            transition: all 0.4s ease;
        }
         .service-icon img{
            width: 250px;
            height : 150px
         }
        .service-content h3 {
            margin-bottom: 15px;
            color: var(--primary);
            font-size: 1.5rem;
            transition: all 0.4s ease;
        }
        
        .service-content p {
            color: var(--gray);
            transition: all 0.4s ease;
        }
        
        .fleet-section {
            background: #fff;
            padding-top: 70px;
        }

        .fleet-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
            justify-content: center; 
            gap: 28px;
        }

        .car-card {
            background: #ffffff;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            transition: transform 0.35s ease, box-shadow 0.35s ease;
            display: flex;
            flex-direction: column;
        }

        .car-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
        }

        .car-image {
            position: relative;
            aspect-ratio: 16 / 9;
            background: #f3f6f9;
        }

        .car-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        

        .car-details {
            padding: 18px 18px 22px;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .car-details h3 {
            font-size: 1.2rem;
            color: var(--primary);
            margin: 0;
        }

        .car-sub {
            color: var(--gray);
            font-size: 0.95rem;
        }

        .car-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-top: 2px;
            margin-bottom: 8px;
        }

        .chip {
            background: #f1f5f9;
            color: #355571;
            padding: 6px 10px;
            border-radius: 999px;
            font-size: 0.8rem;
            border: 1px solid #e6edf3;
        }

        .car-cta {
            align-self: flex-start;
        }
        /* Reviews Section */
        
        .reviews-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1552733407-5d5c46c3bb3b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            text-align: center;
            padding: 180px 0 100px;
            margin-top: 70px;
            position: relative;
        }
        
        .reviews-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(230, 126, 34, 0.2), rgba(26, 82, 118, 0.2));
            z-index: 1;
        }
        
        .reviews-hero-content {
            position: relative;
            z-index: 2;
        }
        
        .reviews-hero h2 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            animation: fadeInDown 1s ease;
        }
        
        .reviews-hero p {
            font-size: 1.3rem;
            max-width: 700px;
            margin: 0 auto 30px;
            animation: fadeInUp 1s ease 0.3s both;
        }
        
        .reviews-container {
            display: flex;
            flex-direction: column;
            gap: 50px;
        }
        
        .reviews-summary {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            text-align: center;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-around;
            gap: 30px;
        }
        
        .rating-main {
            flex: 1;
            min-width: 200px;
        }
        
        .overall-rating {
            font-size: 4rem;
            color: var(--primary);
            font-weight: bold;
            margin-bottom: 10px;
            line-height: 1;
        }
        
        .rating-stars {
            color: #ffc107;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .total-reviews {
            color: var(--gray);
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .rating-bars {
            flex: 2;
            min-width: 300px;
            max-width: 500px;
        }
        
        .rating-bar {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
        }
        
        .rating-label {
            width: 80px;
            text-align: right;
            margin-right: 15px;
            font-weight: 500;
        }
        
        .rating-progress {
            flex: 1;
            height: 12px;
            background: #e0e0e0;
            border-radius: 6px;
            overflow: hidden;
            position: relative;
        }
        
        .rating-fill {
            height: 100%;
            background: var(--secondary);
            border-radius: 6px;
            transition: width 1.5s ease;
        }
        
        .rating-count {
            width: 40px;
            text-align: right;
            margin-left: 15px;
            font-weight: 500;
        }
        
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
        }
        
        .review-card {
            background: white;
            padding: 35px;
            border-radius: 15px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
            position: relative;
            transition: all 0.4s ease;
            opacity: 0;
            transform: translateY(30px);
        }
        
        .review-card.animate {
            opacity: 1;
            transform: translateY(0);
        }
        
        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .review-card::before {
            content: '"';
            position: absolute;
            top: 10px;
            left: 20px;
            font-size: 80px;
            color: rgba(230, 126, 34, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
        }
        
        .review-content {
            line-height: 1.6;
            margin-bottom: 25px;
            font-style: italic;
            position: relative;
            z-index: 1;
            font-size: 1.05rem;
        }
        
        .reviewer-info {
            display: flex;
            align-items: center;
            border-top: 1px solid #eee;
            padding-top: 20px;
        }
        
        .reviewer-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.8rem;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .reviewer-details {
            flex: 1;
        }
        
        .reviewer-name {
            font-weight: 600;
            margin-bottom: 5px;
            color: var(--primary);
            font-size: 1.1rem;
        }
        
        .reviewer-title {
            color: var(--gray);
            font-size: 0.95rem;
        }
        
        .review-rating {
            color: #ffc107;
            font-size: 1.3rem;
        }
        
        .review-form-container {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
            margin-top: 50px;
        }
        
        .rating-input {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .rating-input label {
            margin-right: 15px;
            font-weight: 500;
            color: var(--primary);
        }
        
        .star-rating {
            display: flex;
            gap: 5px;
        }
        
        .star-rating i {
            font-size: 1.8rem;
            color: #ddd;
            cursor: pointer;
            transition: all 0.2s ease;
        }
        
        .star-rating i.active {
            color: #ffc107;
            transform: scale(1.1);
        }
        
        .star-rating i:hover {
            transform: scale(1.2);
        }
        /* Contact Section */
        
        .contact-container {
            display: flex;
            gap: 50px;
            flex-wrap: wrap;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            background: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
            font-size: 1.2rem;
        }
        
        .contact-details h4 {
            margin-bottom: 5px;
            color: var(--primary);
        }
        /* Footer */
        
        footer {
            background: linear-gradient(135deg, var(--dark), #222);
            color: white;
            padding: 80px 0 20px;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--secondary);
            margin-bottom: 25px;
            font-size: 1.3rem;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
        }
        
        .footer-column ul {
            list-style: none;
        }
        
        .footer-column ul li {
            margin-bottom: 12px;
        }
        
        .footer-column ul li a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .footer-column ul li a:hover {
            color: var(--secondary);
            transform: translateX(5px);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 45px;
            height: 45px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            transition: all 0.3s;
            font-size: 1.2rem;
        }
        
        .social-links a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.9rem;
            color: #aaa;
        }
        /* Page Content */
        
        .page-content {
            padding: 140px 0 100px;
            display: none;
        }
        /* Animations */
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* Responsive Styles */
        
        @media (max-width: 992px) {
            .about-content,
            .contact-container {
                flex-direction: column;
            }
            .about-image {
                order: -1;
            }
            .reviews-summary {
                flex-direction: column;
                text-align: center;
            }
        }
        
        @media (max-width: 768px) {
            nav {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 80%;
                height: calc(100vh - 70px);
                background: white;
                transition: all 0.4s ease;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                z-index: 999;
            }
            nav.active {
                left: 0;
            }
            nav ul {
                flex-direction: column;
                padding: 30px;
            }
            nav ul li {
                margin: 0 0 20px;
            }
            .mobile-menu {
                display: block;
            }
            .hero,
            .reviews-hero {
                padding: 200px 0 60px;
            }
            .booking-form {
                margin-top: -80px;
            }
            .hero h2,
            .reviews-hero h2 {
                font-size: 2.5rem;
            }
            .hero p,
            .reviews-hero p {
                font-size: 1.1rem;
            }
            .section-title h2 {
                font-size: 2.2rem;
            }
              .whatsapp-float {
                width: 60px;
                height: 60px;
                bottom: 25px;
                right: 20px;
                font-size: 28px;
            }
            
            .whatsapp-float i {
                font-size: 34px;
            }
            
            .call-float {
                width: 60px;
                height: 60px;
                bottom: 25px;
                left: 20px;
                font-size: 28px;
            }
            
            .call-float i {
                font-size: 34px;
            }
        }
        
        @media (max-width: 576px) {
            .section-title h2 {
                font-size: 2rem;
            }
            .hero,
            .reviews-hero {
                padding: 150px 0 80px;
            }
            .booking-form {
                margin-top: -350px;
            }
            .review-card {
                padding: 25px;
            }
            .review-form-container {
                padding: 25px;
            }
             .whatsapp-float {
                width: 55px;
                height: 55px;
                bottom: 50px;
                right: 15px;
                font-size: 26px;
            }
            
            .whatsapp-float i {
                font-size: 32px;
            }
            
            .call-float {
                width: 55px;
                height: 55px;
                bottom: 50px;
                left: 15px;
                font-size: 26px;
            }
            
            .call-float i {
                font-size: 32px;
            }
        }
@media (max-width: 576px) {
    /* ... other rules ... */
    
    .hero,
    .reviews-hero {
        padding: 150px 0 80px;
    }
    
    /* ... other rules ... */
}
@media (max-width: 576px) {
    /* ... other rules ... */
    
    /* REMOVED .hero from this rule */
    .reviews-hero {
        padding: 150px 0 80px;
    }

    /* ... other rules ... */
}

        .destinations-section {
    width: 100%;
    max-width: 1400px; /* Limit max width for very large screens */
    margin: 0 auto; /* Center the section on the page */
    padding: 50px 25px; /* 50px top/bottom padding, 25px left/right */
    box-sizing: border-box; /* Include padding in the width calculation */
}


.destinations-section h2 {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem; 
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 40px; 
}


.destinations-grid {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: grid;
    

    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px; 
}

@media (min-width: 768px) {
    .destinations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


@media (min-width: 1200px) {
    .destinations-grid {
        grid-template-columns: repeat(6, 1fr);
    }
}


.destinations-grid li a {
    color: #dcdcdc; 
    text-decoration: none; 
    font-size: 1rem; 
    transition: color 0.2s ease; 
}


.destinations-grid li a:hover {
    color: #ffffff; /* Becomes bright white on hover */
    text-decoration: underline; /* Adds underline on hover */
}