/* =============================================
   BASE STYLES
   ============================================= */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}
html {
  font-family: 'Urbanist', Arial, Helvetica, sans-serif;
}
body {
  font-family: 'Urbanist', Arial, Helvetica, sans-serif;
  overflow-y: auto !important; /* ← yeh zaroori hai sticky ke liye */
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Urbanist', sans-serif;
}
img {
  max-width: 100%;
  height: auto;
}
iframe {
  max-width: 100%;
}
.about-us {
  background-color: #fff;
  color: #0a1e3f;
  line-height: 1.6;
}

/* =============================================
   STICKY HEADER (FIXED)
   ============================================= */
.custom-header {
  position: fixed;           /* ← sticky ki jagah fixed use karo */
  top: 0;
  left: 0;
  width: 100%;
  background: #edf2fa;
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: visible !important;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}
.custom-header .container,
.custom-header .navbar,
.custom-header .container-fluid {
  overflow: visible !important;
}

/* When scrolled */
.custom-header.scrolled {
  background: #fff !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12) !important;
  padding: 8px 0;
}

/* ── Page ka content header ke neeche se start ho ── */
.header-spacer {
  height: 90px; /* header ki approximate height */
}
@media (max-width: 991px) {
  .header-spacer {
    height: 70px;
  }
}

.navbar-nav .nav-link {
  font-weight: 600;
  padding: 8px 15px;
  color: #10244b;
  transition: color 0.2s ease;
}
.navbar-nav .nav-link:hover {
  color: #2d6cdf;
}
.custom-header.scrolled .nav-link {
  color: #10244b !important;
  font-weight: 600;
}

/* ---- Dropdown hover (desktop only) ---- */
@media (min-width: 992px) {
  .custom-header .dropdown:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
    animation: dropFadeIn 0.2s ease;
  }
}
@keyframes dropFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.custom-header .dropdown-menu {
  border: 1px solid #e0e6ed;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
  padding: 8px 4px;
  min-width: 260px;
  background: #fff;
  z-index: 1050;
  overflow: visible;
}
.custom-header .dropdown-item {
  font-size: 14px;
  font-weight: 500;
  color: #10244b;
  padding: 9px 16px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.custom-header .dropdown-item:hover,
.custom-header .dropdown-item.active {
  background: #eef3fc;
  color: #2d6cdf;
}

/* ---- Appointment button ---- */
.appointment-btn {
  background: #4a7cd2;
  color: #fff !important;
  font-weight: bold;
  border-radius: 5px;
  padding: 6px 12px;
  text-decoration: none;
  white-space: nowrap;
}

.logo {
  width: 20%;
}
.logo img {
  width: 120%;
  transition: all 0.3s ease;
}
.custom-header.scrolled .logo img {
  width: 100%;
}

/* Two-line hamburger icon */
.two-line-menu {
  width: 25px;
  height: 18px;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.two-line-menu:hover {
  transform: scale(1.1);
}
.two-line-menu::before,
.two-line-menu::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #000;
  border-radius: 2px;
  transition: background 0.3s ease;
}
.two-line-menu::before { top: 0; }
.two-line-menu::after  { bottom: 0; }
.custom-header.scrolled .two-line-menu::before,
.custom-header.scrolled .two-line-menu::after {
  background: #10244b;
}

button.navbar-toggler.ms-auto.d-lg-none {
  border: none;
}

/* Mobile responsive */
@media (max-width: 991px) {
  .logo {
    width: 50%;
  }
  .logo img {
    width: 100%;
  }
  .custom-header.scrolled {
    padding: 5px 0;
  }
}
/* =============================================
   HERO SECTION
   ============================================= */

.hero-section {
  padding: 20px 20px;
  position: relative;
  background: #edf2fa;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 600;
  margin: 15px 0;
  color: #0a1f44;
  letter-spacing: -0.027em;
  line-height: 1.15;
}

.hero-text p {
  font-size: 1rem;
  color: #1c1c1c;
  margin-top: 15px;
  margin-bottom: 25px;
}

.hero-text span {
  font-size: 18px;
  font-weight: 600;
  color: #4a7cd2;
}

.welcome {
  margin: 10px 0;
}

.hero-image {
  position: relative;
  overflow: hidden;
}

.hero-image img {
  max-width: 100%;
  width: 75%;
  border-radius: 20px;
  display: block;
}

.hero-image h4 {
  font-size: 20px;
}

.hero-image .clocks {
  font-size: 60px;
}

.overlay-box {
  position: absolute;
  padding: 16px 20px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  max-width: calc(100% - 20px);
}

.opening-hours {
  top: 45%;
  right: 3%;
  background-color: #000a5b;
  color: #fff;
}

.call-box {
  bottom: 20px;
  left: 10px;
  background-color: #fff;
  color: #0a1f44;
}

.call-box span {
color: #343131;
    font-weight: 500;
}

/* =============================================
   MARQUEE
   ============================================= */

.marquee-section {
  width: 100%;
  overflow: hidden;
  background: linear-gradient(90deg, #eef3f8, #ffffff, #eef3f8);
  padding: 18px 0;
  border-top: 1px solid #e0e6ed;
  border-bottom: 1px solid #e0e6ed;
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marqueeMove 40s linear infinite;
  will-change: transform;
}

.marquee-item {
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 600;
  color: #2c3e50;
  background: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  white-space: nowrap;
  transition: 0.3s;
}

.marquee-item:hover {
  background: #2d6cdf;
  color: #fff;
  transform: translateY(-2px);
}

@keyframes marqueeMove {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-section:hover .marquee-track {
  animation-play-state: paused;
}

/* =============================================
   ABOUT US SECTION
   ============================================= */

.about-us-content {
  max-width: 1200px;
  margin: 80px auto 0;
  padding: 2rem 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}

.content {
  flex: 1 1 50%;
}

.content h2 {
  font-size: 44px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.content p {
     margin-bottom: 1.5rem;
    color: #101010;
    font-weight: 500;
    font-size: 16px;
}

.features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #10244b;
  font-size: 16px;
}

.feature::before {
  content: '✔';
  color: #1e3a8a;
  font-weight: bold;
  flex-shrink: 0;
}

.column {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.columns {
  flex: 1;
  min-width: 250px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.column img,
.columns img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

/* =============================================
   BUTTONS
   ============================================= */

.btns {
  position: relative;
  display: inline-block;
  padding: 14px 32px;
  background: #0077ff;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
  transition: background 0.3s ease;
}

a.btns {
  text-decoration: none !important;
}

.btns .text-wrap {
  display: block;
  position: relative;
  height: 1.2em;
  line-height: 1.2em;
  overflow: hidden;
}

.btns .text1,
.btns .text2 {
  display: block;
  color: #fff;
  transition: transform 0.4s ease;
}

.btns .text1 {
  transform: translateY(0);
}

.btns .text2 {
  transform: translateY(100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.btns:hover {
  background: #0a1f44;
}

.btns:hover .text1 { transform: translateY(-100%); }
.btns:hover .text2 { transform: translateY(0); }

/* =============================================
   VISION / SERVICES SECTION
   ============================================= */

.vision-section {
  padding: 80px 20px;
  background: #f4f7fb;
  text-align: center;
}

.sub-heading {
  color: #005eff;
  font-size: 14px;
  letter-spacing: 1px;
}

.main-heading {
  font-size: 36px;
  font-weight: 650;
  margin-bottom: 30px;
}

.vision-tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 35px;
}

.tab {
  width: 140px;
  height: 95px;
  background: #f5f6f8;
  border-radius: 14px;
  border: 1px solid #ddd;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
  padding: 12px;
}

.tab i {
  font-size: 22px;
  color: #8a94a6;
  margin-bottom: 6px;
  display: block;
}

.tab span {
    font-size: 14px;
    display: block;
    font-weight: 400;
    color: #181919;
}

.tab.active {
  background: #e6f0ff;
  border: 2px solid #2d6cdf;
}

.tab.active i { color: #2d6cdf; }

.vision-box {
  display: flex;
  max-width: 1000px;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.vision-left {
  width: 50%;
  height: 320px;
  position: relative;
  overflow: hidden;
}

.vision-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay-text {
  position: absolute;
  bottom: 15px;
  left: 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.vision-right {
  width: 50%;
  padding: 40px;
}

.small-title {
  font-size: 14px;
  color: #8a94a6;
  margin-bottom: 15px;
  font-weight: 600;
}

#checkboxContainer label {
     display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #2c3e50;
    cursor: pointer;

}

#checkboxContainer input {
  margin-right: 10px;
  flex-shrink: 0;
}

.whatsapp-btn {
  margin-top: 20px;
  background: #2d6cdf;
  color: #fff;
  padding: 12px 22px;
  border-radius: 30px;
  border: none;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.3s;
}

.whatsapp-btn:hover { background: #1a55c0; }

/* Vision box — default hidden */
.vision-box { display: none; }
.vision-box.show { display: flex; }

/* Result Card */
.result-card {
  display: none;
  max-width: 1000px;
  margin: 20px auto 0;
  background: #0f2d6b;
  border-radius: 18px;
  padding: 36px 40px;
  text-align: left;
}
.result-card.show { display: block; }
.result-card-top {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.result-card-top i { color: #7ab3ff; font-size: 18px; }
.result-card-top span {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; color: #7ab3ff;
  text-transform: uppercase;
}
.result-card h3 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700; color: #fff; margin: 0 0 14px;
}
.result-card p { font-size: 15px; color: #b0c8e8; line-height: 1.7; margin: 0 0 24px; }
.result-card-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.rbtn-primary {
  background: #fff; color: #0f2d6b;
  border: none; border-radius: 30px;
  padding: 12px 28px; font-size: 15px; font-weight: 700;
  cursor: pointer; transition: background 0.2s;
}
.rbtn-primary:hover { background: #e8f0fe; }
.rbtn-secondary {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 30px; padding: 12px 26px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
}
.rbtn-secondary:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

@media (max-width: 768px) {
  .result-card { padding: 24px 20px; }
}

/* =============================================
   SPECIALIST / TEAM SECTION
   ============================================= */

.specialist-section { padding: 15px 0; }

.spec-wrap {
  display: flex;
  gap: 60px;
  align-items: center;
  background: #fff;
  border-radius: 16px;
  padding: 50px 55px;
  min-width: 0;
}

.spec-img { flex: 0 0 350px; }

.spec-img img {
  width: 100%;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}

.spec-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #2d6cdf;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.spec-title {
  font-size: 38px;
  font-weight: 700;
  color: #0a1f44;
  line-height: 1.2;
  margin-bottom: 8px;
}

.spec-title span { color: #2d6cdf; }

.spec-subtitle {
    font-size: 16px;
    color: #242527;
    margin-bottom: 22px;
    font-weight: 600;
}

.highlight-bar {
  background: #1a3a7a;
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  min-width: 0;
  flex-wrap: wrap;
}

.highlight-bar .highlight-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 16px;
}

.highlight-bar h4 {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.highlight-bar p {
  font-size: 14px;
  color: #b0c4e8;
  margin: 0;
}

.cred-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cred-card {
  background: #daeaf7;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  min-width: 0;
}

.cred-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #c3daef;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #2d6cdf;
  font-size: 14px;
}

.cred-card h5 {
  font-size: 13px;
  font-weight: 700;
  color: #0a1f44;
  margin: 0 0 4px;
}

.cred-card p {
font-size: 14px;
    color: #303132;
    margin: 0;
    font-weight: 500;
}

/* =============================================
   FAQ SECTION
   ============================================= */

.faqs-text h2 {
  color: #10244b;
  font-weight: 600;
  font-size: 44px;
}

.faqs {
  padding: 80px 50px;
}

.faqs-text span {
  font-size: 16px;
  font-weight: 600;
  color: #4a7cd2;
}

.accordians {
  padding: 83px 30px;
}

/* =============================================
   VIDEO SECTION
   ============================================= */

.video-section {
  position: relative;
  width: 100%;
  height: 600px;
  background-color: #f0f0f0;
  overflow: hidden;
  margin-bottom: -50px;
  border-radius: 25px;
}

.video-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* =============================================
   REVIEWS / TESTIMONIALS
   ============================================= */

.ss-review {
  background: #f5f9ff;
  padding: 60px 0;
}

.ss-box {
  width: 92%;
  margin: auto;
  background: #fff;
  border-radius: 18px;
  padding: 35px;
  display: flex;
  gap: 40px;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  min-width: 0;
}

.ss-google { width: 260px; flex-shrink: 0; min-width: 0; }

.ss-g-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid #e3ecff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #3b6ef5;
  font-weight: 700;
  margin-bottom: 15px;
}

.ss-google h3 { margin: 0 0 10px; font-size: 18px; }

.ss-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.ss-rating .big { font-size: 28px; font-weight: 700; }
.ss-rating .stars { color: #fbbc04; }

.ss-powered {
  font-size: 13px;
  color: #7d8ca6;
  margin-bottom: 14px;
}

.ss-powered img { width: 18px; vertical-align: middle; }

.ss-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0b57d0;
  color: #fff;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 14px;
}

.ss-btn img { width: 18px; }

.ss-slider { flex: 1; position: relative; overflow: hidden; min-width: 0; }

.ss-track {
  display: flex;
  gap: 22px;
  will-change: transform;
}

.ss-card {
  min-width: 280px;
  max-width: 320px;
  flex-shrink: 0;
  background: #eaf2ff;
  border-radius: 16px;
  padding: 20px;
}

.ss-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-width: 0;
}

.ss-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #c7d9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 10px;
  flex-shrink: 0;
}

.ss-head > div { display: flex; align-items: center; gap: 10px; min-width: 0; }
.ss-head h4   { margin: 0; font-size: 15px; }
.ss-head span { font-size: 12px; color: #7d8ca6; }

.gmini { width: 18px; flex-shrink: 0; }

.ss-stars { color: #fbbc04; margin: 10px 0; }

.ss-card p { font-size: 14px; color: #344767; line-height: 1.6; }

/* =============================================
   VISIT BAR
   ============================================= */

.visit-bar {
  background: #daeaf7;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  max-width: 70%;
  margin: 32px auto;
  padding: 42px 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.visit-info {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.pin-icon {
  width: 36px;
  height: 36px;
  background: #e8f0fe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.visit-text .label {
  font-size: 18px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 3px;
}

.visit-text .address {
    font-size: 18px;
    color: #000000;
    font-weight: 500;
    line-height: 1.5;
}

.visit-text .phone {
  font-size: 14px;
  color: #1a56db;
  font-weight: 500;
  margin-top: 2px;
}

.btn-book-top {
  background: #1a3a6e;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 22px;
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-book-top:hover { background: #122d58; color: #fff; }

/* =============================================
   SOLUTIONS SECTION
   ============================================= */

.solutions-section {
  max-width: 1000px;
  margin: 0 auto 60px;
  padding: 0 16px;
}

.solutions-header {
  text-align: center;
  margin-bottom: 36px;
}

.solutions-header .overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 10px;
}

.solutions-header h2 {
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
  line-height: 1.2;
}

.solutions-header p {
  font-size: 15px;
  color: #6b7280;
  max-width: 360px;
  margin: 0 auto;
  line-height: 1.6;
}

.tabs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.tab-card {
  background: #fff;
  border: 1.5px solid #e5eaf2;
  border-radius: 14px;
  padding: 24px 20px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
}

.tab-card:hover {
  border-color: #c7d4ea;
  box-shadow: 0 4px 18px rgba(26, 58, 110, 0.08);
}

.tab-card.active {
  border-color: #1a3a6e;
  box-shadow: 0 4px 24px rgba(26, 58, 110, 0.12);
}

.tab-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 6px;
  min-width: 0;
}

.tab-emoji {
  font-size: 26px;
  line-height: 1;
}

.toggle-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid #e2e8f0;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s;
}

.tab-card.active .toggle-btn {
  background: #1a3a6e;
  border-color: #1a3a6e;
}

.toggle-btn svg { transition: transform 0.3s; }
.tab-card.active .toggle-btn svg { transform: rotate(180deg); }

.tab-category {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 6px;
}

.tab-title {
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  line-height: 1.35;
  margin-bottom: 0;
}

.tab-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.tab-card.active .tab-body {
  max-height: 400px;
  padding-bottom: 20px;
}

.tab-body-inner { padding-top: 14px; }

.tab-description {
     font-size: 14.5px;
    color: #424242;
    line-height: 1.65;
    margin-bottom: 14px;
    font-weight: 450;
}

.tag-chip {
  display: inline-block;
  background: #e8f0fe;
  color: #1a3a6e;
  font-size: 11.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #1a3a6e;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 18px;
  font-family: 'Urbanist', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
}

.btn-book:hover { background: #122d58; color: #fff; }

/* =============================================
   ARTICLES SECTION
   ============================================= */

.articles-section {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 16px 60px;
}

.section-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 28px;
  gap: 12px;
}

.section-top-left .overline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #6b7280;
  margin-bottom: 6px;
}

.section-top-left h2 {
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  color: #111827;
  line-height: 1.2;
}

.view-all {
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.2s;
  padding-bottom: 4px;
}

.view-all:hover { color: #1a3a6e; }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.article-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.10);
}

.card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  background: #e5eaf2;
}

.card-body {
  padding: 18px 20px 22px;
}

.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.read-time {
  font-size: 12.5px;
  color: #9ca3af;
}

.card-title {
  font-size: 15.5px;
  font-weight: 700;
  color: #111827;
  line-height: 1.4;
  margin-bottom: 10px;
}

.card-excerpt {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
  background-color: #071630;
  color: #ffffff;
  padding: 70px 0;
  overflow: hidden;
}

.footer-copyright {
  background-color: #071630;
  border-top: 1px solid grey;
}

.copyright {
  align-items: center;
  margin: 0 50px;
  padding: 10px 30px;
}

.copy-text p {
  color: white;
  margin-bottom: 0;
}

.footer .social-icons a {
  color: #ffffff99;
  margin: 0 10px;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.footer .social-icons a:hover { color: #f1f1f1; }

.footer h5 {
  font-size: 18px;
  margin-bottom: 20px;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li { margin-bottom: 10px; }

.footer ul li a {
  color: #ffffff99;
  text-decoration: none;
  transition: color 0.3s;
}

.footer ul li a:hover { color: #ffffffcc; }

.footer .contact-info .contact-item {
  margin-bottom: 15px;
  color: #ffffff99;
}

.footer .contact-info .contact-item strong {
  color: #fff;
  font-weight: 700;
}

.footer .contact-info .contact-item i {
  color: #4a7cd2;
}

.email a {
  text-decoration: none;
  color: #ffffff99;
}

.footer-content { color: #ffffff99; }

.logo1 { width: 200px; }
.logo1 img { width: 100%; }

.footer .service-icons i {
  margin-right: 10px;
  color: #1d73e8;
}

/* =============================================
   OVERLAY & RIGHT MODAL
   ============================================= */

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 1000;
  background: rgba(0,0,0,0.3);
}

.right-modal {
  position: fixed;
  top: 0;
  right: -500px;
  width: 500px;
  height: 100%;
  background: rgb(0 10 91 / 90%);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  z-index: 1001;
  visibility: hidden;
  pointer-events: none;
}

.right-modal.active {
  right: 0;
  visibility: visible;
  pointer-events: all;
}

.scroll-bar {
  height: 100vh;
  display: flow-root;
  overflow-y: auto;
  padding: 20px 50px;
}

.close-btn {
  font-size: 24px;
  cursor: pointer;
  color: #fff;
  z-index: 1002;
}

.main-menu {
  display: flex;
  justify-content: space-between;
  padding: 0 10px;
  align-items: center;
}

.logo-menu { width: 230px; }
.logo-menu img { width: 100%; }

.our-services {
  padding: 20px 10px;
  color: #fff;
}

ul.lists { padding-left: 0; }

.lists li a {
  text-decoration: none;
  color: rgb(154, 153, 153);
  font-weight: 600;
}

.lists li { list-style: none; padding: 0; }

.navbar-nav li a { padding: 0 12px !important; }

.timing {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
}

/* =============================================
   MISC
   ============================================= */

.cards h4 {
  font-size: 20px;
  color: #10244B;
  font-weight: 600;
  height: 60px;
}

span.fw-bold.mon {
  font-family: sans-serif;
  font-weight: 400 !important;
}

.btn-primary {
  background-color: #4a75f2;
  border: none;
  padding: 12px 25px;
  font-weight: 500;
  border-radius: 6px;
}

/* =============================================
   TABLET — max 992px
   ============================================= */

@media (max-width: 992px) {

  .hero-section { padding: 40px 20px; }
  .hero-text h1 { font-size: 2.4rem; }
  .overlay-box { font-size: 0.9rem; padding: 16px 20px; }

  .logo { width: 30%; }

  .about-us-content { margin-top: 50px; }
  .content h2 { font-size: 36px; }

  .faqs { padding: 60px 20px; }
  .faqs-text h2 { font-size: 36px; }
  .accordians { padding: 30px 20px; }

  .video-section { height: 450px; }

  .main-heading { font-size: 26px; }
  .vision-box { flex-direction: column; }
  .vision-left, .vision-right { width: 100%; }
  .vision-left { height: 260px; }
  .vision-right { padding: 25px; }
  .tab { width: 120px; height: 90px; }

  .spec-wrap { gap: 30px; padding: 40px 30px; }
  .spec-img { flex: 0 0 280px; }
  .spec-title { font-size: 30px; }

  .visit-bar { max-width: 90%; padding: 28px 30px; }

  .solutions-section { max-width: 90%; }

  .ss-box { flex-direction: column; }
  .ss-google { width: 100%; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
}

/* =============================================
   MOBILE — max 768px
   ============================================= */

@media (max-width: 768px) {

  .container { padding-left: 16px; padding-right: 16px; }

  .logo { width: 55%; }

  .hero-section { padding: 0px 16px }

  .hero-text h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 12px 0;
  }

  .hero-text p {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .hero-text span { font-size: 14px; }

  .hero-image { margin-top: -45px; overflow: hidden; max-width: 100%; }

  .hero-image img { border-radius: 14px;
  
              max-width: 100%;
        width: 100%;
  }

  .hero-image .clocks { font-size: 36px; }

  .opening-hours { display: none !important; }

  .call-box {
    bottom: 10px;
    left: 10px;
    padding: 14px 16px !important;
    border-radius: 12px;
    max-width: calc(100% - 20px);
    right: auto;
  }

  .call-box h4 { font-size: 15px; }
  .call-box span { font-size: 12px; }

  .marquee-track { gap: 16px; animation-duration: 30s; }
  .marquee-item { font-size: 13px; padding: 6px 14px; }

  .about-us-content { margin-top: 40px; padding: 1rem 16px; }

  .content h2 { font-size: 28px; line-height: 1.3; }
  .content p { font-size: 15px; }

  .features { grid-template-columns: 1fr; gap: 10px; }
  .feature { font-size: 14px; }

  img.large-img {
        
        width: 90%;
        height: 250px;
        margin: 20px 0;
        margin-left: 12px;
      }

  .vision-section { padding: 50px 15px; }

  .main-heading { font-size: 22px; line-height: 1.4; margin-bottom: 20px; }

  .vision-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    padding-bottom: 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .vision-tabs::-webkit-scrollbar { display: none; }

  .tab {
    min-width: 115px;
    width: 115px;
    height: 88px;
    flex: 0 0 auto;
    padding: 10px 8px;
  }

  .tab i { font-size: 18px; }
  .tab span { font-size: 11px; line-height: 1.3; }

  .vision-box { border-radius: 14px; max-width: 100%; }
  .vision-left { height: 220px; max-width: 100%; width: 100%; }
  .vision-right { padding: 20px 16px; max-width: 100%; width: 100%; }
  .overlay-text { font-size: 12px; left: 14px; bottom: 12px; }
  .small-title { font-size: 11px; }

  #checkboxContainer label { font-size: 13px; line-height: 1.4; margin-bottom: 10px; }

  .whatsapp-btn {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 14px;
    border-radius: 12px;
  }

  .specialist-section { padding: 0px 0; }
  .spec-wrap {
    flex-direction: column;
    padding: 24px 16px;
    gap: 24px;
    max-width: 100%;
    width: 100%;
  }
  .spec-img { max-width: 100%; flex: unset; }
  .spec-title { font-size: 26px; }
  .cred-grid { grid-template-columns: 1fr; }

  .faqs { padding: 40px 16px 20px; }
  .faqs-text h2 { font-size: 28px; }
  .faqs-text span { font-size: 14px; }
  .accordians { padding: 20px 16px; }

  .video-section {
    height: 240px;
    border-radius: 14px;
    margin-bottom: -30px;
    margin-top: 30px;
  }

  .ss-review { padding: 40px 0; }
  .ss-box {
    flex-direction: column;
    padding: 20px 16px;
    gap: 24px;
    width: 94%;
  }
  .ss-google { width: 100%; }
  .ss-google h3 { font-size: 16px; }
  .ss-card { min-width: 0; width: 100%; max-width: 100%; }
  .ss-slider { width: 100%; overflow: hidden; }
  .ss-track { gap: 14px; }

  .visit-bar {
    max-width: calc(100% - 32px);
    width: calc(100% - 32px);
    flex-direction: column;
    align-items: flex-start;
    margin: 20px auto;
    padding: 20px 18px;
    border-radius: 12px;
  }

  .visit-text .label { font-size: 16px; }
  .visit-text .address { font-size: 14px; }

  .btn-book-top {
    width: 100%;
    text-align: center;
    font-size: 15px;
    padding: 14px;
  }

  .solutions-section { max-width: 100%; padding: 0 16px; width: 100%; }
  .solutions-header h2 { font-size: 24px; }
  .solutions-header p { font-size: 14px; }
  .tabs-grid { grid-template-columns: 1fr; }

  .tab-card { padding: 20px 18px; max-width: 100%; width: 100%; }
  .tab-title { font-size: 15px; }
  .tab-description { font-size: 14px; }

  .btn-book {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 14px;
  }

  .articles-section { padding: 20px 16px 40px; max-width: 100%; width: 100%; }
  .cards-grid { grid-template-columns: 1fr; }
  .section-top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-top-left h2 { font-size: 24px; }
  .card-title { font-size: 15px; }

  .footer { padding: 40px 0; }

  .footer .col-md-3,
  .footer .col-md-2,
  .footer .col-md-4 { margin-bottom: 28px; }

  .footer h5 { font-size: 16px; margin-bottom: 14px; }
  .footer ul li a { font-size: 14px; }
  .footer .contact-info .contact-item { font-size: 14px; }

  .logo1 { width: 160px; }
  .footer-content p { font-size: 14px; }

  .copyright { margin: 0; padding: 10px 16px; }
  .copy-text p { font-size: 13px; }
  .copy-img { margin-top: 10px; }

  .right-modal { width: 100%; right: -100%; }
  .scroll-bar { padding: 20px 24px; }
  .logo-menu { width: 170px; }

  .hero-text .btns,
  .content .btns { width: 100%; text-align: center; }

  .footer-copyright .row { margin: 0; }
  .copy-img img { max-width: 100%; }
  .navbar-collapse { max-width: 100%; }

  input, button, a.btns, .whatsapp-btn, .btn-book, .btn-book-top { max-width: 100%; }
}

/* =============================================
   SMALL MOBILE — max 480px
   ============================================= */

@media (max-width: 480px) {

  .hero-text h1 { font-size: 1.7rem; }
  .hero-text p { font-size: 0.9rem; }

  .btns { padding: 12px 20px; font-size: 15px; width: 100%; text-align: center; }

  .main-heading { font-size: 19px; }

  .tab { min-width: 100px; width: 100px; height: 82px; padding: 8px 6px; }
  .tab i { font-size: 16px; }
  .tab span { font-size: 10px; }

  .vision-left { height: 190px; }
  .vision-right { padding: 16px 12px; }
  #checkboxContainer label { font-size: 12px; }

  .spec-wrap { padding: 16px 12px; }
  .spec-title { font-size: 23px; }
  .spec-subtitle { font-size: 13px; }

  .highlight-bar { flex-wrap: wrap; }

  .faqs { padding-left: 12px; padding-right: 12px; max-width: 100%; }
  .accordians { padding-left: 12px; padding-right: 12px; max-width: 100%; }

  .video-section { height: 200px; }

  .ss-box { padding: 16px 12px; }
  .ss-card { min-width: 0; width: 100%; padding: 16px; }
  .ss-card p { font-size: 13px; }

  .card-title { font-size: 14px; }
  .card-excerpt { font-size: 12px; }

  .solutions-header h2 { font-size: 22px; }
  .tab-title { font-size: 14px; }
  .tab-chip-wrap { overflow: hidden; }
  .tag-chip { max-width: 100%; white-space: normal; }

  .footer h5 { font-size: 15px; }
  .footer ul li a { font-size: 13px; }

  .scroll-bar { padding: 20px 16px; }
  .logo-menu { width: 140px; }

  .vision-box { max-width: 100%; }
}


/*about page css start*/
/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Global */
body {
    font-family: 'Poppins', sans-serif;
}

/* ================= HERO ================= */
.about-hero {
    background: linear-gradient(135deg, #0f2a63, #1e40af);
    color: #fff;
    padding: 70px 0;
}

.about-hero h1 {
    font-size: 34px;
    font-weight: 700;
}

.about-hero p {
    opacity: 0.9;
}

/* ================= ABOUT ================= */
.tag {
    color: #2563eb;
    font-weight: 600;
    letter-spacing: 1px;
}

.small-img,
.medium-img,
.large-img {
    width: 100%;
    border-radius: 12px;
    transition: 0.3s;
}

.small-img:hover,
.medium-img:hover,
.large-img:hover {
    transform: scale(1.03);
}

/* ================= BUTTON ================= */
.btn-main {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 28px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

/* ================= SPECIALIST ================= */
.spec-tag {
    color: #2563eb;
    font-weight: 600;
}

.spec-title {
    font-size: 28px;
    font-weight: 700;
}

.spec-title span {
    color: #2563eb;
}

.spec-subtitle {
    color: #555;
    margin-bottom: 15px;
}

.highlight-box {
    background: #eef2ff;
    padding: 18px;
    border-radius: 10px;
    margin: 20px 0;
    border-left: 4px solid #2563eb;
}

.cred-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.cred-card {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.cred-card:hover {
    transform: translateY(-5px);
}

/* ================= PREMIUM INFO SECTION ================= */
.premium-info {
    background: linear-gradient(135deg, #f8fbff, #eef2ff);
    padding: 80px 0;
}

/* Titles */
.section-title {
    font-size: 26px;
    font-weight: 700;
    color: #0f2a63;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 55px;
    height: 3px;
    background: #2563eb;
    position: absolute;
    left: 0;
    bottom: -6px;
}

/* Blocks */
.info-block {
    margin-bottom: 45px;
}

/* Text */
.info-text {
    color: #444;
    line-height: 1.8;
    font-size: 15px;
}

/* Styled List */
.styled-list {
    padding-left: 0;
    list-style: none;
}

.styled-list li {
    margin-bottom: 12px;
    padding-left: 22px;
    position: relative;
    font-size: 15px;
    color: #333;
}

.styled-list li::before {
    content: "✔";
    color: #2563eb;
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Highlight Box */
.highlight-line {
    background: #fff;
    border-left: 4px solid #2563eb;
    padding: 16px;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* Grid List */
.grid-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    font-size: 14px;
}

.grid-list div {
    background: #fff;
    padding: 12px;
    border-radius: 8px;
    transition: 0.3s;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.grid-list div:hover {
    transform: translateY(-3px);
}

/* ================= CTA ================= */
.cta-box {
    background: #eef2ff;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    margin-top: 30px;
}

.premium-cta {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
}

.premium-cta a {
    background: #fff;
    color: #2563eb;
    padding: 10px 22px;
    border-radius: 6px;
    display: inline-block;
    margin-top: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.premium-cta a:hover {
    background: #e0e7ff;
}

/* Address */
.address {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    opacity: 0.9;
}
@media (max-width: 768px) {
  .about-us {
    margin-top: 0 !important;
    padding-top: 15px !important;
  }

  .about-us .row {
    margin-top: 0 !important;
  }

  .about-us-content {
    padding-top: 10px !important;
  }
}
/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {

    .about-hero h1 {
        font-size: 26px;
    }

    .spec-title {
        font-size: 22px;
    }

    .grid-list {
        grid-template-columns: 1fr;
    }

    .cred-grid {
        grid-template-columns: 1fr;
    }
}


/*contact page css*/

/* ================= CONTACT HERO ================= */
.contact-hero {
    background: linear-gradient(135deg, #0f2a63, #1e40af);
    color: #fff;
    padding: 70px 0;
}

.contact-hero h1 {
    font-size: 34px;
    font-weight: 700;
}

/* ================= CONTACT SECTION ================= */
.contact-section {
    padding: 80px 0;
    background: #f8fbff;
}

/* Info Box */
.contact-info h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.contact-info p {
    color: #555;
    margin-bottom: 20px;
}

.info-box {
    background: #fff;
    padding: 18px;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.info-box h5 {
    margin-bottom: 5px;
    font-weight: 600;
}

.info-box a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

/* Form */
.contact-form {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.contact-form h2 {
    margin-bottom: 20px;
    font-weight: 700;
}

/* Inputs */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #2563eb;
    outline: none;
}

/* Button */
.contact-form button {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 8px;
    width: 100%;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 26px;
    }
}


/*sub menu service*/

/* ===== Service Page ===== */
/* ===== Service Page ===== */

/* ── Hero ── */
.service-hero {
    background: linear-gradient(135deg, #0f2a63, #1e40af);
    color: #fff;
    padding: 60px 0;
}
.service-hero h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}
.service-hero p {
    font-size: 16px;
    opacity: 0.85;
}

/* ── Detail Section ── */
.service-detail {
    padding: 55px 0;
    background: #fff;
}

/* ── Image: no extra space ── */
.service-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    display: block;
    flex-shrink: 0;
}

/* ── Doctor Card ── */
.doctor-card {
    background: #f0f6ff;
    border: 1px solid #bfdbfe;
    border-radius: 12px;
    padding: 18px 20px;
}
.doctor-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #6b7280;
    margin-bottom: 4px;
}
.doctor-name {
    font-size: 16px;
    font-weight: 700;
    color: #0f2a63;
    margin-bottom: 3px;
}
.doctor-creds {
    font-size: 13px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 12px;
}
.clinic-badge {
    display: inline-block;
    background: #fffbeb;
    border: 1px solid #fcd34d;
    color: #92400e;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 13px;
    border-radius: 20px;
}
.address-text {
    font-size: 13px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ── Right Content ── */
.svc-heading {
    font-size: 24px;
    font-weight: 700;
    color: #0f2a63;
    line-height: 1.35;
    margin-bottom: 14px;
}
.svc-intro {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 6px;
}
.svc-block {
    margin-top: 22px;
}
.svc-block h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 8px;
}
.svc-block p {
    font-size: 15px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 0;
}

/* ── Buttons ── */
.btn-service {
    display: inline-block;
    background: #2563eb;
    color: #fff !important;
    padding: 11px 22px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s, transform 0.15s;
    border: none;
}
.btn-service:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    color: #fff !important;
    text-decoration: none;
}
.btn-wa {
    display: block;
    text-align: center;
    width: 100%;
    padding: 12px 16px;
}

/* ── Lens Chip ── */
.lens-chip {
    display: inline-block;
    background: #eff6ff;
    color: #1e40af;
    border: 1px solid #bfdbfe;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13.5px;
    font-weight: 600;
    margin-top: 18px;
}

/* ── Why Choose Us ── */
.service-extra {
    background: linear-gradient(135deg, #eef5ff 0%, #dbeafe 60%, #f8fbff 100%);
    padding: 60px 0;
}
.service-extra h2 {
    font-weight: 700;
    color: #0f2a63;
    margin-bottom: 8px;
}
.extra-box {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: #fff;
    padding: 20px;
    border-radius: 12px;
    font-weight: 500;
    font-size: 15px;
    height: 100%;
    transition: transform 0.25s, box-shadow 0.25s;
}
.extra-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(37, 99, 235, 0.22);
}

/* ── Other Services ── */
.other-services {
    padding: 55px 0;
    background: #f9fafb;
}
.other-card {
    display: block;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid #e0e7ef;
    border-radius: 8px;
    color: #1e40af;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s, transform 0.18s;
}
.other-card:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    border-color: #2563eb;
    transform: translateY(-2px);
    text-decoration: none;
    color:#fff;
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .service-hero { padding: 45px 0; }
    .service-hero h1 { font-size: 24px; }
    .service-img { height: 220px; }
    .service-detail { padding: 36px 0; }
    .svc-heading { font-size: 20px; }
    .col-md-5 { margin-bottom: 0; }
}






/* =============================================
   OPTIMIZATION PATCH — style.css ke NEECHE paste karo
   Yeh sab fixes client ke laptop issues solve karte hain
   ============================================= */

/* ── FLUID TYPOGRAPHY — clamp() ── */
/* Hero h1 — 60px fixed tha, ab screen ke hisaab se scale hoga */
.hero-text h1 {
  font-size: clamp(26px, 4.2vw, 58px) !important;
}

/* About h2 */
.content h2 {
  font-size: clamp(22px, 3.2vw, 44px) !important;
}

/* Vision section heading */
.main-heading {
  font-size: clamp(20px, 2.4vw, 32px) !important;
}

/* FAQ heading */
.faqs-text h2 {
  font-size: clamp(20px, 3vw, 44px) !important;
}

/* Specialist heading */
.spec-title {
  font-size: clamp(22px, 2.8vw, 38px) !important;
}

/* Solutions h2 */
.solutions-header h2 {
  font-size: clamp(22px, 2.6vw, 36px) !important;
}

/* Articles h2 */
.section-top-left h2 {
  font-size: clamp(20px, 2.4vw, 30px) !important;
}

/* ── STICKY HEADER — z-index boost ── */
/* AOS elements sometimes render over header — fix */
.custom-header {
  z-index: 1050 !important;
}

/* ── VIDEO SECTION — fluid height ── */
.video-section {
  height: clamp(240px, 45vw, 580px) !important;
}

/* ── ABOUT SECTION — margin fix ── */
.about-us-content {
  margin-top: -25px !important;
}

/* ── SPEC WRAP — fluid padding ── */
.spec-wrap {
  gap: clamp(20px, 4vw, 60px) !important;
  padding: clamp(24px, 3.5vw, 50px) clamp(20px, 4vw, 55px) !important;
}

/* ── FAQ PADDING — fluid ── */
.faqs {
  padding: clamp(40px, 5vw, 80px) clamp(20px, 4vw, 50px) !important;
}
.accordians {
  padding: clamp(30px, 5vw, 83px) clamp(16px, 2vw, 30px) !important;
}

/* ── COLUMN MIN-WIDTH FIX ── */
.column, .columns {
  min-width: min(250px, 100%) !important;
}

/* ── VISION BOX — hidden by default ── */
.vision-box { display: none; }
.vision-box.show { display: flex; }

/* ── RESULT CARD ── */
.result-card {
  display: none;
  max-width: 1000px;
  margin: 20px auto 0;
  background: #0f2d6b;
  border-radius: 18px;
  padding: clamp(20px, 3vw, 36px) clamp(20px, 4vw, 40px);
  text-align: left;
}
.result-card.show { display: block; }
.result-card-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.result-card-top i {
  color: #7ab3ff;
  font-size: 18px;
}
.result-card-top span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #7ab3ff;
  text-transform: uppercase;
}
.result-card h3 {
  font-size: clamp(16px, 2.2vw, 24px);
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
}
.result-card p {
  font-size: 15px;
  color: #b0c8e8;
  line-height: 1.7;
  margin: 0 0 24px;
}
.result-card-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.rbtn-primary {
  background: #fff;
  color: #0f2d6b;
  border: none;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.rbtn-primary:hover { background: #e8f0fe; }
.rbtn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 30px;
  padding: 12px 26px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.rbtn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
}

/* ── LAPTOP BREAKPOINT 1024px–1280px ── */
@media (max-width: 1280px) and (min-width: 993px) {
  .hero-text h1    { font-size: clamp(28px, 3.6vw, 50px) !important; }
  .content h2      { font-size: clamp(24px, 2.8vw, 38px) !important; }
  .faqs-text h2    { font-size: clamp(22px, 2.6vw, 36px) !important; }
  .spec-title      { font-size: clamp(22px, 2.4vw, 32px) !important; }
  .spec-img        { flex: 0 0 280px !important; }
  .visit-bar       { max-width: 85% !important; padding: 28px 36px !important; }
  .solutions-section { max-width: 95% !important; }
  .hero-image .clocks { font-size: 40px !important; }
  .overlay-box     { padding: 14px 18px !important; }
  .video-section   { height: clamp(280px, 40vw, 520px) !important; }
}

/* ── TABLET 768px–992px ── */
@media (max-width: 992px) {
  .hero-text h1    { font-size: clamp(24px, 3.8vw, 40px) !important; }
  .content h2      { font-size: clamp(22px, 3.2vw, 34px) !important; }
  .video-section   { height: clamp(220px, 42vw, 420px) !important; }
}

/* ── MOBILE 768px ── */
@media (max-width: 768px) {
  .result-card { padding: 22px 18px !important; }
  .rbtn-primary, .rbtn-secondary { width: 100%; text-align: center; justify-content: center; }
}

@media (max-width: 768px) {
  .footer ul {
    padding-left: 0;
  }

  .footer ul li {
    font-size: 14px;
    margin-bottom: 5px;
  }

  .footer h5 {
    font-size: 16px;
  }
}