:root {
    --light: #faf0e6;
    --tan: #c2915b;
    --brown: #6b3e28;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
}

.section {
  padding: 30px 0;
}

.hero-section {
    background: linear-gradient(135deg, var(--light), var(--tan), var(--brown));
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.package-card:hover, .vehicle-img:hover, .location-img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #007bff;linear-gradient(135deg, #FDB441, #FFDD00)
}

.bg-primary {
    background-color: #F4C542 !important;
}

.navbar {
    background: #0E4D92 !important;
    color: #fff;
}
    .navbar a {
        color: #fff;
    }
.card-title {
  color: #333;
}

.logo-img {
  height: 50px;
  margin-right: 10px;
}

.counter {
  font-size: 2rem;
  font-weight: bold;
}

.contact-info {
  font-size: 0.9rem;
}

.social-icons a {
  color: #333;
  margin-left: 10px;
  text-decoration: none;
}

  .social-icons a:hover {
    color: #007bff;
  }

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: white;
    font-size: 28px;
    width: 60px;
    height: 60px;
    text-align: center;
    line-height: 60px;
    border-radius: 50%;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

    .whatsapp-float:hover {
        background-color: #20b358;
    }

.book-now-btn:hover {
    background-color: #e06738;
    color: #fff;
}

.btn-primary {
    background-color: #0E4D92;
    color: white;
    border: none;
}

    .btn-primary:hover {
        background: #e06738;
    }


/*Banner Section Designs*/
.banner-img {
    height: 85vh;
    object-fit: cover;
    filter: brightness(0.7);
}

.carousel-caption.overlay-text {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 12px;
    animation: fadeInUp 1s ease-in-out;
}

.carousel-caption h2,
.carousel-caption p {
    color: #fff;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}

.carousel-caption .btn-primary {
    background: linear-gradient(to right, #c2915b, #6b3e28);
    border: none;
    color: #fff;
}

    .carousel-caption .btn-primary:hover {
        background: linear-gradient(to right, #6b3e28, #c2915b);
    }

/* Text Animation */
@keyframes fadeInUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.animated-title {
    font-size: 2.5rem;
    font-weight: bold;
    animation: fadeInUp 1s ease-in-out;
}

.banner-img {
    height: 65vh; /* Responsive height */
    object-fit: cover;
}


    /*Vehicle Section Designs*/
.vehicle-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

    .vehicle-card:hover {
        transform: translateY(-5px);
    }

.vehicle-img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    margin-bottom: 15px;
}

.vehicle-info p {
    margin: 5px 0;
    font-size: 1rem;
}

/* Mobile card width */
.mobile-card {
    width: 90%;
}

/* Headline responsiveness */
@media (max-width: 576px) {
    h2 {
        font-size: 1.7rem;
    }
}

/* Better spacing on small screens */
@media (max-width: 768px) {
    .vehicle-card {
        padding: 15px;
    }

    .vehicle-img {
        height: 160px;
    }
}


.vehicle-name i, .vehicle-seats i {
    color: #007bff;
    margin-right: 6px;
}

.vehicle-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.vehicle-seats {
    font-size: 0.95rem;
    color: #555;
}


.enquiry-btn:hover {
    background-color: #e06738;
}


    /*Package Section Designs*/

.package-card:hover .package-img {
    transform: scale(1.05);
}

.package-card h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.package-card i {
    font-size: 1.2rem;
}

.package-card {
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    border-radius: 15px;
}

.position-relative {
    height: 100%;
    width: 100%;
}

.overlay-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}

/*Follow us Section Designs*/

.follow-us-section {
    background: linear-gradient(135deg, #f46b45, #eea849);
    color: white;
}

.section-title {
    font-family: 'Pacifico', cursive;
    font-size: 2.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: white;
    background-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

    .social-icon:hover {
        transform: translateY(-5px) scale(1.1);
    }

.instagram:hover {
    background-color: #d62976;
}

.youtube:hover {
    background-color: #ff0000;
}


/*footer*/
.footer {
    background: linear-gradient(to right, var(--brown), #3e2415);
    color: #fff;
    padding: 20px 0;
}

/*Journey Timeline Section Designs*/
.timeline-step {
    text-align: center;
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

    .timeline-step:hover {
        transform: translateY(-5px);
    }

.icon-wrapper {
    font-size: 2.5rem;
    color: #ff8a00; /* Use extracted brand theme color */
    margin-bottom: 10px;
}


/* Desktop and larger screens: fixed height for cards */
@media (min-width: 768px) {
    .package-card {
        height: 400px; /* reduce from 400px to 300px */
        max-width: 300px; /* optional: control max width */
    }

    .position-relative {
        height: 100%;
        max-width: 3000px; /* keep in sync */
    }

    .package-img {
        height: 100%;
        max-width: 300px; /* keep in sync */
    }
}

@media (max-width: 767.98px) {
    .package-card {
        height: auto;
        max-width: 80vw; /* 80% of viewport width */
        margin-left: auto;
        margin-right: auto; /* center horizontally */
    }

    .position-relative {
        height: auto;
        max-width: 80vw;
        margin-left: auto;
        margin-right: auto; /* center horizontally */
    }

    .package-img {
        height: auto;
        max-height: 400px; /* good portrait height */
        max-width: 100%; /* fill card width */
        display: block;
        margin-left: auto;
        margin-right: auto; /* center image */
        object-fit: cover;
    }
}
/* VIDEO BANNER */
.video-banner {
    position: relative;
    height: 80vh;
    width: 100%;
    overflow: hidden;
}

.banner-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Fade effect */
    filter: brightness(60%); /* slightly faded */
}

/* Banner */
.video-banner {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: white;
    text-align: center;
}

    .video-banner video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -1;
        transform: translate(-50%, -50%);
        object-fit: cover;
    }

    .video-banner .overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.4);
    }

    .video-banner .content {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
    }

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1rem;
    }
}


/* about us*/
.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Crops the image */
    object-position: center; /* Centers the crop */
    border-radius: 12px; /* Optional – looks cleaner */
}

.about-section {
    display: flex;
    align-items: center;
    gap: 30px;
}

.about-left {
    width: 40%;
    height: 300px; /* You can change height */
    overflow: hidden;
}

.about-right {
    width: 60%;
}

#about h2 {
    font-weight: 700;
    color: #0E4D92; /* Your primary color */
}

#about p {
    font-size: 1.05rem;
    line-height: 1.7;
}

.gallery-section {
    background: #fafafa;
}

.gallery-img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    .gallery-img:hover {
        transform: scale(1.08);
        box-shadow: 0 10px 25px rgba(0,0,0,0.20);
    }

.gallery-item {
    position: relative;
    overflow: hidden;
}

/* Mobile adjustments */
@media (max-width: 576px) {
    .gallery-img {
        height: 180px;
    }
}

.stats-section {
    background: #f4f4f4;
    padding: 70px 0;
}

.stats-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-box {
    background: white;
    padding: 40px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

    .stat-box:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    }

    .stat-box h2 {
        font-size: 48px;
        font-weight: 700;
        color: #e40814; /* Highlight color */
        margin-bottom: 10px;
    }

    .stat-box p {
        font-size: 18px;
        font-weight: 500;
        color: #222;
    }
