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


:root {
  --primary-color: #E00646;
  --secondary-color: #E006461A;
  --gray-color: #6C757D;
  --dark-color: #0B1B2B;
  --navy-color: #212529;
  --white-color: #ffffff;
  --background-color: #fdf3f6;   
}




/* ===================================
   HEADER CSS START
=================================== */


/* ===================================
   TICKER
=================================== */
.ticker-banner {
    background: var(--primary-color);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
}
.ticker-track {
    display: inline-block;
    animation: ticker 20s linear infinite;
}
.ticker-track span {
    padding: 0 340px;
    font-size: 15px;
}
@keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================================
   NAVBAR WRAPPER
=================================== */
.navbar-wrapper {
    background: #fff;
    box-shadow: none;
    position: sticky;
    top: 0;
    z-index: 100;
    transition: box-shadow 0.3s ease;
}

/* Shadow appears only on scroll */
.navbar-wrapper.scrolled {
    box-shadow: 0 2px 18px rgba(0, 0, 0, 0.10);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

/* ===================================
   LOGO
=================================== */
.logo {
    display: flex;
    align-items: center;
    height: 68px;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-icon {
    height: 100%;
    display: flex;
    align-items: center;
}
.logo-icon img {
    height: 100%;
    width: 100%;
    display: block;
}

/* ===================================
   NAV + PHONE WRAPPER
=================================== */
.list_phone {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: flex-end;
}

/* ===================================
   NAV LINKS
=================================== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    padding: 7px 11px;
    border-radius: 50px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    user-select: none;
    line-height: 1;
}

.nav-links > li > a:hover {
    color: var(--primary-color);
    background: var(--secondary-color);
}

.nav-links > li > a.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
}

/* SVG Chevron in desktop nav */
.nav-chevron {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    transition: transform 0.25s ease;
    opacity: 0.5;
      cursor: pointer;

    pointer-events: all;
}

.has-dropdown.open > a .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

/* ===================================
   DROPDOWN MENU
=================================== */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
    /* min-width: 200px; */
    min-width: 160px;
    list-style: none;
    padding: 6px 0;
    margin: 0;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    border: 1px solid rgba(0, 0, 0, 0.07);
}

/* Top caret triangle */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: #fff;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    border-left: 1px solid rgba(0, 0, 0, 0.07);
    transform: rotate(45deg);
    border-radius: 2px 0 0 0;
}

.has-dropdown.open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown li a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-color);
    text-decoration: none;
    transition: background 0.18s, color 0.18s, padding-left 0.18s;
    white-space: nowrap;
    border-bottom: 1px solid #DEDEDE99;
}
.nav-dropdown li:last-child a {
    border-bottom: none;
}

.nav-dropdown li a:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding-left: 24px;
}

.nav-dropdown li a.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 600;
}

/* ===================================
   PHONE CTA
=================================== */
.phone-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border-radius: 50px;
    text-decoration: none;
    color: var(--navy-color);
    font-weight: 700;
    font-size: 15px;
    transition: color 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 10px;
}
.phone-cta img { width: 32px; height: 32px; flex-shrink: 0; }
.phone-cta:hover { color: var(--primary-color); }

/* ===================================
   HAMBURGER
=================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border: none;
    background: none;
    z-index: 201;
    flex-shrink: 0;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #333;
    border-radius: 2px;
}

/* ===================================
   SIDEBAR OVERLAY
=================================== */
.sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}
@media (max-width: 992px) {
    .sidebar-overlay.active {
        display: block;
        opacity: 1;
    }
}

/* ===================================
   SIDEBAR
=================================== */
.sidebar {
    position: fixed;
    top: 0;
    left: -310px;
    width: 290px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    display: flex;
    flex-direction: column;
    transition: left 0.35s cubic-bezier(.77,0,.18,1);
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
    overflow-y: auto;
}

/* Sidebar only opens on mobile */
@media (max-width: 992px) {
    .sidebar.open { left: 0; }
}

/* Sidebar Header */
.sidebar-header {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 2;
}
.sidebar-header img { height: 48px; }

.sidebar-close {
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    width: 34px;
    height: 34px;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}
.sidebar-close:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
}

/* Sidebar Nav */
.sidebar-nav {
    flex: 1;
    padding: 8px 0 24px;
    list-style: none;
    margin: 0;
}

/* Normal link */
.sidebar-nav > li > a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--dark-color);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.2s;
}
.sidebar-nav > li > a:hover {
    background: #fff5f8;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}
.sidebar-nav > li > a.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

.nav-icon {
    width: 18px;
    height: 18px;
    opacity: 0.6;
    flex-shrink: 0;
}
.sidebar-nav > li > a:hover .nav-icon,
.sidebar-nav > li > a.active .nav-icon { opacity: 1; }

/* Sidebar submenu parent button */
.sb-has-sub > .sb-parent-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 500;
    color: #333;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    width: 100%;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
}
.sb-has-sub > .sb-parent-link:hover,
.sb-has-sub.sb-open > .sb-parent-link {
    background: #fff5f8;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
}
.sb-has-sub > .sb-parent-link .nav-icon { opacity: 0.6; }
.sb-has-sub > .sb-parent-link:hover .nav-icon,
.sb-has-sub.sb-open > .sb-parent-link .nav-icon { opacity: 1; }

/* SVG Chevron in sidebar */
.sb-chevron {
    width: 15px;
    height: 15px;
        cursor: pointer;
    pointer-events: all;
    margin-left: auto;
    flex-shrink: 0;
    opacity: 0.4;
    transition: transform 0.25s ease, opacity 0.25s;
}
.sb-has-sub.sb-open > .sb-parent-link .sb-chevron {
    transform: rotate(180deg);
    opacity: 1;
}



a{
  text-decoration: none !important;
     
}

.sb-parent-link a{
  text-decoration: none !important;
      color: var(--dark-color);
}

/* Submenu list */
.sb-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease;
    background: #fafafa;
}
.sb-has-sub.sb-open > .sb-submenu {
    max-height: 400px;
}

.sb-submenu li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px 10px 54px;
    font-size: 14px;
    font-weight: 400;
    color: var(--gray-color);
    text-decoration: none;
    border-left: 3px solid transparent;
    transition: all 0.18s;
}

.sb-submenu li a:hover {
    background: #fff0f4;
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    padding-left: 60px;
}

.sb-submenu li a.active {
    background: var(--secondary-color);
    color: var(--primary-color);
    border-left-color: var(--primary-color);
    font-weight: 600;
}

/* Divider */
.sidebar-divider {
    height: 1px;
    background: #f0f0f0;
    margin: 6px 20px;
}

/* ===================================
   RESPONSIVE
=================================== */
@media (max-width: 1200px) {
    .nav-links > li > a { 
             font-size: 12px;
        padding: 7px;
        text-align: center;
    }
    .phone-cta { font-size: 13px; }
    .nav-dropdown li a{
        font-size: 12px;
    }
}

@media (max-width: 992px) {
    .list_phone { display: none; }
    .hamburger { display: flex; }
}

@media (max-width: 576px) {
    .logo { height: 60px; }
    .ticker-track span { padding: 0 60px; font-size: 14px; }
}


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




/* ===================================
   HEROSECTION CSS START
=================================== */

    /* ========== WRAPPER — side buttons are relative to this ========== */
    .herobanner-wrap {
      position: relative;
      width: 100%;
        overflow-x: hidden;
    }

    /* ========== HERO BANNER — overflow hidden clips slides only ========== */
    .herobanner {
      position: relative;
      width: 100%;
      height: 480px;
      overflow: hidden;
    }

    /* --- Slides --- */
    .herobanner__slides {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .herobanner__slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.9s ease;
      pointer-events: none;
    }

    .herobanner__slide.active {
      opacity: 1;
      pointer-events: all;
    }

    .herobanner__slide img,
    .herobanner__slide video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .herobanner__slide::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(0,30,60,0.72) 40%, rgba(0,0,0,0.25) 100%);
    }

    /* --- Content --- */
    .herobanner__content {
      position: absolute;
      inset: 0;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 5%;
      width: 90%;
    }

    .herobanner__badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #FFFFFF2E;
      border: 1px solid #FFFFFF2E;
      backdrop-filter: blur(4px);
      color: #fff;
      font-size: 16px;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 30px;
      margin-bottom: 18px;
      width: fit-content;
      letter-spacing: 0.3px;
    }

    .herobanner__badge img {
      width: 15px;
      height: 15px;
      flex-shrink: 0;
    }

    .herobanner__title {
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 800;
      color: #fff;
      line-height: 1.18;
      margin-bottom: 14px;
      text-shadow: 0 2px 12px rgba(0,0,0,0.3);
    }

    .herobanner__subtitle {
      font-size: clamp(13px, 1.6vw, 16px);
      color: rgba(255,255,255,0.88);
      margin-bottom: 30px;
      width: 90%;
      line-height: 1.6;
    }

    .herobanner__actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .herobanner__btn {
      display: inline-block;
      padding: 12px 40px;
      border-radius: 50px;
      font-size: 16px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
      border: 1px solid transparent;
    }

    .herobanner__btn--primary {
      background: var(--primary-color);
      color: #fff;
      border-color: var(--primary-color);
    }

    .herobanner__btn--primary:hover {
      background: var(--primary-color);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(232,7,58,0.45);
    }

    .herobanner__btn--outline {
      background: transparent;
      color: #fff;
      border-color: rgba(255,255,255,0.75);
    }

    .herobanner__btn--outline:hover {
      background: rgba(255,255,255,0.12);
      transform: translateY(-2px);
    }

    /* --- Dots --- */
    .herobanner__dots {
      position: absolute;
      bottom: 22px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 4px;
      z-index: 10;
    }

    .herobanner__dot {
      width: 16px;
      height: 8px;
      border-radius: 4px;
      background: var(--white-color);
      cursor: pointer;
      transition: background 0.3s, width 0.3s;
      border: none;
    }

    .herobanner__dot.active {
      background: var(--primary-color);
      width: 40px;
    }

    /* =====================================================
       SIDE ACTION BUTTONS
       Placed on .herobanner-wrap (outside .herobanner)
       so overflow:hidden on .herobanner doesn't clip them.
       position:absolute on wrapper = perfectly aligned.
    ===================================================== */
    .herobanner__side-actions {
      position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      z-index: 30;
    }

    /* =====================================================
       SIDE ACTION BUTTONS — icon centered, label left pe
    ===================================================== */
    .herobanner__side-actions {
     position: fixed;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      z-index: 30;
    }

    .herobanner__side-btn {
      position: relative;
      display: flex;
      align-items: center;
      height: 50px;
      width: 50px;
      cursor: pointer;
      text-decoration: none;
      overflow: visible;
    }

    /* Icon square — full colored block, icon centered */
    .herobanner__side-btn-icon {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      position: relative;
      z-index: 2;
    }

    /* Label — positioned to LEFT of icon, hidden default */
    .herobanner__side-btn-label {
      position: absolute;
      right: 50px;
      top: 0;
      height: 50px;
      display: flex;
      align-items: center;
      padding: 5px 16px;
      font-size: 15px;
      font-weight: 600;
      color: #fff;
      letter-spacing: 1px;
      text-transform: uppercase;
      white-space: nowrap;
      opacity: 0;
      transform: translateX(10px);
      transition: all 0.3s ease;
      pointer-events: none;
      z-index: 1;
    }

    .herobanner__side-btn:hover .herobanner__side-btn-label {
      opacity: 1;
      transform: translateX(0);
      pointer-events: all;
      border-radius: 6px 0 0 6px
    }

    /* Colors */
    .herobanner__side-btn--locate .herobanner__side-btn-icon    { background: #4079BC; }
    .herobanner__side-btn--locate .herobanner__side-btn-label   { background: #4079BC; }

    .herobanner__side-btn--whatsapp .herobanner__side-btn-icon  { background: #37B930; }
    .herobanner__side-btn--whatsapp .herobanner__side-btn-label { background: #37B930; }

    .herobanner__side-btn--email .herobanner__side-btn-icon     { background: #F4862B; }
    .herobanner__side-btn--email .herobanner__side-btn-label    { background: #F4862B; }

    .herobanner__side-btn--call .herobanner__side-btn-icon      { background: #E00646; }
    .herobanner__side-btn--call .herobanner__side-btn-label     { background: #E00646; }

    .herobanner__side-btn img {
      width: 22px;
      height: 22px;
      fill: #fff;
      flex-shrink: 0;
    }

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

    /* Tablet landscape — 1024px */
    @media (max-width: 1024px) {
      .herobanner { height: 420px; }
      .herobanner__title { font-size: clamp(24px, 3.5vw, 38px); }
      /* .herobanner__content { max-width: 580px; } */
    }

    /* Tablet portrait — 768px */
    @media (max-width: 768px) {
      .herobanner { height: 380px; }
      .herobanner__content {
        max-width: 100%;
        padding: 0 16px;
        padding-right: 60px; /* space for side buttons */
      }
      .herobanner__title { font-size: clamp(22px, 4vw, 32px); }
      .herobanner__subtitle {
        font-size: 13px;
        margin-bottom: 22px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }
      .herobanner__badge { font-size: 12px; padding: 5px 12px; margin-bottom: 12px; }
      .herobanner__btn { padding: 10px 22px; font-size: 13px; }

      /* Side buttons smaller */
      .herobanner__side-btn,
      .herobanner__side-btn-icon { width: 44px; height: 44px; }
      .herobanner__side-btn-label {
        right: 44px;
        height: 44px;
        font-size: 14px;
        padding: 0 12px;
      }
      .herobanner__side-btn svg { width: 20px; height: 20px; }

      /* Dots */
      .herobanner__dots { bottom: 14px; }
    }

    /* Mobile large — 480px */
    @media (max-width: 480px) {
      .herobanner { height: 320px; }
      .herobanner__content {
        padding: 0 14px;
        padding-right: 56px;
        justify-content: center;
      }
      .herobanner__title {
        font-size: 20px;
        margin-bottom: 10px;
      }
      .herobanner__subtitle { display: none; } /* hide on small to avoid clutter */
      .herobanner__badge { font-size: 11px; padding: 4px 10px; margin-bottom: 10px; }
      .herobanner__actions { gap: 8px; }
      .herobanner__btn { padding: 9px 18px; font-size: 12px; }

      /* Side buttons even smaller */
      .herobanner__side-btn,
      .herobanner__side-btn-icon { width: 38px; height: 38px; }
      .herobanner__side-btn-label {
        right: 38px;
        height: 38px;
        font-size: 10px;
        padding: 0 10px;
        letter-spacing: 0.5px;
      }
      .herobanner__side-btn svg { width: 17px; height: 17px; }

      /* Dots smaller */
      .herobanner__dot { width: 20px; height: 6px; }
      .herobanner__dot.active { width: 30px; }
      .herobanner__dots { bottom: 10px; gap: 6px; }
    }

    /* Mobile small — 360px */
    @media (max-width: 360px) {
      .herobanner { height: 280px; }
      .herobanner__title { font-size: 18px; }
      .herobanner__btn { padding: 8px 14px; font-size: 11px; }

      .herobanner__side-btn,
      .herobanner__side-btn-icon { width: 34px; height: 34px; }
      .herobanner__side-btn-label {
        right: 34px;
        height: 34px;
        font-size: 10px;
        padding: 0 8px;
      }
      .herobanner__side-btn svg { width: 15px; height: 15px; }
    }

/* ===================================
   HEROSECTION CSS END
=================================== */



/* ===================================
   News & Announcements CSS START
=================================== */

  /* ===== NEWS & ANNOUNCEMENTS — all classes prefixed with "na-" ===== */

  .na-section {
    /* max-width: 1200px; */
    padding: 36px 0;
    margin: 0 auto;
  }
  .na-card-desc{
  width: 90%;        /* jo bhi width chahiye */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

  .na-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--secondary-color);
  }

  .na-title {
       font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 6px;
    font-weight: 700;
  }

  .na-subtitle {
       font-size: 16px;
    color: var(--gray-color);
    font-weight: 400;
    margin-bottom: 28px;
  }

  .na-cards-wrapper {
    position: relative;
  }

  .na-cards-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: visible;
    /* padding-bottom: 12px; */
    scrollbar-width: none;
  }

  .na-cards-scroll::-webkit-scrollbar { display: none; }

  /* ===== CARD ===== */
  .na-card {
    flex: 0 0 270px;
    width: 270px;
    height: 370px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    animation: na-fadeUp 0.5s ease forwards;
    transition: flex 0.5s cubic-bezier(0.4,0,0.2,1), width 0.5s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s ease;
  }

  .na-card:hover {
    flex: 0 0 570px;
      /*width: 570px; */

  }

  .na-card:nth-child(1) { animation-delay: 0.1s; }
  .na-card:nth-child(2) { animation-delay: 0.2s; }
  .na-card:nth-child(3) { animation-delay: 0.3s; }
  .na-card:nth-child(4) { animation-delay: 0.4s; }

  @keyframes na-fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }

  .na-card-img-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .na-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
  }

  .na-card:hover .na-card-img-wrap img {
    transform: scale(1.04);
  }

  .na-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.82) 0%,
      rgba(0,0,0,0.3) 50%,
      rgba(0,0,0,0.05) 100%
    );
  }

  .na-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    color: #fff;
  }

  .na-card-title {
   font-weight: 700;
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 6px;
    color: white;
  }

  .na-card-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.75);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Placeholder bg colors */
  .na-ph-1 { background: linear-gradient(135deg, #667eea, #764ba2); }
  .na-ph-2 { background: linear-gradient(135deg, #11998e, #38ef7d); }
  .na-ph-3 { background: linear-gradient(135deg, #2d3436, #636e72); }
  .na-ph-4 { background: linear-gradient(135deg, #f093fb, #f5576c); }

  /* Responsive */
  @media (max-width: 600px) {
    .na-card { flex: 0 0 200px; width: 200px; height: 280px; }
    .na-card:hover { flex: 0 0 320px; width: 320px; }
  }

  @media (max-width: 992px) {
     .na-title {
       font-size: 22px;
    color: var(--dark-color);
    margin-bottom: 6px;
    font-weight: 700;
  }
  .na-subtitle {
    font-size: 14px;
  }
  .na-card-title {
    font-size: 16px;
  }
  .na-card-desc{
    font-size: 14px;
  }

  }

/* ===================================
   News & Announcements CSS END
=================================== */


/* ===================================
   Why choose us CSS START
=================================== */

    .choose-us__section {
      /* max-width: 1200px; */
      width: 100%;
      text-align: center;
      padding: 50px 0;
      background-color: var(--background-color);
    }

    .choose-us__badge {
         display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--secondary-color);
    }

    .choose-us__title {
      font-size: 28px;
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 6px;
    }

    .choose-us__subtitle {
        font-size: 16px;
    color: var(--gray-color);
    font-weight: 400;
    margin-bottom: 28px;
    }

    .choose-us__cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .choose-us__card {
      background: #fff;
      border-radius: 22px;
      padding: 20px;
      box-shadow: 0 4px 24px rgba(233,30,99,0.06);
      border: 1px solid #fce4ec;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
    }

    .choose-us__card:hover {
      transform: translateY(-6px);
      box-shadow: 0 12px 36px rgba(233,30,99,0.13);
    }

    .choose-us__icon-wrap {
      width: 70px;
      /* height: 70px; */
      height: auto;
      margin: auto;
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .choose-us__icon-wrap img {
      width:38px;
      height: 38px;
    }

    .choose-us__card-title {
     font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    }

    .choose-us__card-desc {
      font-size: 14px;
      color: #999;
      line-height: 1.6;
      margin-bottom: 0;
      font-weight: 400;
    }

    @media (max-width: 992px) {
      .choose-us__cards { grid-template-columns: repeat(2, 1fr); }
      .choose-us__title {
      font-size: 22px;
      font-weight: 700;
      color: var(--dark-color);
    }

       .choose-us__subtitle {
        font-size: 14px;
    }
  }

    @media (max-width: 480px) {
      .choose-us__cards { grid-template-columns: 1fr; }
    }


/* ===================================
   Why choose us CSS END
=================================== */




/* ===================================
   home counter section us CSS start
=================================== */

.home-counter-section {
  position: relative;
  padding: 58px 0;
  background: url('images/choose_us_home1.png') center/cover no-repeat;
  overflow: hidden;
}

/* Dark Overlay */
/* .home-counter-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65); /* darkness control yaha se */
  /* z-index: 1;
} */ 

/* Content upar rahe */
.home-counter-container {
  position: relative;
  z-index: 2;
}

.home-counter-section {
  /* padding: 70px 20px; */
}

.home-counter-container {
  /* max-width: 1200px; */
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.home-counter-box {
  text-align: center;
  background: #fff;
    border-radius: 22px;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(233, 30, 99, 0.06);
    border: 1px solid #fce4ec;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
}

.home-counter-box.active {
  background: #fbe6eb;
}

.home-counter-box.active h3 {
  color: var(--primary-color);
}

.home-counter-box:hover {
  transform: translateY(-10px);
  /* box-shadow: 0 15px 35px rgba(0,0,0,0.1); */
        box-shadow: 0 12px 36px rgba(233,30,99,0.13);

}

.home-counter-icon {
  font-size: 30px;
  color: var(--primary-color);
  margin-bottom: 10px;
}
.home-counter-icon img {
width: 38px;
height: 38px;
} 

.home-counter-box h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.home-counter-box p {
  font-size: 14px;
  color: #212529BF;
  margin: 0;
}

/* Responsive */

@media (max-width: 992px) {
  .home-counter-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-counter-box h3{
    font-size: 22px;
  }
}



@media (max-width:  480px) {
  .home-counter-container {
    grid-template-columns: 1fr;
  }
  .home-counter-box {
    padding: 20px;
  }
}



/* ===================================
   home counter section us CSS end
=================================== */




/* ===================================
  Radiology CSS START
=================================== */


.radiology-section {
    padding: 36px 0;
}

.radiology-container {
    /* max-width: 1300px; */
    margin: auto;
}

.radiology-tag {
       display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--secondary-color);
}

.radiology-title {
    font-size: 28px;
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 6px;
}

.radiology-subtitle {
      font-size: 16px;
    color: var(--gray-color);
    font-weight: 400;
    margin-bottom: 28px;
}

/* ===============================
   Grid
================================ */

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

/* ===============================
   Card
================================ */

.radiology-card {
    background: transparent;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    border: 1px solid #0B1B2B0F;
}

.radiology-card:hover {
    /* transform: translateY(-8px); */
    box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

.radiology-img {
    position: relative;
    /* width: 318px; */
    height: 210px;
    overflow: hidden;
}

.radiology-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
        transition: transform 0.6s ease;   /* Smooth zoom */
}

/* Price Badge */

.radiology-price {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.radiology-content {
    padding: 16px;
}

.radiology-card-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.radiology-card-text {
    font-size: 14px;
    color: var(--gray-color);
    margin-bottom: 16px;
    height: 40px;
}

/* Button */

.radiology-btn {
    display: inline-block;
    padding: 8px 22px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
        border: 1px solid var(--primary-color)

}

.radiology-btn:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    border: 1px solid var(--secondary-color)
}
.radiology-card:hover .radiology-img img {
    transform: scale(1.1);   /* Zoom Level */
}



/* ===============================
   Responsive
================================ */

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

@media (max-width: 992px) {
.radiology-title {
        font-size: 22px;
    }
    .radiology-subtitle{
      font-size: 14px;
    }
     .radiology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .radiology-title {
        font-size: 22px;
    }
    .radiology-grid {
        grid-template-columns: 1fr;
    }
    .radiology-img{
      height: auto;
    }
}



/* ===================================
  Radiology CSS END
=================================== */



/* ===================================
  Pathology CSS START
=================================== */


.pathology-section {
    padding: 36px 0;
    background-color: var(--background-color);
}

/* ===================================
  Pathology CSS END
=================================== */




/* ===================================
  Testimonials CSS START
=================================== */

 

    /* ══ SECTION ══ */
    .testimonial-section {
      padding: 36px 0;
      text-align: center;
    }

    .testimonial-badge {
      display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--secondary-color);
    }

    .testimonial-heading {
        font-size: 28px;
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 6px;
    }

    .testimonial-subheading {
         font-size: 16px;
    color: var(--gray-color);
    font-weight: 400;
    margin-bottom: 28px;
    }

    /* ══ OUTER WRAP — clips slider ══ */
    .testimonial-wrap {
      position: relative;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 70px;
    }

    /* ══ VIEWPORT — overflow hidden here ══ */
    .testimonial-viewport {
      overflow: hidden;
      /* padding trick: lets card shadow breathe top/bottom, clips left/right cleanly */
      padding: 16px 2px 32px;
      margin: -16px -2px -32px;
    }

    .testimonial-track {
      display: flex;
      gap: 22px;
      align-items: stretch;
      transition: transform 0.48s cubic-bezier(0.4,0,0.2,1);
    }

    /* ══ CARD WRAP keeps equal heights ══ */
    .testimonial-card-wrap {
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
    }

    /* ══ CARD ══ */
    .testimonial-card {
      background: #fff;
      border-radius: 16px;
      padding: 24px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      box-shadow: none;
      transition: box-shadow 0.3s ease;
      box-shadow: 3px 0px 9px 3px rgba(0,0,0,0.05) !important;
      /* border: 1px solid rgb(244, 244, 244); */
          border: 1px solid #0b1b2b1c;

    }

    .testimonial-card:hover {
      box-shadow: 0 14px 40px rgba(0,0,0,0.10);
    }



    .testimonial-card-text {
      font-size: 17px;
      line-height: 1.8;
      color: var(--gray-color);
      margin-bottom: 20px;
      text-align: left;
    }

    /* ══ AUTHOR ══ */
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 14px;
      text-align: left;
    }

    .testimonial-avatar {
      width: 54px;
      height: 54px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }

    .testimonial-author-name {
      font-size: 18px;
      font-weight: 700;
      color: #111827;
      margin-bottom: 3px;
    }

    .testimonial-author-label {
      font-size: 16px;
      color: var(--gray-color);
    }

    /* ══ ARROWS ══ */
    .testimonial-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: none;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0,0,0,0.12);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10;
      transition: background 0.2s, box-shadow 0.2s, opacity 0.25s;
    }

    .testimonial-arrow:hover {
      background: #fde8ee;
      box-shadow: 0 4px 18px rgba(232,70,107,0.2);
    }

    .testimonial-arrow svg {
      width: 22px;
      height: 22px;
      stroke: var(--primary-color);
      stroke-width: 2.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .testimonial-arrow-prev { left: 14px; }
    .testimonial-arrow-next { right: 14px; }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      .testimonial-wrap { padding: 0 60px; }
    }
  @media (max-width: 992px) {
.testimonial-heading{
  font-size: 22px;
}

.testimonial-subheading {
         font-size: 14px;
    }
        .testimonial-card-text {
      font-size: 14px;
        }

          .testimonial-author-name {
            font-size: 16px;
          }

           .testimonial-author-label {
      font-size: 14px;
      color: var(--gray-color);
    }
  }

    @media (max-width: 768px) {
      /* .testimonial-section { padding: 44px 0 52px; } */
      .testimonial-wrap { padding: 0 50px; }
      .testimonial-card { padding: 26px 20px 22px; }
      .testimonial-card-text { font-size: 14px; }
      .testimonial-arrow { width: 34px; height: 34px; }
    }
    @media (max-width: 480px) {
      .testimonial-wrap { padding: 0 42px; }
      .testimonial-card { padding: 22px 16px 18px; }
      .testimonial-avatar { width: 44px; height: 44px; }
    }


/* ===================================
  Testimonials CSS END
=================================== */





/* ===================================
  Home Blog CSS START
=================================== */

    /* ══ SECTION ══ */
    .homeblog-section {
      background: var(--background-color);
      padding: 36px 0;
    }

    /* ══ HEADER ROW ══ */
    /* .homeblog-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 24px;
    } */

    .homeblog-header-left {
      /* display: flex;
      flex-direction: column;
      gap: 4px; */
    }

    .homeblog-badge {
      display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--secondary-color);
    }

    .homeblog-title {
       font-size: 28px;
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 6px;
    }

    .homeblog-subtitle {
      font-size: 16px;
    color: var(--gray-color);
    font-weight: 400;
    margin-bottom: 10px;
    }

    .homeblog-viewall {
      display: flex;
      align-items: center;
      gap: 10px;
      justify-content: end;
      color: var(--primary-color);
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      white-space: nowrap;
      transition: gap 0.2s;
      margin-bottom: 14px;
    }

    .homeblog-viewall:hover { gap: 12px; }

    .arrow_right {
      width: 18px;
      height: 18px;
      stroke: var(--primary-color);
      stroke-width: 2.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ══ GRID ══
    .homeblog-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    } */

    /* LAGAO yeh: */
.homeblog-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  /* padding-bottom: 8px; */
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.homeblog-scroll::-webkit-scrollbar { display: none; }

    /* ══ CARD ══ */
    .homeblog-card {
      flex-shrink: 0;
width: 358px;
scroll-snap-align: start;
      /* background: #fff; */
      background: transparent;
      overflow: hidden;
    /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05); */
    transition: 0.3s ease;
    border: 1px solid #0b1b2b1c;
      border-radius: 20px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      /* transition: box-shadow 0.3s ease, transform 0.3s ease; */
    }

    .homeblog-card img{
          transition: transform 0.4s ease;
          
    }

     .homeblog-card:hover{
      box-shadow: 0 4px 40px rgba(0, 0, 0, 0.1);
     }

    .homeblog-card:hover img{
      /* box-shadow: 0 12px 36px rgba(0,0,0,0.10); */
      /* transform: translateY(-4px); */
        transform: scale(1.04);
        overflow: scroll;
    }

    .homeblog-card-img {
      width: 100%;
      aspect-ratio: 4/3;
      object-fit: cover;
      display: block;
      overflow: hidden;
    }

    .homeblog-card-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      flex: 1;
    }

    /* ══ META ROW ══ */
    .homeblog-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
          margin-bottom: 4px;

    }

    .homeblog-tag {
       display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    /* margin-bottom: 12px; */
    border: 1px solid var(--secondary-color);
    }

    /* .homeblog-tag.homeblog-tag-checkup {
      background: #e8f0fe;
      color: #3b7be8;
    } */

    .homeblog-date {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 14px;
      color: var(--gray-color);
      white-space: nowrap;
    }

    .homeblog-date img {
      width: 14px;
      height: 14px;
      stroke: var(--gray-color);
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ══ CARD TEXT ══ */
    .homeblog-card-title {
      font-size: 18px;
      font-weight: 700;
      color: var(--dark-color);
      line-height: 1.35;
    }

    .homeblog-card-desc {
      font-size: 14px;
      color: var(--gray-color);
      line-height: 1.55;
    }

    .homeblog-readmore {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--primary-color);
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      margin-top: 4px;
      transition: gap 0.2s;
    }

    .homeblog-readmore:hover { gap: 12px; }

    .homeblog-readmore img {
      width: 16px;
      height: 16px;
      stroke: var(--primary-color);
      stroke-width: 2.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* ══ RESPONSIVE ══ */
    @media (max-width: 1024px) {
      /* .homeblog-grid { grid-template-columns: repeat(3, 1fr); } */
    }

 @media (max-width: 992px) {
.homeblog-title{
  font-size: 22px;
}
.homeblog-viewall{
  font-size: 14px;
}

  .homeblog-subtitle {
    font-size: 14px;
  }

   .homeblog-card-title {
      font-size: 14px;
    }
     .homeblog-readmore {
      font-size: 14px;
     }
 }

    @media (max-width: 768px) {
      .homeblog-section { padding: 32px 24px 40px; }
      /* .homeblog-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } */
    }

    @media (max-width: 480px) {
      .homeblog-section { padding: 28px 16px 36px; }
      /* .homeblog-grid { grid-template-columns: 1fr; } */
      /* .homeblog-header { flex-direction: column; align-items: flex-start; gap: 12px; } */
    }

    @media (max-width: 768px) {
  .homeblog-card { width: 260px; }
}
@media (max-width: 480px) {
  .homeblog-card { width: 230px; }
}
  

/* ===================================
   Home Blog CSS END
=================================== */



/* ===================================
   Footer CSS START
=================================== */


    .pratap-footer {
      background: linear-gradient(135deg, #feefef 0%, #feefef  40%, #fee5e0 100%);
      color: #444;
      /* border-top: 1px solid #f0d0d0; */
    }

    .pratap-footer__inner {
      /* max-width: 1200px; */
      margin: 0 auto;
      padding-top: 50px;
      /* padding-bottom: 20px; */
    }

    /* ── DESKTOP: 4 columns in one row ── */
    .pratap-footer__row1 {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1.4fr;
      gap: 40px;
      padding-bottom: 28px;
    }

    /* ── LOGO / BRAND ── */
    .pratap-footer__logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
    }

    .pratap-footer__logo-icon {
       width: 236px;
    height: 80px;
     
      /* flex-shrink: 0;
      overflow: hidden; */
    }

    .pratap-footer__logo-icon img { width: 100%; height: 100%; }

    .pratap-footer__logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }

    .pratap-footer__logo-name {
      font-size: 26px;
      font-weight: 700;
      letter-spacing: -0.5px;
      color: #1a1a1a;
    }

    .pratap-footer__logo-name .pratap-footer__accent { color: var(--primary-color); }

    .pratap-footer__logo-sub {
      font-size: 11px;
      color: #888;
      font-weight: 600;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    .pratap-footer__tagline {
      font-size: 14px;
      line-height: 1.7;
      color: var(--gray-color);
      margin-bottom: 20px;
    }

    .pratap-footer__socials {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .pratap-footer__social-btn {
      width: 42px;
      height: 42px;
      border-radius: 14px;
      background: #21252914;
      /* border: 1.5px solid #e5d0d0; */
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      color: #212529B8;
      transition: all 0.2s ease;
    }

    .pratap-footer__social-btn:hover {
      background-color: var(--secondary-color);
      border-color: 1px solid var(--secondary-color);
      color: #e61f23;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(212,43,43,0.25);
    }

    .pratap-footer__social-btn img {
       width: 17px; 
       height: 17px; 
       margin: 3px;
    }


    /* ── COLUMN TITLES ── */
    .pratap-footer__col-title {
      font-size: 16px;
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 18px;
    }
/* 
    .pratap-footer__col-title::after {
      content: '';
      display: block;
      width: 28px;
      height: 2.5px;
      background: #d42b2b;
      border-radius: 2px;
      margin-top: 6px;
    } */

    /* ── NAV LIST ── */
    .pratap-footer__nav-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .pratap-footer__nav-list a {
      text-decoration: none;
      color: var(--gray-color);
      font-size: 15px;
      font-weight: 400;
      display: inline-block;
      transition: color 0.2s ease, padding-left 0.2s ease;
    }

    .pratap-footer__nav-list a:hover {
      color: var(--primary-color);
      font-weight:500 ;
      padding-left: 5px;
    }

    /* ── CONTACT LIST ── */
    .pratap-footer__contact-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .pratap-footer__contact-item {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      font-size: 14px;
      color: var(--gray-color);
      font-weight: 400;
      line-height: 1.5;
    }

    .pratap-footer__contact-icon {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      color: var(--gray-color);
      margin-top: 2px;
    }

    /* ── DIVIDER ── */
    .pratap-footer__divider {
      border: none;
      border-top: 1px solid var(--dark-color);
      margin: 0;
    }

    /* ── BOTTOM BAR ── */
    .pratap-footer__bottom {
      /* max-width: 1200px; */
      margin: 0 auto;
      /* padding: 18px 24px; */
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px;
      padding:20px 0;
    }

    .pratap-footer__copy,
    .pratap-footer__credit {
      font-size: 16px;
      color: var(--gray-color);
      font-weight: 400;
    }

    .company_link_xpecto{
      text-decoration: none;
      color: var(--gray-color);
      transition: all 0.2s ease;
    }


     .company_link_xpecto:hover{
      color: var(--primary-color);
      font-weight: 500;
     }

    /* .pratap-footer__credit strong { color: #d42b2b; } */

    /* ── Tablet mid-row hidden by default on desktop ── */
    .pratap-footer__row2 { display: none; }

    /* ================================================
       TABLET  ≤900px
       Brand → full width top row
       Quick Links | Legal | Contact → 3-col second row
    ================================================ */
    @media (max-width: 992px) {

      /* Row1 becomes single column (brand only) */
      .pratap-footer__row1 {
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 30px;
      }

      /* Hide the 3 link cols inside row1 on tablet */
      .pratap-footer__row1 .pratap-footer__col-d {
        display: none;
      }

      /* Show the dedicated 3-col row */
      .pratap-footer__row2 {
        display: grid;
        grid-template-columns: 1fr 1fr 1.4fr;
        gap: 32px;
        padding-bottom: 40px;
      }
    }

    /* ================================================
       MOBILE  ≤768px — everything single column
    ================================================ */
    @media (max-width: 768px) {
      .pratap-footer__row2 {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .pratap-footer__bottom {
        flex-direction: column;
        align-items: center;
        gap: 5px;
      }
      .pratap-footer__copy, .pratap-footer__credit{
        font-size: 14px;
      }
    }


/* ===================================
   Footer CSS END
=================================== */




/* ============================================================ BLOG PAGE CSS =============================================================== */


/* ===================================
    BLOG BANNER CSS START
=================================== */


 
    /* ===== BLOGBANNER STYLES ===== */
    .blogbanner-container {
      position: relative;
      width: 100%;
      height: 300px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .blogbanner-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center ;
      display: block;
    }

    /* Exact overlay match — grayish-blue semi-transparent like original */
    .blogbanner-overlay {
      position: absolute;
      inset: 0;
      /* background: #313c467a; */
      background: #1f283280;
    }

    .blogbanner-title {
      position: relative;
      z-index: 2;
      color: #ffffff;
      font-size: 43px;
      font-weight: 700;
      letter-spacing: 0.02em;
      text-align: center;
      padding: 0 10px;
      text-shadow: 0 1px 6px rgba(0,0,0,0.3);
      margin: 0;
    }

    @media (max-width: 768px) {
      .blogbanner-container { height: 250px; }
      .blogbanner-title { font-size: 26px; }
    }

    @media (max-width: 480px) {
  
    
    }


/* ===================================
    BLOG BANNER CSS END
=================================== */



/* ===================================
    BLOG Diabetes Care Guide CSS START
=================================== */


    .blog-diabetes-care-wrapper {
      width: 100%;
        padding: 36px 0;
    }

    .blog-diabetes-care-inner {
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Two column layout: text left, image right */
    .blog-diabetes-care-card {
      display: flex;
      align-items: center;
      gap: 24px;
    }

  /* LEFT: Text content */
.blog-diabetes-care-content {
  width: 55%;
  min-width: 0;
  /* padding-right: 32px; */
}

    .blog-diabetes-care-date {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 20px;
      color: var(--gray-color);
      margin-bottom: 10px;
    }

    .blog-diabetes-care-date-icon {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      opacity: 0.6;
    }

    .blog-diabetes-care-title {
      font-size: 32px;
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .blog-diabetes-care-desc {
      font-size: 20px;
      color: var(--gray-color);
      line-height: 1.75;
      margin-bottom: 0;
    }

   /* RIGHT: Image */
.blog-diabetes-care-img-wrap {
  width: 45%;
  height: 368px;
}

    .blog-diabetes-care-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      border-radius: 16px;
      display: block;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .blog-diabetes-care-date {
        font-size: 16px;
      }
      .blog-diabetes-care-date-icon{
        font-size: 16px;
      }
      .blog-diabetes-care-title{
                font-size: 22px;
      }
      .blog-diabetes-care-card {
        flex-direction: column-reverse;
        gap: 24px;
      }
          .blog-diabetes-care-desc {
            font-size: 16px;
          }

      .blog-diabetes-care-img-wrap {
        width: 100%;
      }
      .blog-diabetes-care-content{
        width: 100%;
      }

      .blog-diabetes-care-img-wrap  {
        height: 240px;
    
      }
    }

  

/* ===================================
    BLOG Diabetes Care Guide CSS END
=================================== */



/* ===================================
    BLOG Diabetes CONTENT CSS START
=================================== */



    .blog-diabetes-content-wrapper {
      width: 100%;
      padding-bottom: 36px;
    }

    .blog-diabetes-content-inner {
      margin: 0 auto;
    }

    .blog-diabetes-content-heading {
      font-size: 32px;
      font-weight: 700;
      color: var(--dark-color);
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .blog-diabetes-content-para {
      font-size: 20px;
      color: var(--gray-color);
      line-height: 1.8;
      margin-bottom: 12px;
    }

    .blog-diabetes-content-para:last-child {
      margin-bottom: 0;
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 992px) {
      .blog-diabetes-content-heading {
        font-size: 22px;
      }

      .blog-diabetes-content-para {
        font-size: 16px;
      }
    }


/* ===================================
    BLOG Diabetes CONTENT CSS END
=================================== */




/* ========================================================================  VIDEO GALLERY PAGE CSS ========================================= */

/* ===================================
    VIDEO GALLERY CSS START
=================================== */


  .video-gallery-wrapper {
    width: 100%;
    padding: 36px 0;
  }

  .video-gallery-tag {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--secondary-color);
  }

  .video-gallery-heading {
    font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 6px;
    font-weight: 700;
  }

  .video-gallery-subtext {
    font-size: 16px;
    color: var(--gray-color);
    font-weight: 400;
    margin-bottom: 28px;
  }

  /* ===== GRID ===== */
  .video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  /* ===== CARD ===== */
  .video-card {
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0,0,0,0.16);
  }

  /* Thumbnail via YouTube standard API */
  .video-card-thumb {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    background: #000;
    overflow: hidden;
  }

  .video-card-thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
  }

  .video-card:hover .video-card-thumb img {
    transform: scale(1.04);
    filter: brightness(0.82);
  }

  .video-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.15);
    transition: background 0.3s;
  }

  .video-card:hover .video-card-overlay {
    background: rgba(0,0,0,0.30);
  }

  /* YouTube-style red play button */
  .video-card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 44px;
    background: #ff0000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, background 0.2s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  }

  .video-card:hover .video-card-play {
    transform: translate(-50%, -50%) scale(1.12);
    background: #cc0000;
  }

  .video-card-play svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    margin-left: 3px;
  }



  /* ===== MODAL ===== */
  .video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.88);
    align-items: center;
    justify-content: center;
  }

  .video-modal.active {
    display: flex;
  }

  .video-modal-box {
    position: relative;
    width: 70%;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    animation: fadein 0.25s ease;
    box-shadow: 0 24px 60px rgba(0,0,0,0.7);
  }

  @keyframes fadein {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
  }

  .video-modal-iframe-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
  }

  .video-modal-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
  }

  .video-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: rgba(0,0,0,0.6);
    border: 2px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
    z-index: 10;
    transition: background 0.2s;
  }

  .video-modal-close:hover { background: rgba(255,255,255,0.2); }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 992px) {
    .video-modal-box { width: 92%; }
    .video-gallery-heading { font-size: 22px; }
    .video-gallery-subtext { font-size: 14px; }
  }

  @media (max-width: 768px) {
    .video-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  }

  @media (max-width: 480px) {
    .video-gallery-grid { grid-template-columns: 1fr; gap: 12px; }
    .video-modal-box { width: 98%; border-radius: 8px; }
  }



/* ===================================
    VIDEO GALLERY CSS END
=================================== */



/* ===================================
    BLOG list page CSS START
=================================== */

    /* Section wrapper */
    .blog-list-section {
      padding: 36px 0;
    }

    /* Header */
    .blog-list-section__label {
      display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--secondary-color);
    }

    .blog-list-section__title {
       font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 6px;
    font-weight: 700;
    }

    .blog-list-section__subtitle {
         font-size: 16px;
    color: var(--gray-color);
    font-weight: 400;
    margin-bottom: 28px;
    }

    /* Grid */
    .blog-list-section__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    @media (max-width: 992px) {
      .blog-list-section__grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .blog-list-section__title{
        font-size: 22px;
      }
      .blog-list-section__subtitle{
        font-size: 14px;
      }
       .blog-list-card__title {
        font-size: 14px;
       }
       .blog-list-card__link {
        font-size: 14px;
       }
    }

    @media (max-width: 560px) {
      .blog-list-section__grid {
        grid-template-columns: 1fr;
      }
    }

    /* Card */
    .blog-list-card {
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      display: flex;
      flex-direction: column;
    }

    .blog-list-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.11);
    }

    /* Card image */
    .blog-list-card__img-wrap {
      width: 100%;
      height: 240px;
      overflow: hidden;
    }

    .blog-list-card__img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease;
    }

    .blog-list-card:hover .blog-list-card__img-wrap img {
      transform: scale(1.04);
    }

    /* Card body */
    .blog-list-card__body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    /* Meta row */
    .blog-list-card__meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 10px;
      flex-wrap: wrap;
      gap: 6px;
    }

    /* Category badge */
    .blog-list-card__category {
       display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    /* margin-bottom: 12px; */
    border: 1px solid var(--secondary-color);
    }

    

    

   

    /* Date */
    .blog-list-card__date {
  display: flex;
      align-items: center;
      gap: 5px;
      font-size: 14px;
      color: var(--gray-color);
      white-space: nowrap;
    }

    .blog-list-card__date img {
     width: 14px;
      height: 14px;
      stroke: var(--gray-color);
      stroke-width: 1.8;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Title */
    .blog-list-card__title {
    font-size: 18px;
      font-weight: 700;
      color: var(--dark-color);
      line-height: 1.35;
    }

    /* Description */
    .blog-list-card__desc {
     font-size: 14px;
      color: var(--gray-color);
      line-height: 1.55;
    }

    /* Read more link */
    .blog-list-card__link {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--primary-color);
      font-size: 16px;
      font-weight: 600;
      text-decoration: none;
      margin-top: 4px;
      transition: gap 0.2s;
    }

    .blog-list-card__link:hover {
      gap: 12px;
    }

    .blog-list-card__link svg {
      width: 16px;
      height: 16px;
      stroke: var(--primary-color);
      stroke-width: 2.5;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

  
/* ===================================
    BLOG list page CSS END
=================================== */


/* ===================================
    Contact Us page CSS START
=================================== */

 
    /* Outer wrapper */
    .contact-git-section {
      padding: 36px 0;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
    }

    @media (max-width: 768px) {
      .contact-git-section {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    /* ---- LEFT SIDE ---- */
    .contact-git-left {}

    .contact-git-label {
      display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--secondary-color);
    }

    .contact-git-title {
      font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 6px;
    font-weight: 700;
    }

    /* Info items */
    .contact-git-info-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin: 24px 0;
      padding: 0;
    }
    .locate-git-info-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
    margin-top: 24px;
    margin-bottom: 0;
      padding: 0;
    }


    .contact-git-info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .contact-git-info-icon {
      width: 20px;
      /* height: 20px; */
      /* flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center; */
    }

    .contact-git-info-icon img {
      width: 100%;
      height: 100%;
      /* object-fit: cover; */
          stroke: var(--primary-color);
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;

    }

    .contact-git-info-text {
      font-size: 20px;
      font-weight: 500;
      color: var(--dark-color);
      /* padding-top: 8px; */
      line-height: 1.4;
    }

.locate-info-text{
    font-size: 20px;
      font-weight: 400;
      color: var(--dark-color);
      /* padding-top: 8px; */
      line-height: 1.4;
}

    /* Image */
    .contact-git-img-wrap {
      width: 100%;
      border-radius: 16px;
      overflow: hidden;
      max-height: 272px;
    }

    .contact-git-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* ---- RIGHT SIDE ---- */
    .contact-git-right {
      background: #fff;
      border-radius: 10px;
      padding: 28px;
      box-shadow: 0 2px 18px rgba(0,0,0,0.07);
    }

    .contact-git-form-label {
   display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--secondary-color);
    }

    .contact-git-form-title {
     font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 6px;
    font-weight: 700;
    }

    /* Divider */
    .contact-git-divider {
      border: none;
      border-top: 1px solid var(--gray-color);
      margin-bottom: 24px;
    }

    /* Form */
    .contact-git-form {
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .contact-git-form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    @media (max-width: 992px) {
    .contact-git-title{
       font-size: 22px;
    }
    .contact-git-form-title{
    font-size: 22px;
    }
    .contact-git-info-text {
      font-size: 16px;
    }
    .locate-info-text{
       font-size: 16px;
    }
    .contact-git-info-icon{
      width: 16px;
      /* height: 16px; */
    }
      .contact-git-form-row {
        grid-template-columns: 1fr;
      }
       .contact-git-btn {
        width: 100% !important;
      }
  }
  

    @media (max-width: 480px) {
      .contact-git-form-row {
        grid-template-columns: 1fr;
      }
       .contact-git-btn {
        width: 90%;
      }
    }

    .contact-git-input,
    .contact-git-textarea {
      width: 100%;
      background: #F9F9F9;
      border: 1.5px solid transparent;
      border-radius: 6px;
      padding: 12px 16px;
      font-size: 16px;
      color: var(--dark-color);
      outline: none;
      transition: border-color 0.2s ease, background 0.2s ease;
    }

    .contact-git-input::placeholder,
    .contact-git-textarea::placeholder {
      color: #6C757D;
    }

    .contact-git-input:focus,
    .contact-git-textarea:focus {
      border-color: var(--primary-color);
      background: #fff;
    }

    .contact-git-textarea {
      resize: none;
      min-height: 88px;
    }

    /* Submit button */
    .contact-git-btn {
      margin-top: 20px;
      background: var(--primary-color);
      color: #fff;
      border: none;
      border-radius: 50px;
      padding: 12px 20px;
      font-size: 18px;
      font-weight: 600;
      cursor: pointer;
      width: 55%;
      transition: background 0.2s ease, transform 0.15s ease;
      letter-spacing: 0.2px;
    }

    .contact-git-btn:hover {
      background: #cf2e57;
      transform: translateY(-1px);
    }

    .contact-git-btn:active {
      transform: translateY(0);
    }

    @media (max-width: 480px) {
      .contact-git-btn {
        width: 100%;
      }
    }



/* ===================================
    Contact Us page CSS END
=================================== */


/* ===================================
    Contact Us MAP CSS START
=================================== */

  /* Iframe map */
    .contact-map-iframe-wrap {
      width: 100%;
      height: 490px;
      position: relative;
    }

    .contact-map-iframe-wrap iframe {
      width: 100%;
      height: 100%;
      border: none;
      display: block;
    }

    @media (max-width: 768px) {
      .contact-map-iframe-wrap {
        height: 320px;
      }
    }

    @media (max-width: 480px) {
      .contact-map-iframe-wrap {
        height: 240px;
      }
    }

/* ===================================
    Contact Us MAP CSS END
=================================== */



/* ===================================
    LOCATE US CSS START
=================================== */


.locate-us-section {
  padding: 36px 0;
}

/* Grid: 2 columns */
.locate-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Card */
.locate-us-card {
  position: relative;
  background: #f8f8f8;
  border-radius: 20px;
  padding: 32px 28px 28px;
  margin-top: 18px;
  box-shadow: 0 4px 24px #0000000F;
  display: flex;
  flex-direction: column;
  border: 1px solid rgb(234, 234, 234);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.locate-us-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.13);
  transform: translateY(-3px);
}

/* City badge – floats above card top edge */
.locate-us-city-badge {
  position: absolute;
  top: -16px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--primary-color, #e01c4e);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 6px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.locate-us-city-badge img {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* Card body */
.locate-us-card-body {
  margin-top: 10px;
}

/* Branch name */
.locate-us-branch-name {
  font-size: 22px;
  font-weight: 700;
  color: var(--dark-color, #1a1a2e);
  margin: 0 0 16px;
  line-height: 1.3;
}

/* Info list */
.locate-us-info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Info row */
.locate-us-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* Icon circle */
.locate-us-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  /* background: #ffe4ec; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  /* justify-content: center; */
  flex-shrink: 0;
}

.locate-us-icon img {
  width: 16px;
  height: 16px;
}

/* Info text */
.locate-us-info-text {
  font-size: 16px;
  color: var(--gray-color);
  font-weight: 400;
  line-height: 1.55;
  padding-top: 5px;
  word-break: break-word;
}

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

/* Tablet ≤ 992px */
@media (max-width: 992px) {
  .locate-us-branch-name {
    font-size: 20px;
  }
  .locate-us-grid {
    gap: 22px;
  }
}

/* Tablet portrait ≤ 768px → single column */
@media (max-width: 768px) {
  .locate-us-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .locate-us-branch-name {
    font-size: 19px;
  }
  .locate-us-info-text {
    font-size: 13.5px;
  }
}

/* Mobile ≤ 480px */
@media (max-width: 480px) {
  .locate-us-card {
    padding: 28px 20px 22px;
    border-radius: 16px;
  }
  .locate-us-city-badge {
    left: 20px;
    font-size: 12px;
    padding: 5px 12px;
  }
  .locate-us-branch-name {
    font-size: 17px;
  }
  .locate-us-info-text {
    font-size: 13px;
  }
  .locate-us-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
  .locate-us-icon img {
    width: 14px;
    height: 14px;
  }
}

/* Mobile small ≤ 380px */
@media (max-width: 380px) {
  .locate-us-branch-name {
    font-size: 16px;
  }
  .locate-us-info-text {
    font-size: 12px;
  }
  .locate-us-city-badge {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* ===================================
    LOCATE US CSS END
=================================== */



/* ===================================
    FAQ CSS START
=================================== */

 

    .faq-section {
     padding: 36px 0;
    }

    /* Header */
    .faq-header {
      text-align: center;
    }

    .faq-badge {
      display: inline-block;
    background: var(--secondary-color);
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
    border: 1px solid var(--secondary-color);
    }

    .faq-title {
       font-size: 28px;
    color: var(--dark-color);
    margin-bottom: 6px;
    font-weight: 700;
    }

    .faq-subtitle {
             font-size: 16px;
    color: var(--gray-color);
    font-weight: 400;
    margin-bottom: 28px;
    }

    /* Container */
    .faq-container {
      max-width: 680px;
      margin: 0 auto;
    }

    /* Accordion Item */
    .faq-item {
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      margin-bottom: 14px;
      overflow: hidden;
      background: #fff;
      transition: box-shadow 0.2s ease;
    }

    .faq-item:hover {
      box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    }

    .faq-item.faq-active {
      border-color: var(--secondary-color);
      background: var(--background-color);
      box-shadow: 0 4px 20px rgba(224, 36, 94, 0.08);
    }

    /* Question Button */
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 22px 24px;
      text-align: left;
      gap: 16px;
    }

    .faq-question-text {
        font-size: 20px;
    font-weight: 700;
    color: var(--dark-color);
    }

    .faq-item.faq-active .faq-question-text {
      color: var(--primary-color);
    }

    /* Icon */
    .faq-icon {
      flex-shrink: 0;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s ease;
    }

    .faq-icon svg {
      width: 100%;
      height:100%;
      stroke: var(--gray-color);
      transition: all 0.3s ease;
      transform: rotate(0deg);
    }

    .faq-item.faq-active .faq-icon svg {
      stroke: var(--primary-color);
      transform: rotate(180deg);
    }

    /* Answer Panel */
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.3s ease;
    }

    .faq-item.faq-active .faq-answer {
      max-height: 400px;
    }

    .faq-answer-inner {
      padding: 0 24px 22px;
      font-size: 16px;
      color: var(--gray-color);
      line-height: 1.75;
    }

    /* Pagination */
    .faq-pagination {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 44px;
    }

    .faq-page-btn {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      border: 1px solid #e5e7eb;
      background: #fff;
      cursor: pointer;
      font-size: 14px;
      font-weight: 500;
      color: var(--gray-color);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
      font-family: 'DM Sans', sans-serif;
    }

    .faq-page-btn:hover {
      border-color: var(--primary-color);
      color: var(--primary-color);
    }

    .faq-page-btn.faq-page-active {
      background: var(--primary-color);
      border-color: var(--primary-color);
      color: #fff;
      font-weight: 700;
    }

    .faq-page-btn svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .faq-section {
        padding: 40px 16px 60px;
      }

      .faq-question {
        padding: 18px 18px;
      }
.faq-question-text{
  font-size: 16px;
}
      .faq-answer-inner {
        padding: 0 18px 18px;
        font-size: 14px;
      }
      

      .faq-title {
        font-size: 22px;
      }
      
    .faq-subtitle{
      font-size: 14px;
    }
    }


/* ===================================
    FAQ CSS END
=================================== */






/* ===================================
    Terms and Conditions CSS START
=================================== */

.terms_title{
      font-size: 20px;
    color: var(--dark-color);
    margin-bottom: 6px;
    font-weight: 700;
}

.terms_subtitle{
     font-size: 16px;
    color: var(--gray-color);
    font-weight: 400;
    margin-bottom: 20px;
}


.main_terms_container{
  padding: 36px 0;
}
.privacy_list{
   font-size: 16px;
    color: var(--gray-color);
    font-weight: 400;
}

  /* Responsive */
    @media (max-width: 992px) {
      
  .terms_subtitle{
     font-size: 14px;
  }
  .privacy_list{
    font-size: 14px; 
  }
  .terms_title{
      font-size: 16px;
  }
    }


/* ===================================
    Terms and Conditions CSS END
=================================== */
