/* .................................................Airport Section Start.................................. */

.features-airport {
    text-align: center;
    padding: 40px 20px;
    font-family: Arial, sans-serif;
    background-color: #000;
}

.features-airport .title-airport {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.title-airport{
  color: yellow;
}

.top-text-airport{
  color: #fff;
}

/* Heading ke niche paragraph */
.features-airport .top-text-airport {
    font-size: 16px;
    color: #fff;
    max-width: 600px;
    margin: 0 auto 35px auto;
}

.features-airport .cards-airport {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.features-airport .card-airport {
    width: 260px;
    background: linear-gradient(to bottom, #fff, #e6e6ff);
    padding: 25px;
    border-radius: 25px;
    box-shadow: 0px 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s ease;
}

.features-airport .card-airport img {
    width: 60%;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 15px;
}

.features-airport .card-airport:hover {
    transform: translateY(-7px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.features-airport .card-airport h3 {
    font-size: 20px;
    margin: 0;
    color: #444;
}

.features-airport .card-airport h2 {
    margin-top: 10px;
    font-size: 22px;
    font-weight: bold;
}

.features-airport .card-airport p {
    margin-top: 12px;
    font-size: 14px;
    color: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .features-airport .card-airport {
        width: 45%;
    }
    .features-airport .title-airport {
      font-size: 25px;
    }
}

@media (max-width: 500px) {
    .features-airport .card-airport {
        width: 100%;
    }
}

/* .................................................Airport Section End.................................. */

/* .........................................................Station Section Start.......................................... */

.station-features-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 100px 0 !important;
}

.station-main-heading {
  font-size: 2.8rem;
  color: #1a1a1a;
  position: relative;
  display: inline-block;
}

.station-main-heading::after {
  content: '';
  width: 90px;
  height: 6px;
  background: #FFC61A;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
}

.station-main-para {
  font-size: 1.22rem;
  max-width: 720px;
  margin: 0 auto;
  color: #000 !important;
}

.station-feature-card {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0,0,0,0.09);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.station-feature-card:hover {
  transform: translateY(-16px);
  box-shadow: 0 30px 60px rgba(255, 198, 26, 0.28);
  border-color: #FFC61A;
}

.station-card-img-wrapper {
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, #fff9e6, #fff);
  padding: 0;
  position: relative;
}

.station-card-img {
  width: 100%;
  height: 150%;
  object-fit: cover;          
  object-position: center;     
  transition: transform 0.6s ease;
}

.station-feature-card:hover .station-card-img {
  transform: scale(1.12);
}

.station-card-body {
  padding: 28px 24px 34px;
  text-align: center;
}

.station-card-title {
  font-size: 1.45rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 14px;
  position: relative;
}

.station-card-title::after {
  content: '';
  width: 70px;
  height: 4px;
  background: #FFC61A;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.station-card-text {
  color: #666;
  font-size: 1.02rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .station-feature-card { margin-bottom: 30px; }
  .station-card-img-wrapper { height: 190px; }

  .station-main-heading {
    font-size: 25px;
  }
}

/* ...............................................................Station Section End......................................... */











/* ...............................................................Sevices Section Start..................................... */

.service-section {
  padding: 50px 20px;
  text-align: center;
  color: #fff;
}

.service-title {
  font-size: 32px;
  margin-bottom: 30px;
  color: #FFC61A; /* title color */
}

.service-cards {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.service-card {
  /* background: #2b2b2b; */
  background-color: #000;
  padding: 20px;
  border-radius: 16px;
  width: 310px;
  text-align: left;
  border: 3px solid #FFC61A; /* border highlight */
}

.service-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-card-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #FFC61A; /* heading highlight */
}

.service-card-text {
  font-size: 15px;
  color: #e0e0e0;
  line-height: 1.5;
}

@media(max-width: 700px) {
  .service-cards {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    margin-bottom: 20px; /* gap when stacked */
  }

  .service-section {
    padding: 38px 0px;
    text-align: center;
    color: #fff;
  }

  .service-title {
    font-size: 25px;
    margin-bottom: 30px;
    color: #FFC61A;
  }
}

/* ...............................................................Sevices Section End.................................. */


/* ...............................................................All Section Heading Start.................................. */

/* Services Section Header */
.services-header {
  text-align: center;
  margin-bottom: 50px; /* space below header */
}

.services-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111; /* dark text for readability */
  margin-bottom: 12px;
  border-bottom: 3px solid #FFC61A; /* brand color underline */
  display: inline-block;
  padding-bottom: 6px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.services-header p {
  font-size: 1.05rem;
  font-weight: 500;
  color: #555; /* soft gray */
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ...............................................................All Section Heading End.................................. */


/* ...............................................................Fleet Section Start.................................. */

.elite-fleet-area {
  background: #000;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.elite-fleet-area::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(253,196,26,0.1) 0%, transparent 60%),
              radial-gradient(circle at 70% 30%, rgba(253,196,26,0.08) 0%, transparent 60%);
  pointer-events: none;
}

/* Heading Styles (Same as before) */
.elite-title {
  font-size: 5.5rem;
  font-weight: 900;
  letter-spacing: -3px;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.gold-stroke {
  -webkit-text-stroke: 2px #FDC41A;
  color: transparent;
}
.elite-title span { color: #FDC41A; }
.elite-underline {
  width: 120px;
  height: 6px;
  background: linear-gradient(90deg, transparent, #FDC41A, transparent);
  margin: 20px auto;
  border-radius: 3px;
}
.elite-subtitle {
  font-size: 1.1rem;
  color: #aaa;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.tag { color: #FDC41A; font-weight: 600; }
.separator { margin: 0 15px; color: #555; }

/* Perfectly Centered Grid - Only 4 Cards */
.elite-grid-centered {
  display: grid;
  grid-template-columns: repeat(4, minmax(260px, 1fr));
  gap: 2.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  justify-content: center;
}

/* Card Styles (Same premium look) */
.elite-card {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, #111 0%, #000 100%);
  border: 1px solid rgba(253,196,26,0.2);
  transition: all 0.5s ease;
}
.elite-card:hover {
  border-color: #FDC41A;
  transform: translateY(-20px);
  box-shadow: 0 25px 50px rgba(253,196,26,0.2);
}
.card-glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(253,196,26,0.15) 100%);
  opacity: 0;
  transition: 0.5s;
}
.elite-card:hover .card-glow { opacity: 1; }

/* Ribbon */
.ribbon-flag {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #FDC41A;
  color: #000;
  padding: 6px 28px;
  font-size: 0.8rem;
  font-weight: 900;
  border-radius: 0 0 20px 20px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}
.ribbon-flag.extra { background: #00e5ff; color: white; }
.ribbon-flag.vip { background: #d946ef; color: white; }
.ribbon-flag.group { background: #00c853; color: white; }

/* Car Image */
.car-wrap {
  padding: 50px 30px 20px;
  text-align: center;
}
.car-wrap img {
  width: 100%;
  max-height: 180px;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
  transition: 0.5s;
  margin-top: 20px;
}
.elite-card:hover img {
  transform: scale(1.15) translateY(-12px);
}

/* Card Info */
.card-info {
  padding: 30px;
  text-align: center;
}
.card-info h3 {
  color: #FDC41A;
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 10px;
}
.card-info p {
  color: #bbb;
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.icons-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.icon-item {
  background: rgba(253,196,26,0.12);
  color: #FDC41A;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.95rem;
  border: 1px dashed rgba(253,196,26,0.3);
  transition: 0.3s;
}
.icon-item:before {
  content: "✓ ";
  color: #FDC41A;
  font-weight: bold;
}
.elite-card:hover .icon-item {
  background: rgba(253,196,26,0.25);
  border-style: solid;
}

/* Responsive - Mobile pe 1 ya 2 cards */
@media (max-width: 1200px) {
  .elite-grid-centered {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .elite-title { font-size: 50px; }
  .elite-grid-centered {
    grid-template-columns: 1fr;
    padding: 0 1.5rem;
  }
  .elite-card:hover {
    transform: translateY(-12px);
  }
  .elite-subtitle{
    font-size: 20px;
    color: #aaa;
    letter-spacing: 1px;
    text-transform: none;
  }
}

/* ...............................................................Fleet Section End.................................. */

/* ...............................................................Footer Section Start.................................. */

/* Footer Styles */
footer {
  background-color: #111;
  color: #fff;
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

footer .footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

footer .footer-column {
  flex: 1;
  min-width: 200px;
  margin: 10px;
}

footer .footer-column img {
  width: 150px;
  margin-bottom: 15px;
}

footer .footer-column p {
  line-height: 1.6;
}

footer .footer-column h3 {
  color: #FFC61A;
  margin-bottom: 10px;
}

footer .footer-column ul {
  list-style: none;
  padding: 0;
  line-height: 2;
}

footer .footer-column ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

footer .footer-column ul li a:hover {
  color: #FFC61A;
}

footer .footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid #333;
  margin-top: 30px;
  font-size: 14px;
}

footer .footer-bottom a.footer_a {
  color: #fff;
  text-decoration: none;
}

footer .footer-bottom a.footer_a:hover {
  color: #FFC61A;
}

/* Responsive Footer */
@media (max-width: 768px) {
  footer .footer-container {
    flex-direction: column;
    align-items: start;
  }

  footer .footer-column {
    text-align: start;
  }
}


/* ...............................................................Footer Section End.................................. */


/* .............................................5 Section Code Start............................................... */

:root {
      --primary-gold: #FFC61A;
    }

    .section-all {
      background: #0f0f12;
      color: #e0e0e0;
      padding: 120px 20px;
      text-align: center;
      min-height: 100vh;
      font-family: 'Segoe UI', system-ui, sans-serif;
    }

    .section-all h2 {
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(90deg, #ffffff, var(--primary-gold), #ffb800);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 1rem;
    }

    .section-all > p {
      font-size: 1.25rem;
      max-width: 750px;
      margin: 0 auto 5rem;
      opacity: 0.85;
      line-height: 1.7;
    }

    .card-all {
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      aspect-ratio: 1 / 1.4;
      box-shadow: 0 10px 30px rgba(0,0,0,0.6);
      transition: all 0.4s ease;
      cursor: pointer;
      margin-bottom: 3rem;
    }

    .card-img-all {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .card-overlay-all {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(255, 198, 26, 0.95), rgba(255, 160, 0, 0.92));
      backdrop-filter: blur(4px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      padding: 2rem;
      opacity: 0;
      transform: translateY(30px);
      transition: all 0.5s ease;
      text-align: center;
    }

    .card-overlay-all h3 {
      font-size: 1.9rem;
      font-weight: 700;
      color: #000;
      margin-bottom: 0.8rem;
    }

    .card-overlay-all a:hover{
      text-decoration: none !important;
      color: #fff;
    }

    .card-overlay-all p {
      color: #111;
      font-weight: 500;
      margin-bottom: 1.2rem;
    }

    .card-link-all {
      color: #000;
      font-weight: 600;
      text-decoration: none;
      border-bottom: 2px solid transparent;
      transition: all 0.3s ease;
    }

    .card-link-all:hover {
      border-bottom-color: #000;
      letter-spacing: 1px;
    }

    /* Hover Effects */
    .card-all:hover {
      transform: translateY(-15px);
      box-shadow: 0 0 0 4px #0f0f12,
                  0 0 0 8px rgba(255, 198, 26, 0.7),
                  0 0 0 14px rgba(255, 198, 26, 0.4),
                  0 25px 50px rgba(0,0,0,0.8);
    }

    .card-all:hover .card-img-all {
      transform: scale(1.12);
    }

    .card-all:hover .card-overlay-all {
      opacity: 1;
      transform: translateY(0);
    }

    /* Bottom visible link */
    .card-bottom-link {
      margin-top: 1.5rem;
      display: block;
      color: var(--primary-gold);
      font-weight: 600;
      text-decoration: none;
      opacity: 0.9;
      transition: all 0.3s ease;
    }

    .card-bottom-link:hover {
      color: #fff;
      letter-spacing: 1px;
    }

    @media (max-width: 768px) {
      .section-all h2 { font-size: 1.5rem; }
    }

/* .............................................5 Section Code End............................................... */


/* ....................................................................Contact Work Start.......................................... */

.tla-contact-area {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
  font-family: 'Poppins', sans-serif;
  color: #fff;
}

.tla-container {
  max-width: 1300px;
  margin: 0 auto;
}

.tla-main-title {
  text-align: center;
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #FFC61A;
  text-shadow: 0 0 20px rgba(167, 145, 50, 0.3);
}

.tla-main-title::after {
  content: '';
  display: block;
  width: 120px;
  height: 4px;
  background: #FFC61A;
  margin: 25px auto;
  border-radius: 2px;
}

/* Yeh naya div cards ko perfectly center karta hai */
.tla-info-centered {
  display: flex;
  justify-content: center;
  margin-bottom: 70px;
}

.tla-info-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  width: 100%;
}

.tla-info-box {
  background: rgba(255, 255, 255, 0.04);
  padding: 45px 30px;
  border-radius: 18px;
  text-align: center;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(167, 145, 50, 0.25);
  transition: all 0.4s ease;
}

.tla-info-box:hover {
  transform: translateY(-18px);
  box-shadow: 0 25px 50px rgba(167, 145, 50, 0.2);
  border-color: #FFC61A;
}

.tla-icon {
  width: 75px;
  height: 75px;
  margin: 0 auto 22px;
  background: #FFC61A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tla-icon svg {
  width: 38px;
  height: 38px;
  color: #000;
}

.tla-info-box h3 {
  font-size: 23px;
  margin-bottom: 14px;
  color: #FFC61A;
  font-weight: 600;
}

.tla-info-box p {
  font-size: 18px;
  color: #FFC61A;
}

.emailRender-contact a {
  color: #FFC61A !important;
  font-size: 19px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}

.emailRender-contact a:hover {
  color: #fff !important;
  text-shadow: 0 0 15px #FFC61A;
}

.tla-phone {
  font-size: 26px;
  font-weight: 600;
  color: #FFC61A;
  text-decoration: none !important;
}

.tla-phone:hover {
  color: #fff;
  text-shadow: 0 0 15px #FFC61A;
}

.tla-map-frame {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  border: 3px solid #FFC61A;
}

/* Responsive */
@media (max-width: 992px) {
  .tla-info-wrapper {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  .tla-main-title {
    font-size: 36px;
  }
  /* Email ka style jab JS load karega */
.emailRender-contact a {
  color: #FFC61A !important;
  font-size: 16px !important;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s;
}
}

/* ....................................................................Contact Work End.......................................... */


/* ....................................................................About Work Start.......................................... */

.about-section {
  padding: 100px 20px;
  background: #0f0f0f;
  font-family: 'Poppins', sans-serif;
  color: #e0e0e0;
  overflow: hidden;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  max-width: 600px;
}

.about-small-heading {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #FFC61A;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 40px;
}

.about-text-block {
  margin-bottom: 28px;
}

.about-text-block h4 {
  font-size: 20px;
  color: #FFC61A;
  margin-bottom: 10px;
  font-weight: 600;
}

.about-text-block p {
  font-size: 16px;
  line-height: 1.7;
  color: #cccccc;
}

.about-features {
  list-style: none;
  margin-top: 35px;
  padding-left: 0;
}

.about-features li {
  display: flex;
  align-items: center;
  font-size: 17px;
  margin-bottom: 18px;
  color: #e0e0e0;
}

.about-tick {
  width: 26px;
  height: 26px;
  color: #FFC61A;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Right Side Image */
.about-image-wrapper {
  position: relative;
  display: block;
}

.about-main-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: -30px;
  background: #FFC61A;
  color: #000;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  box-shadow: 0 15px 40px rgba(167, 145, 50, 0.4);
  border: 8px solid #0f0f0f;
}

.about-badge-number {
  font-size: 52px;
  line-height: 1;
}

.about-badge-text {
  font-size: 18px;
  text-align: center;
  line-height: 1.2;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .about-image-wrapper {
    display: none; 
  }
  
  .about-title {
    font-size: 36px;
  }
  
  .about-content {
    max-width: 100%;
    text-align: center;
  }
  
  .about-features {
    display: inline-block;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 80px 15px;
  }
  
  .about-title {
    font-size: 32px;
  }
}

/* ....................................................................About Work End.......................................... */






/* ....................................................................Major Areas Start.......................................... */

.major-cities-section {
  position: relative;
  min-height: 100vh;
  background: url('../../img/london-bg.webp') center/cover no-repeat fixed;
  padding: 100px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Black overlay with soft yellow glow */
.major-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(3px);
  box-shadow: inset 0 0 120px rgba(255, 198, 26, 0.25);
  z-index: 1;
}

.major-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  width: 100%;
  text-align: center;
  color: white;
}

/* Heading with gold glow */
.major-heading {
  font-size: clamp(2.5rem, 5vw, 4.4rem);
  font-weight: 800;
  margin-bottom: 3.5rem;
  text-shadow: 0 6px 25px rgba(255, 198, 26, 0.45);
  color: #FFC61A;
}

.major-search-wrapper {
  position: relative;
  max-width: 580px;
  margin: 0 auto 4rem;
}

/* Search input redesigned */
.major-search-input {
  width: 100%;
  padding: 18px 60px 18px 26px;
  font-size: 1.2rem;
  border: 2px solid transparent;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
  transition: all 0.3s ease;
}

/* Yellow glow focus */
.major-search-input:focus {
  border-color: #FFC61A;
  box-shadow: 0 0 18px rgba(255, 198, 26, 0.9);
  background: white;
}

/* Search icon updated */
.major-search-icon {
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  stroke-width: 2.5;
  color: #FFC61A;
  opacity: 0.8;
}

.major-cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 26px;
  justify-items: center;
  padding: 0 20px;
}

/* Modern city button design */
.major-city-btn {
  width: 100%;
  max-width: 280px;
  padding: 18px 20px;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1a1a1a;
  background: white;
  border-radius: 18px;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  transition: all 0.35s ease;
}

/* Yellow hover + lift */
.major-city-btn:hover {
  transform: translateY(-10px);
  background: #FFC61A;
  border-color: #FFC61A;
  box-shadow: 0 25px 50px rgba(255, 198, 26, 0.55);
  color: #000;
}

.major-city-btn.hidden {
  display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .major-cities-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 18px;
  }
  .major-city-btn {
    padding: 15px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .major-cities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .major-city-btn {
    padding: 13px;
    font-size: 0.95rem;
  }
  .major-heading {
    margin-bottom: 2.2rem;
  }
}


/* ....................................................................Major Areas End.......................................... */


/* ....................................................................FAQ Section Start.......................................... */

.faq-section {
    max-width: 700px;
    margin: 40px auto;
    font-family: Arial, sans-serif;
}

.faq-title {
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 20px;
    color: #222;
}

/* FAQ Box */
.faq-item {
    background: #fff8d6;
    border-left: 5px solid #FFC61A;
    margin-bottom: 12px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.faq-question {
    padding: 16px;
    font-size: 18px;
    font-weight: 600;
    background: #fff3b3;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: #ffe680;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fffdf0;
    padding: 0 16px;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 12px 0;
    margin: 0;
    font-size: 16px;
    color: #444;
}

/* Icon */
.faq-question span {
    font-size: 20px;
    transition: transform 0.4s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Responsive */
@media(max-width: 480px){
    .faq-title { font-size: 24px; }
    .faq-question { font-size: 16px; }
}

/* ....................................................................FAQ Section End.......................................... */