@charset "utf-8";
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
}


html {
   scroll-behavior: smooth;
}

nav ul li ul {
   display: none;
   position: absolute;
}
nav ul li:hover ul {
   display: block;
}

/* Top bar */
.top-bar {
    background-color: #000033;
    padding: 8px 20px;
    font-size: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: #CCCCCC;   /* ye sirf text grey rakhega */
    text-decoration: none;
    margin-right: 15px;
}

/* Sirf icons ke liye colors */
.top-bar i.fa-phone-alt { color: #007bff; }   /* Call Blue */
.top-bar i.fa-whatsapp { color: #25D366; }    /* WhatsApp Green */
.top-bar i.fa-instagram { color: #E1306C; }   /* Instagram pink */
.top-bar i.fa-facebook-f { color: #1877F2; }  /* Facebook blue */


/* Navbar Container */
  nav {
    background: #000;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
  }

  /* Logo */
  .navbar-brand img {
    height: 50px;
    width: auto;
    display: block;
  }

  /* Menu */
  .navbar-menu {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }

  .navbar-menu li {
    position: relative;
  }

  .navbar-menu a {
    color: #fff;
    text-decoration: none;
    padding: 8px 12px;
    display: block;
    transition: 0.3s;
  }

  .navbar-menu a:hover {
    background: #d4af37;
    border-radius: 4px;
  }

  /* Dropdown */
  .dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #111;
    min-width: 180px;
    border-radius: 6px;
    overflow: hidden;
    z-index: 999;
  }

  .dropdown-menu li a {
    padding: 10px 15px;
    color: #fff;
  }

  .dropdown-menu li a:hover {
    background: #d4af37;
  }

  /* Desktop hover */
  .navbar-menu li.dropdown:hover > .dropdown-menu {
    display: block;
  }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .hamburger {
      display: flex;
    }

    .navbar-menu {
      position: absolute;
      top: 65px;
      right: 20px;
      background: #111;
      flex-direction: column;
      width: 220px;
      display: none;
      padding: 10px 0;
      border-radius: 6px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    }

    .navbar-menu.show {
      display: flex;
    }

    .navbar-menu li {
      width: 100%;
      text-align: left;
    }

    .navbar-menu a {
      padding: 12px 15px;
    }

    /* Mobile dropdown */
    .navbar-menu .dropdown-menu {
      position: static;
      background: #111;
      border-radius: 0;
      box-shadow: none;
      display: none;
    }

    .navbar-menu .dropdown.open > .dropdown-menu {
      display: block;
    }
  }

  section {
    scroll-margin-top: 80px;
  }

/* Active link */
.navbar-menu a.active {
  background: #d4af37;
  border-radius: 4px;
  color: #000; /* optional, contrast ke liye */
}


/* Hero section */
.hero {
    height: 90vh;
    background: url(../img/carousel.webp) center/cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 50px;
}
.hero h1 {
    font-size: 48px;
    max-width: 600px;
    margin: 0;
}
.hero p {
    font-size: 18px;
    margin-top: 10px;
    max-width: 500px;
}
.hero-buttons {
    margin-top: 20px;
}
.hero-buttons a {
    display: inline-block;
    margin-right: 15px;
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
}
.rent-btn {
    background-color: gold;
    color: black;
}
.contact-btn2 {
    border: 2px solid white;
    color: white;
}

/* Details */
.Eliterides_about {padding:5px 0px; text-align:center; max-width:1000px; margin:auto;}
.Eliterides_about h2 {font-family:'Playfair Display', serif; font-size:32px; margin-bottom:20px; color:#FFFFFF;}
.Eliterides_about p {font-size:18px; line-height:1.6; color:#FFFFFF;}







/** Segment 2 **/
.car-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 40px;
    background-color: #000;
}

.car-card {
    background-color: #111;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    color: white;
    border: 1px solid #222;
}

.car-card img {
  width: 100%;
  height: 260px; 
  object-fit: cover;  
  border-radius: 10px; 
  display: block;
}

.car-card h3 {
    margin: 10px 0;
    font-size: 18px;
}

.price {
    display: flex;
    justify-content: space-between;
    padding: 4px 10px;
    font-size: 14px;
}

.price span {
    color: #aaa;
}

/* ✅ Buttons same as pehle */
.buttons {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.buttons a {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

.whatsapp {
    background-color: #25D366;
    color: white;
}

.call {
    background-color: white;
    color: black;
}

.book {
    background-color: #d4a056;
    color: white;
}

/* ✅ Buttons same as pehle */
.buttons {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    gap: 60px; /* desktop ke liye */
}

.buttons a {
    flex: 1;
    text-align: center;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: bold;
}

/* ✅ Mobile Full Fix */
@media (max-width: 768px) {
  body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;   
    width: 100%;
  }

  .car-section {
    grid-template-columns: 1fr; 
    padding: 0;                
    margin: 0;
    gap: 15px;                 
    width: 100%;
    box-sizing: border-box;
  }

  .car-card {
    width: 100%;
    margin: 0 auto;            
    box-sizing: border-box;
    border-radius: 12px;
  }

  .car-card img {
    width: 100%;
    max-width: 100%;           
    height: auto;
    border-radius: 10px;
    display: block;
  }

  /* ✅ Mobile buttons row fix */
  .buttons {
    gap: 50px;         /* bada gap hatao */
    flex-direction: row;
  }

  .buttons a {
    flex: 1;           /* equal width */
  }
}

/* ✅ Desktop (≥1024px) me 3 cards per row */
@media (min-width: 1024px) {
  .car-section {
    grid-template-columns: repeat(3, 1fr); /* fix 3 cards */
  }
}


/* =========================
   Luxury Services Section Theme
   ========================= */
#luxury-services {
  background-color: #000;       
  color: #fff;                  
  font-family: 'Poppins', sans-serif;
  padding: 60px 20px;
}

#luxury-services > div {
  max-width: 1000px;
  margin: 0 auto;
}

/* Section Heading */
#luxury-services h1 {
  font-size: 35px;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 2px;
  color: #d4af37;             
  font-weight: 600;
}

/* Service Item */
#luxury-services .service-item {
  margin-bottom: 40px;
}

#luxury-services .service-item h3 {
  font-size: 24px;
  color: #d4af37;               
  margin-bottom: 15px;
  font-weight: 500;
}

#luxury-services .service-item p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;                  
  text-align: justify;
}

/* Hover effect for headings */
#luxury-services .service-item:hover h3 {
  color: #fff;
  transition: color 0.3s ease-in-out;
}

/* =========================
   Responsive Design
   ========================= */
@media (max-width: 768px) {
  #luxury-services {
    padding: 40px 15px;
  }

  #luxury-services h2 {
    font-size: 28px;
  }

  #luxury-services .service-item h3 {
    font-size: 20px;
  }

  #luxury-services .service-item p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  #luxury-services h2 {
    font-size: 24px;
  }

  #luxury-services .service-item h3 {
    font-size: 18px;
  }

  #luxury-services .service-item p {
    font-size: 14px;
  }
}




/** about2**/

/* =========================
   Elite Rides Sections CSS
   ========================= */

/* -------------------------
   Why Choose Us Section
   ------------------------- */
#why-choose {
    padding: 50px 20px;
    background-color: #000;
    color: #fff;
}

#why-choose h2 {
    font-size: 28px;
    color: #d4af37;
    border-left: 5px solid #d4af37;
    padding-left: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

#why-choose ul {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

#why-choose ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #fff;
}

#why-choose ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #d4af37;
}

/* -------------------------
   Largest Fleet Section
   ------------------------- */
#fleet {
    padding: 50px 20px;
    background-color: #111;
}

#fleet h2 {
    font-size: 28px;
    color: #d4af37;
    border-left: 5px solid #d4af37;
    padding-left: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

#fleet p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 15px;
}

#fleet .highlight {
    background-color: #1a1a1a;
    border: 1px solid #d4af37;
    padding: 20px;
    border-radius: 10px;
    margin: 20px 0;
    box-shadow: 0 0 15px rgba(212,175,55,0.2);
}

#fleet ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

#fleet ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #fff;
}

#fleet ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #d4af37;
}

/* -------------------------
   Rent a Luxury Car Section
   ------------------------- */
#rent {
    padding: 50px 20px;
    background-color: #000;
}

#rent h2 {
    font-size: 28px;
    color: #d4af37;
    border-left: 5px solid #d4af37;
    padding-left: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

#rent p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* -------------------------
   Why Choose a Luxury Car Section
   ------------------------- */
#luxury-benefits {
    padding: 50px 20px;
    background-color: #111;
}

#luxury-benefits h2 {
    font-size: 28px;
    color: #d4af37;
    border-left: 5px solid #d4af37;
    padding-left: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

#luxury-benefits h3 {
    font-size: 22px;
    color: #fff;
    margin-top: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

#luxury-benefits p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.7;
    margin-bottom: 15px;
}

#luxury-benefits ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
}

#luxury-benefits ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #fff;
}

#luxury-benefits ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #d4af37;
}

/* -------------------------
   Responsive Adjustments
   ------------------------- */
@media (max-width: 768px) {
    #why-choose, #fleet, #rent, #luxury-benefits {
        padding: 40px 15px;
    }
    #why-choose h2, #fleet h2, #rent h2, #luxury-benefits h2 {
        font-size: 24px;
        padding-left: 10px;
    }
    #luxury-benefits h3 {
        font-size: 20px;
    }
    #why-choose ul li, #fleet ul li, #luxury-benefits ul li {
        font-size: 15px;
        padding-left: 20px;
    }
}


/* -------------------------
   Rental Prices Section
   ------------------------- */
#rental-prices {
    padding: 50px 20px;
    background-color: #000;
    color: #fff;
}

#rental-prices .section-inner {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center; 
}

#rental-prices h2 {
    font-size: 28px;
    color: #d4af37;
    border-left: 5px solid #d4af37;
    padding-left: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

#rental-prices h3 {
    font-size: 22px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #fff;
}

#rental-prices p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #ddd;
}

#rental-prices ul {
    list-style: none;
    padding-left: 0;
    margin-top: 10px;
    display: inline-block;
    text-align: left;
}

#rental-prices ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #fff;
}

#rental-prices ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #d4af37;
}

/* Table Styling */
#rental-prices table.pricing-table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: collapse;
    text-align: left;
    color: #fff;
}

#rental-prices table th,
#rental-prices table td {
    padding: 10px 15px;
    border: 1px solid #444;
}

#rental-prices table th {
    background-color: #1a1a1a;
    color: #d4af37;
}

#rental-prices table td {
    background-color: #111;
    color: #ddd;
}

#rental-prices .note {
    font-size: 14px;
    color: #aaa;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    #rental-prices {
        padding: 40px 15px;
    }
    #rental-prices h2 {
        font-size: 24px;
        padding-left: 10px;
    }
    #rental-prices h3 {
        font-size: 20px;
    }
    #rental-prices ul {
        font-size: 15px;
    }
    #rental-prices table.pricing-table th,
    #rental-prices table.pricing-table td {
        padding: 8px 10px;
    }
}



<!-- CSS -->
<style>
.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #333;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  text-align: left;
  padding: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: 0.3s;
}

.faq-question:hover {
  background: #111;
  color: #f4b400;
}

.faq-answer {
  display: none;
  padding: 0 15px 15px;
  font-size: 16px;
  color: #ccc;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question i {
  transform: rotate(90deg);
  color: #f4b400;
}

.faq-question i {
  margin-right: 10px;
  transition: 0.3s;
}
</style>
/* Services start */
/* Luxury Services Section */
#luxury-services {
  background: #000; 
  color: #fff;
  font-family: 'Poppins', sans-serif;
  padding: 80px 20px;
}

#luxury-services .container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

#luxury-services h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #d4af37; /* Gold */
  letter-spacing: 2px;
  font-weight: 600;
}

/* Grid Layout */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* Service Card (as <a>) */
.service-card {
  display: block;               
  background: #111;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 30px 20px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;       
  color: inherit;              
}

/* Heading & Para */
.service-card h3 {
  font-size: 22px;
  color: #d4af37;
  margin-bottom: 15px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #ccc;
}

/* Hover Effect */
.service-card:hover {
  background: #1a1a1a;
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
  #luxury-services h2 {
    font-size: 28px;
  }
  .service-card h3 {
    font-size: 20px;
  }
  .service-card p {
    font-size: 14px;
  }
}




/* Footer Styles */
footer {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  padding: 50px 20px 0;  
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 40px;  
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h3 {
  margin-bottom: 15px;
  font-size: 18px;
  font-weight: bold;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #d4af37;
}

.social-links a {
  color: #fff;
  margin-right: 15px;
  font-size: 18px;
  transition: 0.3s;
}

.social-links a:hover {
  color: #1abc9c;
}

/* ✅ Footer bottom layout fix */
.footer-bottom {
  border-top: 1px solid #333;
  padding: 15px 20px;
  text-align: center;
}

.footer-bottom .footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom .footer-left a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}

.footer-bottom .footer-left a:hover {
  color: #d4af37;
}

.footer-bottom .footer-right {
  color: #fff;
}

.footer-bottom .footer-right a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}

.footer-bottom .footer-right a:hover {
  color: #d4af37;
}

/* Footer icons color */
footer i.fa-map-marker-alt { color: #FF3B30; }   
footer i.fa-envelope { color: #FFD700; }        
footer i.fa-phone-alt { color: #007bff; }      
footer i.fa-facebook-f { color: #1877F2; }    
footer i.fa-instagram { color: #E1306C; }       
footer i.fa-whatsapp { color: #25D366; }        

/* ✅ Mobile View Fix */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    padding-left: 25px;
    padding-right: 25px;
    padding-bottom: 30px;   
  }

  .footer-column {
    width: 100%;
  }

  .social-links {
    display: flex;
    justify-content: flex-start;
    margin-top: 10px;
  }

  /* Footer bottom stack */
  .footer-bottom .footer-row {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}


/* Footer Styles end */

/* Container icons fixed at bottom-right */
.whatsapp-icon, .call-icon {
  position: fixed;
  right: 20px;
  z-index: 9999;
}

.whatsapp-icon {
  bottom: 110px;
}

.call-icon {
  bottom: 30px; 
}

.whatsapp-icon img,
.call-icon img {
  width: 60px;   
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(244,233,212,1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.whatsapp-icon img:hover,
.call-icon img:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}
