* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1A1A1A 0%, #333 50%, #1A1A1A 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF6B00' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.3;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateX(-100px);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-100px);
}

.cta-button {
    background: linear-gradient(45deg, #FF6B00, #FF8533);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

/* Indian Landmarks Background
.landmarks-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.landmark {
    position: absolute;
    opacity: 0.7;
}

.mumbai-skyline {
    top: 20%;
    left: 10%;
    width: 150px;
    height: 100px;
}

.delhi-gate {
    top: 15%;
    right: 15%;
    width: 120px;
    height: 120px;
}

.taj-mahal {
    top: 60%;
    left: 20%;
    width: 140px;
    height: 100px;
}

.himachal-mountains {
    top: 10%;
    left: 40%;
    width: 200px;
    height: 80px;
}

.kerala-backwaters {
    bottom: 25%;
    right: 20%;
    width: 160px;
    height: 90px;
}

.rajasthan-palace {
    bottom: 30%;
    left: 5%;
    width: 130px;
    height: 110px;
}

/* Road and Vehicle Loop */
/* .road-container {
    position: absolute;
    bottom: 15%;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
} */

/* Adjust vertical position of the scene */
.landmarks-container {
    position: absolute;
    bottom: 15%;
    /* Lowered from 18% */
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1;
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    padding: 0 2%;
}

/* Updated base style for each landmark */
.landmark {
    position: relative;
    /* Change from absolute to relative */
    opacity: 0.8;
    /* Keep the subtle look */
    height: 100%;
    /* Make each landmark fill the container height */
    flex-shrink: 0;
    /* Prevent landmarks from shrinking */
}

/* Set specific widths for each new SVG viewBox */
.mumbai-skyline {
    width: 220px;
}

.delhi-gate {
    width: 120px;
}

.taj-mahal {
    width: 160px;
}

.himachal-mountains {
    width: 200px;
}

.kerala-backwaters {
    width: 180px;
}

.rajasthan-palace {
    width: 200px;
}

/* Adjust road container to align perfectly */
.road-container {
    position: absolute;
    bottom: 5%;
    /* Lowered from 15% */
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 2;
}

.road {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: linear-gradient(to bottom, #444 0%, #333 50%, #222 100%);
    border-top: 3px solid #666;
    border-bottom: 3px solid #111;
}

.road::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 4px;
    background: repeating-linear-gradient(to right,
            #FFD700 0px,
            #FFD700 30px,
            transparent 30px,
            transparent 60px);
    transform: translateY(-50%);
}

.vehicles-convoy {
    position: absolute;
    bottom: 10px;
    left: -300px;
    width: 100%;
    height: 80px;
}

.vehicle-item {
    position: absolute;
    width: 100px;
    height: 60px;
}

.vehicle-svg {
    width: 100%;
    height: 100%;
}

.side-cta-button {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: right center;
    background: linear-gradient(45deg, #FF6B00, #FF8533);
    color: white;
    border: none;
    border-radius: 25px 25px 0 0;
    padding: 15px 25px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(255, 107, 0, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.side-cta-button:hover {
    transform: translateY(-50%) translateX(-10px) rotate(-90deg);
    box-shadow: 0 -10px 30px rgba(255, 107, 0, 0.5);
}

.side-cta-button::before {
    content: '🚗';
    position: absolute;
    left: 50%;
    top: -25px;
    transform: translateX(-50%) rotate(90deg);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) rotate(90deg) translateY(0);
    }

    40% {
        transform: translateX(-50%) rotate(90deg) translateY(-5px);
    }

    60% {
        transform: translateX(-50%) rotate(90deg) translateY(-3px);
    }
}

.pulse-ring {
    position: absolute;
    left: 50%;
    top: -25px;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
    0% {
        transform: translateX(-50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) scale(2);
        opacity: 0;
    }
}

/* Navigation */
/* nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
            display: flex;
            align-items: center;
            font-size: 20px;
            font-weight: bold;
            color: #FF8533;
        }
    .logo img {
        height: 40px;
        margin-right: 10px;
    }
    
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FF6B00;
} */

/* ======================
   NAVIGATION BAR STYLES
   ====================== */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    font-family: 'Poppins', sans-serif;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    color: #FF8533;
    font-size: 20px;
    font-weight: bold;
}
.logo img {
    height: 40px;
    margin-right: 10px;
}

/* Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    transition: all 0.3s ease;
}
.nav-links li {
    display: inline-block;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active {
    color: #FF6B00;
}

/* WhatsApp Button */
.whatsapp-contact {
    margin-left: 18px;
}
.whatsapp-btn {
    display: flex;
    align-items: center;
    background: linear-gradient(90deg, #25D366 60%, #FF6A00 100%);
    color: #fff;
    font-weight: 600;
    padding: 7px 18px 7px 10px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 2px 10px rgba(255,107,0,0.1);
    transition: all 0.3s;
    gap: 8px;
}
.whatsapp-btn:hover {
    background: linear-gradient(90deg, #FF6A00 60%, #25D366 100%);
    box-shadow: 0 4px 18px rgba(255,107,0,0.2);
    color: #fff;
}
.whatsapp-icon {
    width: 22px;
    height: 22px;
    display: inline-block;
}

/* ======================
   HAMBURGER MENU
   ====================== */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 32px;
    height: 24px;
    justify-content: space-between;
}
.hamburger span {
    display: block;
    height: 4px;
    width: 100%;
    background: #FF6B00;
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* ======================
   RESPONSIVE STYLES
   ====================== */
@media (max-width: 900px) {
    .hamburger {
        display: flex;
    }
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
        display: none;
    }
    .nav-links.nav-active {
        display: flex;
    }
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .nav-links a {
        display: block;
        width: 100%;
        padding: 14px 24px;
        color: white;
        font-size: 1.05rem;
    }
    .nav-links a:hover {
        background: rgba(255, 107, 0, 0.12);
        color: #FF6B00;
    }
    .whatsapp-contact {
        display: none;
    }
}

@media (max-width: 600px) {
    .logo img {
        height: 32px;
    }
    .nav-links {
        top: 60px;
    }
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #1A1A1A;
}

/* Vehicle Carousel */
.vehicles {
    background: #F5F5F5;
}

.vehicle-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-behavior: smooth;
}

.vehicle-card {
    min-width: 300px;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.vehicle-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
}

.vehicle-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, #FF6B00, #FF8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.vehicle-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1A1A1A;
}

.vehicle-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(50px);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 107, 0, 0.15);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, #FF6B00, #FF8533);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: transform 0.3s ease;
}

.service-box:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1A1A1A;
    transition: color 0.3s ease;
}

.service-box:hover h3 {
    color: #FF6B00;
}

/* Enquiry Form */
.enquiry {
    background: #F5F5F5;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1A1A1A;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF6B00;
}

.submit-btn {
    background: linear-gradient(45deg, #FF6B00, #FF8533);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

/* Footer */
footer {
    background: #1A1A1A;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #FF6B00;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #FF6B00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .nav-links {
        display: none;
    }

    .vehicle-carousel {
        padding: 1rem 0;
    }

    .vehicle-card {
        min-width: 250px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem;
        margin: 0 20px;
    }

    .landmarks-container .landmark {
        transform: scale(0.7);
    }
}

/* Wrapper to hide overflowing content */
.carousel-wrapper {
    overflow: hidden;
}

/* Style for drag-scrolling */
.vehicle-carousel {
    cursor: grab;
    -webkit-user-select: none;
    /* Safari */
    -ms-user-select: none;
    /* IE 10+ */
    user-select: none;
    /* Standard syntax */
    /* Hide scrollbar */
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.vehicle-carousel::-webkit-scrollbar {
    display: none;
}

/* Change cursor to 'grabbing' when user is dragging */
.vehicle-carousel.active {
    cursor: grabbing;
}

   .gallery-section {
        background: #fffdf8;
        padding: 60px 20px;
        text-align: center;
        overflow: hidden;
        position: relative;
    }
    .gallery-header {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
    }
    .gallery-header img {
        max-width: 180px;
        margin-bottom: 15px;
    }
    .gallery-header h2 {
        font-size: 32px;
        color: #f97316; /* orange theme */
        font-weight: bold;
    }
    .scroll-container {
        display: flex;
        gap: 20px;
        animation: scroll-left 25s linear infinite;
    }
    .scroll-wrapper {
        display: flex;
        width: max-content;
    }
    .scroll-container img, 
    .scroll-container video {
        height: 200px;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        object-fit: cover;
    }

    /* Animation */
    @keyframes scroll-left {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* GALLERY BOX */

    .gallery-item { cursor: pointer; }
    .lightbox {
        display: none;
        position: fixed;
        z-index: 9999;
        top: 0; left: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.8);
        justify-content: center;
        align-items: center;
    }
    .lightbox-content img,
    .lightbox-content video {
        max-width: 90%;
        max-height: 80%;
        border-radius: 10px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    }
    .lightbox .close {
        position: absolute;
        top: 20px; right: 30px;
        font-size: 40px;
        color: white;
        cursor: pointer;
    }

    .vehicle-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.vehicle-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: transform 0.3s, box-shadow 0.3s;
}
.vehicle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}
/* 
.vehicle-header {
  background: linear-gradient(135deg, #ffa96f, #ff884d);
  color: #fff;
  padding: 12px;
  text-align: center;
} */
.vehicle-header h3 {
  margin: 0;
  font-size: 20px;
}
.vehicle-price {
  margin: 5px 0 0;
}
.blurred {
  filter: blur(5px);
}

.vehicle-media-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  padding: 15px;
  flex-grow: 1;
}
.vehicle-media-wrapper img,
.vehicle-media-wrapper video,
.vehicle-media-wrapper .placeholder {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  cursor: pointer;
}
.placeholder {
  background: repeating-linear-gradient(
    45deg,
    #eee,
    #eee 10px,
    #ddd 10px,
    #ddd 20px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #aaa;
}

.quote-btn {
  background: #ff6600;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 0 0 20px 20px;
  cursor: pointer;
  font-size: 16px;
  transition: background 0.3s;
}
.quote-btn:hover {
  background: #e05500;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.85);
  justify-content: center;
  align-items: center;
}
.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
  display: flex;
  align-items: center;
}
.lightbox img, .lightbox video {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 15px;
}
.close {
  position: absolute;
  top: 20px; right: 30px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}
.prev, .next {
  background: rgba(0,0,0,0.6);
  border: none;
  color: white;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 15px;
  transition: background 0.3s;
}
.prev:hover, .next:hover {
  background: rgba(255,255,255,0.4);
}
