: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;
}


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

.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 {
    display: inline-block;
    padding: 14px 30px;
    background: #ffb703;
    color: #fff;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    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;
}

.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: 60px 20px;
}

.stats-container {
    max-width: 1100px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-box {
    background: white;
    backdrop-filter: blur(10px);
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-align: center;
}

    .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: 8px;
    }

    .stat-box p {
        font-size: 18px;
        font-weight: 500;
        color: #222;
    }
@media (max-width: 992px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}
.urbania-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
}

.urbania-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.urbania-image {
    flex: 1;
    text-align: center;
}

    .urbania-image img {
        max-width: 100%;
        border-radius: 20px;
        animation: float 4s ease-in-out infinite;
    }

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.urbania-content {
    flex: 1;
}

    .urbania-content h2 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

.subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.badge {
    display: inline-block;
    background: #ffb703;
    color: #000;
    padding: 6px 14px;
    border-radius: 30px;
    font-weight: 600;
    margin-bottom: 15px;
}

.features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

    .features li {
        font-size: 18px;
        margin-bottom: 10px;
    }


    .urbania-btn:hover {
        background: #ffc933;
        transform: translateY(-3px);
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .urbania-wrapper {
        flex-direction: column;
        text-align: left;
    }

    .urbania-content h2 {
        font-size: 32px;
    }
}

/* Navbar Base */
.premium-navbar {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

/* Brand */
.brand-logo {
    background: linear-gradient(135deg, #ffb703, #fb8500);
    color: #000;
    font-weight: 800;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 16px;
}

.brand-text strong {
    font-size: 18px;
    color: #fff;
    display: block;
    line-height: 1;
}

/* Nav Links */
.navbar-nav .nav-link {
    font-weight: 500;
    color: #fff;
    padding: 8px 14px;
    position: relative;
}

    .navbar-nav .nav-link::after {
        content: "";
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 0;
        height: 2px;
        background: #fb8500;
        transition: 0.3s;
        transform: translateX(-50%);
    }

    .navbar-nav .nav-link:hover::after {
        width: 60%;
    }

/* Phone Button */
.phone-btn {
    background: linear-gradient(135deg, #fb8500, #ffb703);
    color: #000;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

    .phone-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(251,133,0,0.4);
    }

/* Mobile tweaks */
@media (max-width: 991px) {
    .phone-btn {
        margin-top: 15px;
        width: 100%;
        justify-content: center;
    }
}

.section-title {
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Timeline Wrapper */
.timeline-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: nowrap;
}

/* Progress Line */
.timeline-progress {
    position: absolute;
    top: 45px;
    left: 5%;
    height: 4px;
    width: 0;
    background: linear-gradient(90deg, #fb8500, #ffb703);
    border-radius: 10px;
    z-index: 0;
    transition: width 0.3s ease;
}

/* Timeline Step */
.timeline-step {
    position: relative;
    background: rgba(255,255,255,0.95);
    padding: 24px 18px;
    width: 160px;
    border-radius: 20px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
    text-align: center;
    z-index: 1;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

    .timeline-step:hover {
        transform: translateY(-10px);
        box-shadow: 0 18px 45px rgba(251,133,0,0.3);
    }


/* Icon Wrapper */
.icon-wrapper {
    width: 66px;
    height: 66px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #fb8500, #ffb703);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    animation: floatIcon 3s ease-in-out infinite;
}

/* Icon Micro Animation */
@keyframes floatIcon {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* ========================= */
/* MOBILE – SINGLE ROW FIX */
/* ========================= */
@media (max-width: 768px) {

    .timeline-wrapper {
        justify-content: space-between;
        gap: 6px;
        overflow: hidden;
    }

    .timeline-step {
        width: 18%;
        padding: 10px 6px;
        margin:5px;
        border-radius: 12px;
        box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    }

    .icon-wrapper {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 6px;
        animation: none; /* cleaner on mobile */
    }

    .timeline-step h6 {
        font-size: 11px;
        line-height: 1.2;
        margin-bottom: 0;
    }

    .timeline-progress {
        display: none;
    }
}

/* Section Background */
.why-premium {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    padding: 70px 0;
}

/* Wrapper */
.why-wrapper {
    display: flex;
    justify-content: center;
    gap: 24px;
}

/* Card */
.why-card {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 26px 18px;
    width: 220px;
    color: #fff;
    transition: all 0.35s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

    .why-card:hover {
        transform: translateY(-10px);
        background: rgba(255,255,255,0.18);
    }

/* Icon */
.why-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, #fb8500, #ffb703);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    box-shadow: 0 8px 20px rgba(251,133,0,0.5);
}

/* Text */
.why-card h6, .timeline-step h6 {
    font-weight: 600;
    margin: 0;
}

/* ========================= */
/* MOBILE – SINGLE ROW */
/* ========================= */
@media (max-width: 768px) {

    .why-wrapper {
        justify-content: space-between;
        gap: 6px;
    }

    .why-card {
        width: 22%;
        padding: 14px 6px;
        border-radius: 12px;
    }

    .why-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
        margin-bottom: 6px;
    }

    .why-card h6 {
        font-size: 11px;
        white-space: nowrap;
    }
}
