/* VARIABLES */
:root{
    --bg:#ffffff; 
    --text:#111827; 
    --muted:#6b7280; 
    --primary:#0916e2;
    --accent:#0b8fef; 
    --max-width:1200px;
    --radius:12px; 
    --gap:1.25rem;
    --font-sans: 'Marcellus', serif;
  }
  
  /* BASE */
  *{box-sizing:border-box}
  html,body{height:100%;margin:0;font-family:var(--font-sans);color:var(--text);background:var(--bg);line-height:1.45; z-index: -1;position: relative;}
  .container{max-width:var(--max-width);margin:0 auto;padding:1rem}
  a{color:var(--primary);text-decoration:none}
  a:focus{outline:3px solid rgba(11,95,255,.2);outline-offset:2px}
  /* =============================
   Typography for Headings & Paragraphs
============================= */

/* Base font family for the site */
body {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
}
/* Base styles for the elements with animation */
.animate {
  opacity: 0;
  transform: translateY(30px); /* Start slightly below */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Animation Class: When the element is visible in the viewport */
.animate.is-visible {
  opacity: 1;
  transform: translateY(0); /* Move into normal position */
}

/* Optional: Add more animation styles for different types of elements */
/* Fade-in effect */
.animate.fade-in {
  opacity: 0;
  transform: translateY(20px);
}

.animate.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 1s ease-in, transform 1s ease-in;
}

/* Zoom-in effect */
.animate.zoom-in {
  opacity: 0;
  transform: scale(0.9);
}

.animate.zoom-in.is-visible {
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s ease-in, transform 1s ease-in;
}

/* Rotate-in effect */
.animate.rotate-in {
  opacity: 0;
  transform: rotate(10deg) translateY(20px);
}

.animate.rotate-in.is-visible {
  opacity: 1;
  transform: rotate(0) translateY(0);
  transition: opacity 1s ease-in, transform 1s ease-in;
}

/* Slide-in effect from left */
.animate.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
}

.animate.slide-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s ease, transform 1s ease;
}

/* Slide-in effect from right */
.animate.slide-in-right {
  opacity: 0;
  transform: translateX(30px);
}

.animate.slide-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}


/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  margin: 0 0 0.5rem 0;
  line-height: 1.2;
  color: #001f4d; /* dark navy for headings */
}

/* Individual heading sizes */
h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.3rem; }
h6 { font-size: 1.1rem; }

/* Section subtitle or secondary headings */
.subtitle, .section-subtitle {
  font-weight: 500;
  color: #0072c6; /* lighter blue accent */
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Paragraphs */
p {
  font-size: 1rem;
  color: #5E676D; /* dark grey for readability */
  margin-bottom: 1rem;
}

/* Small text / captions */
small {
  font-size: 0.85rem;
  color: #007cff;
}

/* Links */
a {
  color: #0072c6;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover {
  color: #001f4d;
}

/* Optional: Bold and highlight important words */
strong, b {
  font-weight: 600;
  color: #001f4d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
  h4 { font-size: 1.3rem; }
  h5 { font-size: 1.1rem; }
  h6 { font-size: 1rem; }
  p { font-size: 0.95rem; }
}

/* Container Grid */
.grid-container {
  display: grid;
  gap: 2rem; /* space between items */
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  align-items: stretch; /* equal height */
  margin: 2rem 0;
}

/* Grid Items: different spans */
.grid-item-2 {
  grid-column: span 2; /* spans 2 columns */
}

.grid-item-3 {
  grid-column: span 3; /* spans 3 columns */
}

.grid-item-4 {
  grid-column: span 4; /* spans 4 columns */
}

/* Optional: content inside grid items */
.grid-item-2,
.grid-item-3,
.grid-item-4 {
  background-color: #f5f5f5;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item-2:hover,
.grid-item-3:hover,
.grid-item-4:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .grid-item-4 { grid-column: span 2; }
  .grid-item-3 { grid-column: span 2; }
  .grid-item-2 { grid-column: span 1; }
}

@media (max-width: 768px) {
  .grid-item-4,
  .grid-item-3,
  .grid-item-2 {
    grid-column: span 1; /* all stack on mobile */
  }
}

  /* BUTTONS */
  .btn{display:inline-block;padding:.6rem 1rem;border-radius:8px;border:1px solid transparent;text-decoration:none}
  .btn.primary{background:var(--primary);color:#fff}
  .btn.outline{background:transparent;border-color:var(--primary);color:var(--primary)}
  .btn.small{padding:.45rem .9rem;display: contents;}
  /* Top Bar */
#head-top {
    background: var(--primary, #111);
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 0;
  }
  
  button#dark-toggle {
    font-size: 11px;
    font-weight: 700;
    border-radius: 16px;
    padding: 4px;
}

  /* Contact Info */
  .contact-mini a,
  .contact-mini span {
    margin-right: 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    letter-spacing: 1px;
    gap: 6px;
  }
  
  .contact-mini a:hover {
    color: #a9d3ff;
  }
  
  /* Social Icons */
  .social-mini a {
    margin-left: 15px;
    color: #fff;
    font-size: 19px;
    transition: .3s;
  }
  
  .social-mini a:hover {
    color: var(--primary, #b8860b);
  }
/* ===========================
   HEADER - GENERAL STYLES
=========================== */

.site-header {
  width: 100%;
  background: transparent;
  transition: all 0.3s ease;
  z-index: 900;
}

.header-inner {
  position: sticky;
  top: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 90%;
  margin: auto;
  padding: 0 20px;
}

/* Fixed header on scroll */
.site-header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  background: var(--bg, #fff);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .12);
  animation: headerSlideDown .35s ease forwards;
}

@keyframes headerSlideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

/* Logo */
.logo img {
  height: 50px;
  transition: 0.3s ease;
}

/* ===========================
   DESKTOP NAVIGATION
=========================== */

.site-nav .menu {
  list-style: none;
  display: flex;
  gap: 1.25rem;
  padding: 0;
  margin: 0;
}

.menu a {
  padding: 0.5rem 0.7rem;
  border-radius: 6px;
  font-weight: 500;
  color: var(--text);
  transition: 0.2s ease;
  text-decoration: none;
}

.menu a:hover,
.menu a.active {
  background: #eef6ff;
  color: var(--primary);
}

li.active a {
  color: blue;
  border-bottom: 2px blue solid;
  border-radius: 0px;
}

/* ===========================
   HAMBURGER BUTTON (Mobile Only)
=========================== */
/* ===========================
   HAMBURGER BUTTON STYLES (Mobile Only)
=========================== */

/* Hamburger Button Container */
#nav-toggle {
  display: none; /* Hidden by default on larger screens */
  width: 40px;
  height: 30px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10001; /* Ensure it is clickable over other elements */
}

/* Hamburger Button Bars */
#nav-toggle .bar {
  position: absolute;
  left: 0;
  width: 80%;
  height: 4px;
  background-color: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Positioning each bar */
#nav-toggle .bar:nth-child(1) {
  top: 0;
}

#nav-toggle .bar:nth-child(2) {
  top: 13px; /* Center bar */
}

#nav-toggle .bar:nth-child(3) {
  bottom: 0;
}

/* Animation for the active state (when clicked) */
#nav-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg);
  top: 13px; /* Move to center */
}

#nav-toggle.active .bar:nth-child(2) {
  opacity: 0; /* Hide the middle bar */
}

#nav-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 13px; /* Move to center */
}

/* ===========================
   MOBILE MENU (Visibility and Transition)
=========================== */
/* ===========================
   MOBILE MENU WITH BACKGROUND IMAGE
=========================== */

.site-nav .menu {
  position: fixed;
  top: 0;
  left: 0;
  flex-direction: column;
  padding: 1.5rem 1rem;
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none; /* Prevent interaction when hidden */
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 9999;
  position: absolute; /* Ensure the background remains fixed */
  top: 0;
  left: 0;
}

/* Show the menu when the 'open' class is added */
.site-nav .menu.open {
  transform: translateX(0); /* Slide the menu in */
  opacity: 1;
  pointer-events: auto;
  height: 100vh; /* Ensure the height is set to the full viewport height */
}

/* ===========================
   MENU LINKS STYLES
=========================== */

.menu a {
  padding: 1.2rem 2rem;
  text-align: center;
  transition: 0.3s ease; /* Smooth hover effect */
}

.menu a:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Add hover effect */
}

/* When the menu is open, slide it in */
.site-nav .menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

/* ===========================
   MENU ITEM STYLES
=========================== */

.menu a {
  padding: 1.2rem 2rem;
  text-align: center;
  transition: 0.3s ease; /* Smooth hover effect */
}

.menu a:hover {
  background-color: var(--primary-light);
}


/* ===========================
   RESPONSIVE DESIGN: MOBILE
=========================== */
/* ===========================
   RESPONSIVE DESIGN: MOBILE & DESKTOP NAVIGATION
=========================== */

@media screen and (max-width: 1024px) {

.site-nav .menu {
  width: 100%;
  height: 100vh; /* Ensure the menu covers the full viewport height */
}
  #nav-toggle {
    display: block;
  }

  .site-nav .menu {
    display: flex;
    flex-direction: column;
  }
  .site-nav .menu.open li{
   border-bottom: 1px #000 solid;
   z-index: 30000;
   width: 85%;
  }
  .site-nav .menu.open li a {
    line-height: 2;
  }

  .menu a {
    padding: 1rem;
  }

  body.menu-open {
    overflow: hidden;
  }

  nav.site-nav {
    justify-content: right;
    position: absolute;
    display: flex;
    float: right;
    width: 100%;
  }
}

@media screen and (min-width: 1025px) {
  #nav-toggle {
    display: none;
  }

  .site-nav .menu {
    position: relative;
    flex-direction: row;
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .menu a {
    padding: 0.8rem 1rem;
    text-align: left;
  }
}

@media screen and (max-width: 500px) {
  .site-nav .menu.open li a {
      line-height: 2;
  }
}

@media screen and (max-width: 333px) {
  .site-nav .menu.open li a {
      line-height: 2;
  }
}
/* ===========================
   APPOINTMENT BUTTON
=========================== */
li.appBtn { background: #b2f3ff; color: #fff; border: 2px solid transparent; border-radius: 25px; padding: 8px 20px; margin-top: -6px; font-weight: 600; font-size: 0.95rem; text-align: center; transition: all 0.3s ease; cursor: pointer; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); list-style: none; } li.appBtn:hover { background: #deeafe; color: #fff; transform: translateY(-2px); box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); border-color: #0749c0; } /* Add spacing or specific styles to the appointment button */ .appointment-btn-container { margin-left: 0px; /* Push the button to the right */ } .appBtn { background-color: #0916e2; /* Red or desired color */ color: white; padding: 10px 20px; text-decoration: none; font-weight: bold; border-radius: 5px; transition: background-color 0.3s ease; } .appBtn:hover { background-color: #001f4d; /* Darker shade on hover */ color: #fff; } li.appointments_b a { background-color: #0916e2; /* Red or desired color */ color: white; padding: 10px 20px; display: none; text-decoration: none; font-weight: bold; border-radius: 5px; transition: background-color 0.3s ease; } li.appointments_b a :hover { background-color: #001f4d; /* Darker shade on hover */ color: #fff; }
  /* DARK MODE */
  :root.dark{
    --bg:#0d1117;
    --text:#e2e8f0;
    --muted:#94a3b8;
    --primary:#3b82f6;
    --accent:#60a5fa;
  }
  .dark .site-header{background:#111;border-color:#222}
  .dark #nav-toggle{color: #fff;}
  .dark .menu a:hover{background:#1f2937;color:#60a5fa}
  .dark .service-card p{color: #222;}
  .dark .cta h2,.dark .cta p{color:#222;}
  /* HERO, CARDS, TESTIMONIALS, CTA */
  .hero{display:grid;grid-template-columns:1fr;gap:1rem;align-items:center;padding:2rem 0}
  .hero-inner h1{font-size:2rem;margin:.25rem 0}
  .hero-image{width:100%;max-height:300px;object-fit:cover;border-radius:10px}
  .cards-grid{display:grid;grid-template-columns:repeat(1,1fr);gap:1rem}
  .service-card{padding:1rem;border-radius:10px;border:1px solid #eef2ff;background:#fff}
  .testimonials{margin:1rem 0;padding:1rem;border-left:3px solid var(--accent)}
  .cta{display:flex;flex-direction:column;align-items:center;gap:.5rem;padding:1.25rem;background:#f1f8ff;border-radius:10px;margin:2rem 0}
  
/* Hero Slider Container */
/* Hero Slider Container */
#hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
  z-index: -1;
}

/* Swiper Slide */
.swiper-slide {
  position: relative;       /* parent for absolute content */
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Slide Background Image */
.slide-bg img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500px;
  background: rgba(0, 0, 0, 0.259);
  z-index: 1;
}

/* Slide Content Wrapper */
.slide-content-wrapper {
  position: absolute;
  top: 50%;
  left: 15%;               /* adjust horizontal alignment */
  transform: translateY(-50%);
  z-index: 10;             /* above overlay */
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Slide Content */
.slide-content {
  max-width: 500px;
  color: #fff;
}

/* Animate Slide Content on Active Slide */
.swiper-slide-active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

/* Slide Title */
.slide-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  opacity: 0;
  color: #fff;
  transform: translateY(20px);
  transition: all 0.6s ease 0.2s;
}
.swiper-slide-active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

/* Slide Description */
.slide-desc {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  opacity: 0;
  color: #fff;
  transform: translateY(20px);
  transition: all 0.6s ease 0.4s;
}
.swiper-slide-active .slide-desc {
  opacity: 1;
  transform: translateY(0);
}

/* Slide Button */
.slide-btn {
  padding: 0.6rem 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease 0.6s;
}
.swiper-slide-active .slide-btn {
  opacity: 1;
  transform: translateY(0);
}

.nav-direction .swiper-button-prev,
.nav-direction .swiper-button-next {
  margin: 30px;
}
  
body.menu-open {
  overflow: hidden;
}
  /* Swiper Arrows */

  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 50%;                   /* vertical center arrows */
    transform: translateY(-50%);
  }

  
  /* Arrow hover effect */
  .swiper-button-next:hover,
  .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 1);
  }
  .swiper-button-prev, .swiper-button-next {
    padding: 10px;
}
  /* Pagination bullets */
  .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
  }
  .swiper-pagination-bullet-active {
    background: var(--primary);
  }
 
  .page-hero {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 20px;
    color: #fff;
    text-align: center;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #60bce0;
    background: linear-gradient(90deg, rgba(7, 49, 65, 0.659) 0%, rgba(0, 0, 0, 0.65) 100%);
    opacity: 0.7;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: #eaf9ff;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    color: #fff;
}
.page-hero a{
  color: #fff;
}
/*Home ABout Us*/
/* About Us Section */
#about-us-home{
  width: 100%;
  float: left;
}
.about-us {
  padding: 40px 120px;
  background: #DEE8DE;
  margin-top: -40px;
  z-index: 40;
  border-radius: 50px 50px 0px 0px;
}

.swiper.services-slider.swiper-initialized.swiper-horizontal.swiper-android.swiper-backface-hidden {
  width: 100%;
  float: left;
}


.about-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Left Column Text */
.about-us-text h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.about-us-text h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-us-text p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #555;
}

.about-us-text blockquote {
  font-style: italic;
  background: #e1f0fc75;
  padding: 15px 20px;
  border-left: 4px solid var(--primary);
  margin-bottom: 25px;
  color: #333;
  border-radius: 20px;
  margin: 0px;
}

/* Doctor Profile */
.doctor-profile {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.doctor-profile img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary);
}

.doctor-info h4 {
  font-size: 0.85rem;
  color: var(--primary);
  margin: 0;
}

.doctor-info p {
  margin: 3px 0;
  font-weight: 600;
}

.doctor-info .btn {
  margin-top: 5px;
  font-size: 0.85rem;
  padding: 8px 16px;
}

/* Right Column Images */
.about-us-images {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Image Grid: Two halves on left, full on right */
.images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* Left Half Images stacked vertically */
.image-half-grid {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.image-half-grid img,
.image-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* Full Right Image */
.image-full {
  height: 100%;
}


/* Experience Circle Centered */
.experience-circle {
  position: absolute;
  top: 50%; /* vertical center */
  left: 50%; /* horizontal center */
  transform: translate(-50%, -50%);
  background: #0916e2;
  color: #fff;
  font-weight: bold;
  font-size: 1rem;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  z-index: 10;
}
.experience-circle  span{
  font-size: 12px;
  display: contents;
}
/*ABout Us*/
.about-history {
    background: #f9f9f9;
    padding: 20px;

  }
  
  .about-history h1 {
  text-align: center;
  padding: 10px 100px;
  font-weight: 500;
  margin-bottom: 40px;
}

  .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: center;
  }
  
  .about-image img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .about-content h2 {
      font-size: 32px;
      color: #0b3c5d;
      margin-bottom: 15px;
  }
  
  .about-content p {
      font-size: 17px;
      line-height: 1.7;
      color: #555;
      margin-bottom: 15px;
  }
  .about-mission-vision{
   margin-top: 20px;

  }
  .about-mission-vision .grid .img_m{
    overflow: hidden;
  }
  .about-mission-vision .grid .img_m img{
    width: 100%;
    height: 280px;
    border-radius: 20px;
    object-fit: cover;
  }
  .about-mission-vision .grid .mission{
    background:#f9f9f9;
    padding: 20px;
  }
  .about-mission-vision .grid .vision{
    padding: 20px;
  }
  .about-mission-vision .grid{
    gap: 20px;
  }
  /* Mobile Responsive */
  @media (max-width: 768px) {
      .about-grid {
          grid-template-columns: 1fr;
      }
  
      .about-content h2 {
          font-size: 26px;
      }
  }
  
/* === REUSABLE GRID SYSTEM === */
.grid {
  display: grid;
  gap: 30px;
}

/* Column variants */
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

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

  .grid-3 {
      grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .grid-2,
  .grid-3,
  .grid-4 {
      grid-template-columns: 1fr;
  }
}
.why-choose-us {
  padding: 100px 0;
  position: relative;
  background: url('../../assets/images/slider/bgas.webp') center / cover no-repeat;
  overflow: hidden;
  z-index: 0; /* create stacking context */
  width: 100%;
  float: left;
}

/* Overlay */
.why-choose-us::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 253, 255, 0.85);
  z-index: 1;
}

/* ALL content inside should be above overlay */
.why-choose-us .container,
.why-choose-us .content,
.why-choose-us .why-grid {
  position: relative;
  z-index: 2;
}
.why-header {
  text-align: center;
}
.why-header .section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #0d6efd;
  margin-bottom: 12px;
}

.why-header h2 {
  font-size: 36px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 30px;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 20px;
  align-items: center;
  z-index: 550;
}

.why-column {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.why-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.why-item i {
  width: 52px;
  height: 52px;
  background: #0d6efd;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  flex-shrink: 0;
}

.why-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #0f172a;
}

.why-item p {
  font-size: 15px;
  color: #475569;
  line-height: 1.6;
}

.why-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.12);
}


/*CTA Home*/
.appointment-section {
  padding: 0px 0;
  background: #f5f9fd;
  width: 100%;
  float: left;
}
.app_sce{
  background: #002b6b;
}

.appointment-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT PANEL */
.appointment-info {
  color: #fff;
  padding: 60px;
  border-radius: 24px;
}

.appointment-info .badge {
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.8;
}

.appointment-info h2 {
  font-size: 40px;
  margin: 20px 0;
  color: #22d3ee;
  line-height: 1.2;
}

.appointment-info p {
  opacity: 0.85;
  margin-bottom: 40px;
  max-width: 420px;
  color: #fff;
}
.appointment-info strong{
  color: #fff;
}
.appointment-info span{
  color: #fff;
}
.appointment-info small{
  color: #fff;
}
.support-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.support-box .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1e5eff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-box strong {
  display: block;
  font-size: 18px;
}

.support-box strong a{
  color: #fff;
}
.hours div {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 12px 0;
}

/* RIGHT PANEL – Appointment Form */
.appointment-form {
  position: relative;
  min-height: 650px;
  background: url('../../assets/images/slider/background.webp') center / cover no-repeat;
  padding: 80px 60px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
  transform: translateY(-20px) scale(1.0);
  transform-origin: center top;
  overflow: hidden;
  z-index: 2;
}

/* Soft overlay for readability */
.appointment-form::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(233, 246, 255, 0.95),
    rgba(255, 255, 255, 0.9)
  );
  z-index: 1;
  opacity: 0.7;
}

/* Ensure content stays above overlay */
.appointment-form > * {
  position: relative;
  z-index: 2;
}

.appointment-form h3 {
  font-size: 32px;
  margin-bottom: 30px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 50px;
  border: none;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  font-size: 15px;
}

.appointment-form textarea {
  border-radius: 16px;
  min-height: 120px;
  margin-top: 20px;
}

.appointment-form select {
  margin: 20px 0;
}

.appointment-form button {
  margin-top: 30px;
  background: #1e5eff;
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all .3s ease;
}

.appointment-form button:hover {
  background: #003bb3;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .appointment-wrapper {
    grid-template-columns: 1fr;
  }
}

/*Second CTA*/

/*CTA Home*/
.call-section {
  padding: 0px 0;
  background: #f5f9fd;
  width: 100%;
  float: left;
}
.app_sce{
  background: #002b6b;
}

.call-wrapper {
  max-width: 1400px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: stretch;
}

/* LEFT PANEL */
.call-info {
  color: #fff;
  padding: 60px;
  border-radius: 24px;
}

.call-info .badge {
  font-size: 13px;
  letter-spacing: 2px;
  opacity: 0.8;
}

.call-info h2 {
  font-size: 40px;
  margin: 20px 0;
  color: #22d3ee;
  line-height: 1.2;
}

.call-info p {
  opacity: 0.85;
  margin-bottom: 40px;
  max-width: 420px;
  color: #fff;
}
.call-info strong{
  color: #fff;
}
.call-info span{
  color: #fff;
}
.call-info small{
  color: #fff;
}
.support-box {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}

.support-box .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #1e5eff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.support-box strong {
  display: block;
  font-size: 18px;
}

.hours div {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding: 12px 0;
}

/* RIGHT PANEL – Appointment Form */
.call-form {
  position: relative;
  background: url('../../assets/images/slider/background.webp') center / cover no-repeat;
  padding: 80px 60px;
  border-radius: 24px;
  width: 100%;
  float: left;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.12);
  transform: translateY(-40px) scale(1.0);
  transform-origin: center top;
  overflow: hidden;
  z-index: 2;
}

/* Soft overlay for readability */
.call-form::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(233, 246, 255, 0.95),
    rgba(255, 255, 255, 0.9)
  );
  z-index: 1;
  opacity: 0.7;
}

/* Ensure content stays above overlay */
.call-form > * {
  position: relative;
  z-index: 2;
}

.call-form h3 {
  font-size: 32px;
  margin-bottom: 30px;
}
.call-section button {
  margin-top: -30px;
  background: #1e5eff;
  color: #fff;
  border: none;
  padding: 16px 36px;
  border-radius: 50px;
  font-size: 16px;
  cursor: pointer;
  transition: all .3s ease;
}

.call-section button:hover {
  background: #003bb3;
}

.call-section button a{
  color: #fff;
}

/* === CTA SECTION === */
.cta-section {
  padding: 0;
  width: 100%;
  float: left;
}

.cta-grid {
  gap: 0;
}

/* CTA Box */
.cta-box {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}

/* Background Images */
.cta-box.appointment{
  position: relative;
  background: url('../../assets/images/slider/bbb.webp') center / cover no-repeat;
  overflow: hidden;
}
.cta-box.appointment::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 171, 231, 0.8);
  z-index: 1;
}
.appointment-info a span {
  color: #000;
}


.cta-box.emergency {
  position: relative;
  background: url('../../assets/images/slider/bgs.webp') center / cover no-repeat;
  overflow: hidden;
}

.cta-box.emergency::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 113, 253, 0.8);
  z-index: 1;
}


/* Content */
.cta-content {
  position: relative;
  z-index: 2;
  max-width: 420px;
  text-align: center;
  padding: 40px;
}

.cta-content h2 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-content p {
  font-size: 1rem;
  opacity: 0.95;
  color: #fff;
  margin-bottom: 25px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all .3s ease;
}

/* Primary Button */
.btn-primary {
  background: #0d6efd;
  color: #fff;
}

.btn-primary:hover {
  background: #084298;
  color: #fff;
}

/* Outline Button */
.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-box {
      min-height: 260px;
  }

  .cta-content h2 {
      font-size: 1.7rem;
  }
}

/*FAQs*/
.faq-section {
  background: #f8fbfd;
  padding: 100px 0px;
  width: 100%;
  float: left;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: flex-start;
}

/* LEFT */
.faq-intro .section-tag {
  display: inline-block;
  font-weight: 600;
  color: #0077b6;
  margin-bottom: 12px;
}

.faq-intro h2 {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.faq-intro p {
  color: #555;
  max-width: 480px;
}

/* RIGHT */
.faq-item {
  background: #fff;
  border-radius: 16px;
  margin-bottom: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  overflow: hidden;
}

.faq-item.active .faq-question {
  background-color: #3b82f6;
  color: aliceblue;
}
.faq-question {
  width: 100%;
  padding: 22px 26px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
}

.faq-question i {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 26px;
}

.faq-answer p {
  padding-bottom: 22px;
  color: #555;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

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

/*Whatsapp*/

 /* Container for the widget */
 .whatsapp-widget {
	position: fixed;
	bottom: 30%;
	right: 20px;
	z-index: 9999;
  }
  span.chat-text{
	color: #000;
	font-size: 10px;
	background: #fff;
	left: -26px;
    position: relative;
	padding: 10px;
	border-radius: 20px;
	margin-top: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  /* Toggle button styling */
  .whatsapp-toggle {
	position: relative;
	background-color: #25d366;
	color: #fff;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	margin-bottom: 10px;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	cursor: pointer;
  }
  .whatsapp-toggle i {
	font-size: 28px;
  }
  
  /* Online dot indicator */
  .online-dot {
	position: absolute;
	bottom: 5px;
	right: 5px;
	width: 12px;
	height: 12px;
	background-color: #44b700;
	border: 2px solid #fff;
	border-radius: 50%;
  }
  /* Chat box styling (hidden by default) */
.whatsapp-chat {
	position: absolute;
	bottom: 80px;
	right: 0;
	width: 320px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
	opacity: 0;
	transform: translateY(20px);
	transition: opacity 0.3s ease, transform 0.3s ease;
	pointer-events: none;
  }
  
  /* Chat box visible state */
  .whatsapp-chat.open {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
	margin-bottom: -16px;
	right: 81px;
  }
  
  /* Keyframes for fadeDown animation */
  @keyframes fadeDown {
	0% {
	  opacity: 1;
	  transform: translateY(0);
	}
	100% {
	  opacity: 0;
	  transform: translateY(20px);
	}
  }
  
  /* Chat box closing state uses fadeDown animation */
  .whatsapp-chat.closing {
	animation: fadeDown 0.3s forwards;
  }
  
  /* Chat header styling */
  .whatsapp-header {
	background-color: #25d366;
	color: #fff;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
  }
  .header-left {
	margin-right: 10px;
  }
  
  /* Company logo styling */
  .company-logo {
	width: 40px;
	height: 40px;
	background-color: #fff;
	border-radius: 50%;
	padding: 5px;
	object-fit: contain;
  }
  
  /* Header text styling */
  .header-text {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	font-size: 14px;
	margin-right: 10px;
  }
  .header-text .company-name {
	font-weight: bold;
  }
  .header-text .chat-prompt {
	font-size: 12px;
  }
  
  /* Close button styling */
  .close-chat {
	background: none;
	border: none;
	color: #fff;
	font-size: 24px;
	cursor: pointer;
  }
  
  /* Welcome message styling */
  .welcome-message {
    padding: 30px 20px;
    background-color: #f2f2f2;
    color: #3e3e3e;
    font-size: 13px;
    line-height: 2;
    border-bottom: 1px solid #ddd;
}
  /* Input container for inline message input and send icon */
  .input-container {
	display: flex;
	align-items: center;
	padding: 10px;
  }
  .input-container .whatsapp-message {
	flex: 1;
	border: 1px solid rgba(221, 221, 221, 0.62);
	border-radius: 5px;
	padding: 8px;
	font-size: 14px;
	outline: none;
  }
  .input-container .whatsapp-send {
	background-color: #25d366;
	border: none;
	margin-left: 10px;
	padding: 10px;
	border-radius: 5px;
	color: #fff;
	cursor: pointer;
	transition: background-color 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
  }
  .input-container .whatsapp-send:hover {
	background-color: #1ebe5d;
  }
  .input-container .whatsapp-send i {
	font-size: 16px;
  }

  /*ScrollToUp*/

.scrollToTop{
  position:fixed;
  bottom:60px;
  border-radius:30px;
  right:10px;
  width:30px;
  height:60px;
  line-height:40px;
  text-align:center;
  border: 1px #fff solid;
  background-color:#0056a3;
  color:#fff;
  z-index:500;
  display:none
}
.scrollToTop i {
  position: relative;
  font-size: 1.3rem;
  top: 10px;
}
/*Team*/
.about-team {
  background: #f8fafc;
  width: 100%;
  float: left;
  display: none;
}

.section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
}

.section-header p {
  color: #d8f9ff;
  margin-top: .5rem;
}

.team-slider {
  padding-bottom: 3rem;
}
.doctor-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  position: relative;
}

.swiper-slide {
  width: 300px; /* or 'auto' for dynamic width */
  flex-shrink: 0; /* prevent shrinking */
}

.doctor-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
}

/* Image */
.doctor-image {
  overflow: hidden;
  height: 280px;

}

.doctor-image img {
  width: 100%;
  margin-top: -10px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.doctor-card:hover .doctor-image img {
  transform: scale(1.06);
}

/* Content */
.doctor-info {
  padding: 2px;
}

.doctor-info h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.25rem;
}

.doctor-role {
  display: block;
  font-size: 0.95rem;
  color: #2563eb;
  margin-bottom: 0.75rem;
}

.doctor-bio {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.4rem;
}

/* Social Icons */
.doctor-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.modal-body .doctor-social {
  display: flex;
  justify-content: left;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.doctor-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 0.9rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.doctor-social a:hover {
  background: #2563eb;
  color: #ffffff;
  transform: translateY(-2px);
}

/* Button */
.doc_btn{
  background: #b2f4ff;
  padding: 10px 15px;
  width: auto;
  display: inline-flex;
  border-radius: 20px;
  border: 1px solid #2563eb;
  transition: background 0.3s ease, color 0.3s ease;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
}

.doc_btn:hover {
  background: #fff;
  border: 1px solid #2563eb;
}

/* =========================
   Doctor Tabs
========================= */
.doctor-tabs {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 1rem;
}

.doctor-tabs .tab {
  background: #f1f5f9;
  border: 0;
  padding: .45rem .9rem;
  font-size: .8rem;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  color: #334155;
  transition: all .25s ease;
}

.doctor-tabs .tab:hover {
  background: #e2e8f0;
}

.doctor-tabs .tab.active {
  background: #2563eb;
  color: #fff;
}

/* Tab Content */
.tab-content {
  display: none;
  font-size: .9rem;
  color: #475569;
  line-height: 1.6;
  animation: fadeUp .35s ease;
}

.tab-content.active {
  display: block;
}

/* =========================
   Modal Overlay
========================= */
.doctor-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, .75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

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

/* Modal Box */
.modal-content {
  background: #ffffff;
  position: absolute;
  max-width: 900px;
  width: 92%;
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  animation: scaleIn .35s ease;
}

/* Modal Image */
.modal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Modal Info */
.modal-body {
  padding: 2rem;
}

.modal-body h3 {
  font-size: 1.4rem;
  color: #0f172a;
  margin-bottom: .25rem;
}

.modal-body .role {
  font-size: .95rem;
  color: #2563eb;
  margin-bottom: 1rem;
}

.modal-body p {
  font-size: .95rem;
  color: #475569;
  line-height: 1.7;
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 20px;
  right: 25px;
  background: #002d4b;
  height: 40px;
  border-radius: 50%;
  width: 40px;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: #ffff;
}

.modal-close:hover {
  color: #0f172a;
  background-color: #22d3ee;
}

/*Testimonial*/
/* =========================
   Testimonials Section
   ========================= */
   .testimonials {
    position: relative;
    width: 100%;
    float: left;
    padding: 60px 0;
    background: url('../../assets/images/slider/bbb.webp') center center / cover no-repeat;
    overflow: hidden;
    z-index: 1;
  }
  
  /* Overlay */
  .testimonials::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #005678;
background: linear-gradient(90deg, rgba(0, 50, 69, 0.881) 50%, rgba(115, 116, 186, 0) 100%);
    z-index: -1;
  }

  .testimonial-slider{
    width: 60%;
    float: left;
  }
.testimonial-card {
  background: transparent;
  padding: 2rem 6rem;
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.section-testimonial{
  text-align: left;
  color: skyblue;
  font-weight: 400;
  width: 60%;
}
.section-testimonial h2{
  text-align: left;
  color: skyblue;
  font-weight: 400;
}
.section-testimonial p{
  text-align: left;
  color: rgb(230, 247, 254);
  font-weight: 400;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffff;
  font-family: 'Marcellus', serif;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.author-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: #b2f3ff;
}

.author-info span {
  font-size: 0.85rem;
  color: #ebf3ff;
}

/* =========================
   Swiper Pagination
========================= */
.swiper-pagination-bullet {
  background: #cbd5e1;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #2563eb;
}

/* =========================
   Animations
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  .modal-content {
    grid-template-columns: 1fr;
  }

  .modal-image {
    height: 280px;
  }
}

/* =========================
   Services Section
========================= */
.about-services {
  background: #f8fafc;
  padding: 0px;
  width: 100%;
  float: left;
}


.about-services .section-header {
  width: 100%;
  float: left;
  position: relative;
  text-align: center;
}
.swiper.services-slider.swiper-initialized.swiper-horizontal.swiper-backface-hidden {
  width: 100%;
  float: left;
}
.about-services .section-header h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
}

.about-services .section-header p {
  color: #64748b;
  margin-top: 0.5rem;
}

/* Service Card */
/* Service Card */
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 420px; /* Set fixed height */
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.14);
}

/* Image Full Height */
.service-card .service-image {
  position: absolute;
  inset: 0;
  height: 100%;
}

.service-card .service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

/* Dark Overlay */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.0),
    rgba(0, 0, 0, 0.836)
  );
  z-index: 1;
}

/* Zoom Image on Hover */
.service-card:hover .service-image img {
  transform: scale(1.08);
}

/* Content Over Image */
.service-card .service-content {
  position: relative;
  top: 60%;
  left: 10px;
  right: 10px;
  z-index: 2;
  color: #ffffff;
  text-align: left;
}

/* Title */
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
}

/* Description */
.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.9;
  color: #fff;
}

/* Swiper Pagination */
.services-slider .swiper-pagination-bullet {
  background: #cbd5e1;
  opacity: 1;
}
/* Add space between Swiper content and pagination bullets */
.swiper-pagination {
  position: relative !important; /* allow normal margin */
  margin-top: 20px;             /* space from slider */
}

/* Optional: center bullets if not already */
.swiper-pagination {
  text-align: center;
}

/* Optional: increase spacing between individual bullets */
.swiper-pagination-bullet {
  margin: 0 5px; /* horizontal spacing */
}

.services-slider .swiper-pagination-bullet-active {
  background: #2563eb;
}

.services-slider .swiper-button-next,
.services-slider .swiper-button-prev {
  color: #2563eb;
  transition: all 0.3s ease;
}

.services-slider .swiper-button-next:hover,
.services-slider .swiper-button-prev:hover {
  transform: scale(1.1);
}
.lin-btn {
  font-size: 1rem;
  padding: 9px 28px;
  border-radius: 50px;
  font-weight: 400;
  transition: all 0.3s ease;
  background: #2563eb;
  border: 2px #2563eb solid;
  color: #fff;
  display: inline-flex;
}

.lin-btn:hover {
  background: #ffffff;
  color: #2563eb;
  transform: translateY(-2px);
}

/* Gallery Section */
.gallery-section {
  background-color: #f9f9f9;
  padding: 4rem 0;
}

.gallery-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-link {
  display: block;
  height: 100%;
  text-decoration: none;
}

/* Gallery Item Details (overlay text) */
.gallery-item-details {
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: #fff;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 5px;
}

.gallery-item-details h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.gallery-item-details p {
  font-size: 0.9rem;
  margin: 0;
}

/* Lightbox Overlay */
.lightbox-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  z-index: 70000;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.lightbox-overlay.zoomed img {
  transform: scale(1.5); /* Zoom effect */
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* Lightbox Navigation Arrows */
.lightbox-arrow {
  position: absolute;
  top: 50%;
  font-size: 2rem;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
}

.lightbox-arrow.prev {
  left: 20px;
}

.lightbox-arrow.next {
  right: 20px;
}


.lightbox-arrow:active {
  transform: scale(0.9);
}

/* Lightbox Zoom Effect */
.lightbox-overlay img:hover {
  cursor: zoom-in;
}

/* Responsive Design for Gallery */
@media (max-width: 991px) {
  .gallery-list {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  }
}

@media (max-width: 576px) {
  .gallery-item-details h4 {
    font-size: 1rem;
  }
  .gallery-item-details p {
    font-size: 0.8rem;
  }
}

/* Personal Health Plan Banner */
.health-plan-banner {
  background: linear-gradient(135deg, #1f3d3f90), url('../images/slider/bbb.webp');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  text-align: center;
  padding: 4rem 1rem;
  border-radius: 12px;
  margin: 2rem 4rem;
  position: relative;
  overflow: hidden;
}

/* Overlay for the background image */
.health-plan-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4); /* Adjust the opacity (0.4) for the desired overlay effect */
  border-radius: 12px;
  z-index: 1;
}

/* Content inside the banner */
.health-plan-banner .banner-content {
  position: relative;
  z-index: 2;
}

/* Optional: Text hover effect */
.health-plan-banner h2 {
  transition: transform 0.3s ease;
}

.health-plan-banner:hover h2 {
  transform: translateY(-10px); /* Moves the text upwards on hover */
}

.health-plan-banner .banner-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.2;
}

.health-plan-banner .banner-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  line-height: 1.6;
}

.health-plan-banner .btn {
  font-size: 1rem;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.health-plan-banner .btn:hover {
  background: #ffffff;
  color: #2563eb;
  transform: translateY(-2px);
}

/* Optional icon overlay */
.health-plan-banner .banner-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  opacity: 0.15;
  width: 200px;
  height: 200px;
}

.health-plan-banner .banner-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .health-plan-banner .banner-content h2 {
    font-size: 2rem;
  }

  .health-plan-banner .banner-content p {
    font-size: 1rem;
  }

  .health-plan-banner .banner-icon {
    width: 120px;
    height: 120px;
  }
}

/*Pagination*/
span.swiper-pagination-bullet {
background-color: #000;
}
/* ============================= */
/* Service Page Styles            */
/* ============================= */

.service-single {
  padding: 60px 0;
}

.service-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

/* ============================
   Service Detail Layout
============================ */

.service-detail-wrap {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
  margin-top: 2rem;
}

/* Image block */
.service-image {
  flex: 0 0 42%;
}

.service-image img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
  object-fit: cover;
}

/* Content block */
.service-content {
  flex: 1;
}

.service-content h1 {
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0b2c3d; /* professional hospital blue */
}

.service-content .lead {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #555;
  max-width: 720px;
}

/* ============================
   Responsive (Mobile)
============================ */

@media (max-width: 991px) {
  .service-detail-wrap {
    flex-direction: column;
  }

  .service-image,
  .service-content {
    width: 100%;
  }

  .service-content h1 {
    font-size: 1.8rem;
  }
}

 .info-item iframe{
  width: 100%;
  height: 260px;
}
.service-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.service-content .lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.service-content h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #fff;
  display: inline;
  position: relative;
  text-align: center; /* Center the underline */
}

.service-content h3::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: #007BFF; /* Primary color */
  margin: 5px auto 0; /* Center horizontally */
  border-radius: 2px;
}

.service-content-full ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
}

.service-content-full ul li {
  margin-bottom: 10px;
  color: #555;
  line-height: 1.6;
}

/* ============================
   Right Sidebar – Other Services
============================ */
.service-content-full.col-md-7 {
  width: 67%;
}

.list-all-service {
  margin-top: 1rem;
}
.other-services-box {
  background: linear-gradient(180deg, #e9f3ff, #ffffff);
  border-left: 4px solid #0d6efd;
    border-radius: 14px;
    padding: 1.8rem 1.6rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    position: sticky;
    min-width: 333px;
    top: 120px;
}

.other-services-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
  color: #0b2c3d;
  border-bottom: 2px solid #e5e7eb;
  padding-bottom: 0.6rem;
}

.other-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.other-services-list li {
  margin-bottom: 0.7rem;
}

.other-services-list a {
  display: block;
  padding: 0.6rem 0.8rem;
  font-size: 0.95rem;
  color: #000000;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.other-services-list a:hover {
  background: #0d6efd;
  color: #fff;
}

/* Mobile */
@media (max-width: 991px) {
  .list-all-service {
    margin-top: 3rem;
  }

  .other-services-box {
    position: static;
  }
}
/* ===============================
   Recovery Process Section
=================================*/
.recovery-process {
  padding: 30px 0;
  position: relative;
    position: relative;
    background: url('../../assets/images/slider/bbb.webp') center / cover no-repeat;
    overflow: hidden;
    z-index: 0; /* create stacking context */
    width: 100%;
    float: left;
  }
  
  /* Overlay */
  .recovery-process::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #1100939e;
    z-index: 1;
  }

.process-layout {
  position: relative;
  width: 950px;
  height: 950px;
  margin: 10px auto;
  z-index: 200;
}

.section-header {
  z-index: 100;
  position: relative;
  text-align: center;
}
/* ===============================
   Center Circle
=================================*/
.process-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 620px;
  height: 620px;
  z-index: 5;
}

.process-image1 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 12px solid #d9ecea;
  position: relative;
  z-index: 3;
}

.process-image1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===============================
   Animated Pulse Rings
=================================*/
.pulse-ring {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  border: 7px solid rgba(203, 221, 255, 0.25);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s infinite ease-in-out;
  z-index: 1;
}

.pulse-rings {
  position: absolute;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  border: 7px solid rgba(255, 255, 255, 0.843);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 3s infinite ease-in-out;
  z-index: 1;
}
.pulse-ring.delay {
  animation-delay: 1.5s;
}
.pulse-rings.delay {
  animation-delay: 2.5s;
}


@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.7;
  }
  70% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ===============================
   Steps
=================================*/
.process-step {
  position: absolute;
  text-align: center;
  width: 280px;
}

/* Step Number */
.step-label {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  color: #fff;
  font-size: 15px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Step Button */
.step-title {
  background: #ffffff;
  color: #0f16e2;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 30px;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  z-index: 2;
}

.process-step.highlight .step-title {
  background: #fff;
}

.step-title:hover {
  transform: translateY(-4px);
  background: #ee3338;
  color: #fff;
}

/* ===============================
   Accordion Content (Above Title)
=================================*/
.step-description {
  height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px); /* start slightly lower */
  background: #ffffff;
  color: #555;
  border-radius: 14px;
  padding: 0 18px;
  margin-bottom: 12px; /* IMPORTANT: spacing above title */
  font-size: 14px;
  line-height: 1.7;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition:
    height 0.4s ease,
    opacity 0.4s ease,
    transform 0.4s ease,
    padding 0.3s ease;
}

/* Active State */
.process-step.active .step-description {
  opacity: 1;
  padding: 16px 18px;
}
.process-step.step-2.reveal {
  z-index: 400;
}

.process-step.highlight.reveal {
  z-index: 400;
}
.process-step.reveal {
  z-index: 400;
}
/* Active Title */
.process-step.active .step-title {
  background: #ee3338;
  color: #fff;
  transform: translateY(-2px);
}

/* ===============================
   Positioning Around Circle
=================================*/
.step-1 { top: 10%; left: -3%; transform: translateX(-50%); }
.step-2 { top: 40%; left: -15%; }
.step-4 {
    bottom: 5%;
    left: 36%;
    transform: translateX(-50%);
}
.step-5 {
  bottom: 50%;
  left: 86%;
}
.step-6 {
  top: 11%;
  right: 0%;
}

/* ===============================
   Book Service Button
=================================*/
.book-service-wrapper {
  margin-top: 15px;
  text-align: center;
  z-index: 400;
  position: relative;
}

.book-service-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: #0f2f2f;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 40px;
  transition: all 0.35s ease;
}

/* Arrow Icon */
.arrow-icon {
  transition: transform 0.35s ease;
  font-size: 14px;
}

/* Hover Effect */
.book-service-btn:hover {
  background: #0916e2;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(11, 95, 255, 0.25);
}

/* Rotate Arrow Up */
.book-service-btn:hover .arrow-icon {
  transform: rotate(-45deg);
}
/* ===============================
   Responsive
=================================*/
@media (max-width: 768px) {

  .process-layout {
    width: 100%;
    height: auto;
  }

  .process-step {
    position: static;
    margin-bottom: 25px;
    width: 100%;
  }

  .process-center {
    position: relative;
    margin: 40px auto;
  }

}
/* Icon */
.step-icon {
  float: right;
  margin-left: 10px;
  transition: 0.3s ease;
  font-weight: bold;
}

/* Scroll reveal */
.process-step {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.process-step.reveal {
  opacity: 1;
  transform: translateY(0);
}

.faq-list {
  max-width: 900px;
}

.faq-item {
  border-radius: 12px;
  margin-bottom: 1rem;
  background: #f9fafb;
  border-left: 2px solid #1d4ed8;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1rem 1.2rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #eef2ff;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 700;
  transition: transform 0.25s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg); /* + turns into × */
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.2rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.2rem 1rem;
}

.faq-answer p {
  margin: 0;
  color: #374151;
}

/* Extra HTML Block Styling */
.service-extra {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  line-height: 1.7;
  color: #444;
}

/* All Service */
/* GH Services Section */
.gh-services-list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 30px 0;
}

/* Each service item */
.gh-service-item {
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

/* Service header (clickable) */
.gh-service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  position: relative;
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* Hover effect */
.gh-service-header:hover {
  background-color: #f0f8ff;
  transform: scale(1.02);
}

/* Service icon */
.gh-service-icon {
  font-size: 1.8rem;
  color: #007BFF;
  margin-right: 10px;
}

/* Service title */
.gh-service-title {
  flex: 2;
  font-size: 1.8rem;
  font-weight: 600;
  color: #333;
}

/* Service summary */
.gh-service-summary {
  flex: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

.gh-service-summary p {
  margin: 0;
  font-size: 1rem;
  color: #666;
}

/* Accordion arrow */
.gh-service-arrow {
  font-size: 1.2rem;
  color: #007BFF;
  transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.gh-service-item[data-open="true"] .gh-service-arrow {
  transform: rotate(180deg);
}
.gh-service-body .book-service-wrapper {
  text-align: left;
}
/* Service image */
.gh-service-image{
  overflow: hidden;
}
.gh-service-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* Show image when accordion is open */
.gh-service-item[data-open="true"] .gh-service-image img {
  opacity: 1;
  transform: translateY(0);
}

/* Accordion content */
.gh-service-body .gh-service-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
  padding: 0 15px;
}

/* Open accordion content */
.gh-service-item[data-open="true"] .gh-service-content {
  max-height: 1000px; /* adjust as needed */
  opacity: 1;
  padding: 15px;
}

/* Responsive layout */
@media (max-width: 991px) {
  .gh-service-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gh-service-image,
  .gh-service-content {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .gh-service-title {
    font-size: 1.5rem;
  }

  .gh-service-summary p {
    font-size: 0.95rem;
  }
}
/* TEAM GRID */
.team-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}

/*Blogs*/
.section-blog{
  text-align: center;
}

/* =======================
   Latest News / Blog Section
   ======================= */
   .latest-news {
    padding: 60px 0;
    background-color: #F6F9FF;
    width: 100%;
    float: left;
    display: none;
  }
  
  .latest-news .section-header {
    margin-bottom: 40px;
  }
  
  .latest-news .section-tag {
    font-size: 14px;
    font-weight: 700;
    color: #007bff;
    letter-spacing: 1px;
    text-transform: uppercase;
  }
  
  .latest-news h2 {
    font-size: 32px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
  }
  
  .latest-news p {
    font-size: 15px;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
  }
  
  /* =======================
     Blog Grid
     ======================= */
     .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
  }
  
  /* =======================
     Blog Card
     ======================= */
  .blog-card,
  .grid-blog {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 420px;
    cursor: pointer;
  }
  
  /* Full-size Image */
  .blog-card img,
  .grid-blog img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }
  
  /* Dark Overlay */
  .blog-card::before,
  .grid-blog::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.1));
    z-index: 1;
    transition: background 0.4s ease;
  }
  
  /* =======================
     Content Wrapper
     ======================= */
  .blog-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px;
    z-index: 2;
    color: #fff;
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Blog Title */
  .blog-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
  }
  
  .blog-title a {
    color: #fff;
    text-decoration: none;
  }
  
  /* Blog Excerpt */
  .blog-excerpt {
    font-size: 14px;
    margin-bottom: 10px;
    color: #fff;
  }
  
  /* =======================
     Read More Button
     ======================= */
  .btn-outline-primary {
    border: 1.5px solid #fff;
    color: #fff;
    font-size: 13px;
    padding: 6px 18px;
    border-radius: 30px;
    display: inline-block;
    text-decoration: none;
    opacity: 0;                /* Hidden by default */
    transform: translateY(20px);
    transition: all 0.4s ease;
  }
  
  .blog-card:hover .btn-outline-primary,
  .grid-blog:hover .btn-outline-primary {
    opacity: 1;                /* Show on hover */
    transform: translateY(0);
  }
  
  .btn-outline-primary:hover {
    background: #fff;
    color: #007bff;
  }
  
  /* =======================
     Hover Effects
     ======================= */
  .blog-card:hover img,
  .grid-blog:hover img {
    transform: scale(1.1);
  }
  
  .blog-card:hover::before,
  .grid-blog:hover::before {
    background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3));
  }
  
  /* =======================
     Responsive
     ======================= */
  @media (max-width: 768px) {
    .blog-grid {
      grid-template-columns: 1fr;
    }
  
    .blog-card,
    .grid-blog {
      height: 350px;
    }
  
    /* Always show button on mobile */
    .btn-outline-primary {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* Category */
.blog-category {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

/* Partner Section */
.partners-section {
  padding: 0;
  text-align: center;
  background-color: #f9f9f9;
  width: 100%;
  float: left;
}

.partners-section .section-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}
.partners-section .section-header h2{
  color: #000247;
} 
.partners-section .section-header p{
  color: #454545;
} 
/* Swiper Container */
.partners-section .swiper-container {
  width: 100%;
  height: auto;
}

.partners-section .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.partners-section .swiper-slide img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Add hover effect on logo */
.partners-section .swiper-slide:hover img {
  transform: scale(1.1);
}

/* =========================
   NEWSLETTER MODAL
========================= */

/* =========================
   SUBSCRIBE MODAL
========================= */
/* =========================
   WHATSAPP CONTACT MODAL
========================= */
.whatsapp-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
}

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

/* Overlay */
.whatsapp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

/* Modal Box */
.whatsapp-box {
  position: relative;
  background: #fff;
  width: 1000px;
  max-width: 96%;
  border-radius: 15px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
  animation: whatsappFadeIn 0.4s ease;
}

/* Left Side */
.whatsapp-content {
  padding: 50px;
  display: flex;
  background: #f7f7f7;
  flex-direction: column;
  justify-content: center;
}

.whatsapp-content h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #333;
}

.whatsapp-content p {
  margin-bottom: 25px;
  color: #555;
  line-height: 1.6;
}

/* Form */
.whatsapp-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 15px;
}

.whatsapp-form input,
.whatsapp-form textarea {
  padding: 17px;
  border: 2px solid #ddd;
  border-radius: 32px;
  font-size: 16px;
  font-family: 'Arial', sans-serif;
}

.whatsapp-form textarea {
  min-height: 120px;
  resize: vertical;
}

.whatsapp-btn {
  padding: 12px 30px;
  border: none;
  background: #25D366;
  color: #fff;
  border-radius: 32px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #128C7E;
}

.whatsapp-content small {
  font-size: 13px;
  color: #777;
}

.whatsapp-content small a {
  color: #25D366;
  text-decoration: none;
}

/* Right Side */
.whatsapp-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Close Button */
.whatsapp-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

/* Animation */
@keyframes whatsappFadeIn {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-box {
    grid-template-columns: 1fr;
  }

  .whatsapp-image {
    display: none;
  }

  .whatsapp-content {
    padding: 30px;
  }
}

/* Social Section */
.whatsapp-social {
  margin: 20px 0;
}

.whatsapp-social p {
  margin-bottom: 10px;
  font-size: 14px;
  color: #666;
}

/* Social Icons */
.whatsapp-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-right: 8px;
  border-radius: 50%;
  background: #f1f3f7;
  color: #333;
  font-size: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover Effect */
.whatsapp-social a:hover {
  background: var(--primary, #0916e2);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Optional: Individual Brand Colors on Hover */
.whatsapp-social a:nth-child(2):hover {
  background: #1877f2; /* Facebook */
}

.whatsapp-social a:nth-child(3):hover {
  background: #e1306c; /* Instagram */
}

.whatsapp-social a:nth-child(4):hover {
  background: #000000; /* X (Twitter) */
}

 /* Open animation */
@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Close animation */
@keyframes fadeOutDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(40px);
    opacity: 0;
  }
}

  /* Newsletter Section */
  .newsletter-section {
    padding: 50px 0;
    position: relative;
    margin-top: 30px;
    width: 100%;
    float: left;
    display: none;
}

.newsletter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 400px;
  gap: 40px;
  background: url('../../assets/images/slider/background.webp') center / cover no-repeat;
  padding: 0px 60px;
  border-radius: 30px;
  border: 8px #0006c024 solid;
  background-color: #0076b6;
}

.newsletter-text {
  width: 60%; /* Content occupies 60% */
  max-width: 600px;
}

.newsletter-text h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
}

.newsletter-text p {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.newsletter-form .email-input {
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  border-radius: 29px;
  border: 1px solid #ccc;
  outline: none;
}
.newsletter-form .email-input:focus {
  border-color: #007bff;
}
.newsletter-form .btn {
  padding: 15px 25px;
  font-size: 1rem;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 29px;
  cursor: pointer;
}

.newsletter-form .btn:hover {
  background-color: #0056b3;
}

/* Right Content (Image) */
.newsletter-image {
  width: 73%; /* Image occupies 40% */
  position: relative;
}

.newsletter-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transform: translateY(-74px); /* Image floating effect */
}

  
  /* FOOTER */
  .site-footer{background:#000247;color:#fff;padding:1.25rem 0; width:100%; float: left;}
  .site-footer a{color:#fff; font-size: 15px;}
  .footer-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1.5rem 0;
}
.footer-col h4 {
  color: #95c8ff;
}
.footer-col ul{
  padding: 0px;

}
address {
  display: block;
  font-style:normal;
  unicode-bidi: isolate;
  font-size: 14px;
}
.footer-col p{
  color: #fff;
  font-size: 14px;
}
.footer-col ul li{
  list-style: none;
  font-size: 14px;
  line-height: 2;
}
.footer-col a:hover{
  color: #0072c6;
}

  .footer-bottom{padding-top:1rem;text-align: center; border-top:1px solid rgba(255,255,255,.06)}
  
