/* Optimus Hospital - custom section styles */
.care-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 60px 0;
}
.care-left {
  flex: 0 0 48%;
  display:flex;
  align-items:center;
  justify-content:center;
}
.care-left .circle-image {
  /* width: 420px; */
  /* height: 420px; */
  /* border-radius: 50%; */
  overflow: hidden;
  position: relative;
  /* box-shadow: 0 6px 30px rgba(0,0,0,0.12); */
  /* border: 8px solid rgba(138,8,56,0.08); */
}
.care-left .circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}
.care-left .circle-decor {
  position: absolute;
  left: -38px;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 3px solid rgba(138,8,56,0.18);
}
.care-right {
  flex: 0 0 52%;
  background: #d46a19; /* maroon theme */
  color: #fff;
  padding: 75px 40px;
  border-radius: 6px;
}
.care-right h2 {
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 18px;
  font-weight: 700;
}
.care-right p {color: #fff;line-height:1.6; text-align: justify; margin-bottom:18px}
.care-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px 30px;
  margin-top: 18px;
}
.stat {text-align:left}
.stat .num {font-size:28px;font-weight:800;color:#000;display:block}
.stat .label {font-size:13px;color:#000;margin-top:6px}

@media (max-width: 992px) {
  .care-section {flex-direction:column;padding:40px 0}
  .care-left, .care-right {flex: 0 0 100%;width:100%}
  .care-left {order:1}
  .care-right {order:2}
  .care-left .circle-image {width:320px;height:320px}
  .care-left .circle-decor {display:none}
  .care-stats {grid-template-columns: repeat(2,1fr)}
}

@media (max-width: 480px) {
  .care-left .circle-image {width:400px;height:400px}
  .care-stats {grid-template-columns: 1fr}
  .care-right h2 {font-size:24px}
}

/* Gallery slider styles */
.gallery-section {
    padding: 48px 0;
    background: #f8fafc;
}

.gallery-title {
    text-align: center;
    font-size: 28px;
    margin-bottom: 22px;
    color: #0f2238;
    font-weight: 700;
}

.gallery-slider {
    overflow: hidden;
    width: 100%;
}

.gallery-track {
    display: flex;
    gap: 18px;
    align-items: center;
    will-change: transform;
    transition: transform 0.03s linear;
}


/* CARD */
.gallery-item {
    flex: 0 0 194px;   /* 🔥 exact width */
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.gallery-item img {
    width: 100%;
    height: 220px;     /* 🔥 exact height */
    object-fit: cover;
    display: block;
}

/* Tablet */
@media (max-width: 992px) {
    .gallery-item {
        flex: 0 0 170px;
    }
    .gallery-item img {
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .gallery-item {
        flex: 0 0 140px;
    }
    .gallery-item img {
        height: 180px;
    }
}

/* ================= MOMENTS SECTION ================= */
.moments-marquee {
  padding: 60px 0;
  background: #fff;
}

.moments-wrap {
  display: flex;
  gap: 40px;
  align-items: center;
}

/* LEFT */
.moments-text {
  flex: 0 0 45%;
}

.moments-text h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}

.moments-text p {
  font-size: 16px;
  color: #000;
  margin-bottom: 24px;
  text-align: justify;
}

.moments-btn {
  display: inline-block;
  background: #0F336A;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
}

/* RIGHT */
.moments-images {
  flex: 0 0 55%;
}

/* FIX HEIGHT (extra space removed) */
.marquee-viewport {
  height: 520px;              /* 👈 SAME AS CONTENT HEIGHT */
  overflow: hidden;
}

.marquee-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.marquee-track img {
  width: 100%;
  border-radius: 18px;
  display: block;
}
/* ================= MOBILE RESPONSIVE FIX ================= */
@media (max-width: 991px) {

  .moments-wrap {
    flex-direction: column;
    gap: 30px;
  }

  /* TEXT FULL WIDTH */
  .moments-text {
    flex: 0 0 100%;
    text-align: center;
  }

  .moments-text h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .moments-text p {
    font-size: 15px;
    text-align: center;
  }

  .moments-btn {
    margin-top: 10px;
  }

  /* IMAGES FULL WIDTH */
  .moments-images {
    flex: 0 0 100%;
    width: 100%;
  }

  /* REMOVE FIXED HEIGHT */
  .marquee-viewport {
    height: auto;
  }

  /* 2 COLUMNS ON TAB */
  .marquee-track {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

}

/* EXTRA SMALL MOBILE */
@media (max-width: 575px) {

  .moments-text h2 {
    font-size: 24px;
  }

  .moments-text p {
    font-size: 14px;
  }

  /* 1 IMAGE PER ROW */
  .marquee-track {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .marquee-track img {
    border-radius: 14px;
  }
}




/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
  --color-bg: #f8fafc;
  --color-bg-alt: #fff;
  --color-card: #fff;
  --color-card-alt: #f8fafc;
  --color-primary: #0F336A;
  --color-secondary: #CC6015;
  --color-accent: #CC6015;
  --color-text: #000;
  --color-text-muted: #64748b;
  --color-border: #e2e8f0;
  --color-shadow: rgba(15, 51, 106, 0.10);
  --color-shadow-strong: rgba(204, 96, 21, 0.13);
  --color-faq-bg: #f8fafc;
  --color-faq-answer: #fff;
  --color-footer-bg: #0F336A;
  --color-footer-text: #a0aec0;
  --color-footer-strong: #fff;
  --primary: #0F336A;
  --secondary: #CC6015;
}

[data-theme='dark'] {
  --color-bg: #181f2a;
  --color-bg-alt: #232b3a;
  --color-card: #232b3a;
  --color-card-alt: #181f2a;
  --color-primary: #fff;
  --color-secondary: #43d5cb;
  --color-accent: #ffd700;
  --color-text: #000;
  --color-text-muted: #b0b8c9;
  --color-border: #2d3748;
  --color-shadow: rgba(67,213,203,0.10);
  --color-shadow-strong: rgba(67,213,203,0.13);
  --color-faq-bg: #232b3a;
  --color-faq-answer: #181f2a;
  --color-footer-bg: #10141b;
  --color-footer-text: #b0b8c9;
  --color-footer-strong: #ffd700;

  /* ===== FONT VARIABLES ===== */
  --font-heading: 'Montserrat', sans-serif;
  --font-subheading: 'Open Sans', sans-serif;
  --font-body: 'Lato', sans-serif;
}

/* ===== FORCE GLOBAL FONTS ===== */
body {
    font-family: 'Lato', sans-serif !important;
}

h1, h2 {
    font-family: 'Montserrat', sans-serif !important;
    font-weight: 700;
}

h3, h4, h5, h6 {
    font-family: 'Open Sans', sans-serif !important;
    font-weight: 600;
}

p, span, li, a, button, input, textarea, label {
    font-family: 'Lato', sans-serif !important;
}



a{
    color:var(--primary);
}

.fix_free_consultation{
position: fixed;
  right: -77px;
  top: 40%;
  z-index: 999;
  transform: rotateZ(270deg);
  text-decoration: none;
  display: inline-block;
  padding: 6px 12px;
  background: var(--primary);
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-size: 15px;
    
}

.quick_links{
        margin-bottom: 20px;
}
.location_maps{
    width: 100%;
    height: 175px;
    border-radius: 10px;
}
.quick_links a{
    text-decoration: none;
    color: #fafafa;
    display: inline-block;
    padding: 10px 20px;
}
.fix_free_consultation:hover{
    background-color: var(--secondary);
    color: white !important;
}
.swiper-button-prev.text-white::after,.swiper-button-next.text-white::after{
    color: white !important;
}
.section_content *{
    background-color:transparent !important;
    font-family:inherit !important;
}

.blog-page a.btn{
    padding: 10px 13px;
    font-size: 13px;
    font-weight: normal;
    text-align: center;
    display: inline;
}

.homepage_iframe{
    width:100%;
    height:320px;
    border-radius:8px;
}
.sidebar{
    height: 100%;
}
.header, .footer {
    background: var(--color-footer-bg);
    color: var(--color-footer-text);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: #1a365d;
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.contact-info {
    display: flex;
    gap: 30px;
}

.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #3182ce;
}

/* ===== RESPONSIVE HEADER ===== */
.header {
    background: #fff;
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 15px rgba(15, 51, 106, 0.1);
    border-bottom: 1px solid rgba(204, 96, 21, 0.1);
}

.header.scrolled {
    background: linear-gradient(135deg, #0F336A 0%, #1a4d8c 100%);
    box-shadow: 0 6px 30px rgba(15, 51, 106, 0.25);
    padding: 10px 0;
}

.header.scrolled .nav-links a {
    color: #ffffff;
}

.header.scrolled .logo {
    background: rgba(255, 255, 255, 0.15);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 10px;
    /* background: rgba(204, 96, 21, 0.08); */
    border-radius: 12px;
    backdrop-filter: blur(8px);
    /* border: 1px solid rgba(204, 96, 21, 0.15); */
    transition: all 0.3s ease;
    flex-shrink: 0;
}

/* .logo:hover {
    background: rgba(204, 96, 21, 0.15);
    border-color: rgba(204, 96, 21, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(204, 96, 21, 0.2);
} */

.logo-img {
    height: clamp(45px, 8vw, 65px);
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex: 1;
    margin: 0 20px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #0F336A;
    display: block;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 18px 16px;
    font-size: clamp(13px, 2vw, 15px);
    white-space: nowrap;
}

.nav-links a:hover {
    color: #CC6015;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #CC6015, #e67e22);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 10px;
}

.nav-links a:hover::after {
    width: 85%;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 120%;
    left: 0;
    background: white;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 12px 0;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(204, 96, 21, 0.1);
    margin-top: 0px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 13px 20px;
    color: #0F336A;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 14px;
}

.dropdown-menu a:hover {
    background: linear-gradient(135deg, rgba(204, 96, 21, 0.1) 0%, rgba(204, 96, 21, 0.05) 100%);
    color: #CC6015;
    padding-left: 28px;
}

.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 20px; 
}

/* CTA Button */
.cta-btn {
    background: linear-gradient(135deg, #CC6015 0%, #e67e22 100%);
    color: white;
    border: none;
    padding: 12px 26px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(204, 96, 21, 0.3);
    font-size: 14px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 120px;
}

.cta-btn:hover {
    background: linear-gradient(135deg, #b85010 0%, #d66f1a 100%);
    box-shadow: 0 8px 25px rgba(204, 96, 21, 0.4);
    transform: translateY(-3px);
}

.cta-btn:active {
    transform: translateY(-1px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    padding: 10px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 26px;
    height: 3px;
    background: #0F336A;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Updated Slider Home */

.hero .hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.hero .hero-content .hero-features {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

/* HERO FEATURES */
.hero-features {
    display: flex;
    gap: 60px;
    margin-top: 30px;
}

/* EACH FEATURE */
.hero-features .feature {
    text-align: center;
    /* min-width: 170px; */
}

/* IMAGE AS ICON */
.hero-features .feature img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    padding: 12px;
    border-radius: 50%;
    border: 3px solid #ea8239;
    /* background: #fff; */
    margin-bottom: 10px;
    box-sizing: border-box;
}

/* TEXT BELOW IMAGE */
.hero-features .feature p {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    color: #ffffff;
}

/* DESKTOP ALIGNMENT */
@media (min-width: 992px) {
    .hero-features {
        justify-content: flex-start;
    }
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .hero-features {
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .hero-features .feature {
        min-width: 140px;
    }

    .hero-features .feature img {
        width: 52px;
        height: 52px;
        padding: 10px;
    }
}
/* ================= Updated Hero Slider End ================= */
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height:500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    transform:none !important;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg {
    width: 100%;
   
 
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,54,93,0.7) 0%, rgba(49,130,206,0.4) 100%);
    z-index: -1;
}

.hero-content {
    text-align: left;
    color: #ffffff;
    /* max-width: 800px; */
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-title .highlight {
    color: #ffd700;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
        padding: 12px 18px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-secondary);
    color: #fff;
}

.btn:hover {
    background: var(--color-accent);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(49, 130, 206, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #3182ce;
}

.btn-outline {
    background: transparent;
    color: #3182ce;
    border: 2px solid #3182ce;
}

.btn-outline:hover {
    background: #3182ce;
    color: white;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Awards Section */
.awards-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.awards-swiper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 100px; /* Add horizontal padding for button space */
}

.awards-swiper .swiper-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
}

.awards-swiper .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: stretch;
    height: auto;
}

.award-item {
    min-width: 220px;
    max-width: 220px;
    min-height: 260px;
    max-height: 260px;
    background: white;
    padding: 20px 16px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.award-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #3182ce;
}

.award-icon {
    margin-bottom: 20px;
}

.award-icon i {
    font-size: 3rem;
    color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.award-item:hover .award-icon i {
    transform: scale(1.1);
}

.award-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
    line-height: 1.4;
}

.award-item p {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

@keyframes slideAwards {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Stats Bar */
.stats-bar {
    background: white;
    padding: 60px 0;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
    padding: 30px;
    background: #f7fafc;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    background: #3182ce;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    order: -1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 5px;
}

.stat-number::after {
    content: '+';
    font-size: 2.5rem;
    color: #3182ce;
    margin-left: 5px;
}

.stat-label {
    color: #666;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* Expertise Section */
.expertise {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.expertise-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.expertise-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(49, 130, 206, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    background-size: 400px 400px;
}

.expertise .container {
    position: relative;
    z-index: 1;
}

.expertise .section-header {
    margin-bottom: 80px;
}

.header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3182ce, #1a365d);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(49, 130, 206, 0.3);
}

.header-badge i {
    font-size: 0.8rem;
    color: #ffd700;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.expertise-card {
    background: var(--color-card);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(49, 130, 206, 0.1);
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3182ce, #1a365d, #ffd700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.expertise-card:hover::before {
    transform: scaleX(1);
}

.expertise-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.card-header {
    position: relative;
    padding: 18px 18px 8px;
    text-align: center;
    background: linear-gradient(135deg, rgba(49, 130, 206, 0.05) 0%, rgba(26, 54, 93, 0.05) 100%);
}

/* Remove blue checkmark if it was a pseudo-element */
.card-header::before {
    display: none !important;
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a365d;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.card-image {
    margin-bottom: 8px;
}

.card-image i {
    font-size: 2.2rem;
    padding: 10px;
}

.expertise-card:hover .card-image i {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(49, 130, 206, 0.3);
}

.card-content {
    padding: 0 16px 12px;
}

.card-content h3 {
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.card-description {
    font-size: 13px;
    margin-bottom: 10px;
}

.card-content ul {
    margin: 8px 0;
    padding: 0;
    text-align: left;
}

.card-content li {
    font-size: 13px;
    padding: 2px 0;
    display: block;
    align-items: flex-start;
    justify-content: flex-start;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
    cursor: pointer;
    border-bottom: none;
}

.card-content li:hover {
    color: #1a365d;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 2px;
}

.card-content li i {
    position: absolute;
    left: 0;
    top: 12px;
    color: #3182ce;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.card-content li:hover i {
    transform: scale(1.2);
}

.card-footer {
    text-align: center;
    padding: 8px 0 0 0;
    margin-top: 0;
    border-top: 1px solid rgba(49, 130, 206, 0.1);
}

.experience-tag {
    background: none;
    color: var(--color-text-muted);
    font-size: 15px;
    font-weight: 500;
    border-radius: 0;
    padding: 0;
    margin-bottom: 10px;
    display: block;
}

.know-more-btn {
    background: #3182ce;
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 10px;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(49,130,206,0.08);
}

.know-more-btn:hover {
    background: #1a365d;
    color: #fff;
    transform: translateY(-2px);
}

/* Elliptical Slide Section */
.elliptical-slide-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a365d 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

.elliptical-slide-content-holder {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.elliptical-slide-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.elliptical-slide-wrapper-inner {
    position: relative;
}

.elliptical-slide-elements-holder {
    position: relative;
    z-index: 2;
}

.elliptical-slider {
    position: relative;
    overflow: hidden;
    height: 420px; /* Fixed height based on first slide */
    min-height: 420px;
    display: flex;
    align-items: center;
}

.elliptical-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    height: 100%;
    min-height: 100%;
    box-sizing: border-box;
}

.elliptical-slide.active {
    display: block;
    opacity: 1;
    height: 100%;
    min-height: 100%;
}

.elliptical-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.dot.active {
    background: #ffd700;
    transform: scale(1.2);
}

.elliptical-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.elliptical-slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.elliptical-slider-btn.prev-btn {
    left: -70px; /* Move button further left, outside content */
}

.elliptical-slider-btn.next-btn {
    right: -70px; /* Move button further right, outside content */
}

.elliptical-slider-btn.prev-btn:hover {
    left: -20px;
}

.elliptical-slider-btn.next-btn:hover {
    right: -20px;
}

.slide-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.empty-space {
    height: 5px;
}

.iwt-content {
    margin-bottom: 30px;
}

.iwt-title {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.iwt-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(67, 213, 203, 0.2);
    border-radius: 50%;
    border: 2px solid #43D5CB;
}

.iwt-icon i {
    font-size: 30px;
    color: #43D5CB;
}

.iwt-title-text {
    color: white;
}

.iwt-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-weight: 400;
}

.btn-icon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #43D5CB, #3182ce);
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(67, 213, 203, 0.3);
}

.btn-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(67, 213, 203, 0.4);
    background: linear-gradient(135deg, #3182ce, #43D5CB);
}

.btn-icon-holder {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.btn-icon:hover .btn-icon-holder {
    transform: translateX(5px);
}

/* Enhanced Surgical Procedures Section */
.surgery-procedures {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a365d 100%);
    position: relative;
    overflow: hidden;
}

.surgery-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.surgery-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(67, 213, 203, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    background-size: 300px 300px;
}

.surgery-procedures .container {
    position: relative;
    z-index: 1;
}

.surgery-procedures .section-header {
    margin-bottom: 80px;
    text-align: center;
}

.surgery-procedures .section-header h2 {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.surgery-procedures .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
}

.surgery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.surgery-card {
    background: var(--color-card);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(49, 130, 206, 0.1);
}

.surgery-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #43D5CB, #3182ce, #ffd700);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.surgery-card:hover::before {
    transform: scaleX(1);
}

.surgery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.surgery-card:hover .card-image img {
    transform: scale(1.1);
}

.card-header {
    position: relative;
    padding: 20px 20px 15px;
    text-align: center;
    background: linear-gradient(135deg, rgba(67, 213, 203, 0.05) 0%, rgba(49, 130, 206, 0.05) 100%);
}

.procedure-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a365d;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

.card-body {
    padding: 20px;
    text-align: center;
}

.card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.procedure-description {
    color: var(--color-text-muted);
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(49, 130, 206, 0.05);
}

.success-rate {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a365d;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
}

.card-footer .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
}



/* Media Coverage */
.media-coverage {
    padding: 100px 0;
    background: #f7fafc;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.media-item {
    background: var(--color-card);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 20px var(--color-shadow);
    border: 1px solid var(--color-border);
}

.media-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.media-image {
    margin-bottom: 20px;
}

.media-image i {
    font-size: 3rem;
    color: #3182ce;
    background: rgba(49, 130, 206, 0.1);
    padding: 20px;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.media-item:hover .media-image i {
    transform: scale(1.1);
}

.media-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
}

.media-content p {
    color: #666;
    font-size: 0.9rem;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: var(--color-card);
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.stars {
    display: flex;
    gap: 5px;
}

.stars i {
    color: #ffd700;
    font-size: 1.5rem;
    animation: pulse 2s infinite;
}

.rating-text {
    font-size: 1.1rem;
    color: #666;
    font-weight: 500;
}

.reviews-slider-container {
    overflow: hidden;
    margin-top: 60px;
}

.reviews-slider {
    display: flex;
    gap: 30px;
    animation: slideReviews 20s infinite linear;
}

.review-card {
   
    background: var(--color-card);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    border: 1px solid var(--color-border);
    box-shadow: 0 4px 20px var(--color-shadow);
}

.review-card p{
    font-size:14px;
        height: 116px;
    overflow-y: auto;
}
.review-card:hover {
    transform: translateY(-5px);
}


.review-card p {
  overflow-y: auto;
  scrollbar-width: thin;           /* Firefox */
  scrollbar-color: #999 transparent;
}

/* For WebKit browsers like Chrome, Edge, Safari */
.review-card p::-webkit-scrollbar {
  width: 6px;
}

.review-card p::-webkit-scrollbar-track {
  background: transparent;
}

.review-card p::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 10px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.reviewer-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 5px;
}

.review-stars {
    display: flex;
    gap: 3px;
}

.review-stars i {
    color: #ffd700;
    font-size: 0.9rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.review-date {
    font-size: 0.9rem;
    color: #999;
}

/* Consult Banner */
.consult-banner {
    background: linear-gradient(135deg, #3182ce 0%, #1a365d 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.banner-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.banner-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: #000000;
    color: #fafafa;
    padding: 10px 0 10px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width:100%;
   
}

.footer-section h3 {
    color: #fafafa;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 6px;
}

.footer-section a {
    color: #fafafa;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 15px;
}

.footer-section a:hover {
    color: #3182ce;
}

.footer .social-links a {
    color: #fafafa;
    font-size: 20px;
    margin-right: 15px;
    transition: color 0.3s ease;
}

footer ul{
    padding-left:0px;
    font-size:15px;
}
.footer .social-links a:hover {
    color: #3182ce;
}

.clinic-location {
    margin-bottom: 20px;
}

.dropdown:hover .dropdown-menu{
    display:block;
}
.clinic-location h4 {
    font-size: 17px;
    font-weight: 600;
    color: #ffd700;
    margin-bottom: 10px;
}

.clinic-location p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.4;
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #2d3748;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3182ce;
}

.footer-disclaimer {
  font-size: 0.92rem;
  color: var(--color-footer-text);
  margin-bottom: 18px;
  line-height: 1.7;
  text-align: left;
}

.footer-disclaimer strong {
  color: var(--color-footer-strong);
  font-weight: 600;
}



/*new page css*/

.new_page_hero .carousel-caption{
    padding-top: 0 !important;
}
.new_page_hero .carousel-caption p{
    font-size: 16px;
}
.new_page_faqs h4{
    font-size: 16px;
}


._mobile_cta_new{
    
}
._mobile_cta_new .display-4{
    font-size: 30px;
}
._mobile_cta_new .display-5{
    font-size: 28px;
}


@media (max-width: 600px) {
  .footer-disclaimer {
    font-size: 0.85rem;
    text-align: left;
  }
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes slideReviews {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
.desktop_img{
    display: block;
}
.mobile_img{
    display: none;
}

/* Media Coverage Flags Section */
.media-coverage-flags {
  background: #f8fafc;
  padding: 60px 0 80px 0;
  text-align: center;
}
.media-coverage-flags h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 40px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.media-flags-row {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}
.media-flag {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.flag-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.10);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s;
}
.flag-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-flag:hover .flag-circle {
  transform: scale(1.08) rotate(-2deg);
  box-shadow: 0 8px 32px rgba(22,161,183,0.18);
}
.flag-label {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 400;
  margin-top: 5px;
  letter-spacing: 0.2px;
}
@media (max-width: 600px) {
  .media-flags-row { gap: 30px; }
  .flag-circle { width: 80px; height: 80px; }
  .media-coverage-flags h2 { font-size: 1.3rem; }
}

/* Google Reviews Section */
.google-reviews-section {
    padding: 60px 0;
    background: white;
}

.google-reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.google-doctor-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 300px;
    flex-shrink: 0;
}

.doctor-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: block;
}

.doctor-info {
    text-align: center;
}

.doctor-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 10px;
}

.doctor-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 8px;
}

.rating-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
}

.stars {
    color: #ffd700;
    font-size: 1.2rem;
}

.review-count {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #666;
    font-size: 12px;
    margin-bottom: 20px;
}

.powered-by img {
    width: 16px;
    height: 16px;
}

.google-review-btn {
    background: #063d77;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    justify-content: center;
}

.google-review-btn:hover {
    background: #0c98af;
    transform: translateY(-2px);
}

.google-review-btn img {
    width: 16px;
    height: 16px;
}

.google-reviews-carousel {
    flex: 1;
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.google-review-card {
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    min-width: 350px;
    flex-shrink: 0;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.reviewer-photo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.reviewer-name {
    font-weight: 600;
    color: #1a365d;
    font-size: 16px;
}

.google-logo {
    width: 16px;
    height: 16px;
    margin-left: 5px;
}

.review-time {
    color: #666;
    font-size: 12px;
    margin-top: 2px;
}

.review-stars {
    color: #ffd700;
    font-size: 16px;
    margin-bottom: 10px;
}

.review-text {
    color: #333;
    line-height: 1.6;
    font-size: 14px;
}

@media (max-width: 900px) {
  .google-reviews-container { flex-direction: column; align-items: stretch; gap: 30px; }
  .google-doctor-card { width: 100%; max-width: 400px; margin: 0 auto; }
  .google-reviews-carousel { justify-content: flex-start; }
}

/* Stories of Care & Recovery Section */
.care-recovery-section {
  background: #f8fafc;
  padding: 60px 0;
}

.care-recovery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.story-card {
  background: var(--color-card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--color-border);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.story-video-container {
  position: relative;
  width: 100%;
  height: 420px;
  background: #000;
  overflow: hidden;
}

.story-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.video-controls {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.play-btn {
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #1a365d;
  font-size: 18px;
}

.play-btn:hover {
  background: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.story-content {
  padding: 24px;
}

.story-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a365d;
  margin: 0 0 12px 0;
  line-height: 1.4;
}

.story-content p {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
    .section_title{
            font-size: 28px !important;
    }
    .surger_contnet{
            background-color: #ffffff96;
    padding: 15px;
    border-radius: 8px;
    }
    .surger_contnet h1{
            font-size: 26px !important;
    }
    .surger_contnet p{
            font-size: 14px;
    }
  .care-recovery-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  
  .story-video-container {
    height: 320px;
  }
  
  .story-content {
    padding: 20px;
  }
  
  .story-content h3 {
    font-size: 1.1rem;
  }
}

.faq-section {
    background: white;
    padding: 80px 0 60px 0;
}

.faq-accordion {
  max-width: 800px;
  margin: 40px auto 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: var(--color-faq-bg);
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(49,130,206,0.06);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.faq-item.open {
  box-shadow: 0 8px 32px rgba(49,130,206,0.13);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  text-align: left;
  font-size: 1.13rem;
  font-weight: 600;
  color: #1a365d;
  padding: 22px 28px 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
}
.faq-question:hover {
  background: #e6f0fa;
}
.faq-toggle {
  font-size: 1.5rem;
  color: #3182ce;
  margin-left: 18px;
  font-weight: 700;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle {
  transform: rotate(180deg);
}
.faq-answer {
  background: var(--color-faq-answer);
  color: #425466;
  font-size: 1rem;
  line-height: 1.7;
  padding: 0 28px 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1), padding 0.3s;
}
.faq-item.open .faq-answer {
  padding: 0 28px 22px 24px;
}

@media (max-width: 900px) {
  .faq-accordion {
    max-width: 98vw;
    margin: 30px auto 0 auto;
  }
  .faq-section {
    padding: 60px 0 40px 0;
  }
}

.award-img {
  width: 100%;
  max-width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto 10px auto;
  display: block;
  box-shadow: 0 4px 18px rgba(49,130,206,0.10);
  background: #f8fafc;
}

.award-caption {
  text-align: center;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 0;
}

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-card);
  border-radius: 18px;
  box-shadow: 0 4px 20px var(--color-shadow);
  padding: 17px 7px 11px 7px;
  margin: 0 10px;
  min-width: 144px;
  max-width: 156px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.award-item:hover {
  box-shadow: 0 12px 40px var(--color-shadow-strong);
  transform: translateY(-6px) scale(1.03);
}

@media (max-width: 700px) {
  .award-img {
    max-width: 59vw;
    height: 72px;
  }
  .award-item {
    min-width: 108px;
    max-width: 59vw;
    padding: 11px 3px 7px 3px;
  }
}

/* Fixed Contact Buttons */
.fixed-contact-buttons {
    position: fixed;
    left: 20px;
    bottom: 80px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background: #25d366;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: scale(1.1);
}

.phone-btn {
    background: #3182ce;
}

.phone-btn:hover {
    background: #1a365d;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .additional_section{
        min-height: auto;
        position: static;
        padding: 15px 0;
        background-image: none !important;
    }
    .additional_section .overlay{
        position: static;
    }
    .fixed-contact-buttons {
        left: 15px;
        bottom:70px;
        gap: 10px;
    }
    
    .contact-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.expertise-card::before,
.card-header::before,
.card-header > *:first-child::before {
    display: none !important;
    content: none !important;
}

.awards-swiper .swiper-button-next,
.awards-swiper .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background: #3182ce;
    border-radius: 50%;
    color: white;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0.95;
    border: none;
}

.awards-swiper .swiper-button-next {
    right: -60px;
}

.awards-swiper .swiper-button-prev {
    left: -60px;
}

.awards-swiper .swiper-button-next::after,
.awards-swiper .swiper-button-prev::after {
    display: none;
}

.awards-swiper .swiper-button-next i,
.awards-swiper .swiper-button-prev i {
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}


/**/

.section{
    padding:60px 0;
}
.section_title{
        text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
    font-size:36px;
}
.awardSwiper .swiper-wrapper{
    align-items:center;
}
.awardSwiper  img{
    height:150px;
}
.awardSwiper .swiper-wrapper .swiper-slide{
    text-align:center;
}
.swiper-button-next,.swiper-button-prev{
        background: black;
    padding: 6px;
    display: inline-block;
    font-size: 14px;
    text-align: center;
    align-items: center;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    
    width: 50px;
    height: 50px;
    display: flex
;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--secondary);
}
.swiper-button-next::after,.swiper-button-prev::after{
        font-size: 24px;
    color: white;
}


.swiper {
  width: 100%;
  max-width: 1200px;
  height: auto; /* allow flexible height */
  padding-bottom: 0; /* space for dots */
  overflow-y: visible; /* make sure pagination is not hidden */
  margin: auto;
}

.section_bg{
    background-size:cover;
}
.bg-primary{
    background-color:var(--primary) !important;
}
.swiper-pagination {
  position: relative;
  bottom: 0;
  margin-top: 10px;
  text-align: center;
}
.service_item_static{
    height:100%;
}
.service_item_static img{
    width:100px;
    margin-bottom:14px;
}
.swiper-pagination-clickable .swiper-pagination-bullet{
    background: white;
  opacity: 0.5;
}
.service_swiper_containerx .swiper-button-next, .service_swiper_containerx .swiper-button-prev{
    top: 174px;
}
.x_content{
    border-radius: 10px;
    overflow: hidden;
}
.x_content img{
       height: 350px;
    width: 100%;
    object-fit: cover;
    object-position: top left;
}
.x_content_x{
        background: #ffffffe3;
    color: black;
    padding: 40px;
    height: 100%;
    margin-left: -30px;
}
.service_item{
        background: white;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    text-align:center;
}
.service_item img{
    height:240px;
    width:100%;
    object-fit:cover
}
.service_item a{
    color:#222;
}
._x{
        max-width: 300px;
            margin: auto;
}
.page-header{
    padding:80px 0;
    
    background-size:cover;
    background-position: center;
}
.surger_contnet{
        display: grid;
        gap:20px;
    grid-template-columns: 1fr 1fr;
    align-items:center;
}
.alternate .bg-primary{
    background-color: #fff !important;
    color: black !important;
}

.bg-info{
    background-color: #b3d8ff3d !important;
}
.badge{
        font-size: 14px !important;
    font-weight: normal;
    margin-bottom: 6px;
}
.homepage_youtube{
        height: 169px;
    border: 1px solid #ccc;
    border-radius: 8px;
}
.text-black{
    color:#000;
}
.form-control{
    box-shadow:none !important;
}
.form-control:focus{
    border-color:var(--primary) !important;
}
.border-secondary{
    border-color:var(--secondary) !important;
}
.border-primary{
    border-color:var(--primary) !important;
}
.accordion-button {
  background-color: #f8f9fa; /* light background for collapsed buttons */
  color: #000;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: var(--secondary) !important;
  color: #fff !important;
}

.accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1); /* make icon white only when active */
}
.rounded-3{
    border-radius:12px !important;
}
.text-primary{
    color:var(--primary) !important;
}

.pagination-wrapper {
    text-align: center;
}

.pagination {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 20px auto;
    border-radius: 6px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.pagination li {
    margin: 0 2px;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 8px 14px;
    color: #007bff;
    text-decoration: none;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: all 0.3s ease-in-out;
}

.pagination li a:hover {
    background-color: #007bff;
    color: #fff;
    border-color: #007bff;
}

.pagination li.active span,
.pagination li span[aria-current="page"] {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

.pagination li.disabled span {
    color: #6c757d;
    cursor: not-allowed;
    background-color: #e9ecef;
}
.pagination-wrapper svg{
    width:22px;
}
.pagination-wrapper .flex {
    display: none;
}
.rounded{
    border-radius:6px !important;
}
.post-content{
    
}
.post-content table{
    max-width:100%;
    border:1px solid #000 !important;
    border-collapse:collapse;
}
.post-content table td, .post-content table th{
    border:1px solid #000 !important;
}
.header_overlay{
    min-height:400px;
    padding:50px 0;
    
        display: flex
;
    align-items: center;
    /*background-color:#00000080;*/
    background-color:transparent;
    
}
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: calc(50% - 12px);
    overflow: hidden;
    max-width: 100%;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.video-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.mobile_menu_container{
    display:none;
    
}

.mobile_menu_container{
          
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    z-index: 99999;
  }
  .mobile_menu_header{
      display:flex;
      justify-content:space-between;
      padding:20px;
  }
  .mobile_menu_header img{
      width:200px;
  }
  .mobile_menu_header .close{
      font-size:24px;
  }
  .mobile_menu_container ul li a{
      text-decoration:none;
      display:block;
      font-size:14px;
      margin-bottom:10px;
  }
  .mobile_menu_container ul{
      list-style:none;
  }
  .mobile_menu_container ul{
      padding-left:20px;
  }
      .swiper{
     
  }
  .swiper_container{
      position:relative;
  }
  .swiper-button-next{
      right:-12px;
  }
  .swiper-button-prev{
      left:-12px;
  }
  .counters{
      background-image:url('../images/counter.jpg');
      background-size:cover;
  }
  .service_item_static{
      transition:300ms;
  }
  .service_item_static:hover{
      background-color:var(--secondary) !important;
  }
  .footer_why{
      background-image:url('../images/whyb.jpg');
      background-size:cover;
  
      
  }
  .service_dd h3{
          font-size: 30px;
    line-height: 1.5;
  }
  .service_dd ul{
      padding-left:18px;
  }
  .bg-secondary{
      background-color:var(--secondary) !important;
  }
  .blog-page .blog-one__title{
      font-size: 18px;
      
  }
  .blog-page .blog-one__single{
      
  }
  .blog-one__img{
      overflow: hidden;
      border-radius:6px !important;
      margin-bottom: 10px !important;
      
  }
  .blog-page .blog-one__single:hover .blog-one__title a{
          color: var(--primary) !important;
  }
  .blog-one__title{
      
  }
  .blog-one__img img{
      margin-bottom: 0 !important;
      transition: 400ms;
  }
  .blog-one__img:hover img{
      transform: scale(1.1);
  }
   .blog-page a.btn{
         padding: 10px 13px;
    font-size: 13px;
    font-weight: normal;
    text-align: center;
    display: inline-block;
    
 }
 .carousel-caption{
         position: absolute;
    right: auto;
    bottom: 1.25rem;
    left: 100px;
     text-align: left;
    max-width: 700px;
    padding: 80px;
    color: #fff;
    text-align: left;
    top: 20%;
 }
 .carousel-caption h3{
     font-size: 2.5rem;
     font-weight: bold;
 }
  .carousel-caption p{
      font-size: 18px;;
  }
  .sp_rounded{
      border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    border-top-right-radius: 200px;
    border-bottom-right-radius: 7px;
  }
  .sp_rounded2{
      height: 100%;
    /*background: var(--primary);*/
    color: white;
    padding: 24px;
    font-size: 15px;
    padding-right: 60px;
    
     border-top-left-radius: 40px;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 200px;
    border-top-right-radius: 7px;
        display: flex
;
    flex-direction: column;
  }
  .bg_white > section{
      background: white ;
  }
  
  .service_item_new{
      position:relative;
      background-size: cover;
      height: 350px;
      background-position: center;
      border-radius: 8px;
      overflow: hidden;
  }
  .service_item_new_content{
      position:absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
    background: linear-gradient(to bottom, transparent, transparent, var(--color-primary));
    display: flex;
    align-items: end;
    text-align: center;
    color: white;
    justify-content: center;
  }
    .service_item_new_content a{
        color: white !important;
    }
    .service_item_new_content_over{
transition: 400ms;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    transform: translateY(100%);
    background: var(--color-primary);
    padding: 16px;
    color: white;
    }
    .service_item_new_content_over a:not(.btn){
        color: white !important;
    }
    .service_item_new:hover .service_item_new_content_over{
        transform: translateY(0);
    }
    .custom_video_container{
        position: relative;
    }
    .play_video{
            position: absolute;
    top: calc(50% - 18px);
    left: calc(50% - 18px);
    background-color: transparent;
    border: none;
    outline: none;
    }
    .play_video img{
        width: 40px;
    }
    .ctaa_sec{
            background-color: var(--secondary);
            color: white;
    }
    .ctaa_sec a.btn{
        background-color: white;
        color: black;
    }
    .homepage_iframe{
        position: sticky;
        top: 100px;
    }
    .top_header_whatsapp{
        
    }
    .top_header_whatsapp{
            background-color: #25d366;
    border-radius: 20px;
    padding: 6px 20px;
    }
    .top_header_whatsapp:hover{
         background-color: #17ac4f;
         color: white !important;
    }
    .additional_section{
        min-height: 350px;
        position: relative;
    }
    
    .additional_section .overlay{
        position:absolute;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(90deg, #ffffff, #fff, transparent);
        
        
            display: flex;
    align-items: center;
    }
    .additional_section_hero{
    border-radius: 25px;
    display: block;
    max-width: 600px;
    overflow: hidden;
    border: 1px solid #063d7747;
        
    }
    .additional_section_hero ._button{
        background: #25d366;
    max-width: 200px;
    padding: 10px 20px;
    color: white;
    border-radius: 25px;
    }
    .additional_section_hero ._inner{
            padding: 30px 30px;
    }
    .additional_section_hero ._inner p{
        margin-bottom: 0;
    }
    ._sticky_side{
            position: sticky;
    top: 100px;
    }
    .btn-sm{
            padding: 8px 20px;
            font-size: 15px;
            font-weight: 500;
    }
    .btn-success{
        background-color: #3ab143 !important;
        border-color: #3ab143 !important;
    }
    .btn-success:hover{
        
        background-color: #156834 !important;
        border-color: #156834 !important;
        color: white !important;
    }
    .whatsapp-btn{
              width: 100px;
    height: 80px;
    padding: 8px;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    text-align: center;
    }
    .whatsapp-btn:hover{
        transform: scale(1);
        color: white;
    }
    .whatsapp-btn span{
            line-height: 1.2;
    }
    .whatsapp-btn i{
            display: inline-block;
    font-size: 28px;
    margin-bottom: 4px;
    }
    .phone-btn{
            right: 20px;
    left: auto;
    position: fixed;
    bottom: 80px;
    }
    .footer_cta{
            position: fixed;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    gap: 10px;
    padding: 10px;
    background: white;
    z-index: 99;
    }
    
@media screen and (min-width:769px){
    .carousel-caption{
        padding-top: 30px !important;
    }
}


.post_middle_content{
     padding: 30px;
    background-color: #3182ce1f;
    margin: 20px 0;
    border-radius: 20px;
    text-align: center;
    text-align: center;
        border: 2px dashed var(--primary);
}

.post_middle_content h3{
       margin-bottom: 14px;
    font-size: 22px;
    font-weight: bold;
}
.post_middle_content a{
    margin-right: 10px;
}


.footer_control{
    background: #fff9e7;
    padding: 40px 0;
}
.control_item{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #cae4ff73;
    border: 2px solid #3999ff75;
    padding: 18px;
    border-radius: 18px;
    border-style: dashed;
}

.control_item h4{
        font-size: 36px;
    font-weight: bold;
    margin-bottom: 0;
}
.control_item p{
    margin-bottom: 0;
}
.service-details__services-box  .text-white{
    color: black !important;
}
/* Responsive Design */
@media (max-width: 768px) {
    .control_item h4{
            font-size: 24px;
    }
    .control_item p{
            text-align: center;
    font-size: 12px;
    }
    .post_middle_content{
            display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-direction: column;
    }
    ._hide_mobile{
        display: none;
    }
    .btn-sm{
                padding: 8px 12px !important;
                font-size:12px !important;
    }
    .swiper_container .swiper-button-prev{
        left:0;
    }
     .swiper_container .swiper-button-next{
        right:0;
    }
    .swiper_container  .swiper-button-next::after, .swiper_container   .swiper-button-prev::after{
            font-size: 16px;
            color: white;
                  
    }
    .swiper_container_reviews .swiper-button-prev{
            left: auto;
    right: 45px;
      top: -16px;
    }
    .swiper_container_reviews .swiper-button-next{
          
      top: -16px;
    }
   
    .swiper_container .swiper-button-next, .swiper_container .swiper-button-prev{
            width: 40px;
    height: 40px;
    background-color: var(--primary) !important;
            border: 1px solid white;
    }
    .ortho_pages .carousel-caption{
            background: #ffffffba;
    padding: 16px !important;
    color: black;
    padding: 18px;
    border-radius: 4px;
    }
    .new_page_hero h1{
        font-size: 18px;
}
.new_page_hero .carousel-caption{
        display: flex;
    flex-direction: column;
    justify-content: center;
}
    .speresrr{
        display: block !important;
        margin-top: 10px;
    }
    .quick_links>span:first-child{
        display: block;
        padding-left: 5px;
    }
    .appoinment-page__btn-box{
        display: block !important;
    }
    .quick_links a{
            padding: 4px 6px;
    font-size: 14px;
    }
    .carousel-caption{
        padding: 0 !important;
        top: 30px !important;
        left: 30px !important;
        max-width: 210px !important;
    }
    .carousel-caption h3{
        font-size: 1.5rem !important; 
    }
    .desktop_img{
        display: none;
    }
    .mobile_img{
        display: block;
    }
    .carousel-caption p{
        font-size: 12px !important;
    }
    .top-bar {
        display: none;
    }
    
    .header {
        top: 0;
        padding: 10px 0;
    }
    
    .nav {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expertise-card {
        margin: 0 10px;
    }
    
    .card-header {
        padding: 30px 30px 15px;
    }
    
    .card-content {
        padding: 0 30px 30px;
    }
    
    .card-image i {
        font-size: 3rem;
        padding: 18px;
    }
    
    .logo-img {
        height: 40px;
        max-width: 150px;
    }
    
    .footer-logo-img {
        height: 35px;
        max-width: 140px;
    }

    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .review-card {
        min-width: 300px;
    }
    
    .award-item {
        min-width: 250px;
        padding: 30px 20px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .slider-btn {
        display: none;
    }
    
    .elliptical-slide-section {
        padding: 80px 0;
    }
    
    .elliptical-slide-content-wrapper {
        min-height: 300px;
    }
    
    .elliptical-slide-svg-holder {
        display: none;
    }
    
    .elliptical-slide-elements-holder {
        margin-left: 0;
        text-align: center;
    }
    
    .iwt-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .iwt-text {
        font-size: 1.1rem;
    }
    
    .elliptical-slider-btn {
        display: none;
    }
    
    .elliptical-slider-dots {
        margin-top: 30px;
    }
    
    .surgery-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .surgery-card {
        margin: 0 5px;
        max-width: 320px;
    }
    
    .card-image {
        height: 160px;
    }
    
    .card-header {
        padding: 15px 15px 10px;
    }
    
    .card-body {
        padding: 0 15px 15px;
    }
    
    .card-footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .slide-content h3 {
        font-size: 2rem;
    }
    
    .banner-content h2 {
        font-size: 2rem;
    }
    
    .expertise-card {
        padding: 30px 20px;
    }
    
    .card-header {
        padding: 25px 25px 15px;
    }
    
    .card-content {
        padding: 0 25px 25px;
    }
    
    .card-image i {
        font-size: 2.5rem;
        padding: 18px;
    }
    
    .card-content h3 {
        font-size: 1.4rem;
    }
    
    .card-description {
        font-size: 0.9rem;
    }
    
    .review-card {
        min-width: 280px;
    }
    
    .award-item {
        min-width: 220px;
        padding: 25px 15px;
    }
    
    .award-item h3 {
        font-size: 1rem;
    }
    
    .elliptical-slide-section {
        padding: 60px 0;
    }
    
    .elliptical-slide-content-wrapper {
        min-height: 250px;
    }
    
    .iwt-title {
        font-size: 1.8rem;
    }
    
    .iwt-text {
        font-size: 1rem;
    }
    
    .btn-icon {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .surgery-procedures {
        padding: 80px 0;
    }
    
    .surgery-procedures .section-header h2 {
        font-size: 2.5rem;
    }
    
    .surgery-card {
        margin: 0 5px;
        max-width: 300px;
    }
    
    .card-image {
        height: 140px;
    }
    
    .card-header {
        padding: 12px 12px 8px;
    }
    
    .card-body {
        padding: 0 12px 12px;
    }
    
    .card-body h3 {
        font-size: 1.2rem;
    }
    
    .procedure-description {
        font-size: 0.8rem;
    }
    
    .card-footer .btn {
        padding: 6px 12px;
        font-size: 0.7rem;
    }


    
}

/* ABOUT US SECTION */
.about-us-section {
    padding: 80px 0;
    background: #fff;
}

.about-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-us-image {
    position: relative;
}

.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
}

.image-container img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(15, 51, 106, 0.15);
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: #d26618;
    color: white;
    padding: 25px 30px;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.badge-number {
    display: block;
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 8px;
}

.badge-text {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
}

.about-us-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-label {
    color: #CC6015;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin: 0;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

.about-title .highlight {
    color: #CC6015;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0;
    text-align: justify;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #0F336A 0%, #1a4d8c 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(15, 51, 106, 0.3);
}

.about-btn:hover {
    background: linear-gradient(135deg, #1a4d8c 0%, #0F336A 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15, 51, 106, 0.4);
    color: white;
}

/* Responsive Design for About Section */
@media (max-width: 1024px) {
    .about-us-wrapper {
        gap: 40px;
    }
    
    .about-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .about-us-section {
        padding: 60px 0;
    }
    
    .about-us-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-us-image {
        order: 2;
    }
    
    .about-us-content {
        order: 1;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .about-text {
        font-size: 15px;
        text-align: left;
    }
    
    .experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px 25px;
    }
    
    .badge-number {
        font-size: 28px;
    }
    
    .badge-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .about-us-section {
        padding: 40px 0;
    }
    
    .about-title {
        font-size: 24px;
    }
    
    .about-text {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .about-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .experience-badge {
        bottom: 15px;
        right: 15px;
        padding: 15px 20px;
    }
    
    .badge-number {
        font-size: 24px;
    }
    
    .badge-text {
        font-size: 11px;
    }

    .about-badgee {
    display: inline-block;
    background-color: #d26618;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 8px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

}

/* SERVICES SECTION */
.services-section {
    padding: 100px 0;
    background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)), 
                url('https://www.trilife.in/images/home/service-bg.svg') center/cover;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.services-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 51, 106, 0.05) 0%, rgba(204, 96, 21, 0.02) 100%);
    pointer-events: none;
}

.services-container {
    position: relative;
    z-index: 1;
}

.services-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-title {
    font-size: 30px;
    font-weight: 700;
    color: #CC6015;
    margin: 0 0 30px 0;
    line-height: 1.3;
}

.services-description {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin: 0 0 20px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #fff;
    padding: 20px 20px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(15, 51, 106, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(204, 96, 21, 0.1);
    position: relative;
    overflow: hidden;

}

/* Internal Medicine Hero Banner + Overlay Form */
.internal-medicine-hero{
    position: relative;
    background-image: url('../images/banner/Optimus banner.jpg');
    background-size: cover;
    background-position: right center;
    min-height: 260px;
    display: flex;
    align-items: center;
    color: #fff;
    margin-bottom: 40px;
}
.internal-medicine-hero .hero-overlay{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15,51,106,0.28) 0%, rgba(255,255,255,0.02) 60%);
    z-index: 1;
}
.internal-medicine-hero .hero-inner{
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
    padding: 28px 20px;
}
.internal-medicine-hero .hero-left{
    flex: 1 1 60%;
}
.internal-medicine-hero .hero-title{
    font-size: 48px;
    color: #0F336A;
    margin: 0 0 6px 0;
    font-weight: 800;
    letter-spacing: 1px;
}
.internal-medicine-hero .hero-sub{
    color: #123048;
    opacity: 0.9;
    margin: 6px 0 0 0;
}
.internal-medicine-hero .hero-right{
    flex: 0 0 auto;
    align-self: center;
}
.internal-medicine-hero .btn-cta{
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary), #e67e22);
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(204,96,21,0.18);
}

.internal-medicine-hero .hero-form{
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    width: 360px;
    background: #ffffff;
    padding: 18px;
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(15,51,106,0.18);
    z-index: 3;
    color: #0f2238;
}
.internal-medicine-hero .hero-form h3{
    margin: 0 0 8px 0;
    font-size: 18px;
    color: var(--primary);
}
.internal-medicine-hero .hero-form .form-row{
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}
.internal-medicine-hero .hero-form input[type="text"],
.internal-medicine-hero .hero-form input[type="tel"],
.internal-medicine-hero .hero-form input[type="email"],
.internal-medicine-hero .hero-form select{
    flex: 1 1 auto;
    padding: 10px 12px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 14px;
}
.internal-medicine-hero .hero-form .form-actions{
    display: flex;
    justify-content: flex-end;
}
.internal-medicine-hero .btn-submit{
    background: var(--primary);
    color: #fff;
    padding: 10px 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
}

@media (max-width: 992px){
    .internal-medicine-hero .hero-title{font-size:32px}
    .internal-medicine-hero .hero-form{position: static;transform:none;width:100%;margin-top:18px}
    .internal-medicine-hero .hero-inner{flex-direction:column;align-items:flex-start}
}

@media (max-width: 480px){
    .internal-medicine-hero{min-height:220px;background-position:center}
    .internal-medicine-hero .hero-title{font-size:24px}
}


.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0F336A, #CC6015);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(204, 96, 21, 0.2);
    border-color: #CC6015;
}

.card-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.service-card:hover .card-icon {
    transform: scale(1.15) rotate(5deg);
}

.card-icon svg {
    transition: all 0.3s ease;
}

.service-card:hover .card-icon svg {
    filter: drop-shadow(0 8px 15px rgba(204, 96, 21, 0.3));
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #0F336A;
    margin: 0 0 15px 0;
    transition: color 0.3s ease;
}

.service-card:hover .card-title {
    color: #CC6015;
}

.card-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover .card-text {
    color: #333;
}

/* Responsive Design for Services Section */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .services-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-header {
        margin-bottom: 50px;
    }
    
    .services-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .services-description {
        font-size: 15px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .card-title {
        font-size: 18px;
    }
    
    .card-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 40px 0;
        background-attachment: scroll;
    }
    
    .services-title {
        font-size: 24px;
    }
    
    .services-description {
        font-size: 14px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .card-icon {
        margin-bottom: 20px;
    }
    
    .card-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .card-text {
        font-size: 12px;
    }
}

/* DOCTORS SECTION */
.doctors-section {
    padding: 50px 0;
    /* background: linear-gradient(135deg, #f8fafc 0%, #f0f4f8 100%); */
    position: relative;
    background: #174784;
    overflow: hidden;
}

.doctors-header {
    text-align: center;
    margin-bottom: 60px;
}

.doctors-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.doctors-description {
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
    margin: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.doctors-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 -20px;
    padding: 0 20px;
}

.doctors-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding: 20px 0;
    scrollbar-width: none;
}

.doctors-slider::-webkit-scrollbar {
    display: none;
}

.doctor-card {
    flex-shrink: 0;
    width: 340px;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(15, 51, 106, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(204, 96, 21, 0.1);
}

.doctor-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(204, 96, 21, 0.25);
    border-color: #CC6015;
}

.doctor-image {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    background: linear-gradient(135deg, #0F336A 0%, #1a4d8c 100%);
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.08);
}

.doctor-info {
    padding: 25px;
    text-align: center;
    background: #fff;
}

.doctor-name {
    font-size: 20px;
    font-weight: 700;
    color: #0F336A;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.doctor-card:hover .doctor-name {
    color: #CC6015;
}

.doctor-specialty {
    font-size: 14px;
    color: #CC6015;
    margin: 0;
    font-weight: 600;
    transition: color 0.3s ease;
}

.doctor-card:hover .doctor-specialty {
    color: #0F336A;
}

.doctor-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #0F336A 0%, #1a4d8c 100%); */
    color: white;
    background: #CC6015;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(15, 51, 106, 0.3);
    z-index: 10;
}

.doctor-slider-btn:hover {
    background: linear-gradient(135deg, #CC6015 0%, #e67e22 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(204, 96, 21, 0.4);
}

.doctor-slider-btn.prev-btn {
    left: 0;
}

.doctor-slider-btn.next-btn {
    right: 0;
}

/* Responsive Design for Doctors Section */
@media (max-width: 1024px) {
    .doctor-slider-wrapper {
        gap: 15px;
    }
    
    .doctor-card {
        width: 300px;
    }
    
    .doctor-image {
        height: 380px;
    }
    
    .doctors-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .doctors-section {
        padding: 60px 0;
    }
    
    .doctors-header {
        margin-bottom: 50px;
    }
    
    .doctors-title {
        font-size: 32px;
    }
    
    .doctors-description {
        font-size: 15px;
    }
    
    .doctor-card {
        width: 280px;
    }
    
    .doctor-image {
        height: 350px;
    }
    
    .doctor-slider-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* MAROON HIGHLIGHTS PANEL */
.maroon-highlights {
    padding: 80px 0 100px 0;
    background: #fff;
}
.highlights-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.highlights-left {
    display:flex; justify-content:center; align-items:center;
}
.highlight-ring{
    width:520px; height:520px; border-radius:50%; overflow:hidden; position:relative;
    box-shadow: 0 30px 60px rgba(0,0,0,0.06);
    border: 10px solid rgba(155,19,62,0.06);
}
.highlight-ring img{ width:100%; height:100%; object-fit:cover; display:block; }

.highlights-right{ display:flex; justify-content:flex-end; }
.maroon-panel{
    width: 620px;
    background: #8b0f35; /* maroon */
    color: #fff;
    padding: 48px 56px;
    box-shadow: 0 30px 60px rgba(139,15,53,0.06);
}
.maroon-panel .panel-title{ font-size:34px; margin:0 0 18px 0; font-weight:700; }
.maroon-panel .panel-desc{ color: rgba(255,255,255,0.92); line-height:1.7; margin-bottom:28px; }
.panel-stats-grid{ display:grid; grid-template-columns: repeat(4,1fr); gap:28px 22px; }
.panel-stat{ text-align:left; }
.panel-stat .num{ font-size:28px; font-weight:800; color:#fff; }
.panel-stat .lbl{ font-size:13px; color:rgba(255,255,255,0.85); margin-top:8px; font-weight:600; }

@media (max-width: 1200px){
    .maroon-panel{ width:520px; padding:40px; }
    .highlight-ring{ width:420px; height:420px; }
}
@media (max-width: 992px){
    .highlights-wrap{ grid-template-columns: 1fr; }
    .highlights-left, .highlights-right{ justify-content:center; }
    .maroon-panel{ width:100%; }
    .panel-stats-grid{ grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 600px){
    .highlight-ring{ width:300px; height:300px; }
    .maroon-panel{ padding:28px; }
    .panel-stats-grid{ grid-template-columns: repeat(2,1fr); gap:14px; }
    .maroon-panel .panel-title{ font-size:22px; }
}

/* DOCTORS HIGHLIGHTS STYLES */
.doctors-highlights {
    padding: 80px 0 100px 0;
    background: linear-gradient(180deg, rgba(15,51,106,0.04) 0%, rgba(255,255,255,0.95) 60%);
}
.highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.highlights-image .highlight-circle{
    width: 520px;
    height: 520px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(15,51,106,0.08);
    border: 10px solid rgba(15,51,106,0.06);
}
.highlights-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.highlights-content{
    padding: 30px 10px;
}
.highlights-label{
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.highlights-title{
    font-size: 34px;
    color: #0F336A;
    margin: 0 0 18px 0;
}
.highlights-text{
    color: #444;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.highlights-stats{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.stat{
    background: white;
    padding: 22px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(15,51,106,0.06);
    border: 1px solid rgba(15,51,106,0.04);
}
.stat-number{
    font-size: 26px;
    font-weight: 800;
    color: var(--secondary);
}
.stat-label{
    font-size: 13px;
    color: #556;
    margin-top: 6px;
    font-weight: 600;
}

@media (max-width: 1024px){
    .highlights-grid{ grid-template-columns: 1fr; gap: 30px; }
    .highlights-image .highlight-circle{ width: 420px; height: 420px; }
    .highlights-stats{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px){
    .highlights-image .highlight-circle{ width: 320px; height: 320px; }
    .highlights-title{ font-size: 28px; }
    .highlights-stats{ grid-template-columns: 1fr; }
}


@media (max-width: 480px) {
    .doctors-section {
        padding: 40px 0;
    }
    
    .doctors-slider-wrapper {
        margin: 0 -15px;
        padding: 0 15px;
    }
    
    .doctors-title {
        font-size: 26px;
    }
    
    .doctors-description {
        font-size: 14px;
    }
    
    .doctor-card {
        width: 240px;
    }
    
    .doctor-image {
        height: 300px;
    }
    
    .doctor-info {
        padding: 20px;
    }
    
    .doctor-name {
        font-size: 18px;
        margin-bottom: 6px;
    }
    
    .doctor-specialty {
        font-size: 13px;
    }
    
    .doctor-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    /* DOTS */
.doctor-dots {
    display: flex;
    justify-content: center;
    margin-top: 25px;
    gap: 10px;
}

.doctor-dots span {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.doctor-dots span.active {
    background: #CC6015;
    transform: scale(1.3);
}


/* FAQ SECTION */
.faq-section {
  padding: 80px 0;
  background: var(--color-bg);
  position: relative;
}

.faq-section .container {
  max-width: 900px;
  margin: 0 auto;
}

/* FAQ Header */
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-badge {
  display: inline-block;
  background: var(--color-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.faq-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-primary);
  margin: 0;
  line-height: 1.2;
}

.faq-header h2 .text-accent {
  color: var(--color-secondary);
  font-style: italic;
}

/* FAQ Container */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* FAQ Item */
.faq-item {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px var(--color-shadow);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 20px var(--color-shadow-strong);
}

/* FAQ Question Button */
.faq-question {
  width: 100%;
  background: #fff;
  border: none;
  padding: 22px 24px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
  transition: all 0.3s ease;
  font-family: inherit;
}

.faq-question:hover {
  background: #f8fafc;
  padding-left: 28px;
}

.faq-question span:first-child {
  flex: 1;
}

/* FAQ Icon */
.faq-icon {
  font-size: 24px;
  color: var(--color-secondary);
  transition: all 0.3s ease;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
}

/* FAQ Answer */
.faq-answer {
  background: #fff;
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-answer p {
  color: #555;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/* Active State */
.faq-item.active .faq-question {
  background: #f0f4f8;
  color: var(--color-secondary);
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 20px 24px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--color-secondary);
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-header h2 {
    font-size: 28px;
  }

  .faq-question {
    font-size: 14px;
    padding: 16px 18px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}



}
/* HERO STATS SECTION */
.hero-stats-section {
  padding: 30px 0;
  background: #fff;
}

.hero-stats-grid.compact-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.stat-box.horizontal {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px 22px;
  border: 1.5px solid #ce6316;
  border-radius: 12px;
  background: #fff;
  box-shadow: none;
}

.stat-icon {
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-text h3 {
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.stat-text p {
  font-size: 14px;
  color: #000000;
  margin: 2px 0 0;
  font-weight: 600;
}

/* Hover (soft) */
.stat-box.horizontal:hover {
  background: #fff;
}

/* ===== HERO STATS HOVER EFFECT ===== */
.stat-box.horizontal {
  transition: all 0.35s ease;
}

.stat-box.horizontal:hover {
  background: linear-gradient(135deg, #0F336A 0%, #174784 100%);
  border-color: #0F336A;
  box-shadow: 0 12px 30px rgba(15, 51, 106, 0.25);
  transform: translateY(-6px);
}

/* Icon background on hover */
.stat-box.horizontal:hover .stat-icon {
  background: #ffffff;
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* Number color on hover */
.stat-box.horizontal:hover .stat-text h3 {
  color: #ffffff;
}

/* Label text on hover */
.stat-box.horizontal:hover .stat-text p {
  color: #f1f5f9;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero-stats-grid.compact-stats {
    grid-template-columns: 1fr;
  }
}

/* ================= SERVICE INTRO SECTION ================= */

.service-intro-section {
    padding: 80px 0;
    background: #ffffff;
}

.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #cc6015;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #0b2f6a;
    margin-bottom: 16px;
}

.service-content p {
    font-size: 16px;
    color: #333;
    line-height: 1.7;
    margin-bottom: 14px;
}

.service-image img {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
     width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
    .service-intro-section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 28px;
    }

    .service-image {
        margin-top: 25px;
    }
}


/* ================= SYMPTOMS SECTION ================= */

.symptoms-section {
    background: var(--color-bg);
    padding: 70px 0;
}

.symptoms-image img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
}

/* CONTENT */
.symptoms-content h2 {
    font-size: 34px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 22px;
}

.symptoms-content h2 span {
    color: var(--color-secondary);
}

.symptoms-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 22px 0 10px;
}

/* LIST */
.symptoms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.symptoms-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
    font-size: 15px;
    color: var(--color-text);
}

.symptoms-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-secondary);
    font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .symptoms-content h2 {
        font-size: 26px;
    }

    .symptoms-section {
        padding: 50px 0;
    }
}

/* ================= SECTION WRAPPER ================= */

.risk-section {
    padding: 80px 0;
    background: linear-gradient(
        120deg,
        var(--color-primary),
        #07244d
    );
    color: #fff;
}

.risk-title {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
}

.risk-sub {
    text-align: center;
    max-width: 720px;
    margin: 12px auto 50px;
    color: #e2e8f0;
}

.risk-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
}

/* LEFT ACCORDION */
.risk-item {
    padding: 18px 22px;
    border-bottom: 1px solid rgba(255,255,255,0.25);
    cursor: pointer;
    transition: 0.3s;
}

.risk-item h4 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
}

.risk-desc {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #e2e8f0;
    display: none;
}

/* ACTIVE / HOVER */
.risk-item.active,
.risk-item:hover {
    background: rgba(255,255,255,0.15);
    border-left: 4px solid var(--color-secondary);
}

.risk-item.active .risk-desc,
.risk-item:hover .risk-desc {
    display: block;
}

/* RIGHT IMAGE */
.risk-image img {
    width: 100%;
    border-radius: 22px;
    background: #fff;
}

/* MOBILE */
@media (max-width: 991px) {
    .risk-wrapper {
        grid-template-columns: 1fr;
    }
}


.services-zoom-section {
  padding: 80px 0;
  background: var(--color-bg);
}

.section-title {
  /* text-align: center; */
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-sub {
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 50px;
  font-size: 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  height: 230px;
  box-shadow: 0 20px 40px var(--color-shadow);
  cursor: pointer;
}

.service-card img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover img {
  transform: scale(1.15);
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15,51,106,0.92),
    rgba(15,51,106,0.55),
    rgba(15,51,106,0.15)
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: #fff;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-card:hover .service-overlay {
  opacity: 1;
}

.service-overlay h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-overlay p {
  font-size: 14px;
  line-height: 1.6;
  color: #e2e8f0;
}



/* Mobile */
@media (max-width: 768px) {
  .service-card {
    height: 300px;
  }
}



/* SECTION  Treatment css */
.treatment-section {
  padding: 70px 0;
  background: #fff;
}

.treatment-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 50px;
}

.treatment-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.treatment-card {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 26px;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.treatment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.treatment-overlay {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(
    to top,
    rgba(15, 51, 106, 0.95),
    rgba(15, 51, 106, 0.4),
    transparent
  );
  transition: all 0.4s ease;
}

.treatment-overlay h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 0;
  transform: translateY(40px);
  transition: transform 0.4s ease;
}

.treatment-overlay p {
  color: #e5e7eb;
  font-size: 14px;
  line-height: 1.5;
  margin-top: 12px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.treatment-card:hover img {
  transform: scale(1.15);
}

.treatment-card:hover .treatment-overlay h4 {
  transform: translateY(0);
}

.treatment-card:hover .treatment-overlay p {
  opacity: 1;
  transform: translateY(0);
}

/* FORCE SHOW SWIPER ARROWS */
.treatmentSwiper .swiper-button-next,
.treatmentSwiper .swiper-button-prev {
    color: #0d6efd;        /* arrow color */
    width: 44px;
    height: 44px;
    background: #d66c1a;
    border-radius: 50%;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.treatmentSwiper .swiper-button-next::after,
.treatmentSwiper .swiper-button-prev::after {
    font-size: 18px;
    font-weight: bold;
}

.treatmentSwiper .swiper-button-prev {
    left: -15px;
}

.treatmentSwiper .swiper-button-next {
    right: -15px;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .treatment-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .treatment-row {
    grid-template-columns: 1fr;
  }

  .treatment-card {
    height: 360px;
  }
}

.im-process {
  background: linear-gradient(180deg, #0a2a57, #041b3d);
  padding: 90px 0;
  color: #fff;
}

.process-heading {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 60px;
}

/* Layout */
.process-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
}

/* LEFT */
.process-steps {
  position: relative;
  max-height: 520px;
  overflow-y: auto;
  padding-left: 60px;
}

/* CENTER LINE */
.process-steps::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  width: 3px;
  height: 100%;
  background: rgba(255,255,255,0.35);
}

/* STEP */
.process-step {
  position: relative;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 55px;
  opacity: 0.25;
  transition: all 0.4s ease;
}

.process-step.active {
  opacity: 1;
}

/* ICON ON LINE */
.process-icon {
  position: absolute;
  left: -6px;            /* 👈 THIS puts icon ON the line */
  width: 44px;
  height: 44px;
  background: #fff;
  color: #0a2a57;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(255,255,255,0.15);
}

/* TEXT */
.process-step p {
  margin-left: 40px;
  font-size: 18px;
  line-height: 1.6;
  color: #e2e8f0;
}

/* RIGHT IMAGE */
.process-image {
  position: sticky;
  top: 120px;
}

.process-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 26px;
}

/* Mobile */
@media (max-width: 992px) {
  .process-layout {
    grid-template-columns: 1fr;
  }

  .process-image {
    position: relative;
    margin-top: 40px;
  }

  .process-steps {
    max-height: unset;
  }
}

/* ===============================
   RECOVERY TIMELINE SECTION
================================ */
/* =========================
   SECTION
========================= */
.recovery-timeline {
    background: linear-gradient(135deg, var(--primary), #082550);
    padding: 90px 0;
    color: #fff;
}

.timeline-heading {
    text-align: center;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 80px;
}

/* =========================
   LAYOUT
========================= */
.timeline-layout {
    display: grid;
    grid-template-columns: 1.2fr 80px 1fr; /* TEXT | LINE | IMAGE */
    gap: 40px;
    align-items: flex-start;
}

/* =========================
   SCROLL AREA
========================= */
.timeline-scroll {
    max-height: 520px;
    overflow-y: auto;
    padding: 120px 20px;   /* 🔥 TOP + BOTTOM SPACE */
    position: relative;
}


.timeline-scroll::-webkit-scrollbar {
    width: 0;
}
.timeline-scroll {
    scrollbar-width: none;
}

/* =========================
   CENTER LINE
========================= */
.timeline {
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 95%;
    top: 0;
    width: 3px;
    height: 100%;
    background: rgba(255,255,255,0.35);
    transform: translateX(-50%);
}

/* =========================
   ROW
========================= */
.timeline-row {
    position: relative;
    min-height: 90px;
    margin-bottom: 60px;
    opacity: 0.15;
    transition: 0.4s ease;
}

.timeline-row.active {
    opacity: 1;
}

/* =========================
   ICON (PERFECT CENTER)
========================= */
.timeline-center {
    position: absolute;
    left: 95%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.timeline-icon {
    width: 58px;
    height: 58px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 0 0 8px rgba(255,255,255,0.18);
}

/* =========================
   TEXT (LEFT SIDE)
========================= */
.timeline-right {
    padding-right: 80px;
}

.timeline-right p {
    font-size: 16px;
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0;
}

/* =========================
   RIGHT IMAGE
========================= */
.timeline-image {
    position: sticky;
    top: 120px;
}

.timeline-image img {
    width: 480px;
    height: 440px;
    object-fit: cover;
    border-radius: 26px;
}


/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
    .timeline-layout {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        display: none;
    }

    .timeline-center {
        left: 0;
        transform: translateY(-50%);
    }

    .timeline-right {
        padding-right: 0;
        padding-left: 80px;
    }

    .timeline-image {
        position: relative;
        margin-top: 40px;
    }
}


/* ================= WHY OPTIMUS SECTION ================= */

.why-optimus-section {
    background: var(--color-bg);
    padding: 90px 0;
}

.why-optimus-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-optimus-image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(15, 51, 106, 0.15);
}

.why-optimus-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 22px;
}

.why-optimus-content h2 span {
    color: var(--secondary);
}

.why-optimus-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin-bottom: 18px;
}

.why-optimus-content strong {
    color: var(--primary);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .why-optimus-wrapper {
        grid-template-columns: 1fr;
    }

    .why-optimus-content h2 {
        font-size: 30px;
    }
}

/* ================= Doctor Appointment Section ================= */

.im-appointment-section {
    background: #ffffff;
    padding: 90px 0;
}

.im-appointment-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
    align-items: center;
}

/* ================= Doctor Image ================= */

.im-doctor-image-box {
    display: flex;
    justify-content: center;
}

/* Wrapper (important for badge positioning) */
.im-doctor-image-wrap {
    position: relative;
    width: 340px;
}

/* Circle Image */
.im-doctor-image {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(15, 51, 106, 0.18);
}

.im-doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Doctor Info Badge */
.im-doctor-info {
    position: absolute;
    bottom: -22px;
    right: -10px;
    background: #ffffff;
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    min-width: 210px;
}

.im-doctor-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
}

.im-doctor-info span {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
}

/* ================= Content ================= */

.im-small-title {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.im-doctor-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 20px;
}

.im-doctor-content h2 span {
    color: var(--secondary);
}

.im-doctor-content p {
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text-muted);
    margin-bottom: 15px;
}

.im-doctor-points {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.im-doctor-points li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: var(--color-text-muted);
    font-size: 15px;
}

.im-doctor-points li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary);
    font-weight: bold;
}

/* Button */
.im-btn-appointment {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.im-btn-appointment:hover {
    background: var(--primary);
    color: #fff;
}

/* ================= Responsive ================= */

@media (max-width: 992px) {
    .im-appointment-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .im-doctor-image-wrap {
        width: 280px;
        margin: 0 auto 20px;
    }

    .im-doctor-image {
        width: 280px;
        height: 280px;
    }

    .im-doctor-info {
        right: 50%;
        transform: translateX(50%);
        bottom: -28px;
        text-align: center;
    }

    .im-doctor-points li {
        text-align: left;
    }
}


/* ================= DIAGNOSTIC SECTION ================= */
.diagnostic-section {
    background: #0b2c5c;
    padding: 70px 0;
}

.diagnostic-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.diagnostic-heading h2 {
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.diagnostic-heading p {
    color: #fff;
    font-size: 15px;
}

.diagnostic-icons {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    text-align: center;
}

.diagnostic-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.diagnostic-icon {
    width: 90px;
    height: 90px;
    background: #8ad0f3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.diagnostic-icon img {
    width: 45px;
    height: 45px;
}

.diagnostic-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .diagnostic-icons {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 575px) {
    .diagnostic-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

.hero-banner {
    position: relative;
    padding: 40px 0;
    overflow: hidden;
}

.hero-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;   
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(3, 30, 73, 0.92) 0%,
        rgba(3, 30, 73, 0.75) 45%,
        rgba(3, 30, 73, 0.2) 100%
    );
    z-index: 1;
}

.hero-inner {
    position: relative;
    z-index: 2;
}


/* FORM CARD */
.hero-form-card {
    background: #ffffff;
    padding: 36px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    max-width: 480px;
    margin-left: auto;
    /* 🔥 right align */
}

.hero-form-card h4 {
    font-weight: 700;
    color: #0b2f6a;
    margin-bottom: 24px;
}

.hero-form-card .form-control,
.hero-form-card .form-select {
    height: 50px;
    border-radius: 10px;
}

.hero-form-card button {
    background: #cc6015;
    border: none;
    border-radius: 50px;
    padding: 14px;
    font-size: 16px;
    font-weight: 600;
}

.hero-form-card button:hover {
    background: #b65212;
}

.hero-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

/* SEND ENQUIRY BUTTON */
.send-enquiry-btn {
    background: #2f80ed;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.send-enquiry-btn:hover {
    background: #256ad4;
}

/* RIGHT SIDE LINKS */
.quick-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
}

.quick-contact a {
    text-decoration: none;
}

.whatsapp-link {
    color: #25D366;
}

.call-link {
    color: #000;
}

.quick-contact i {
    margin-right: 6px;
    font-size: 16px;
}

.divider {
    color: #999;
}

/* MOBILE */
@media (max-width: 576px) {
    .hero-submit-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}


/* MOBILE */
@media (max-width: 991px) {
    .hero-form-card {
        margin: 0 auto;
    }
}


/* ================= CONTACT PAGE LAYOUT FIX ================= */

.contact-page-section {
    padding: 80px 0;
    background: #f6f8fb;
}

/* CENTER BOTH COLUMNS */
.contact-page-section .row {
    justify-content: center;
}

/* LEFT CARD */
.contact-info-box {
    /* background: #ffffff; */
    /* border-radius: 18px; */
    padding: 36px;
    /* max-width: 520px; */
    margin-left: auto;
    /* box-shadow: 0 18px 45px rgba(0,0,0,0.08); */
}

.contact-info-box h3 {
    font-weight: 700;
    color: #0b2f6a;
    margin-bottom: 28px;
}

/* CONTACT ITEMS */
.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 22px;
}

.contact-item i {
    font-size: 20px;
    color: #cc6015;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    font-size: 20px;
    color: #0b2f6a;
}

.contact-item p {
    margin: 0;
    font-size: 16.5px;
    color: #000000;
    font-weight: 500;
}

.contact-page-section .hero-form-card {
    margin-right: auto;
}

.hero-submit-row {
    flex-wrap: wrap;
    gap: 14px;
}

.quick-contact {
    gap: 14px;
}

/* ================= MAP ================= */
.map-section {
    /* margin-top: 80px; */
}

.map-section iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 0;
}

/* ================= MOBILE ================= */
@media (max-width: 991px) {

    .contact-info-box,
    .hero-form-card {
        margin: 0 auto;
        max-width: 100%;
    }

    .contact-page-section {
        padding: 80px 0;
    }
}


/* ===============================
   ABOUT CORE SECTION
================================ */

.about-core-section {
    padding: 100px 0;
    background: linear-gradient(
        180deg,
        #0b2f6a 0%,
        #092651 100%
    );
    color: #ffffff;
}

/* HEADER */
.about-core-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.about-core-header .about-tag {
    display: inline-block;
    color: #cc6015;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-core-header h2 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 18px;
}

.about-core-header p {
    font-size: 16px;
    line-height: 1.7;
    color: #d6e2f3;
}

/* GRID */
.about-core-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* CARD */
.about-core-card {
    background: #ffffff;
    color: #333;
    border-radius: 22px;
    padding: 45px 40px;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25);
    position: relative;
}

.about-core-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #cc6015, #ff8c3a);
    border-radius: 22px 22px 0 0;
}

.about-core-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: #0b2f6a;
    margin-bottom: 16px;
}

.about-core-card p {
    font-size: 15.5px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #555;
}

.about-core-card ul {
    padding-left: 18px;
    margin: 0;
}

.about-core-card ul li {
    font-size: 15px;
    margin-bottom: 10px;
    color: #444;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .about-core-grid {
        grid-template-columns: 1fr;
    }

    .about-core-header h2 {
        font-size: 30px;
    }
}


/* ===============================
   WHY CHOOSE SECTION V2
================================ */

.why-choose-section-v2 {
    padding: 100px 0;
    background: linear-gradient(135deg, #f3fbff 0%, #ffffff 100%);
    overflow: hidden;
}

/* IMAGE */
.why-image-wrap {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(11, 47, 106, 0.25);
}

.why-image-wrap img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 28px;
}

/* CONTENT */
.why-content-wrap {
    padding-left: 40px;
    padding-top: 70px; /* 🔥 THIS creates the offset you want */
}

/* TAG */
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: #cc6015;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
}

/* TITLE */
.why-content-wrap h2 {
    font-size: 38px;
    font-weight: 800;
    color: #0b2f6a;
    margin-bottom: 18px;
}

/* INTRO */
.intro-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 28px;
    max-width: 620px;
}

/* LIST */
.why-points {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}

.why-points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 14px;
    font-size: 15.5px;
    line-height: 1.7;
    color: #444;
}

.why-points li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 1px;
    color: #cc6015;
    font-weight: 700;
}

/* BUTTON */
.btn-why-primary {
    display: inline-block;
    background: linear-gradient(90deg, #cc6015, #ff8c3a);
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(204, 96, 21, 0.35);
    transition: all 0.3s ease;
}

.btn-why-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 35px rgba(204, 96, 21, 0.45);
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 991px) {

    .why-content-wrap {
        padding-left: 0;
        padding-top: 40px;
    }

    .why-image-wrap img {
        height: 420px;
    }

    .why-content-wrap h2 {
        font-size: 30px;
    }
}


/* ================= STORIES SPLIT SECTION ================= */

.stories-split-section {
  padding: 100px 0;
    background: linear-gradient(135deg, #f3fbff 0%, #ffffff 100%);
}

/* HEADER */
.stories-header {
  text-align: center;
  margin-bottom: 60px;
}

.stories-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #cc6015;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.stories-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: #0b2f6a;
  max-width: 900px;
  margin: auto;
}

/* MAIN SPLIT */
.stories-split {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 28px;
  align-items: stretch;
}

/* LEFT IMAGE */
.stories-left {
  border-radius: 26px;
  overflow: hidden;
  height: 100%;
}

.stories-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 26px;
}

/* RIGHT SIDE */
.stories-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

/* ROWS */
.stories-row {
  display: grid;
  gap: 18px;
  flex: 1; /* 🔥 equally divide height */
}

/* 4 images row */
.row-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* 5 images row */
.row-5 {
  grid-template-columns: repeat(5, 1fr);
}

/* CARD */
.story-card {
  border-radius: 22px;
  overflow: hidden;
  background: #f5f7fa;
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .stories-split {
    grid-template-columns: 1fr;
  }

  .stories-right {
    height: auto;
  }

  .stories-row {
    flex: unset;
  }

  .row-4,
  .row-5 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .row-4,
  .row-5 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stories-header h2 {
    font-size: 28px;
  }
}


/* ================= CTA APPOINTMENT SECTION ================= */

.cta-appointment-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        #0b2f6a 0%,
        #1f4fa3 100%
    );
    overflow: hidden;
}

/* soft dot pattern */
.cta-particles {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(
        rgba(255,255,255,0.35) 1px,
        transparent 1px
    );
    background-size: 26px 26px;
    opacity: 0.35;
    z-index: 1;
}

.cta-appointment-section .container {
    position: relative;
    z-index: 2;
}

/* LEFT CONTENT */
.cta-content {
    color: #ffffff;
}

.cta-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #ffb067;
    margin-bottom: 10px;
}

.cta-content h2 {
    font-size: 35px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 18px;
}

.cta-content p {
    font-size: 16px;
    line-height: 1.8;
    max-width: 520px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* CONTACT BUTTONS */
.cta-contact {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.cta-phone {
    background: linear-gradient(90deg, #ff8c3a, #ffb067);
    color: #fff;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(255, 140, 58, 0.4);
}

.cta-email {
    background: #ffffff;
    color: #0b2f6a;
    padding: 14px 26px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
}

.cta-phone:hover {
    transform: translateY(-2px);
}

.cta-email:hover {
    background: #f4fbff;
}

/* RIGHT FORM CARD */
.cta-form-wrap {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border-radius: 26px;
    padding: 38px;
    box-shadow: 0 30px 60px rgba(11, 47, 106, 0.35);
}



/* FORM BUTTON OVERRIDE (ORANGE CTA) */
.cta-form-wrap button,
.cta-form-wrap .btn {
    background: linear-gradient(90deg, #ff8c3a, #ffb067) !important;
    color: #fff !important;
    border-radius: 50px;
    font-weight: 600;
}

/* FORM CARD INNER */
.cta-form-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 34px 30px;
}

/* FORM TITLE */
.cta-form-title {
    font-size: 22px;
    font-weight: 700;
    color: #0b2f6a;
    margin-bottom: 22px;
}

/* FORM */
.cta-form .form-group {
    margin-bottom: 14px;
}

.cta-form input,
.cta-form select {
    width: 100%;
    height: 48px;
    border-radius: 12px;
    border: 1px solid #d0d8e5;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
}

.cta-form input:focus,
.cta-form select:focus {
    border-color: #ff8c3a;
}

/* SUBMIT BUTTON */
.btn-submit {
    width: 100%;
    margin-top: 10px;
    padding: 14px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff8c3a, #ffb067);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* ACTION LINKS */
.cta-form-actions {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
}

.cta-whatsapp {
    color: #25d366;
    text-decoration: none;
    font-weight: 600;
}

.cta-call {
    color: #000;
    text-decoration: none;
    font-weight: 600;
}

.cta-form-actions span {
    margin: 0 8px;
    color: #999;
}


/* RESPONSIVE */
@media (max-width: 991px) {
    .cta-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .cta-content h2 {
        font-size: 28px;
    }
}


/* ================= DOCTOR INTRO SECTION ================= */

.doctor-intro-section {
    padding: 90px 0;
    background: #f4fbff;
}

/* IMAGE */
.doctor-intro-image {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 28px 55px rgba(11, 47, 106, 0.25);
}

.doctor-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
}

/* CONTENT */
.doctor-intro-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0b2f6a;
    margin-bottom: 8px;
}

.doctor-intro-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ff8c3a;
    margin-bottom: 18px;
}

.doctor-intro-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 18px;
    max-width: 640px;
}

/* BUTTON */
.doctor-intro-btn {
    display: inline-block;
    margin-top: 14px;
    padding: 14px 34px;
    background: linear-gradient(90deg, #ff8c3a, #ffb067);
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 26px rgba(255, 140, 58, 0.4);
    transition: 0.3s ease;
}

.doctor-intro-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(255, 140, 58, 0.5);
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .doctor-intro-content h2 {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .doctor-intro-content h2 {
        font-size: 26px;
    }
}


/* ================= OPT IVF SLIDER ================= */

.opt-ivf-slider-section {
    padding: 90px 0;
    background: linear-gradient(135deg, #0b2f6a, #1f4fa3);
    overflow: hidden;
}

/* HEADER */
.opt-ivf-header-wrap {
    max-width: 1300px;
    margin: 0 auto 40px;
    padding: 0 20px;
    position: relative;
}

.opt-ivf-tag {
    color: #ffb067;
    font-size: 14px;
    font-weight: 600;
}

.opt-ivf-title {
    color: #ffffff;
    font-size: 35px;
    font-weight: 800;
    max-width: 720px;
    margin-top: 8px;
    line-height: 1.25;
}

/* NAV */
.opt-ivf-nav {
    position: absolute;
    right: 20px;
    top: 10px;
    display: flex;
    gap: 12px;
}

.opt-ivf-prev,
.opt-ivf-next {
    width: 46px;
    height: 46px;
    background: #ffffff;
    border-radius: 50%;
    color: #ff8c3a;
    box-shadow: 0 8px 22px rgba(0,0,0,0.25);
}

.opt-ivf-prev::after,
.opt-ivf-next::after {
    font-size: 16px;
    font-weight: bold;
}

/* SLIDER */
.opt-ivf-swiper {
    padding-left: 8%;
}

.opt-ivf-swiper .swiper-slide {
    width: 320px;
}

/* CARD */
.opt-ivf-card {
    position: relative;
    height: 420px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 28px 55px rgba(0,0,0,0.28);
}

/* IMAGE – CLEAR (NO OPACITY) */
.opt-ivf-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    filter: none !important;
}

/* OVERLAY – LIGHT & CLEAN */
.opt-ivf-overlay {
    position: absolute;
    inset: 0;
        background: linear-gradient(to top, rgb(0 0 0 / 54%), rgba(11, 47, 106, 0.15));
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

/* LEFT ICON */
.opt-ivf-icon-wrap {
    width: 52px;
    height: 52px;
    background: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.18);
    margin-bottom: auto;
}

.opt-ivf-icon-wrap i {
    font-size: 22px;
    color: #ff8c3a;
}

/* TEXT */
.opt-ivf-overlay h3 {
    color: #ffffff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.opt-ivf-overlay p {
    color: #e4efff;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.95;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .opt-ivf-title {
        font-size: 30px;
    }

    .opt-ivf-swiper {
        padding-left: 20px;
    }

    .opt-ivf-card {
        height: 380px;
    }
}


/* ================= OPT GALLERY SECTION ================= */

.opt-gallery-section {
    padding: 80px 0;
    background: #ffffff; /* WHITE BACKGROUND */
}

/* GRID */
.opt-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* ITEM CARD */
.opt-gallery-item {
    background: #ffffff;
    border: 2px solid #e67e22; /* THEME ORANGE BORDER */
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.opt-gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(230, 126, 34, 0.35);
}

/* IMAGE */
.opt-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .opt-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .opt-gallery-grid {
        grid-template-columns: 1fr;
    }
}


/* BLOG CATEGORY CARD */
.blog-category-card {
    background: #f4f9ff; /* soft blue */
    border: 1px solid rgba(230, 126, 34, 0.25); /* theme orange */
    border-radius: 18px;
    padding: 22px 20px;
    box-shadow: 0 12px 30px rgba(11, 47, 106, 0.08);
}

/* TITLE */
.blog-category-title {
    font-size: 20px;
    font-weight: 700;
    color: #0b2f6a;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e67e22;
}

/* LIST */
.blog-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-list li {
    margin-bottom: 10px;
}

/* LINKS */
.blog-category-list a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #0b2f6a;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid #e6eef8;
    transition: all 0.3s ease;
}

/* HOVER EFFECT */
.blog-category-list a:hover {
    background: linear-gradient(90deg, #ff8c3a, #ffb067);
    color: #ffffff;
    border-color: #ff8c3a;
    transform: translateX(4px);
}

/* STICKY SIDEBAR */
@media (min-width: 992px) {
    .blog-category-card {
        position: sticky;
        top: 110px;
    }
}



/* BLOG DETAIL SECTION */
.blog-detail-section {
    padding: 60px 0;
    background: #ffffff;
}

/* FEATURE IMAGE */
.blog-detail-image img {
    border-radius: 24px;
    margin-bottom: 30px;
}

/* BLOG CONTENT */
.blog-detail-content .blog-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}

.blog-detail-content .blog-title {
    font-size: 32px;
    font-weight: 800;
    color: #0b2f6a;
    margin-bottom: 20px;
}

.blog-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #444;
}

/* SIDEBAR BOX */
.blog-sidebar-box {
    background: #f7fbff;
    border-radius: 20px;
    padding: 22px;
    margin-bottom: 24px;
    border-left: 4px solid #ff8c3a;
}

/* SIDEBAR TITLE */
.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #0b2f6a;
    margin-bottom: 16px;
}

/* CATEGORY LIST */
.blog-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.blog-category-list li {
    margin-bottom: 10px;
}

.blog-category-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.blog-category-list a:hover {
    color: #fafafa;
}

/* FORM */
.sidebar-form input,
.sidebar-form select {
    width: 100%;
    height: 46px;
    border-radius: 12px;
    border: 1px solid #d6e0ef;
    padding: 0 14px;
    margin-bottom: 12px;
}

.sidebar-form button {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(90deg, #ff8c3a, #ffb067);
    color: #fff;
    font-weight: 600;
}


/* ================= OPT BLOG DETAIL ================= */

.opt-blog-detail {
    padding: 70px 0;
    background: #ffffff;
}

/* IMAGE */
.opt-blog-image img {
    width: 100%;
    border-radius: 22px;
    margin-bottom: 30px;
}

/* CONTENT */
.opt-blog-content {
    font-size: 16px;
    line-height: 1.9;
    color: #333;
}

.opt-blog-date {
    display: inline-block;
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.opt-blog-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0b2f6a;
}

/* SIDEBAR STICKY */
.opt-blog-sidebar-sticky {
    position: sticky;
    top: 110px;
}

/* SIDEBAR BOX */
.opt-blog-sidebar-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 26px;
    margin-bottom: 26px;
    border: 1px solid #e5eaf2;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* SIDEBAR TITLE */
.opt-sidebar-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #0b2f6a;
}

/* CATEGORY LIST */
.opt-blog-category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opt-blog-category-list li {
    margin-bottom: 10px;
}

.opt-blog-category-list li a {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f6f9ff;
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s;
}

.opt-blog-category-list li a:hover {
    background: #0b2f6a;
    color: #fff;
}

/* FORM */
.opt-sidebar-form input,
.opt-sidebar-form select {
    width: 100%;
    height: 46px;
    margin-bottom: 14px;
    padding: 0 14px;
    border-radius: 12px;
    border: 1px solid #d0d8e5;
    outline: none;
}

.opt-sidebar-form input:focus,
.opt-sidebar-form select:focus {
    border-color: #ff8c3a;
}

/* FORM BUTTON */
.opt-sidebar-form button {
    width: 100%;
    padding: 14px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(90deg, #ff8c3a, #ffb067);
    color: #fff;
    font-weight: 600;
    cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .opt-blog-sidebar-sticky {
        position: static;
    }

    .opt-blog-title {
        font-size: 28px;
    }
}
