/* ===============================
   ROOT VARIABLES (GLOBAL CONTROL)
================================= */
:root {
  --color-bg: #faf7f2;
  --color-primary: #c6a87d;
  --color-primary-dark: #b89663;
  --color-text: #2e2a25;
  --color-muted: #6f6a63;
  --color-white: #ffffff;
  --color-border: #e6dfd3;

  --fs-h1: 48px;
  --fs-h2: 36px;
  --fs-h3: 22px;
  --fs-body: 16px;
  --fs-small: 14px;

  --radius: 16px;
  --radius-sm: 10px;

  --container-width: 1200px;
}

/* ===============================
   RESET & BASE
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  font-size: var(--fs-body);
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===============================
   CONTAINER
================================= */
.container,
.hero-container {
  max-width: var(--container-width);
  margin: auto;
  padding: 0 20px;
}

/* ===============================
   HEADER
================================= */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo img {
  height: 42px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

/* ===============================
   BUTTONS
================================= */
.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.btn-primary:hover {
  background: var(--color-primary-dark);
}

.btn-outline {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}





  @media (max-width: 768px) {
   .mobile {
        /*grid-template-columns: repeat(4, 1fr);*/
       display: none;
        
      }
    }
/* ===============================
   HERO SECTION
================================= */
.hero {
  padding: 30px 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1px;
  align-items: center;
}

/* ===============================
   HERO LEFT
================================= */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f1eadf;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: var(--fs-small);
  font-weight: 600;
  width: fit-content;
}

.badge i {
  color: var(--color-primary-dark);
}

.hero-left h1 {
  font-size: var(--fs-h1);
  line-height: 1.2;
}

.hero-left .highlight {
  color: var(--color-primary-dark);
}

.hero-desc {
  font-size: 18px;
  color: var(--color-muted);
  max-width: 520px;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-small);
  color: var(--color-muted);
}

.stars i {
  color: var(--color-primary-dark);
}

.rating-value {
  font-weight: 700;
  color: var(--color-text);
}

.divider {
  opacity: 0.4;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-points {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.point {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.point i {
  color: var(--color-primary-dark);
}



/* ===============================
   HERO RIGHT – FORM CARD
================================= */
.hero-right {
  display: flex;
  justify-content: center;
}

.lead-card {
  width: 100%;
  max-width: 420px;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* ===============================
   FORM ELEMENTS
================================= */
.form-badge {
  display: inline-block;
  background: #f1eadf;
  color: var(--color-primary-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.lead-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 6px;
}

.form-subtext {
  font-size: var(--fs-small);
  color: var(--color-muted);
  margin-bottom: 20px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
  font-size: var(--fs-body);
}

.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
}

.captcha-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.captcha-question {
  font-weight: 600;
}

.form-submit {
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-body);
  font-weight: 700;
  cursor: pointer;
}

/* ===============================
   POPUP FORM (MODAL)
================================= */


/* ===============================
   POPUP FORM (MODAL) – CORRECT
================================= */
.form-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.form-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup card */
.form-popup {
  position: relative;
  animation: popupScale 0.3s ease;
}


/* Close Button */
.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f1eadf;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.popup-close i {
  font-size: 18px;
  color: var(--color-primary-dark);
}

/* Popup animation */
@keyframes popupScale {
  from {
    transform: scale(0.9);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}






/* ===============================
   INLINE FORM ERRORS
================================= */
.form-group {
  position: relative;
}

.error-text {
  font-size: 13px;
  color: #d93025;
  margin-top: 4px;
  display: block;
}

.input-error {
  border-color: #d93025 !important;
}



















/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 992px) {
  :root {
    --fs-h1: 34px;
  }

  .hero-container {
    grid-template-columns: 1fr;
  }

  .hero-right {
    margin-top: 30px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .lead-card {
    padding: 24px;
  }
}





/* google icon and badge icon start */




.features-container {
            margin: 0 auto;
            max-width: 75%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
      padding: 20px;
      text-align: center;
      font-family: sans-serif;
    }

    .feature-box {
      border: 1px solid #e0e0e0;
      padding: 15px;
      border-radius: 10px;
      background-color: #fff;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }

    .feature-box img {
      max-width: 60px;
      margin-bottom: 10px;
    }

    .feature-title {
      font-weight: bold;
      margin-bottom: 5px;
      font-size: 16px;
    }

    .feature-sub {
      color: #555;
      font-size: 14px;
    }
    
    @media (min-width: 768px) {
      .features-container {
        grid-template-columns: repeat(4, 1fr);
       /*width: 100%;*/
        
      }
      
       
      
    }
    
    
    @media (max-width: 768px) {
   .features-container {
        /*grid-template-columns: repeat(4, 1fr);*/
       max-width: 100%;
        
      }
    }











/* google icon and badge icon end */




/* before and after section start */
.dt-ba-section {
       margin: auto;
    padding: 20px 20px;
    background: #f8f8f8;
    max-width: 1200px;
  }

  .dt-ba-title {
    text-align: center;
    font-size: 32px;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 20px;
  }

  .dt-ba-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }

  .dt-ba-card {
    background: #fff;
    padding: 12px;
    border-radius: 14px;
    box-shadow: 0px 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s ease;
  }

  .dt-ba-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(0,0,0,0.12);
  }

  .dt-ba-card img {
    width: 100%;
    border-radius: 10px;
    display: block;
  }

  .dt-ba-caption {
    text-align: center;
    padding-top: 10px;
    font-size: 18px;
    color: #555;
  }

  /* MOBILE VIEW */
 @media(max-width: 768px) {
  .dt-ba-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 images in one row */
    gap: 15px;
  }

  .dt-ba-title {
    font-size: 22px;
  }

  .dt-ba-card {
    padding: 8px; /* thoda compact look */
  }

  .dt-ba-caption {
    font-size: 15px;
  }
}





/* before and after section end */



/* =========================
   WHY WE ARE #1 SECTION
========================== */
.why-us {
  padding: 80px 0;
  background: var(--color-bg);
}

/* Header */
.why-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
}

.why-header h2 {
  font-size: var(--fs-h2);
  margin-bottom: 10px;
  color: var(--color-text);
}

.why-header h2 span {
  color: var(--color-primary-dark);
}

.why-header p {
  font-size: var(--fs-body);
  color: var(--color-muted);
}

/* Grid */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Card */
.why-card {
  background: var(--color-white);
  padding: 32px 28px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: 0 14px 32px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

/* Orange side bar */
.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--color-primary-dark);
  border-radius: var(--radius) 0 0 var(--radius);
}

.why-card:hover {
  transform: translateY(-6px);
}

/* Icon */
.why-icon {
  width: 54px;
  height: 54px;
  background: #f1eadf;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.why-icon i {
  font-size: 26px;
  color: var(--color-primary-dark);
}

/* Card Content */
.why-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: 10px;
  color: var(--color-text);
}

.why-card p {
  font-size: var(--fs-small);
  color: var(--color-muted);
  line-height: 1.6;
}

/* =========================
   RESPONSIVE
========================== */
@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-us {
    padding: 60px 0;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .why-header h2 {
    font-size: 28px;
  }
}



/* =========================
   WHY WE ARE #1 SECTION End
========================== */


/* =========================
   COMPARISON SECTION Start
========================== */
.comparison {
  padding: 90px 0;
  background: #ffffff;
}

.comparison-title {
  text-align: center;
  font-size: var(--fs-h2);
  margin-bottom: 40px;
  color: var(--color-text);
}

/* Table Wrapper */
.comparison-table {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

/* Row */
.comp-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid var(--color-border);
}

.comp-row:last-child {
  border-bottom: none;
}

/* Columns */
.col {
  padding: 18px 22px;
  font-size: var(--fs-body);
}

/* Header */
.comp-head {
  background: linear-gradient(90deg, #0f172a, #111827);
  color: #fff;
  font-weight: 600;
}

.comp-head .assure {
  background: #6f6a63;
  color: #fff;
  text-align: center;
}

.comp-head .other {
  text-align: center;
}

/* Feature column */
.feature {
  font-weight: 600;
  color: var(--color-text);
}

/* Assure highlight */
.assure {
  background: #fff7ed;
  font-weight: 600;
  color: #ff7a18;
  text-align: center;
}

/* Other clinics */
.other {
  text-align: center;
  color: var(--color-muted);
}

/* Status colors */
.success {
  color: #16a34a;
}

.danger {
  color: #dc2626;
}

.highlight {
  color: #ff7a18;
}

/* CTA */
.comparison-cta {
  margin-top: 40px;
  text-align: center;
}

/* =========================
   MOBILE RESPONSIVE
========================== */
@media (max-width: 768px) {

  .comparison {
    padding: 60px 0;
  }

  .comparison-table {
    box-shadow: none;
  }

  .comp-row {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .comp-head {
    display: none;
  }

  .col {
    padding: 10px 6px;
    font-size: 15px;
  }

  .assure,
  .other {
    text-align: left;
  }

  .assure::before {
    content: "Assure Clinic: ";
    font-weight: 600;
    color: var(--color-text);
  }

  .other::before {
    content: "Other Clinics: ";
    font-weight: 600;
    color: var(--color-text);
  }
}


/* =========================
   COMPARISON SECTION End
========================== */




/* =========================
   MEET OUR DOCTORS Star
========================== */
.doctors {
  padding: 20px 0;
  background: var(--color-bg);
}

.doctors-title {
  font-size: var(--fs-h2);
  margin-bottom: 40px;
  color: var(--color-text);
}

/* Grid */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

/* Card */
.doctor-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 26px;
  box-shadow: 0 18px 38px rgba(0,0,0,0.08);
}

/* Image */
.doctor-img img {
  /*width: 160px;*/
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  background: #eee;
}

/* Content */
.doctor-info h3 {
  font-size: var(--fs-h3);
  margin-bottom: 6px;
  color: var(--color-text);
}

.doctor-degree {
  font-size: var(--fs-small);
  color: var(--color-muted);
  line-height: 1.5;
}

.doctor-exp {
  display: inline-block;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.doctor-desc {
  font-size: var(--fs-body);
  color: var(--color-muted);
  margin-bottom: 18px;
}

/* Actions */
.doctor-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* =========================
   MOBILE RESPONSIVE
========================== */
@media (max-width: 900px) {
  .doctors-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .doctor-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1px;
  }

  .doctor-img img {
    /*width: 140px;*/
    height: 180px;
  }

  .doctor-actions {
    justify-content: center;
  }
}


/* =========================
   MEET OUR DOCTORS End
========================== */






/* insta gram video reel start */

/* Shorts Slider Video CSS by Rajesh Start*/
 .shorts-slider-container {
      width: 100%;
      max-width: 1200px;
      padding-top: 10px;
      margin: auto;
      overflow: hidden;
      position: relative;
    }
    .shorts-slider-track {
      display: flex;
      transition: transform 0.5s ease-in-out;
    }
    .shorts-slider-item {
      min-width: 20%; /* 5 videos per row on desktop */
      padding: 5px;
    }
    .shorts-slider-item video {
      width: 100%;
      aspect-ratio: 9 / 16;
      border-radius: 8px;
      background: black;
      object-fit: cover;
    }
    .shorts-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,0.2);
      border: none;
      color: white;
      font-size: 30px;
      cursor: pointer;
      padding: 10px 15px;
      border-radius: 50%;
      user-select: none;
      z-index: 10;
    }
    .shorts-btn:hover {
      background: rgba(255,255,255,0.5);
    }
    .shorts-btn-prev {
      left: 5px;
    }
    .shorts-btn-next {
      right: 5px;
    }
  
    /* Responsive adjustments */
    @media (max-width: 1024px) {
      .shorts-slider-item {
        min-width: 25%; /* 4 videos per row on tablets */
      }
    }
    @media (max-width: 768px) {
      .shorts-slider-item {
        min-width: 33.33%; /* 3 videos per row on small tablets */
      }
    }
    @media (max-width: 480px) {
      .shorts-slider-item {
        min-width: 50%; /* 2 videos per row on large phones */
      }
    }
    @media (max-width: 320px) {
      .shorts-slider-item {
        min-width: 100%; /* 1 video per row on small phones */
      }
    }

.shorts-video-wrapper {
  position: relative;
}

.mute-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background-color: rgba(0, 0, 0, 0.6);
  border: none;
  color: white;
  font-size: 16px;
  padding: 5px 8px;
  border-radius: 4px;
  cursor: pointer;
  z-index: 2;
}

.shorts-video-caption {
  /*  position: absolute;*/
  /*  top: : 90%;*/
  /*right: 8px;*/
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  color: White;
  font-weight: 600;
  background-color: #6f6a63;
  padding: 5px;
  border-radius: 10px;
}

.shorts-video-caption a {
    color: White;
}

/*.shorts-video-caption a:hover {*/
/*    color: White;*/
/*}*/





/* Shorts Slider Video CSS by Rajesh END*/










/* testiomonial section start */
.testimonials-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

.testimonials-section h2 {
   text-align: center;
  font-size: 28px;
  color: #222;
  margin-bottom: 30px;
  position: relative;
}

.testimonials-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #CBAD97;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background-color: #fff8f3; /* soft beige background */
  border-left: 5px solid #CBAD97;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(203, 173, 151, 0.15);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(203, 173, 151, 0.25);
}

.testimonial-card::before {
  content: "“";
  font-size: 50px;
  color: #CBAD97;
  position: absolute;
  top: -20px;
  left: 15px;
}

.testimonial-text {
  font-size: 15px;
  color: #2c2c2c;
  margin-bottom: 15px;
  line-height: 1.6;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  font-weight: 600;
  color: #4c1d95;
  font-size: 14px;
}

.google-icon {
  width: 18px;
  height: 18px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .testimonials-section {
    padding: 20px;
  }
}




/* testimonial seciton end */

/* How to reach from saket to dermatrico start*/
.reach-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 30px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
}

.reach-section h2 {
  font-size: 28px;
  color: #4a3c32; /* Deep beige brown */
  margin-bottom: 20px;
}

.reach-section .location-info {
  font-size: 16px;
  color: #6b5b4d;
  margin-bottom: 30px;
}

.reach-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.option {
  background-color: #f7efe9; /* Light beige tone */
  padding: 15px 20px;
  border-radius: 10px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  box-shadow: 0 4px 10px rgba(203, 173, 151, 0.15); /* soft beige glow */
  border-left: 5px solid #CBAD97;
}

.option-icon {
  font-size: 24px;
  color: #CBAD97;
}

.option-text {
  font-size: 15px;
  color: #4a3c32;
  line-height: 1.5;
}

.map-container iframe {
  width: 100%;
  height: 350px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(203, 173, 151, 0.2);
}

.google-route-link {
  text-align: center;
  margin-bottom: 25px;
}

.google-route-link a {
  display: inline-block;
  background-color: #CBAD97;
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(203, 173, 151, 0.3);
  transition: background 0.3s, transform 0.2s;
}

.google-route-link a:hover {
  background-color: #b4917b; /* darker beige */
  transform: translateY(-2px);
}

@media(max-width: 600px) {
  .reach-section {
    padding: 20px;
  }

  .map-container iframe {
    height: 250px;
  }
}




/* how to reach from saket to dermtrico end */


/* faq css start */


.faq-section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 15px;
  font-family: 'Poppins', sans-serif;
}

.faq-section h2 {
  text-align: center;
  font-size: 28px;
  color: #222;
  margin-bottom: 30px;
  position: relative;
}

.faq-section h2::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #CBAD97;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.faq {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.08);
  overflow: hidden;
}

.faq input {
  display: none;
}

.faq label {
  display: block;
  padding: 15px 18px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  position: relative;
  transition: background 0.3s ease;
}

.faq label:hover {
  background: #f7f5f2;
}

.faq label::after {
  content: '+';
  position: absolute;
  right: 20px;
  font-size: 20px;
  color: #6c757d;
  transition: transform 0.3s ease;
}

.faq input:checked + label::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  background: #fafafa;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 18px;
}

.faq input:checked ~ .faq-content {
  max-height: 200px;
  padding: 10px 18px 15px;
}

.faq-content p {
  margin: 0;
  color: #555;
  line-height: 1.6;
  font-size: 15px;
}

/* Mobile Friendly */
@media (max-width: 600px) {
  .faq-section h2 {
    font-size: 24px;
  }
  .faq label {
    font-size: 15px;
  }
}












/* faq css end */

/* =========================
   FINAL CTA FOOTER
========================== */
.footer-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, #0f172a, #111827);
  text-align: center;
}

.footer-cta h2 {
  font-size: var(--fs-h2);
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-cta p {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: var(--fs-body);
  color: #e5e7eb;
  line-height: 1.6;
}

/* CTA Buttons */
.footer-cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* Call Button */
.footer-call-btn {
  background: #ffffff;
  color: #111827;
  padding: 14px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* =========================
   MOBILE RESPONSIVE
========================== */
@media (max-width: 768px) {

  .footer-cta {
    padding: 60px 0;
  }

  .footer-cta h2 {
    font-size: 28px;
  }

  .footer-cta-actions {
    flex-direction: column;
    gap: 14px;
  }

  .footer-call-btn,
  .footer-cta .btn-primary {
    width: 100%;
    justify-content: center;
  }
}




/* Mobile Menu Footer Satar */
/* *************************************************************************************************** */
                                        /* mobile menu start */
/* *************************************************************************************************** */

/* Show only on mobile */
/* Hide on desktop by default */
.mobile-menu {
  display: none;
}

@media only screen and (max-width: 768px) {
  .mobile-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color:#6f6a63;
    display: flex;
    justify-content: space-around;
    /* padding: 2px 0; */
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    z-index: 1000;
    border-top:2px solid #CBA938;
  }

  .mobile-menu .menu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    font-size: 12px;
    text-decoration: none;
  }

  .mobile-menu .menu-item i {
    font-size: 30px;
    margin-bottom: 1px;
    font-weight: 500;
  }

  .call-icon {
    color: #F8E8D8; /* Bright green */
  }

  .whatsapp-icon {
    color: #25D366; /* WhatsApp green */


  }

  @keyframes ring {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(15deg);
  color:rgb(0, 255, 0);
  font-size:large;
  }
  50% { transform: rotate(-15deg); 
  color:white;
font-size:larger}
  75% { transform: rotate(10deg); 
  color:green;}
  100% { transform: rotate(0deg); }
}

.call-icon {
  color: #F8E8D8; /* Ya aapka preferred color */
  animation: ring 1.5s infinite;
}
  
}


.whatsapp-icon {
  position: relative;
  color: #25D366;
  font-size: 24px;
}

/* Ripple Animation Circle */
.whatsapp-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.3);
  transform: translate(-50%, -50%) scale(1);
  animation: ripple 1.5s infinite ease-out;
  z-index: -1; /* Send it behind the icon */
}

@keyframes ripple {
  0% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}







/* Mobile Footer Menu Endt */



/* =========================
   DESKTOP FIXED APPOINTMENT BUTTON
========================== */
.side-appointment-btn {
  position: fixed;
  right: -10px;
  top: 45%;
  transform: translateY(-50%);
  background: #5b4542;
  color: #f6e7d2;
  padding: 14px 18px;
  border-radius: 16px 0 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  z-index: 999;
  transition: 0.3s;
}

.side-appointment-btn i {
  font-size: 22px;
}

.side-appointment-btn span {
  line-height: 1.2;
}

/* Hover effect */
.side-appointment-btn:hover {
  right: 0;
  background: var(--color-primary-dark);
}

/* ❌ MOBILE HIDE */
@media (max-width: 992px) {
  .side-appointment-btn {
    display: none;
  }
}




/* =========================
   DESKTOP WHATSAPP (FIXED)
========================== */
.desktop-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 28px;
  width: 56px;
  height: 56px;
  background: #25d366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.25);
  z-index: 999;
  transition: transform 0.25s ease;
}

.desktop-whatsapp:hover {
  transform: scale(1.08);
}

/* ❌ MOBILE HIDE */
@media (max-width: 992px) {
  .desktop-whatsapp {
    display: none;
  }
}






/* BANNER IMAGE  LEFT SIDE*/


.dual-slider {
  width: 460px;   
  overflow: hidden;
  border-radius: 15px;
}

.dual-track {
  display: flex;
  width: max-content;
  animation: slide 15s infinite linear;
}

.dual-slide {
  min-width: 210px;
  padding: 2px;
}

.dual-slide img {
  width: 100%;
  /*height: 140px;*/
  height: 200px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  object-fit: cover;
}


@keyframes slide {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}



@media(max-width:768px){

  .dual-slider{
    width:100%;
    max-width:100%;
    overflow:hidden;
  }

  .dual-track{
    width:100%;
  }

  .dual-slide{
    min-width:50%;
    box-sizing:border-box;
  }

  .dual-slide img{
    width:100%;
    height:auto;
    display:block;
    object-fit:cover;
  }

}



/* BANNER IMAGE LEFT SIDE END */



/* ================= VIDEO TESTIMONIALS ================= */

.video-testimonials{
  padding:40px 15px;
  background:#fff;
  text-align:center;
}

.video-testimonials h2{
  font-size:32px;
  margin-bottom:30px;
}

.video-grid{
  max-width:1200px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
}

.video-card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  height:420px;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,0.15);
}

.video-card video{
  width:100%;
  height:100%;
  object-fit:cover;
  pointer-events:none;
}

/* Play Button */
.play-btn{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:60px;
  height:60px;
  background:var(--beige);
  border-radius:50%;
  z-index:2;
}

.play-btn::after{
  content:'';
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-40%, -50%);
  border-style:solid;
  border-width:12px 0 12px 18px;
  border-color:transparent transparent transparent #fff;
}

/* Call Button */
.video-call-btn{
  display:inline-block;
  margin-top:30px;
  padding:14px 28px;
  background:var(--beige);
  color:#fff;
  font-size:18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:600;
}

/* ================= VIDEO POPUP ================= */
/* ================= VIDEO POPUP FIX ================= */

.video-popup{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.75);
  display:none;
  align-items:center;
  justify-content:center;
  z-index:99999;
  padding:15px;
}

/* 👇 HEIGHT CONTROL HERE */
.video-popup-inner{
  position:relative;
  width:100%;
  max-width:420px;

  /* IMPORTANT */
  max-height:80vh;              /* 👈 screen se bahar nahi jayega */
  background:#000;
  border-radius:14px;
  overflow:hidden;

  display:flex;
  align-items:center;
  justify-content:center;
}

/* 👇 VIDEO WILL FIT INSIDE */
.video-popup-inner video{
  width:100%;
  height:auto;
  max-height:80vh;
  object-fit:contain;
}

/* ✅ CLOSE BUTTON — ALWAYS VISIBLE */
.video-close-btn{
  position:absolute;
  top:8px;
  right:8px;

  width:34px;
  height:34px;
  border:none;
  border-radius:50%;
  background:#fff;
  color:#000;

  font-size:20px;
  font-weight:bold;
  cursor:pointer;

  z-index:999;
}

/* MOBILE EXTRA SAFETY */
@media(max-width:768px){
  .video-popup-inner{
    max-height:75vh;
  }
}


/* MOBILE */
@media(max-width:768px){
  .video-grid{
    grid-template-columns:repeat(2, 1fr);
  }
  .video-card{
    height:300px;
  }
}








/* hair service section */
.hair-services {
  background: #FAF7F2;
  padding: 60px 20px;
  color: #B89663;
  font-family: Arial, sans-serif;
}

.hair-services h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
  color:black;
}

.services-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1px;
  max-width: 1200px;
  margin: auto;
}

.services-col {
  flex: 1;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 30px;
}

.service-item img {
  width: 50px;
  height: 50px;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
}

.service-item h4 {
  margin: 0 0 6px;
  font-size: 18px;
}

.service-item p {
  margin: 0;
  font-size: 14px;
  opacity: 0.85;
}

.center-image img {
  /* max-width: 260px; */
  width: 100%;
}

/* 🔹 MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .services-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .service-item {
    justify-content: center;
    text-align: left;
  }

  /* .center-image {
    margin: 30px 0;
  } */
}





/* ================= ADDRESS MAP ================= */

/* ================= ADDRESS MAP ROW ================= */

.address-map-section{
  padding:10px 15px;
  background:#f9f9f9;
}

.address-map-container{
  max-width:1200px;
  margin:0 auto;
  background:#fff;
  border-radius:18px;
  padding:30px 35px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  box-shadow:0 8px 25px rgba(0,0,0,0.1);
  gap:30px;
}

/* LEFT */
.address-left{
  flex:1;
}

.address-left h3{
  font-size:24px;
  margin-bottom:12px;
  color:#222;
}

.address-left p{
  font-size:16px;
  line-height:1.6;
  color:#444;
}

/* RIGHT */
.address-right{
  flex-shrink:0;
}

/* BUTTON */
.map-btn-large{
  display:inline-block;
  padding:14px 30px;
  background:#C6A87D;
  color:#000;
  font-size:16px;
  font-weight:600;
  text-decoration:none;
  border-radius:10px;
  transition:all 0.3s ease;
  white-space:nowrap;
}

.map-btn-large:hover{
  background:#C6A87D;
  color:#fff;
}

/* ================= MOBILE ================= */
@media(max-width:768px){

  .address-map-container{
    flex-direction:column;
    text-align:center;
    padding:22px 20px;
  }

  .address-left h3{
    font-size:20px;
  }

  .address-left p{
    font-size:15px;
  }

  .map-btn-large{
    width:100%;
    text-align:center;
    margin-top:10px;
  }
}























