:root {
  --red: #ff0000;
  --blue: #0000ff;
  --white: #ffffff;
}

/* GLOBAL */
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

:root {
  --blue: #004fb1;
  --whatsapp: #25d366;
  --call: #f97316;
}

/* ================= TOP HEADER ================= */
.top-header {
  background: var(--blue);
  color: #fff;
  font-size: 13px;
  padding: 8px 0;
}

/* ================= MAIN HEADER ================= */
.main-header {
  background: #ffffff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 280px;
  /* Adjusted size */
  height: 70px;
  object-fit: cover;
}

/* DESKTOP MENU */
.navbar-nav-custom a {
  color: #333;
  margin: 0 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: 0.3s;
}

.navbar-nav-custom a:hover {
  color: var(--blue);
}

/* ================= CIRCULAR BUTTONS & WAVE EFFECT ================= */
.header-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}

.action-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  position: relative;
  z-index: 1;
}

.whatsapp-btn {
  background: var(--whatsapp);
}

.call-btn {
  background: var(--call);
}

/* Wave Animation */
.wave-effect::before,
.wave-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 50%;
  z-index: -1;
}

.whatsapp-btn::before {
  background: var(--whatsapp);
  animation: pulse-wave 2s infinite;
}

.call-btn::before {
  background: var(--call);
  animation: pulse-wave 2s infinite 0.5s;
}

@keyframes pulse-wave {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 992px) {
  .top-header {
    display: block !important;
    /* Mobile pe bhi dikhega */
  }

  .logo img {
    width: 200px;
    height: 54px;
    object-fit: fill;
  }

  .action-btn {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  /* Hide Menu Toggle as requested */
  .menu-toggle {
    display: none !important;
  }

  .header-actions {
    gap: 10px;
  }
}

/* Blinking Effect for Icons */
.action-btn i {
  animation: icon-blink 1.5s infinite;
}

@keyframes icon-blink {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.15);
  }
}


/* --- DESKTOP SETTINGS (Unchanged) --- */
.hero-elite {
  position: relative;
  min-height: 100vh;
  background: url('/assets/img/hero-img.webp') center/cover no-repeat;
  overflow: hidden;
  color: #fff;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: 1;
}

.hero-content {
  max-width: 650px;
  animation: heroReveal 1.3s ease forwards;
  opacity: 0;
  transform: translateY(50px);
  z-index: 5;
}

@keyframes heroReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 30px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(6px);
  font-size: 13px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
}

.hero-content h1 span {
  color: #f97316;
}

.hero-content p {
  font-size: 17px;
  margin: 22px 0 35px;
  color: #e5e7eb;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
}

.hero-stats div {
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  padding: 15px 22px;
  border-radius: 14px;
}

.hero-stats strong {
  font-size: 22px;
  display: block;
}

.hero-stats span {
  font-size: 13px;
  color: #e5e7eb;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary-hero,
.btn-outline-hero {
  padding: 14px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.btn-primary-hero {
  background: #f97316;
  color: #fff;
}

.btn-outline-hero {
  border: 2px solid rgba(255, 255, 255, .5);
  color: #fff;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .4;
  z-index: 1;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: #f97316;
  top: 10%;
  right: 10%;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: #38bdf8;
  bottom: 10%;
  left: 5%;
}

/* ✅ MOBILE RESPONSIVE SLIDER LOGIC */
@media (max-width: 991px) {
  .hero-elite {
    background: #111827;
    height: auto;
    padding-bottom: 50px;
  }

  .hero-mobile-slider-wrapper {
    width: 100%;
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
  }

  /* Slider Height & Common Styles */
  .mbl-slider-img {
    width: 100%;
    height: 240px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  /* Slider Image URLs */
  .img-1 {
    background-image: url('/assets/img/crd-img-n\ \(1\).webp');
  }

  .img-2 {
    background-image: url('/assets/img/crd-img-n\ \(2\).webp');
  }

  .img-3 {
    background-image: url('/assets/img/crd-img-n\ \(3\).webp');
  }

  .img-4 {
    background-image: url('/assets/img/crd-img-n\ \(4\).webp');
  }

  .img-5 {
    background-image: url('/assets/img/crd-img-n\ \(5\).webp');
  }

  .img-6 {
    background-image: url('/assets/img/crd-img-n\ \(6\).webp');
  }

  .hero-content {
    text-align: center;
    padding: 0 15px;
  }

  .hero-content h1 {
    font-size: 24px;
    line-height: 1.4;
  }

  .hero-stats {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-stats div {
    padding: 10px;
    flex: 1;
    min-width: 100px;
  }

  .hero-actions {
    justify-content: center;
  }

  .min-vh-100 {
    min-height: auto !important;
  }
}



/* FOUR CARD SECTION */
.four-card {
  background: #f5f9ff;
  padding: 90px 0;
}

/* CARD */
.four-card-item {
  background: #eef6ff;
  padding: 20px 12px;
  text-align: center;
  border-radius: 14px;
  height: 100%;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  transition: .4s ease;
  animation: fourFadeUp .8s ease forwards;
  opacity: 0;
}

.four-card-item:hover {
  background: #ffffff;
  transform: translateY(-10px);
  box-shadow: 0 10px 15px rgba(30, 41, 59, .2);
}

/* ICON */
.four-card-icon {
  width: 70px;
  height: 70px;
  border: 2px dotted #0000ff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  background: #ffffff;
}

.four-card-icon i {
  font-size: 30px;
  color: #0000ff;
}

/* TEXT */
.four-card-item h5 {
  font-weight: 600;
  color: #000000;
  margin-bottom: 15px;
}

.four-card-item p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
}

/* ARROW */
.four-card-arrow {
  width: 42px;
  height: 42px;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 28px auto 0;
  transition: .3s;
}

.four-card-arrow i {
  color: #ff0000;
  font-size: 18px;
}

.four-card-item:hover .four-card-arrow {
  background: #ff0000;
}

.four-card-item:hover .four-card-arrow i {
  color: #fff;
}

/* ANIMATION */
@keyframes fourFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

/* STAGGER */
.four-card .col-lg-3:nth-child(1) .four-card-item {
  animation-delay: .2s
}

.four-card .col-lg-3:nth-child(2) .four-card-item {
  animation-delay: .4s
}

.four-card .col-lg-3:nth-child(3) .four-card-item {
  animation-delay: .6s
}

.four-card .col-lg-3:nth-child(4) .four-card-item {
  animation-delay: .8s
}

/* MOBILE */
@media(max-width:768px) {
  .four-card {
    padding: 60px 0;
  }
}


.about-us {
  padding: 80px 0;
  background: #ffffff;
}

.about-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-image img {
  width: 100%;
  max-width: 480px;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.about-content {
  flex: 1;
}

.section-titlee {
  font-size: 20px;
  font-weight: 500;
  color: #0b2c4d;

}

.title-underline {
  width: 90px;
  margin-bottom: 10px;
  margin-top: -20px;
}

.about-content h3 {
  font-size: 35px;
  color: #000000;
  margin-bottom: 15px;
  font-weight: 700;
}

.about-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

.service-areas {
  background: #eef5ff;
  padding: 15px;
  border-left: 4px solid #2563eb;
  border-radius: 6px;
  font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .about-us {
    padding: 40px 0;
    background: #ffffff;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
  }

  .about-content h3 {
    font-size: 24px;
    color: #000000;
    margin-bottom: 15px;
    font-weight: 700;
  }

  .title-underline {
    margin: 0 auto 20px;
  }
}


/* Custom Fonts & Base */
.appliance-services {
  padding: 60px 0;
  background: linear-gradient(135deg, #f0f7ff 0%, #ffffff 100%);
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Heading */
.section-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-heading h2 {
  font-size: 40px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 15px;
  position: relative;
}



/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Premium Card Design */
.appliance-card {
  position: relative;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  overflow: hidden;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.appliance-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
  border-color: #2563eb;
}

/* Image Hover Zoom */
.img-container {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.appliance-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.appliance-card:hover img {
  transform: scale(1.1);
}

/* Card Content */
.card-content {
  padding: 25px;
  background: #fff;
}

.card-content h4 {
  font-size: 20px;
  color: #000000;

  font-weight: 600;
}

.card-content p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Luxury Call Button with Shine & Hand Animation */
.call-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  overflow: hidden;
  /* Shine effect ke liye */
  transition: 0.3s;
  z-index: 1;
}

.call-btn .hand-icon {
  margin-right: 10px;
  font-size: 15px;
  transition: 0.4s ease;
}

/* Hover: Move hand to right towards text */
.call-btn:hover .hand-icon {
  transform: translateX(5px);
}

/* Shine Effect */
.call-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.4),
      transparent);
  transition: 0.6s;
  z-index: -1;
}

.call-btn:hover::before {
  left: 150%;
}

.call-btn:hover {
  background: #1d4ed8;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

/* Floating Icon Circle */
.icon-circle {
  position: absolute;
  top: 200px;
  /* Image aur content ke beech me float karega */
  right: 25px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #ff0000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 4px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

/* Responsive */
@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 30px;
  }

  .call-btn {

    padding: 8px 20px;

    font-size: 12px;

  }
}

img.undrln-img {
  width: 79px;
  margin-top: -20px;
}


.Doorstep {
  position: relative;
  width: 100%;
  min-height: 520px;
  background: url("/assets/img/hero-img.webp") center/cover no-repeat;

  overflow: hidden;

}

/* Overlay */
.Doorstep .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.35));
}

/* Main layout */
.Doorstep .container {
  position: relative;
  max-width: 1250px;
  margin: auto;
  padding: 70px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

/* Left content */
.Doorstep .content {
  max-width: 600px;
  color: #fff;
}

.Doorstep h1 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 15px;
}

.Doorstep h1 span {
  color: #f97316;
}

.Doorstep p {
  font-size: 16px;
  line-height: 1.7;
  color: #e5e7eb;
  margin-bottom: 20px;
}

.Doorstep ul {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
}

.Doorstep ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  align-items: center;
  display: flex;
}

.Doorstep ul li::before {
  content: "➤";
  position: absolute;
  left: -5px;
  font-size: 20px;
  color: #f97316;
}

/* CTA Button */
.Doorstep .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: #0ea5e9;
  color: #fff;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.Doorstep .cta-btn:hover {
  background: #ff0000;
  transform: translateY(-2px);
}

/* Right card */
.Doorstep .info-card {
  width: 340px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 24px;
  color: #fff;
}

.Doorstep .call {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.Doorstep .call i {
  font-size: 26px;
  color: #f97316;
}

.Doorstep .call span {
  font-size: 13px;
  color: #e5e7eb;
}

/* Stats */
.Doorstep .stats {
  display: flex;
  justify-content: space-between;
}

.Doorstep .stats h4 {
  font-size: 22px;
}

.Doorstep .stats p {
  font-size: 13px;
  color: #d1d5db;
}

/* Responsive */
@media (max-width: 991px) {
  .Doorstep .container {
    flex-direction: column;
    text-align: start;
    padding: 40px 20px;
  }

  .Doorstep h1 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 15px;
  }

  .Doorstep .info-card {
    width: 100%;
    max-width: 360px;
  }
}

.why-choose-us {
  padding: 80px 0;
  background-color: #f0f7fa;
  /* Light blue background as per image */
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  text-align: center;
  color: #000000;
  font-size: 40px;
  font-weight: 700;

}

.why-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 10px;
}

/* Benefits Grid (Left) */
.benefits-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 800px;
}

.benefit-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  background: #e1f2f7;
  color: #ff0000;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

.benefit-text h4 {
  font-size: 18px;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
  text-align: start;
}

.benefit-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.5;
  margin: 0;
  text-align: start;
}

/* Button */
.action-area {
  grid-column: span 2;
  margin-top: 20px;
}

.book-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: #fff;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.book-now-btn:hover {
  background: #005f7a;
  box-shadow: 0 5px 15px rgba(0, 132, 169, 0.3);
}

/* Image Side (Right) */
.why-image-side {
  flex: 0 0 350px;
  text-align: center;
}

.image-box {

  overflow: hidden;
  margin-bottom: 15px;
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.image-caption {
  font-size: 14px;
  color: #555;

  margin: 0 auto;
  line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 991px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .action-area {
    grid-column: span 1;
    text-align: center;
  }

  .why-wrapper {
    flex-direction: column-reverse;
  }

  .why-image-side {
    flex: 1;
    width: 100%;
  }
}

.why-choose-us {
  padding: 40px 0;
  background-color: #f0f7fa;
  /* Light blue background as per image */
  font-family: 'Poppins', sans-serif;
  text-align: center;
}

.section-title {
  text-align: center;
  color: #000000;
  font-size: 28px;
  font-weight: 700;

}

.title-underline {
  margin: -20px auto 20px;
}

/* --- YOUR EXISTING CSS (UNCHANGED) --- */
.service-process {
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.section-header {
  margin-bottom: 60px;
}

.sub-title {
  color: #ff0000;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sub-title::before {
  content: "";
  width: 25px;
  height: 2px;
  background: #000000;
}

.section-header h2 {
  font-size: 38px;
  color: #0f172a;
  margin-top: 10px;
  font-weight: 700;
}

.process-form-wrapper {
  display: flex;
  gap: 40px;
}

.steps-container {
  flex: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.step-box {
  background: #fff;
  padding: 20px 30px;
  border-radius: 15px;
  border: 1px solid #edf2f7;
  position: relative;
  overflow: hidden;
  transition: .3s;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.step-box:hover {
  border-color: #00769a;
}

.icon-circlee {
  position: absolute;
  top: 20px;
  right: 50px;
  width: 50px;
  height: 50px;
  background: #e0f2fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circlee i {
  font-size: 20px;
  color: #000000;
}

.step-badge {
  background: #facc15;
  padding: 4px 10px;
  border-radius: 4px 12px;
  font-weight: 700;
  font-size: 12px;
}

.step-box h4 {
  font-size: 20px;
  margin: 10px 0 5px;
  color: #000000;
}

.step-sub {
  font-size: 12px;
  text-transform: uppercase;
  color: #94a3b8;
}

.step-desc {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
}

.booking-form-card {
  flex: 1;
  background: linear-gradient(90deg, #C5F9D7, #F7D486, #F27A7D);
  padding: 24px 35px;
  border-radius: 25px;
  min-width: 380px;
  box-shadow: rgba(14, 63, 126, 0.06) 0px 0px 0px 1px, rgba(42, 51, 70, 0.03) 0px 1px 1px -0.5px, rgba(42, 51, 70, 0.04) 0px 2px 2px -1px, rgba(42, 51, 70, 0.04) 0px 3px 3px -1.5px, rgba(42, 51, 70, 0.03) 0px 5px 5px -2.5px, rgba(42, 51, 70, 0.03) 0px 10px 10px -5px, rgba(42, 51, 70, 0.03) 0px 24px 24px -8px;
  text-align: center;
}

.booking-form-card h3 {
  font-size: 30px;
  font-weight: 600;
  font-family: "Instrument Serif", serif;
  font-style: italic;
}

.form-field {
  margin-bottom: 25px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cbd5e1;
  padding: 10px 0;
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-bottom-color: #004fb1;
}

.form-field select {
  cursor: pointer;
}

.form-field select option {
  background: #fff;
  color: #000;
  padding: 10px;
}

.enquiry-btn {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  margin: auto;
}

.circle-icon {
  width: 50px;
  height: 50px;
  background: #004fb1;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  transition: .3s;
}

.enquiry-btn:hover .circle-icon {
  transform: scale(1.1);
}

@media (max-width: 991px) {
  .process-form-wrapper {
    flex-direction: column;
  }

  .service-process {
    padding: 40px 0;
  }

  .steps-container {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 24px;
  }

  .booking-form-card {
    min-width: 100%;
  }
}

/* --- POPUP SPECIFIC CSS --- */
.booking-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  display: none;
  /* Hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 20px;
}

.popup-content-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  animation: popupScale 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.popup-card {
  width: 100% !important;
  min-width: unset !important;
}

.close-popup-btn {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
  z-index: 10;
}

@keyframes popupScale {
  from {
    opacity: 0;
    transform: scale(0.7);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* --- EXISTING FOOTER STYLES (UNCHANGED) --- */
.main-footer {
  position: relative;
  background: linear-gradient(135deg, #050505, #0b0b0b);
  color: #ffffff;
  padding: 90px 20px 40px;
  text-align: center;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.main-footer::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 118, 154, 0.35), transparent 70%);
  border-radius: 50%;
}

.footer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 0;
}

.footer-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: auto;
}

.footer-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-desc {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 35px;
}

/* --- UPDATED POLICY MENU STYLES --- */
.footer-policy-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  padding: 0;
}

.footer-policy-menu li a {
  padding: 8px 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  /* Professional look for legal links */
  color: #94a3b8;
  text-decoration: none;
  font-size: 13px;
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.03);
}

.footer-policy-menu li a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: #facc15;
}

/* --- FOOTER BOTTOM & FIXED BAR (UNCHANGED) --- */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #94a3b8;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: #facc15;
  text-decoration: none;
  font-weight: 600;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.fixed-contact-bar {
  position: fixed;
  right: 0;
  top: 80%;
  transform: translateY(-50%);
  z-index: 9999;
}

.icon-stack {
  background: #004fb1;
  display: flex;
  flex-direction: column;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  box-shadow: -4px 4px 15px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
}

.icon-item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 10px;
  color: #ffffff;
  font-size: 20px;
  text-decoration: none;
  transition: 0.2s ease;
  position: relative;
}

.icon-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.icon-item:hover {
  background: #3e3efc;
  color: #ffffff;
}

/* Mobile Responsiveness */
@media (max-width: 576px) {
  .footer-title {
    font-size: 28px;
  }

  /* Policy menu mobile par dikhegi par small size mein */
  .footer-policy-menu {
    gap: 10px;
  }

  .footer-policy-menu li a {
    font-size: 12px;
    padding: 6px 15px;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .icon-stack {
    border-top-left-radius: 30px;
  }

  .icon-item {
    padding: 18px 14px;
  }
}