/* ================= GLOBAL RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

html, body {
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block; /* extra bottom gap remove */
}

/* ================= TOP STRIP ================= */

.top-strip {
    background: #ff0000;
    color: #fff;
    padding: 5px 20px; /* 40px hata diya */
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

/* ================= SOCIAL ICONS ================= */

.top-left {
    display: flex;
    gap: 14px;
}

.top-left a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    text-decoration: none;
    transition: 0.3s;
}

.fb { background: #1877f2; }

.insta {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285AEB);
}

.tw { background: #1da1f2; }

.whatsapp {
    background: radial-gradient(circle at 30% 30%, #5efc8d, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp i {
    font-size: 19px;
    line-height: 0;          /* important */
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-left a:hover {
    transform: scale(1.15);
}

/* ================= CONTACT ================= */


.top-right {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-line {
    display: flex;
    align-items: center;
    gap: 28px;
}

.top-strip {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* ================= NAVBAR ================= */

.main-navbar {
    display: flex;
    align-items: center;
    padding: 0 20px; /* left-right controlled */
    background: #fff;
}

/* ================= LOGO ================= */

.logo {
    margin: 0;
    padding: 0;
}

.logo img {
    height: 55px;   /* pehle 50px tha */
    width: auto;    
    object-fit: contain;
}

/* ================= NAV LINKS ================= */

.nav-links {
    list-style: none;
    display: flex;
    margin-left: 40px;
    gap: 40px;
    align-items: center;
    width: 100%;
}

/* Last item right side */
.nav-links li:last-child {
    margin-left: auto;
}

.nav-links li {
    position: relative;
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #007bff;
}

/* ================= DROPDOWN ================= */

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 260px;
    border: 1px solid #ddd;
    display: none;
    list-style: none;
    z-index: 999;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li a {
    display: block;
    padding: 11px 15px;
    border-bottom: 1px solid #e5e5e5;
}

.dropdown-menu li a:hover {
    background: #007bff;
    color: #fff;
}
/* ================= SLIDER ================= */

.slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 20px 40px;
    text-align: center;
}

.slide-text h2 {
    font-size: 40px;
    margin-bottom: 10px;
}

.slide-text p {
    font-size: 18px;
}

/* ================= ABOUT SECTION ================= */

.about-section {
    padding: 80px 60px;
    background: #f8f8f8;
}

.about-container {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.about-content {
    width: 55%;
}

.about-image {
    width: 40%;
}

.about-image img {
    width: 100%;
    height: 500px !important;   /* yaha height control kar */
    object-fit: cover;
    border-radius: 10px;
}

.about-heading {
    color: #f4a100;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
}

.company-story {
    margin-bottom: 20px;
    font-weight: 600;
}

.highlight-box {
    background: #e9eef2;
    padding: 20px;
    border-left: 5px solid #00a8c5;
    margin-bottom: 20px;
}

.about-description {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-item {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
}

/* ================= CARS SECTION ================= */

.cars-section {
    padding: 80px 60px;
    background: #fff;
    text-align: center;
}

.cars-heading {
    font-size: 32px;
    color: #f4a100;
    margin-bottom: 10px;
}

.cars-subheading {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
    line-height: 1.6;
}

.cars-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.car-card {
    border: 2px solid #f4a100;
    padding: 20px;
    border-radius: 8px;
    background: #fafafa;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.car-card:hover {
    transform: translateY(-8px);
}

.car-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.car-card p {
    font-size: 14px;
    color: #f4a100;
    margin-bottom: 15px;
    min-height: 40px;
}

.book-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #00a8c5;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s;
}

.book-btn:hover {
    background: #008aa3;
}

/* ================= EXTRA SECTION ================= */

.extra-section {
    padding: 80px 60px;
    background: #f3f3f3;
}

.features-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.feature-box {
    width: 32%;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: #f4e7c2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #00a8c5;
    margin-bottom: 20px;
}

.feature-box h3 {
    color: #f4a100;
    margin-bottom: 15px;
}

.feature-box p {
    color: #555;
    line-height: 1.7;
}

/* ================= MOBILE RESPONSIVE ================= */

@media (max-width: 992px) {

    .main-navbar {
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        margin-left: 0;
        justify-content: center;
        gap: 15px 25px;
    }

    .nav-links li:nth-last-child(2),
    .nav-links li:nth-last-child(1) {
        margin-top: 0;
        margin-left: 0;
    }

    .top-strip {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .top-right {
        align-items: center;
    }

    .about-container {
        flex-direction: column;
        text-align: center;
    }
/* About section text fix (mobile safe) */
.about-content p {
    text-align: justify;
    line-height: 1.8;
}

.about-heading {
    text-align: center;
}
/* Feature Item Layout */
.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

/* Tick Style */
.tick {
    color: #2563eb;   /* Blue color */
    font-size: 18px;
    font-weight: bold;
    margin-top: 4px;
    flex-shrink: 0;
}

/* Text Alignment */
.feature-text {
    text-align: justify;
    line-height: 1.8;
    flex: 1;
}
    .about-content,
    .about-image {
        width: 100%;
    }

    .cars-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-container {
        flex-direction: column;
        align-items: center;
    }

    .feature-box {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 768px) {

    .slider {
        height: 300px;
    }

    .slide-text h2 {
        font-size: 24px;
    }

    .slide-text p {
        font-size: 14px;
    }

    .cars-container {
        grid-template-columns: 1fr;
    }

    .about-section,
    .cars-section,
    .extra-section {
        padding: 60px 25px;
    }
}
/* Wrapper Center */
.discover-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Main Button */
.discover-btn-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

/* Icon Animation */
.discover-btn-main i {
  transition: transform 0.3s ease;
}

/* Hover Effects */
.discover-btn-main:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.6);
}

/* Arrow Slide on Hover */
.discover-btn-main:hover i {
  transform: translateX(6px);
}

/* Mobile Responsive */
@media (max-width: 576px) {
  .discover-btn-main {
    padding: 12px 24px;
    font-size: 14px;
  }
}
/* About Bottom Layout */
.about-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

/* Stat Box */
.stat-box h3 {
  font-size: 32px;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  color: #2563eb;
}

.stat-box p {
  font-size: 14px;
  color: #374151;
  margin-top: 5px;
}

/* Discover Button */
.discover-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #facc15;
  color: #111;
  padding: 12px 28px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Hover Effect */
.discover-btn:hover {
  background: #111;
  color: white;
  transform: translateY(-3px);
}

/* Arrow Animation */
.discover-btn i {
  transition: transform 0.3s ease;
}

.discover-btn:hover i {
  transform: translateX(6px);
}

/* ========================= */
/* 📱 MOBILE RESPONSIVE */
/* ========================= */
@media (max-width: 768px) {

  .about-bottom {
    flex-direction: column;
    text-align: center;
  }

  .discover-btn {
    margin-top: 15px;
    padding: 10px 22px;
    font-size: 14px;
  }

}
@media (max-width: 768px) {

  /* Navbar column */
  .main-navbar {
    flex-direction: column;
    align-items: center;
  }

  /* Logo center */
  .logo {
    margin-bottom: 20px;
  }

  .logo img {
    height: 100px;
  }

  /* Nav links grid 2 column */
  .nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    gap: 15px;
    margin-left: 0;
  }

  /* Remove old spacing rules */
  .nav-links li {
    margin: 0 ;
    text-align: center;
  }

}
@media (max-width: 768px) {

  .top-strip {
    flex-direction: column;
    padding: 15px 20px;
  }

  /* Social icons center */
  .top-left {
    justify-content: center;
    margin-bottom: 12px;
  }

  /* Make phone & gmail in one single row */
  .top-right {
    width: 100%;
  }

  .contact-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  /* ICON + TEXT SAME LINE */
  .contact-line span,
  .contact-line a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
  }

  /* Prevent icon going up */
  .contact-line i {
    display: inline-block;
    vertical-align: middle;
  }

}
@media (max-width: 992px) {

  .contact-line {
    display: flex;
    flex-direction: column;
  }

  /* Phone 1 */
  .contact-line span:nth-child(1) { order: 1; }

  /* Phone 2 */
  .contact-line span:nth-child(2) { order: 2; }

  /* Gmail */
  .contact-line span:nth-child(3) { order: 3; }

}
/* ================= EXPENSIVE FLOATING BUTTONS ================= */

.ultimate-contact {
    position: fixed ;
    bottom: 45px ;
    left: 35px ;
    display: flex ;
    flex-direction: column ;
    gap: 30px ;
    z-index: 999999 ;
}

/* BASE STRUCTURE */
.ultimate-btn {
    position: relative ;
    width: 60px ;
    height: 60px ;
    border-radius: 50% ;
    display: flex ;
    align-items: center ;
    justify-content: center ;
    font-size: 24px ;
    color: #fff ;
    text-decoration: none ;
    overflow: hidden ;
    backdrop-filter: blur(12px) ;
    transition: all 0.5s cubic-bezier(.19,1,.22,1) ;
    transform-style: preserve-3d ;
}

/* ================= CALL BUTTON ================= */

.call-btn {
    background: linear-gradient(145deg, #001eff, #00bfff) ;
    border: 2px solid rgba(255,255,255,0.4) ;
    box-shadow:
        0 25px 45px rgba(0, 30, 255, 0.45),
        0 0 40px rgba(0, 191, 255, 0.5),
        inset 0 4px 12px rgba(255,255,255,0.3) ;
}

/* ================= WHATSAPP BUTTON ================= */

.whatsapp-btn {
    background: linear-gradient(145deg, #008f4c, #25D366) ;
    border: 2px solid rgba(255,255,255,0.4) ;
    box-shadow:
        0 25px 45px rgba(0, 143, 76, 0.45),
        0 0 40px rgba(37, 211, 102, 0.6),
        inset 0 4px 12px rgba(255,255,255,0.3) ;
}

/* ================= ROTATING LIGHT AURA ================= */

.ultimate-btn::before {
    content: "" ;
    position: absolute ;
    inset: -12px ;
    border-radius: 50% ;
    background: conic-gradient(
        from 0deg,
        rgba(255,255,255,0.6),
        transparent 30%,
        transparent 70%,
        rgba(255,255,255,0.6)
    ) ;
    animation: rotateLight 8s linear infinite ;
    z-index: -1 ;
    opacity: 0.5 ;
}

@keyframes rotateLight {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ================= METALLIC SHINE SWEEP ================= */

.ultimate-btn::after {
    content: "";
    position: absolute ;
    top: -150% ;
    left: -150% ;
    width: 300% ;
    height: 300% ;
    background: linear-gradient(
        120deg,
        transparent 40%,
        rgba(255,255,255,0.6),
        transparent 60%
    ) ;
    transform: rotate(25deg) ;
    animation: premiumShine 6s ease-in-out infinite ;
}

@keyframes premiumShine {
    0% { transform: translateX(-120%) rotate(25deg); }
    50% { transform: translateX(120%) rotate(25deg); }
    100% { transform: translateX(120%) rotate(25deg); }
}

/* ================= HOVER EFFECT ================= */

.call-btn:hover {
    box-shadow:
        0 30px 60px rgba(0, 30, 255, 0.8),
        0 0 80px rgba(0, 191, 255, 0.9) ;
}

.whatsapp-btn:hover {
    box-shadow:
        0 30px 60px rgba(0, 143, 76, 0.8),
        0 0 80px rgba(37, 211, 102, 0.9) ;
}

.ultimate-btn:hover {
    transform: translateY(-10px) scale(1.12) ;
}

/* ================= REFLECTION ================= */

.ultimate-btn {
    -webkit-box-reflect: below 8px linear-gradient(transparent, rgba(0,0,0,0.25)) ;
}
/* ================= DROPDOWN ================= */

.dropdown {
    position: relative;
}

/* Default Dropdown (Desktop + Left Column Mobile) */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    max-width: 90vw;
    border: 1px solid #ddd;
    display: none;
    list-style: none;
    z-index: 9999;
}

/* Show Dropdown */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Dropdown Links */
.dropdown-menu li a {
    display: block;
    padding: 11px 15px;
    border-bottom: 1px solid #e5e5e5;
}

.dropdown-menu li a:hover {
    background: #007bff;
    color: #fff;
}


/* ================= MOBILE FIX ================= */

@media (max-width: 768px) {

    /* Right column items in 2-column grid */
    .nav-links li:nth-child(2n) .dropdown-menu {
        left: auto;
        right: 0;
    }

}