/* ---------- GLOBAL RESET ---------- */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
  }

  body {
    background-color: #f4fbff;
    color: #1f2f3d;
  }
  /*====================FLoat whatsaapp========================*/
.whatsapp-float {
  position: fixed;
  left: 20px;          /* left side */
  bottom: 20px;        /* bottom corner */
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 8px;

  background: #25d366;
  color: #fff;
  padding: 12px 16px;
  border-radius: 50px;

  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
}

.whatsapp-float svg {
  display: block;
}

.whatsapp-text {
  font-size: 0.95rem;
}

/* On very small screens, show only icon */
@media (max-width: 480px) {
  .whatsapp-text {
    display: none;
  }

  .whatsapp-float {
    padding: 12px;
    border-radius: 50%;
  }
}

  /* =================================================
     =============== HEADER START ====================
     ================================================= */
  /* ================= HEADER ================= */
header {
width: 100%;
background: #ffffff;
position: sticky;
top: 0;
z-index: 1000;
box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

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

/* LOGO */
.logo img {
height: 45px;
}

/* NAV LINKS */
.nav-links {
display: flex;
gap: 30px;
}

.nav-links a {
position: relative;
text-decoration: none;
color: #333;
font-weight: 500;
padding-bottom: 4px;
}

/* UNDERLINE EFFECT */
.nav-links a::after {
content: "";
position: absolute;
left: 0;
bottom: 0;
width: 0%;
height: 2px;
background: #0560ab;
transition: 0.3s ease;
}

/* HOVER */
.nav-links a:hover::after {
width: 100%;
}

/* ACTIVE (HOME) */
.nav-links a.active::after {
width: 100%;
}

/* CTA BUTTON */
.header-btn {
background: #0560ab;
color: white;
border: none;
padding: 12px 22px;
border-radius: 25px;
font-weight: 600;
cursor: pointer;
}

/* HAMBURGER */
.hamburger {
display: none;
flex-direction: column;
gap: 6px;
cursor: pointer;
}

.hamburger span {
width: 26px;
height: 3px;
background: #333;
border-radius: 3px;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
.nav-links {
  position: absolute;
  top: 75px;
  right: 20px;
  background: #ffffff;
  flex-direction: column;
  width: 220px;
  padding: 20px;
  gap: 20px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  border-radius: 12px;
  display: none;
}

.nav-links.show {
  display: flex;
}

.header-btn {
  display: none;
}

.hamburger {
  display: flex;
}
}

  /* =================================================
     =============== HEADER END ======================
     ================================================= */



/* =================================================
   =============== HERO SECTION START ==============
   ================================================= */

.hero-slider {
  width: 100%;
  height: 100vh;
  min-height: 520px;
  position: relative;
  overflow: hidden;
  background: url("warehouse-pharmacy.jpg") center center / cover no-repeat;
}
.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 0;
}

/* Slider Wrapper */
.slider-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

/* Slides */
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Slide Image */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay Content */
.slide-content {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;          /* center horizontally */
  text-align: center;           /* center text */
  padding: 0 8%;
  color: #fff;
}

/* Heading */
.slide-content h1 {
  font-size: 3rem;
  max-width: 800px;
  line-height: 1.2;
}

/* Paragraph */
.slide-content p {
  margin: 15px 0 25px;
  max-width: 700px;
  font-size: 1.1rem;
}

/* Trust Points Row */
.trust-points {
  display: flex;
  gap: 30px;
  margin: 15px 0 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Buttons Wrapper */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Buttons */
.hero-buttons a {
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
}

.btn-primary {
  background: #0560ab;
  color: #fff;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

/* =================================================
   =============== RESPONSIVE ======================
   ================================================= */

/* Tablet */
@media (max-width: 900px) {
  .hero-slider {
    height: 75vh;
  }

  .slide-content h1 {
    font-size: 2.3rem;
  }

  .slide-content p {
    font-size: 1rem;
  }

  .trust-points {
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .hero-slider {
    height: 90vh;
    min-height: 480px;
  }

  .slide-content {
    padding: 0 5%;
  }

  .slide-content h1 {
    font-size: 1.6rem;
  }

  .slide-content p {
    font-size: 0.95rem;
  }

  .trust-points {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .hero-buttons a {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* =================================================
   =============== HERO SECTION END ================
   ================================================= */


        /* ================= BRAND SECTION ================= */
.brand-section {
    background: #f6fafc;
    padding: 50px 20px;
    overflow: hidden;
  }
  
  .brand-container {
    max-width: 1200px;
    margin: auto;
  }
  
  .brand-slider {
    background: #0560ab;
    border-radius: 70px;
    padding: 18px 30px;
    overflow: hidden;
  }
  
  /* TRACK */
  .brand-track {
    display: flex;
    align-items: center;
    gap: 40px;
    will-change: transform;
  }
  
  /* LOGOS */
  .brand-track img {
    height: 42px;
    background: #ffffff;
    padding: 8px 16px;
    border-radius: 12px;
    flex-shrink: 0;
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .brand-track {
      gap: 24px;
    }
  
    .brand-track img {
      height: 32px;
    }
  }
  
  /* GLOBAL SAFETY */
  html, body {
    overflow-x: hidden;
  }
.about-intro {
  padding: 80px 20px;
  background: #f8fafc;
}

.container {
  max-width: 1100px;
  margin: auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 50px;
  align-items: center;
}

/* Left content */
.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #0f172a;
}

.about-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin-bottom: 15px;
}

.about-content .mission {
  background: #eef2ff;
  padding: 15px 20px;
  border-left: 4px solid #4f46e5;
  border-radius: 6px;
}

/* Right card */
.md-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.md-image {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #4f46e5;
}

.md-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.md-card h3 {
  margin: 10px 0 5px;
  font-size: 22px;
  color: #0f172a;
}

.md-role {
  display: block;
  font-size: 14px;
  color: #4f46e5;
  font-weight: 600;
  margin-bottom: 15px;
}

.md-quote {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}


.counters {
  padding: 80px 20px;
  background: #f7f9fc;
}

.counter-container {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.counter-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.counter-card:hover {
  transform: translateY(-5px);
}

.counter-card h3 {
  font-size: 40px;
  color: #0560ab;
  margin-bottom: 10px;
}

.counter-card p {
  font-size: 16px;
  color: #555;
  font-weight: 500;
}

/*=======================Why Choose us==================================*/
.why-choose-us {
  padding: 70px 20px;
  background: #f7fbfe;
}

.why-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.why-container h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #0b3c5d;
}

.why-subtitle {
  color: #5a6a78;
  margin-bottom: 50px;
  font-size: 1rem;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.why-card {
  background: #fff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.why-card svg {
  margin-bottom: 15px;
}

.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #0b3c5d;
}

.why-card p {
  font-size: 0.95rem;
  color: #5a6a78;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-container h2 {
    font-size: 2rem;
  }
}


.process-steps {
  padding: 90px 20px;
  background: #0560ab;
}

.process-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.process-container h2 {
  font-size: 34px;
  color: #fff;
  margin-bottom: 10px;
}

.process-subtitle {
  color: #fff;
  margin-bottom: 60px;
}

.process-wrapper {
  position: relative;
}

/* Background path line */
.process-path {
  position: absolute;
  top: 45px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(to right, #cfd8e3 50%, transparent 0%);
  background-size: 12px 2px; /* dashed effect */
  z-index: 0;
}

/* Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  position: relative;
  z-index: 1;
}

/* Card */
.process-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
}

.process-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #0560ab;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.process-icon svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
}

.process-card h4 {
  font-size: 17px;
  color: #0b2b4b;
  margin-bottom: 10px;
  font-weight: 600;
}

.process-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-path {
    display: none; /* hide line on small screens */
  }
}

@media (max-width: 500px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}

/*=======================Quick Cattegories==================================*/
.therapeutic-sections {
  padding: 70px 20px;
  background: #ffffff;
}

.thera-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.thera-container h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #0b3c5d;
}

.thera-subtitle {
  color: #5a6a78;
  margin-bottom: 50px;
}

.thera-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.thera-card {
  position: relative;
  height: 220px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thera-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
}

.thera-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

.thera-content {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  text-align: left;
}

.thera-content svg {
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
}

.thera-content h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.thera-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.thera-tags span {
  background: rgba(255,255,255,0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.75rem;
}

/* Responsive */
@media (max-width: 1000px) {
  .thera-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 700px) {
  .thera-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 450px) {
  .thera-grid { grid-template-columns: 1fr; }
}

/*======================================INfra STructure==================================*/
.infrastructure {
  padding: 70px 20px;
  background: #f7fbfe;
}

.infra-container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.infra-container h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #0b3c5d;
}

.infra-subtitle {
  color: #5a6a78;
  margin-bottom: 50px;
}

/* Process Row */
.infra-process {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

/* Each Step */
.infra-step {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  max-width: 320px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.infra-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

/* Image */
.infra-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.infra-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Step Number Badge */
.step-number {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #0560ab;
  color: #fff;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

/* Content */
.infra-content {
  padding: 20px;
  text-align: left;
}

.infra-content h4 {
  margin-bottom: 8px;
  color: #0b3c5d;
  font-size: 1.1rem;
}

.infra-content p {
  color: #5a6a78;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Arrow */
.infra-arrow {
  font-size: 2rem;
  color: #0560ab;
  font-weight: bold;
}

/* Responsive */
@media (max-width: 900px) {
  .infra-process {
    flex-direction: column;
  }

  .infra-arrow {
    transform: rotate(90deg);
  }
}
/*===========================Service coverage area===============================*/
.service-coverage {
  padding: 70px 20px;
  background: #ffffff;
}

.coverage-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
}

/* Map */
.coverage-map {
  width: 100%;
  height: 380px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.coverage-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Content */
.coverage-content h2 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #0b3c5d;
}

.coverage-subtitle {
  color: #5a6a78;
  margin-bottom: 20px;
  font-size: 1rem;
}

/* Dispatch Badge */
.dispatch-badge {
  display: inline-block;
  background: rgba(5, 96, 171, 0.1);
  color: #0560ab;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 25px;
}

/* Cities */
.cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cities-list span {
  background: #f2f7fb;
  color: #0b3c5d;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid #e3eef7;
}

/* Responsive */
@media (max-width: 900px) {
  .coverage-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cities-list {
    justify-content: center;
  }

  .coverage-map {
    height: 300px;
  }
}

/*=======================End Quick Cattegories==================================*/

/*=============================Banner=====================================*/
.pharma-banner {
  width: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  /* Brand color overlay */
  background: linear-gradient(
              rgba(5, 96, 171, 0.75),
              rgba(5, 96, 171, 0.75)
            ),
            url("pharma-banner.jpg") center / cover no-repeat;

  padding: 40px 20px;
}

.pharma-banner-content {
  max-width: 900px;
  color: #fff;
}

.pharma-banner-content h2 {
  font-size: 2.4rem;
  margin-bottom: 12px;
  line-height: 1.2;
}

.pharma-banner-content p {
  font-size: 1.05rem;
  opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {
  .pharma-banner {
    min-height: 220px;
  }

  .pharma-banner-content h2 {
    font-size: 1.8rem;
  }

  .pharma-banner-content p {
    font-size: 0.95rem;
  }
}
/*===============================Testimonial==================*/
.testimonials {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f7fbfe, #ffffff);
}

.testi-container {
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.testi-badge {
  display: inline-block;
  background: rgba(5, 96, 171, 0.1);
  color: #0560ab;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.testi-container h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #0b3c5d;
}

.testi-subtitle {
  color: #5a6a78;
  margin-bottom: 55px;
}

/* Grid */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.testi-card {
  background: #fff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: left;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testi-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid rgba(5, 96, 171, 0.08);
  pointer-events: none;
}

.testi-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* Top row */
.testi-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}

.quote-icon {
  font-size: 2.5rem;
  line-height: 1;
  color: #0560ab;
  font-weight: 700;
}

.stars {
  color: #f5b301;
  font-size: 1rem;
  letter-spacing: 2px;
}

/* Text */
.testi-card p {
  font-size: 0.95rem;
  color: #5a6a78;
  line-height: 1.7;
  margin-bottom: 18px;
}

.testi-card h4 {
  font-size: 0.95rem;
  color: #0560ab;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 900px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .testi-container h2 {
    font-size: 2rem;
  }
}

/*========================Enquiry Form=======================*/
.enquiry-section {
  padding: 70px 20px;
  background: #f7fbfe;
}

.enquiry-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr; /* 50% image, 50% form */
  gap: 0;
  align-items: stretch;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

/* Left Image */
.enquiry-image {
  width: 100%;
  height: 100%;
}

.enquiry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right Form */
.enquiry-form-box {
  padding: 40px;
  background: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.enquiry-form-box h2 {
  margin-bottom: 6px;
  color: #0b3c5d;
}

.form-subtitle {
  color: #5a6a78;
  margin-bottom: 12px;
}

/* Trust points */
.form-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #0560ab;
  font-weight: 600;
}

/* Inputs */
.form-group {
  margin-bottom: 14px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #dce7f1;
  font-size: 0.95rem;
}

/* File upload */
.file-label {
  font-weight: 600;
  color: #0560ab;
  cursor: pointer;
}

.file-info {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #5a6a78;
}

.file-info.success {
  color: #0560ab;
  font-weight: 600;
}

/* Buttons */
.form-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.btn-submit {
  background: #0560ab;
  color: #fff;
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.form-status {
  margin-top: 10px;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .enquiry-container {
    grid-template-columns: 1fr;
  }

  .enquiry-image {
    height: 260px;
  }

  .enquiry-form-box {
    padding: 30px 20px;
    text-align: center;
  }

  .form-buttons {
    justify-content: center;
  }

  .form-points {
    justify-content: center;
  }
}



/* ================= FOOTER ================= */
.footer {
    background: #ffffff;
    padding-top: 80px;
    color: #243746;
    border-top: 1px solid #e5eef3;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px 60px;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
    gap: 50px;
  }
  
  /* BRAND */
  .footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
  }
  
  .footer-brand p {
    line-height: 1.7;
    color: #5a6a78;
  }
  
  .footer-phone {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    font-size: 18px;
    
  }
  .footer-phone i {
  color: #0560ab;
}
  /* TITLES */
  .footer h4 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  /* LINKS */
  .footer-links ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin-bottom: 12px;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #243746;
    transition: 0.3s;
  }
  
  .footer-links a:hover {
    color: #0560ab;
  }
  
  /* CONTACT */
  .footer-contact p {
    line-height: 1.7;
    color: #5a6a78;
    margin-bottom: 15px;
  }
  .footer-email {
  color: #000;           /* black */
  text-decoration: none; /* remove underline */
}

.footer-email:hover {
  color: #000;           /* stay black on hover */
  text-decoration: none; /* no underline on hover */
}
  /* HOURS */
  .footer-hours p {
    color: #5a6a78;
    line-height: 1.7;
  }
  
  .social-title {
    margin-top: 25px;
  }
  
  /* SOCIAL ICONS */
  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid #cfdde6;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #0560ab;
    font-size: 18px;
    transition: 0.3s ease;
  }
  
  .footer-social a:hover {
    background: #0560ab;
    color: #ffffff;
    transform: translateY(-3px);
  }
  
  .footer-brand i {
    color: #0a8a4a;
    margin-right: 6px;
  }
  
  /* COPYRIGHT */
  .footer-bottom {
    background: #f6fafc;
    padding: 18px 20px;
    text-align: center;
    font-size: 14px;
    color: #5a6a78;
  }
  
  .footer-bottom a {
  text-decoration: none;  /* underline remove */
  color: black;         /* same color as text (optional) */
}

.footer-bottom a:hover {
  text-decoration: none;  /* hover pe bhi underline na aaye */
}
  
  
  /* ================= RESPONSIVE ================= */
  @media (max-width: 900px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .footer-container {
      grid-template-columns: 1fr;
      text-align: center;
    }
  
    .footer-phone {
      justify-content: center;
    }
  
    .footer-social {
      justify-content: center;
    }
  }