/**
 * Theme Name:     Astra Child
 * Author:         Brainstorm Force
 * Template:       astra
 * Text Domain:	   astra-child
 * Description:    The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
 */



/* Header Styles */

body {
  font-family: 'Inter', sans-serif;
}

/* You can also target specific elements if you want to change the font for them */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
}


/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
/* Quote Section - Top Yellow Bar */
.quote-container {
  text-align: center;
}

.quote {
  font-style: italic;
  color: #ff9800;
  font-size: 15px;
}

/* Black Bar Below Header */
.black-bar {
  background-color: #00a19a;
  color: #fff;
  padding: 10px 0;
}

.black-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-info {
  color: #fff;
}

.location a {
  display: inline-flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}
.location svg{
 width: 20px;
 height: 19px;
}
.location a:hover {
  color: #ff9800; /* Hover color */
}

/* Header Styles */
.header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding-top: 0;
  padding-bottom: 10px;
}

.header-content {
  padding-top: 10px;  
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.logo img {
  height: 50px;
}

.nav {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
}

.nav a{
  color: #333;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav a:hover {
  color: #00a19a;
}
/* Parent */
.nav li {
  position: relative;
}

/* Submenu hidden */
.nav li .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 999;
}

/* Show on hover */
.nav li:hover > .sub-menu {
  display: block;
}

/* Submenu items */
.nav li .sub-menu li {
  display: block;
  width: 100%;
}

.nav li .sub-menu li a {
  display: block;
  padding: 10px 15px;
}
.dropdown-menu-toggle {
  cursor: pointer;
  margin-left: 5px;
}

.dropdown-menu-toggle[aria-expanded="true"] {
  transform: rotate(180deg);
}
.menu-item-has-children > a::after {
content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900; /* 🔥 IMPORTANT */
  margin-left: 6px;
  transition: 0.3s;
}

.menu-item-has-children.open > a::after {
  transform: rotate(180deg);
}
.current-menu-item a{
  color: #00a19a;
}
::marker{
  content: none !important;
}
.sxcp-breadcrumb {
  margin-bottom: 12px;
  font-size: 14px;
  color: #6b7280;
}

.sxcp-breadcrumb a {
  color: #1aa6a1;
  text-decoration: none;
}

.sxcp-breadcrumb a:hover {
  text-decoration: underline;
}

.sxcp-breadcrumb .sep {
  margin: 0 6px;
  color: #9ca3af;
}

.sxcp-breadcrumb .current {
  color: #111827;
  font-weight: 500;
}
/* Social Sidebar */
.social-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1001;
}

.social-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.whatsapp { background: #25D366; }
.email { background: #007bff; }
.instagram { background: #E1306C; }
.youtube { background: #FF0000; }
.call { background: #0084FF; }

/* Button Styles */
.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 15px;
}
/* Add space between the icon and text */
.btn svg {
  margin-right: 8px; /* Space between the icon and text */
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: #ff9800;
  color: #ffffff;
}

.btn-primary:hover {
  background: #e68900;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.3);
}

.btn-primary-large {
  background: #ff9800;
  color: #ffffff;
  padding: 15px 35px;
  font-size: 16px;
}

.btn-primary-large:hover {
  background: #e68900;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 152, 0, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #00a19a;
  border: 2px solid #00a19a;
}

.btn-secondary:hover {
  background: #00a19a;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-secondary-large {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  padding: 15px 35px;
  font-size: 16px;
}

.btn-secondary-large:hover {
  background: #ffffff;
  color: #006b66;
}

.btn-full {
  width: 100%;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2f1 100%);
  padding: 50px 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.breadcrumb {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}

.breadcrumb-home {
  color: #00a19a;
}

.breadcrumb-separator {
  margin: 0 8px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.hero-highlight {
  color: #00a19a;
}

.hero-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  gap: 30px;
}
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.hero-slider img.active {
  opacity: 1;
  position: relative;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.stat-icon {
  width: 24px;
  height: 24px;
}

.stat-label {
  font-size: 14px;
  color: #666;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-badge {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.section-label {
  display: inline-block;
  color: #00a19a;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
}

.section-description {
  font-size: 16px;
  color: #666;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 30px 0;
  background: #ffffff;
}

/* SERVICES SLIDER (same classes, no markup change) */
.services-grid{
  display: flex;
  gap: 24px;              /* aapke design ke hisaab se change kar sakte */
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;    /* scrollbar space */
}

/* hide scrollbar (optional) */
.services-grid::-webkit-scrollbar{ height: 0; }
.services-grid{ scrollbar-width: none; }

/* 4 cards in one row on desktop */
.services-grid .service-card{
  flex: 0 0 calc((100% - (24px * 3)) / 4); /* 4 cards */
  scroll-snap-align: start;
}

/* responsive */
@media (max-width: 1024px){
  .services-grid .service-card{
    flex: 0 0 calc((100% - (24px * 2)) / 3); /* 3 cards */
  }
}
@media (max-width: 768px){
  .services-grid .service-card{
    flex: 0 0 calc((100% - 24px) / 2);       /* 2 cards */
  }
}



.service-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}
.service-card p{
  margin-bottom:0 !important;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 161, 154, 0.15);
}

.service-icon {
  margin-bottom: 20px;
}
.service-icon img{
  margin: auto !important;
  text-align: center;
  align-items: center;
  height: 130px;
  width: 230px;
}
.service-title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.service-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

.services-footer {
  padding-top: 15px;
  text-align: center;
}
.services-slider-controls {
  padding-bottom: 10px;
}
.services-slider-wrapper{
  position: relative;
}

/* horizontal slider */
.services-grid{
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 10px;
}
.services-grid::-webkit-scrollbar{
  display: none;
}

/* arrows */
.slider-arrow{
  display: none !important;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #00a19a;
  background: #fff;
  color: #00a19a;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* left */
.slider-arrow-left{
  left: -20px;   /* adjust if needed */
}

/* right */
.slider-arrow-right{
  right: -20px;
}

/* hover */
.slider-arrow:hover{
  background: #00a19a;
  color: #fff;
}
.slider-arrow-left{ left: 10px; }
.slider-arrow-right{ right: 10px; }

.newcallnow{
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #334155;
  border: 2px solid #fff;
}
.arrow-rg svg{
  margin-right: 0px !important;
  margin-left: 8px;
}
.link-primary {
  padding: 12px 28px;
  border-radius: 25px;
  border: 2px solid #33415578;
  margin-left: 37px;
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}

.link-primary:hover {
  color: #006b66;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #0585A3;
}
.about-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.about-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: auto;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.about-slider img.active {
  opacity: 1;
  position: relative;
}


.about-text .section-title, .about-text p{
  color:#fff !important;
}
.link-primary-new {
  padding: 12px 28px;
  border-radius: 25px;
  border: 2px solid #fff;
  margin-left: 37px;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: color 0.3s ease;
}
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.about-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.badge-number {
  font-size: 36px;
  font-weight: 700;
  color: #00a19a;
  line-height: 1;
}

.badge-label {
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.about-text {
  padding-left: 20px;
}

.about-description {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 25px;
}

.about-list {
  margin-left: 0;
  list-style: none;
  margin-bottom: 30px;
}

.about-list li {
  font-size: 15px;
  color: #555;
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url('https://bebran.pro/shanthinethralayanew/wp-content/uploads/2026/02/SVG_margin.png'); /* External or local image URL */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.about-cta {
  display: flex;
  gap: 15px;
}

/* Doctor Section */
/* General container settings */
.doctor .container {
  width: 72%;
  margin: 0 auto;
}

/* Section styles */
.doctor {
  padding: 80px 0;
  background-color: #fff; /* Optional background */
}

/* Doctor content (two columns) */
.doctor-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background-color: white; /* White background for the box */
  border-radius: 12px; /* Rounded corners */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Soft shadow for the box */
  border: 1px solid #e0e0e0; /* Light border */
}

/* Image section */
.doctor-image img {
  width: 400px;
  height: 400px;
  object-fit: cover;
  border-radius: 10px; /* Round the image corners */
}

/* Text section */
.doctor-text {

  flex: 1;
}

.doctor .section-label {
  font-size: 14px;
  color: #00a19a;
  font-weight: bold;
  margin-bottom: 10px;
}

.doctor-name {
  font-size: 28px;
  font-weight: bold;
  margin: 10px 0;
}

.doctor-qualification {
  font-size: 18px;
  color: #333;
  margin-bottom: 20px;
}

.doctor-description {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin-bottom: 30px;
}

/* Button styles */
.doctor-actions a {
  display: inline-block;
  padding: 10px 20px;
  margin-right: 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.doctor .btn-primary {
  background-color: #00a19a;
  color: white;
}

.doctor .btn-primary:hover {
  background-color: #01877b;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #00a19a;
  color: #00a19a;
}

.doctor .btn-secondary:hover {
  background-color: #00a19a;
  color: white;
}

/* Responsive design */
@media (max-width: 768px) {
  .doctor-content {
    flex-direction: column;
    align-items: center;
  }

  .doctor-image img {
    width: 80%;
    height: auto;
  }

  .doctor-text {
    text-align: center;
  }
}



/* Features Section */
.features {
  padding-bottom:80px;
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.feature-card {
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}


.feature-icon {
  margin-bottom: 20px;
  display: inline-block;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.feature-description {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* CTA Section */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #006b66 0%, #00a19a 100%);
  text-align: center;
}

.cta-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-content p{
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 35px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Testimonials Section */
.testimonials {
  padding-top: 80px;
  background: #ffffff;
}

.testimonials-grid{
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.testimonials-grid::-webkit-scrollbar{ display:none; }

/* ✅ 4 cards in one row */
.testimonial-card{
  flex: 0 0 calc((100% - (24px * 3)) / 4);
}

/* responsive */
@media (max-width: 1024px){
  .testimonial-card{
    flex: 0 0 calc((100% - (24px * 2)) / 3);
  }
}
@media (max-width: 768px){
  .testimonial-card{
    flex: 0 0 calc((100% - 24px) / 2);
  }
}
@media (max-width: 480px){
  .testimonial-card{
    flex: 0 0 100%;
  }
}
/* arrows position (left/right side center) */
.testimonials-slider-controls{
  position: relative;
  height: 0;
}
#tstPrev, #tstNext{
  padding: 5px;
  position: absolute;
  top: 115px !important;
  background: #fff;
  z-index: 5;
}
#tstPrev{ left: -17px; }
#tstNext{ right: -17px; }

.testimonial-card {
  background: #f9fafb;
  padding: 12px;
  border-radius: 15px;
  border: 1px solid #e5e7eb;
}

.testimonial-stars {
  color: #fbbf24;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

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

.testimonial-name {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 15px;
}

.testimonial-date {
  font-size: 13px;
  color: #999;
}
.testimonials-header-sp {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

/* Testimonials Header Layout */
.testimonials .section-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

/* Center Title properly aligned */
.testimonials .section-title {
  text-align: center;
  margin: 0;
}

/* Review Buttons */
.testimonials .review-btn-sp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.3s ease;
}

/* Google */
.testimonials .google-review-sp {
  border: 1px solid #0f6f85;
  color: #0f6f85;
  background: #fff;
}
.testimonials .google-review-sp:hover {
  background: #0f6f85;
  color: #fff;
}

/* YouTube */
.testimonials .youtube-review-sp {
  background: #ff0000;
  color: #fff;
}
.testimonials .youtube-review-sp:hover {
  background: #cc0000;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .testimonials .section-header {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonials .review-btn-sp {
    margin: 6px auto;
  }
}

/* Gallery Section */
.gallery {
  padding: 80px 0;
  background: #0585a3;
}
.gallery .section-title{
  color: #fff;
}
.gallery .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* Videos Section */
.videos {
  padding-top: 35px;
  padding-bottom: 80px;
  background: #ffffff;
}

.videos-grid{
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
}
.videos-grid::-webkit-scrollbar{ display:none; }

.video-card{
  flex: 0 0 calc((100% - (24px * 3)) / 4);
}

.video-thumbnail iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
}

/* responsive */
@media(max-width:1024px){
  .video-card{ flex: 0 0 calc((100% - (24px * 2)) / 3); }
}
@media(max-width:768px){
  .video-card{ flex: 0 0 calc((100% - 24px) / 2); }
}
@media(max-width:480px){
  .video-card{ 
    text-align: center;
    flex: 0 0 100%; 
  }
}


.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-card:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-title {
/*  padding: 20px;*/
font-size: 16px;
font-weight: 600;
color: #1a1a1a;
}

.videos-footer {
  text-align: center;
}
.videos{
  position: relative;
}

.videos-slider-controls{
  display: none !important;
  position: absolute; 
  top: 50%;
  left: -14px;
  right: -14px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none; /* slider drag ko block na kare */
}

.videos-slider-controls button{
  display: none !important;
  pointer-events: all; /* button clickable rahe */
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.videos-ed {
  padding: 60px 0;
}

.videos-ed .section-header {
  text-align: center;
  margin-bottom: 40px;
}

.videos-ed .section-title {
  font-size: 2rem;
  font-weight: 600;
  color: #334155;
}

.videos-ed .section-description {
  font-size: 1rem;
  color: #888;
  margin-top: 10px;
}

.videos-ed .videos-slider-controls {
  text-align: center;
  margin: 20px 0;
}

.videos-ed .videos-slider-controls button {
  background-color: #00a19a;
  color: #fff;
  border: none;
  padding: 10px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
  margin: 0 10px;
}

.videos-ed .videos-slider-wrapper {
  overflow: hidden;
}

..videos-ed .videos-grid {
  display: flex;
  gap: 24px; /* Space between each card */
  flex-wrap: wrap; /* Allow items to wrap to the next row */
  justify-content: space-between; /* Distribute space evenly */
}

.videos-ed .video-card {
  flex: 0 0 calc((100% - 24px * 3) / 3); /* 3 items in a row, with space in between */
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.videos-ed .video-card iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.videos-ed .video-info {
  padding: 15px;
  text-align: center;
}

.videos-ed .video-title {
  font-size: 1.1rem;
  font-weight: 500;
  color: #334155;
  margin: 10px 0;
}

.videos-ed .video-duration {
  font-size: 0.9rem;
  color: #888;
}


/* FAQ Section */
.faq {
  padding: 80px 0;
  background: #00958e;
}
.faq .section-title{
  color: #fff !important;
}
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.faq-question {
  padding: 5px 10px;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

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

.faq-icon {
  font-size: 24px;
  color: #00a19a;
  font-weight: 300;
}

.faq-answer {
  padding: 0 25px 25px;
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
.faq-footer {
  text-align: center;
}
/* Blog Section */
.blog {
  padding: 80px 0;
  background: #ffffff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.blog-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.blog-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.blog-content {
  padding: 15px;
}

.blog-meta {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
}

.blog-category {
  color: #00a19a;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-date {
  color: #999;
  font-size: 13px;
}

.blog-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-excerpt {
  display: none;
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
}

.blog-link {
  color: #00a19a;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.3s ease;
}

.blog-link:hover {
  color: #006b66;
}

.blog-footer {
  text-align: center;
}

/* Appointment Section */
.appointment {
  padding: 80px 0;
  background: #f9fafb;
}

.appointment-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.appointment-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
}

.appointment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.form-input,
.form-textarea {
  padding: 15px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: #00a19a;
}

.form-textarea {
  resize: vertical;
}

.map-placeholder {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.contact-item {
  margin-bottom: 20px;
}

.contact-item strong {
  display: block;
  color: #00a19a;
  font-weight: 600;
  margin-bottom: 5px;
}

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

/* Footer */
.footer {
  background: rgb(0 161 154);
  color: #ffffff;
  padding: 60px 0 1px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 14px;
  color: #b3b3b3;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: #00a19a;
  transform: translateY(-3px);
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-links {
  margin:0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00a19a;
}

.footer-contact {
  margin:0;
  list-style: none;
}

.footer-contact li {
  color: #fff;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid #fff;
}

.footer-bottom p {
  color: #fff;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-content,
  .about-content,
  .doctor-content,
  .appointment-content {
    grid-template-columns: 1fr;
  }

  .doctor-content {
    grid-template-columns: 1fr;
  }

  .doctor-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .header-content {
    gap: 20px;
  }

  .nav {
    flex-wrap: wrap;
    gap: 15px;
  }

  .hero-title {
    font-size: 36px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-buttons,
  .about-cta,
  .doctor-actions,
  .cta-buttons {
    flex-direction: column;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .features-grid,
  .testimonials-grid,
  .gallery-grid,
  .videos-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}



/* services page css */

.services-hero-sp {
  padding: 80px 0;
  background: #f6fbff;
  text-align: center;
}

.container-sp {
  max-width: 1200px;
  margin: auto;
  padding: 0 15px;
}

.services-section-sp {
  padding: 80px 0;
}

.services-grid-sp {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card-sp {
  background: #fff;
  padding: 14px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.service-icon-sp img {
  margin-bottom: 15px;
  height: 170px;
  width: 100%;
}
.service-desc-sp p{
  margin-bottom: 0.75em !important;
}

h2.cta-title-sp {
  color: #fff;
}
.learn-more-sp {
  color: #00a19a;
  font-weight: 600;
}

.cta-section-sp {
  background: #062c3a;
  padding: 80px 0;
  color: #fff;
  text-align: center;
}

.cta-buttons-sp .btn-sp {
  margin: 0 8px;
}

.appointment-sp {
  padding: 90px 0;
  background: #ffffff;
}

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

.appointment-form-sp {
  max-width: 520px;
}

.form-tag-sp {
  color: #f59e0b;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
}

.form-title-sp {
  font-size: 36px;
  margin: 10px 0;
}

.form-subtitle-sp {
  color: #6b7280;
  margin-bottom: 30px;
}

.form-row-sp {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.appointment-form-sp input,
.appointment-form-sp textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 14px;
  outline: none;
}

.appointment-form-sp input:focus,
.appointment-form-sp textarea:focus {
  border-color: #0ea5e9;
}

.btn-submit-sp {
  width: 100%;
  background: #0f6f85;
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  border: none;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit-sp:hover {
  background: #0b5a6c;
}

.map-box-sp {
  background: #eef2f7;
  height: 260px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 20px;
}

.info-box-sp {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.info-item-sp {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.info-icon-sp {
  font-size: 20px;
  color: #0f6f85;
}

@media (max-width: 768px) {
  .appointment-grid-sp {
    grid-template-columns: 1fr;
  }

  .form-row-sp {
    grid-template-columns: 1fr;
  }
}


/* Blog page */
section.blog-hero{
  padding: 80px 0;
  background: #f6fbff;
  text-align: center;  
}
section.blog-section {
  padding-top: 70px;
}
.search-submit{
  display: none !important;
}
.blog-layout{
  display:grid;
  grid-template-columns:70% 30%;
  gap:30px;
}
.blog-row{
  display:flex;
  gap:20px;
  margin-bottom:30px;
}
.blog-thumb img{
  width:220px;
  height:160px;
  object-fit:cover;
  border-radius:12px;
}
.blog-info h3{font-size:20px;margin:6px 0}
.read-more{color:#f59e0b;font-weight:600}
.blog-sidebar .sidebar-box,
.need-card{
  background:#f7f9fc;
  padding:20px;
  border-radius:12px;
  margin-bottom:20px;
}
.need-card{
  text-align: center;
  background:#0f3d3e;
  color:#fff;
}
.need-card h4{
  color: #fff;
}
.btn-yellow{
  background:#f59e0b;
  padding:10px 20px;
  display:inline-block;
  border-radius:8px;
  color:#000;
}

.btn-outline{
  border:1px solid #fff;
  padding:10px 20px;
  display:inline-block;
  border-radius:8px;
  color:#fff;
}
.book-banner{
  background:#0f3d3e;
  color:#fff;
  padding:60px 0;
  text-align:center;
}


/* blog detail page */
/* ===============================
   MAIN WRAPPER
=================================*/
.sxeye-single-wrap {
  background: #f7f9fb;
  padding: 60px 0;
}

.sxeye-container {
  width: 1200px;
  max-width: 92%;
  margin: auto;
}

.sxeye-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
}

/* ===============================
   BREADCRUMB
=================================*/
.sxeye-breadcrumb {
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}
.sxeye-breadcrumb a {
  color: #0f6c7c;
  text-decoration: none;
}
.sxeye-breadcrumb span {
  margin: 0 6px;
}

/* ===============================
   TITLE & META
=================================*/
.sxeye-category a {
  background: #eaf5f7;
  color: #0f6c7c;
  padding: 6px 12px;
  font-size: 13px;
  border-radius: 20px;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}

.sxeye-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sxeye-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 30px;
}

/* ===============================
   FEATURED IMAGE
=================================*/
.sxeye-featured img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

/* ===============================
   CONTENT
=================================*/
.sxeye-content {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.sxeye-content h2,
.sxeye-content h3 {
  margin-top: 35px;
  margin-bottom: 15px;
}

.sxeye-content blockquote {
  background: #eaf5f7;
  padding: 20px;
  border-left: 4px solid #0f6c7c;
  border-radius: 6px;
  margin: 30px 0;
}

/* ===============================
   TAG + SHARE
=================================*/
.sxeye-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.sxeye-share a {
  margin-left: 10px;
  text-decoration: none;
  color: #0f6c7c;
  font-weight: 600;
}

/* ===============================
   AUTHOR BOX
=================================*/
.sxeye-author-box {
  margin-top: 40px;
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  display: flex;
  gap: 20px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.04);
}

.sxeye-author-info h4 {
  margin-bottom: 8px;
}

/* ===============================
   SIDEBAR
=================================*/
.sxeye-widget {
  background: #f6fbff;
  padding: 25px;
  border-radius: 14px;
  margin-bottom: 30px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.04);
}

.sxeye-widget h4 {
  margin-bottom: 15px;
}

.sxeye-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sxeye-widget li {
  margin-bottom: 10px;
}

.sxeye-widget a {
  text-decoration: none;
  color: #333;
}

/* CTA BOX */
.sxeye-cta {
  background: #0f6c7c;
  color: #fff;
  padding: 30px;
  border-radius: 16px;
}

.sxeye-cta h4 {
  color: #fff;
  margin-bottom: 10px;
}

.sxeye-btn-primary {
  display: block;
  background: #f5a623;
  color: #fff;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  margin-top: 15px;
  text-decoration: none;
  font-weight: 600;
}

.sxeye-btn-outline {
  display: block;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px;
  text-align: center;
  border-radius: 8px;
  margin-top: 10px;
  text-decoration: none;
}

/* ===============================
   RELATED
=================================*/
.sxeye-related {
  background: #fff;
  padding: 60px 0;
}

.sxeye-related h3 {
  margin-bottom: 30px;
}

.sxeye-related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.sxeye-related-card {
  background: #f7f9fb;
  padding: 20px;
  border-radius: 14px;
  text-decoration: none;
  color: #000;
  transition: 0.3s;
}

.sxeye-related-card img {
  width: 100%;
  height: 200px;        /* fix height */
  object-fit: cover;   /* crop nicely */
  border-radius: 10px; /* optional */
  padding-bottom: 10px !important;
}

.sxeye-related-card:hover {
  transform: translateY(-5px);
}
.sxeye-share{
  display:flex;
  align-items:center;
  gap:12px;
  margin-top:20px;
}

.sxeye-share span{
  font-weight:600;
  color:#222;
}

.sxeye-share a{
  width:36px;
  height:36px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f1f5f9;
  color:#0c3b44;
  font-size:15px;
  text-decoration:none;
  transition:.25s ease;
}

.sxeye-share a:hover{
  transform:translateY(-3px);
}

.sxeye-share-fb:hover{ background:#1877f2; color:#fff; }
.sxeye-share-tw:hover{ background:#000; color:#fff; }
.sxeye-share-ln:hover{ background:#0a66c2; color:#fff; }

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

  .sxeye-related-grid {
    grid-template-columns: 1fr;
  }
}



/* contact page */
.sxcp-container{max-width:1200px;margin:auto;padding:0 16px;}
.sxcp-hero{background:#eef6f9;padding:90px 0;text-align:center;}
.sxcp-eyebrow{color:#0ea5e9;font-weight:600;letter-spacing:1px;}
.sxcp-title{font-size:42px;margin:10px 0;}
.sxcp-desc{max-width:620px;margin:10px auto;color:#64748b;}

.sxcp-main{padding:80px 0;background:#f8fafc;}
.sxcp-grid{display:grid;grid-template-columns:1fr 2fr;gap:30px;}

.sxcp-left{display:grid;gap:20px;}
.sxcp-left .sxcp-card p{
/*  margin-right: 100px !important; */
}
.sxcp-card{background:#fff;padding:24px;border-radius:14px;box-shadow:0 10px 30px rgba(0,0,0,.05);}
.sxcp-icon{width:44px;height:44px;border-radius:50%;background:#e6f6fb;color:#0ea5e9;display:flex;align-items:center;justify-content:center;margin-bottom:12px;}
.sxcp-card h4{margin:6px 0 8px;}
.sxcp-link{display:inline-block;margin-top:8px;color:#0ea5e9;font-weight:600;}
.sxcp-hours{display:flex;justify-content:space-between;margin-top:6px;font-size:14px;}

.sxcp-formbox{background:#fff;padding:40px;border-radius:18px;box-shadow:0 10px 40px rgba(0,0,0,.06);}
.sxcp-formtag{color:#f59e0b;font-weight:700;font-size:12px;}
.sxcp-formdesc{color:#64748b;margin-bottom:20px;}

.sx-faq-wrap {
  padding: 70px 0;
  background: #f8fbfd;
}
.faq-cp{
  padding: 80px 0;
}
.sx-faq-container {
  max-width: 900px;
  margin: auto;
}

.sx-faq-header {
  text-align: center;
  margin-bottom: 40px;
}

.sx-faq-title {
  font-size: 34px;
  font-weight: 700;
  color: #0a2540;
}

.sx-faq-desc {
  color: #6b7c93;
  margin-top: 10px;
}

.sx-faq-item {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 14px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  overflow: hidden;
}

.sx-faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

.sx-faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e9f5ff;
  color: #0b5ed7;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.sx-faq-answer {
  display: none;
  padding: 20px;
  border-top: 1px solid #eee;
  color: #555;
  line-height: 1.6;
}

.sx-faq-item.active .sx-faq-answer {
  display: block;
}

.sx-faq-item.active .sx-faq-icon {
  transform: rotate(45deg);
  background: #0b5ed7;
  color: #fff;
}

.sx-faq-footer {
  text-align: center;
  margin-top: 30px;
}

.sx-faq-btn {
  padding: 12px 26px;
  background: #0b5ed7;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}


@media(max-width:900px){
  .sxcp-grid{grid-template-columns:1fr;}

}
.google-map {
  width: 100%;
  margin: 0;
  padding: 0;
}

.google-map iframe {
  width: 100% !important;
  height: 450px;
  border: 0;
  display: block;
}

/* Agar theme container ke andar hai to full width nikalne ke liye */
.google-map.full-width {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
}


/* Gallery Section */
/* Gallery Section */
.sx-gallery{
  padding:80px 0;
  background:#f7fbfd;
}

.sx-container{
  max-width:1200px;
  margin:auto;
  padding:0 15px;
}

.sx-gallery-filters{
  text-align:center;
  margin-bottom:40px;
}

.sx-filter-btn{
  border: 1px solid #0a6b7e;
  padding: 10px 18px;
  border-radius: 30px;
  background: #fff;
  margin: 5px;
  cursor: pointer;
  transition: 0.3s;
  color: #0a6b7e;
}

.sx-filter-btn.active,
.sx-filter-btn:hover{
  background:#0a6b7e;
  color:#fff;
  border-color:#0a6b7e;
}

.sx-gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(250px,1fr));
  gap:20px;
}

.sx-gallery-item{
  overflow:hidden;
  border-radius:16px;
}

.sx-gallery-img{
  position:relative;
  overflow:hidden;
  border-radius:16px;
}

.sx-gallery-img img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:0.5s;
}

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

.sx-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:600;
  font-size:18px;
  opacity:0;
  transition:0.4s;
}

.sx-gallery-item:hover .sx-overlay{
  opacity:1;
}




/* Unique Contact Form Design */
.sx-contact-form {
  max-width: 900px;
  margin: auto;
}
.sx-contact-form p{
  margin-bottom: 2px !important;
}
.sx-contact-form label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: #111;
  margin-bottom: 6px;
}

.sx-contact-form input,
.sx-contact-form textarea,
.sx-contact-form select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
  outline: none;
  transition: 0.2s ease;
  background: #fff;
}

.sx-contact-form input:focus,
.sx-contact-form textarea:focus,
.sx-contact-form select:focus {
  border-color: #0f6f7c;
  box-shadow: 0 0 0 2px rgba(15, 111, 124, 0.1);
}

.sx-contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.sx-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.sx-col {
  width: 100%;
}

.sx-contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%230f6f7c' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.sx-contact-form input[type="submit"] {
  background: #0f6f7c;
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s ease;
  margin-top: 10px;
}

.sx-contact-form input[type="submit"]:hover {
  background: #0c5a65;
  transform: translateY(-1px);
}
.wpcf7 br {
  display: none !important;
}

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





/* RESET */
.sx-service-wrap * {
  box-sizing: border-box;
}

/* GLOBAL */
.sx-service-wrap {
  font-family: "Inter", Arial, sans-serif;
  color: #1b2b3a;
  background: #fff;
}

.sx-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.text-center { text-align: center; }

.sx-section { padding: 90px 0; }

.sx-light-bg { background: #f8fbfd; }

.sx-muted { color: #6c7a89; }

/* HERO */
.sx-hero {
  background: #f5fbff;
  padding: 90px 0 70px;
}

.sx-hero-tag {
  background: #e6f3ff;
  color: #2a7db8;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
}

.sx-hero h1 {
  font-size: 44px;
  margin: 15px 0 10px;
  font-weight: 700;
}

.sx-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #6c7a89;
  line-height: 1.7;
}

.sx-btn-orange {
  margin-top: 25px;
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  padding: 12px 30px;
  border-radius: 40px;
  text-decoration: none;
  font-weight: 600;
}
.treatment {
  text-align: center;
  background: #0585A3 !important;
  color: #fff !important;
}
.treatment h2{
  color: #fff;
  padding-bottom: 20px;
}
/* GRID */
.sx-grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: start;
}

.sx-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 35px;
}

/* TITLES */
.sx-subtitle {
  font-size: 11px;
  font-weight: 700;
  color: #2a7db8;
  letter-spacing: 1px;
  margin-bottom: 8px;
  display: inline-block;
}

/* CARDS */
.sx-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
}

.sx-info-box {
  padding: 26px 28px;
}

.sx-info-box h4 {
  display: flex;
  align-items: center;
  gap: 10px;
}

.sx-emergency {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: #2a7db8;
  font-weight: 600;
  text-decoration: none;
}

/* ICON LIST */
.sx-icon-list li {
  list-style: none;
  padding: 6px 0;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #4b5b6b;
}

.sx-icon-list i {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #e9f5ff;
  color: #2a7db8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  margin-right: 10px;
}

/* RISK CARDS */
.sx-icon-card {
  background: #fff;
  padding: 28px 18px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 22px rgba(0,0,0,0.05);
}

.sx-icon-card .sx-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e9f5ff;
  color: #2a7db8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 20px;
}

/* WARNING */
.sx-warning {
  margin-top: 35px;
  background: #fff4df;
  padding: 12px 20px;
  border-radius: 8px;
  color: #9a5b00;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* IMAGE */
.sx-img {
  border-radius: 12px;
  height: 100%;
  object-fit: cover;
}

/* CHECK LIST */
.sx-check-list li i {
  background: #e7f7ee;
  color: #2db97c;
}

/* BUTTONS */
.sx-btn-blue {
  background: #0f6b8c;
  color: #fff;
  padding: 11px 26px;
  border-radius: 30px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  margin-top: 15px;
}

.sx-btn-dark {
  background: rgba(255,255,255,0.15);
  color: #fff;
  padding: 11px 26px;
  border-radius: 30px;
  text-decoration: none;
}

/* CTA */
.sx-cta {
  background: #062c3a;
  padding: 90px 0;
  color: #fff;
}
.sx-cta h2{
  color: #fff !important;
}
.sx-cta p {
  max-width: 600px;
  margin: 10px auto 0;
  opacity: 0.9;
}

/* DOCTORS */
.sx-doctor-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0,0,0,0.05);
  text-align: center;
}

.sx-doctor-card img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

/* FAQ */
.sx-faq details {
  background: #fff;
  padding: 18px 20px;
  border-radius: 10px;
  margin-bottom: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.sx-faq summary {
  font-weight: 600;
  cursor: pointer;
}

/* FORM */
.sx-form input,
.sx-form textarea,
.sx-form select {
  width: 100%;
  padding: 11px 14px;
  border-radius: 6px;
  border: 1px solid #d9e2ea;
  margin-bottom: 12px;
}

/* RESPONSIVE */
@media(max-width: 991px){
  .sx-grid-2 { grid-template-columns: 1fr; }
  .sx-grid-4 { grid-template-columns: 1fr 1fr; }
}


.cataract-section {
  background: #fff;
  padding: 100px 0;
}

.cataract-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* FORCE BOTH SIDES 50% */
.cataract-left,
.cataract-right {
  width: 50%;
}
.cataract-right h4{
  color: #fff;
}
@media (max-width: 992px) {
  .cataract-container {
    flex-direction: column;
  }

  .cataract-left,
  .cataract-right {
    width: 100%;
  }
}

.subtitle {
  color: #1491a8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.cataract-left h2 {
  font-size: 36px;
  margin: 15px 0 25px;
  color: #1e293b;
}

.cataract-left p {
/*  font-size: 18px;*/
line-height: 1.7;
color: #475569;
}

.causes-box {
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  margin: 30px 0;
}

.causes-grid {
  display: flex;
  gap: 40px;
}

.causes-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.causes-grid li {
  margin-bottom: 8px;
}

.btn-consult {
  display: inline-block;
  padding: 15px 35px;
  background: #1491a8;
  color: #fff;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn-consult:hover {
  background: #0f7284;
}

/* RIGHT IMAGE */
.cataract-right {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 400px;   /* IMPORTANT FIX */
}

.cataract-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: #fff;
}

/* SECTION */
.symptoms-section {
  background: #fff;
  padding: 100px 0;
}

.symptoms-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* HEADER */
.symptoms-header {
  text-align: center;
  margin-bottom: 60px;
}

.symptoms-subtitle {
  font-size: 12px;
  letter-spacing: 2px;
  color: #1491a8;
  font-weight: 700;
  text-transform: uppercase;
}

.symptoms-header h2 {
  font-size: 34px;
  margin: 15px 0;
  color: #1e293b;
}

.symptoms-header p {
  max-width: 950px;
  color: #64748b;
  margin: auto;
  font-size: 16px;
}

/* GRID */
.symptoms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

@media (max-width: 992px) {
  .symptoms-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .symptoms-grid {
    grid-template-columns: 1fr;
  }
}

/* CARD */
.symptom-card {
  background: #f8fafc;
  padding: 25px;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  transition: 0.3s ease;
}

.symptom-card:hover {
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.symptom-icon {
  background: #ffffff;
  padding: 12px;
  border-radius: 12px;
  font-size: 22px;
  color: #1491a8;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.symptom-card h4 {
  margin: 0 0 5px;
  font-size: 16px;
  color: #1e293b;
}

.symptom-card p {
  margin: 0;
  font-size: 14px;
  color: #64748b;
}

/* BUTTON */
.symptoms-btn-wrap {
  text-align: center;
  margin-top: 60px;
}

.btn-symptoms {
  display: inline-block;
  padding: 16px 40px;
  background: #1491a8;
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-symptoms:hover {
  background: #0f7284;
  transform: scale(1.05);
}
.cornea-box-sym{
  padding: 0px 0 100px 0;
}
.iol-section {
  padding: 80px 20px;
  background: #f8fafc;
}

.iol-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.iol-header {
  text-align: center;
  margin-bottom: 60px;
}

.iol-subtitle {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #2563eb;
  letter-spacing: 2px;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.iol-header h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #0f172a;
}

.iol-header p {
  color: #64748b;
  max-width: 600px;
  margin: auto;
}

/* Main Layout */
.iol-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

/* Table */
.iol-table-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  overflow: hidden;
}

.iol-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}

.iol-table th {
  background: #0f172a;
  color: white;
  padding: 12px;
  font-size: 14px;
}

.iol-table td {
  padding: 12px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.iol-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.iol-table tr:hover {
  background: #f1f5f9;
}

.good {
  color: #16a34a;
  font-weight: 600;
}

/* Accordion */
.iol-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.iol-card {
/*  background: #fff;*/
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  overflow: hidden;
}

.iol-btn {
  width: 100%;
  padding: 18px;
  background: #0f172a;
  border: none;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s;
}

.iol-btn:hover {
  background: #0f172a;
}

.iol-content {
  display: none;
  padding: 0 18px 18px;
  color: #475569;
  font-size: 14px;
}

/* CTA */
.iol-btn-wrap {
  text-align: center;
  margin-top: 60px;
}

.iol-cta {
  display: inline-block;
  padding: 14px 30px;
  background: #2563eb;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.iol-cta:hover {
  background: #1e40af;
}

/* Responsive */
@media (max-width: 992px) {
  .iol-main {
    grid-template-columns: 1fr;
  }
}


.cost-section {
  padding: 80px 20px;
  background: #ffffff;
}

.cost-container {
  max-width: 1200px;
  margin: auto;
}

/* Header */
.cost-header {
  text-align: center;
  margin-bottom: 50px;
}

.cost-header h2 {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 10px;
}

.cost-header p {
  color: #64748b;
}

/* Table */
.cost-table-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
}

.cost-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.cost-table thead {
  background: #0f172a;
  color: white;
}

.cost-table th {
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

.cost-table td {
  padding: 16px;
  border-top: 1px solid #e2e8f0;
}

.cost-table tbody tr:hover {
  background: #f8fafc;
}

.alt-row {
  background: #f9fafb;
}

/* Highlight Premium Row */
.highlight-row {
  background: #eef2ff;
  border-left: 4px solid #6366f1;
}

.price {
  font-weight: 600;
  color: #2563eb;
}

.premium {
  color: #7c3aed;
}

.remarks {
  font-size: 12px;
  color: #64748b;
}

/* Note */
.cost-note {
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
  margin-top: 20px;
  font-style: italic;
}

/* Button */
.cost-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.cost-cta {
  display: inline-block;
  padding: 14px 30px;
  background: #2563eb;
  color: white;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.cost-cta:hover {
  background: #1e40af;
}

/* Responsive */
@media (max-width: 992px) {
  .cost-table th,
  .cost-table td {
    font-size: 12px;
    padding: 12px;
  }
}




.sx-doc-slider-sec{
  overflow:hidden;
  padding:80px 20px;
  justify-content:center;
}
/* Slider width control */
.sx-doc-slider{
  max-width:1000px;
  margin:auto;
  overflow:hidden;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border: 1px solid #e0e0e0;
}

.sx-doc-track{
  display:flex;
  transition:.5s;
}

.sx-doc-card{
  flex:0 0 100%;
  display:flex;
  align-items:stretch;   /* 👈 important */
  background:#fff;
  overflow:hidden;
  padding:0;  /* remove inner padding */
}
.sx-doc-img{
  width:40%;
  min-height:320px;
}
.sx-doc-img img{
 width:100%;
 height:100%;
 object-fit:cover;   /* 👈 main fix */
 display:block;
}
.sx-doc-content{
  width:60%;
  padding:35px;
}
.sx-doc-content h2{
  font-size:28px;
  margin-bottom:10px;
}

.sx-doc-content h4{
  color:#e39b2e;
  font-weight:500;
  margin-bottom:15px;
}

.sx-doc-btns{
  margin-top:20px;
  display:flex;
  gap:15px;
}

.sx-btn-primary{
  background:#1aa39a;
  color:#fff;
  padding:12px 22px;
  border-radius:30px;
  text-decoration:none;
}

.sx-btn-outline{
  background:#0f8f86;
  color:#fff;
  padding:12px 22px;
  border-radius:30px;
  text-decoration:none;
}


@media(max-width:768px){
  .sx-doc-card{
    flex-direction:column;
  }

  .sx-doc-img{
    width:100%;
    height:auto;
    min-height: auto;
  }

  .sx-doc-content{
    width:100%;
  }
}


.sxeye-author-img img{
  width: 200px !important;
}

.sxeye-author-box p{
  margin-bottom: 0 !important;
}


.Corneal-section{
  text-align: center;
  padding: 100px 0;
}

.cornea-treatment-sec{
  padding: 0px 0 100px 0;
  background:#fff;
}
.cornea-treatment-sec h2{
  text-align: center;
}
.cornea-types-sec h2{
  text-align: center;
}
.cornea-types-sec{
  padding:80px 0;
  background:#fff;
}

.cornea-title-wrap{
  background:#e6c117;
  padding:20px 40px;
  border-radius:50px;
  text-align:center;
  margin-bottom:50px;
}

.cornea-slider{
  position:relative;
}

.cornea-slider-wrapper{
  overflow:hidden;
}

.cornea-slider-track{
  display:flex;
  transition:0.6s ease;
}

.cornea-type-card{
  min-width:100%;
  background:#fff;
  border-radius:25px;
  box-shadow:0 15px 35px rgba(0,0,0,0.08);
  display:flex;
  gap:25px;
  padding:30px;
}

.cornea-type-card img{
  width:220px;
  height:220px;
  object-fit:cover;
  border-radius:20px;
}

.cornea-type-content h3{
  margin-bottom:15px;
}

.cornea-type-content li{
  margin-bottom:10px;
  font-size:14px;
}

/* Arrows */
.cornea-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#e6c117;
  border:none;
  font-size:24px;
  padding:10px 15px;
  cursor:pointer;
  border-radius:50%;
  z-index:10;
}

.cornea-arrow.left{ left:-20px; }
.cornea-arrow.right{ right:-20px; }

.cornea-arrow:hover{
  background:#000;
  color:#fff;
}

@media(max-width:768px){
  .cornea-type-card{
    flex-direction:column;
    text-align:center;
  }

  .cornea-type-card img{
    width:100%;
    height:200px;
  }
}
.cornea-yellow-title{
  background:#00a19a;
  color: #fff;
  padding:20px 40px;
  border-radius:50px;
  text-align:center;
  font-size:28px;
  font-weight:600;
  margin-bottom:30px;
}

.cornea-intro{
  text-align:center;
  max-width:900px;
  margin:0 auto 40px;
  color:#444;
}

.cornea-category{
  text-align:center;
  font-size:36px;
  margin-bottom:20px;
}

.cornea-card-grid{
  display:flex;
  gap:30px;
  justify-content:center;
  flex-wrap:wrap;
  margin-bottom:40px;
}

.cornea-card{
  background:#fff;
  border-radius:25px;
  padding:30px;
  width:300px;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.cornea-card img{
  width:120px;
  height:190px;
  object-fit:cover;
  border-radius:15px;
  margin-bottom:20px;
}


.cornea-indications-sec{
  padding:80px 0;
  background:#f7f7f7;
}

.cornea-section-title{
  text-align:center;
  font-size:38px;
  margin-bottom:50px;
}

.indication-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

.indication-card{
  background:#fff;
  padding:30px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,0.1);
  display:flex;
  align-items:center;
  gap:20px;
}

.indication-card img{
  height: 80px !important;
  width: 80px !important;
}

.cornea-prep-sec{
  padding:80px 0;
}

.cornea-flex{
  display:flex;
  gap:40px;
  flex-wrap:wrap;
}

.prep-box{
  flex: 1;
  background: #00a19a;
  padding: 40px;
  border-radius: 25px;
  border: 3px solid #00a19a;
  color: #fff;
}
.prep-box p{
  margin-bottom:0 !important;
}
.prep-box h3{
  color: #fff;
}
.cornea-types-sec{
  padding:80px 0;
  background:#fff;
}

.type-row{
  display:flex;
  gap:40px;
  margin-bottom:50px;
  align-items:flex-start;
}

.type-row img{
  width:250px;
  border-radius:15px;
}


/* General Styles */
.cornea-inner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.cornea-header {
  text-align: center;
  margin-bottom: 40px;
}

.cornea-heading {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.cornea-description {
  color: #777;
  margin-top: 10px;
}

.cornea-cards-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.cornea-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex: 1;
  min-width: 280px;
  transition: transform 0.3s ease;
}

.cornea-card:hover {
  transform: translateY(-5px);
}

.cornea-card img {
  width: 100%;
  border-radius: 10px;
}

.cornea-card-title {
  margin-top: 20px;
  font-size: 1.5rem;
  color: #333;
}

.cornea-card-description {
  color: #777;
  font-size: 0.9rem;
  margin-top: 10px;
}

.cornea-button-container {
  text-align: center;
  margin-top: 30px;
}

.cornea-button {
  background-color: #e6c117;
  color: #fff;
  padding: 15px 40px;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cornea-button:hover {
  background-color: #ffd200;
}

/* Care Section Styles */
.cornea-care-container {
  background-color: #f4f4f4;
  padding: 80px 0;
}

.cornea-care-card {
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.cornea-care-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

.cornea-care-list {
  list-style-type: none;
  padding-left: 0;
}

.cornea-care-list li {
  color: #555;
  margin-bottom: 10px;
}

/* Expertise Section Styles */
.cornea-expertise-container {
  padding: 80px 0;
}

.cornea-expertise-content {
  text-align: center;
}

.cornea-expertise-list {
  list-style-type: none;
  padding-left: 0;
}

.cornea-expertise-list li {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 10px;
}


.glc-symptoms-section{
  text-align: center;
  background:#0585A3;
  padding:90px 0;
}
.glc-symptoms-section h3{
color: #fff;
}
.glc-symptoms-section p{
  color: #fff;
}
.glaucoma-diagnostic-tests {
    margin: 40px 0;
}
.glc-container{
  width:90%;
  max-width:1200px;
  margin:auto;
}

/* Heading */
.glc-main-title{
  text-align:center;
  color:#fff;
  font-size:32px;
  margin-bottom:50px;
  font-weight:600;
}

/* Early Block */
.glc-early-block{
  margin-bottom:60px;
}

.glc-early-block h3{
  color: #fff;
  font-size:22px;
  margin-bottom:10px;
  text-align: center;
}

.glc-early-text{
  margin-bottom:30px;
  font-size:14px;
  color:#fff;
  text-align: center;
}

.glc-early-grid{
  display:flex;
  flex-wrap:wrap;
}

.glc-early-item{
  display:flex;
  width: 50%;
  color: #fff;
  align-items:center;
  gap:15px;
}

.glc-early-item img{
  width:120px;
  border-radius:10px;
}

/* Advanced */
.glc-advanced-block{
  text-align:center;
}

.glc-adv-title{
  color:#fff;
  font-size:24px;
  margin-bottom:10px;
}

.glc-adv-sub{
  font-size:14px;
  margin-bottom:40px;
  color:#fff;
}

.glc-symptom-card{
  background:#fff;
  padding:15px;
  border-radius:12px;
  box-shadow:0 8px 20px rgba(0,0,0,0.08);
  transition:0.3s;
  text-align:center;
}

.glc-symptom-card:hover{
  transform:translateY(-6px);
}

.glc-symptom-card img{
  width:100%;
  height:130px;
  object-fit:cover;
  border-radius:10px;
  margin-bottom:10px;
}

.glc-symptom-card p{
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

/* Button */
.glc-btn-wrap{
  text-align:center;
  margin-top:50px;
}

.glc-primary-btn{
  background:#ff9800;
  color:#fff;
  padding:12px 30px;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.glc-primary-btn:hover{
  background:#e68900;
}

.risk-factors-section {
  background: #fff; /* Light Beige Background */
  padding: 80px 0;
}

.rf-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.rf-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 50px;
}

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

.rf-item {
  background: #fff;
  padding: 15px;
  text-align: center;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.rf-item:hover {
  transform: translateY(-6px);
}

.rf-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.rf-caption {
  font-size: 16px;
  font-weight: bold;
}

/* Button */
.rf-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.rf-primary-btn {
  background: #ff9800;
  color: #fff;
  padding: 12px 30px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.rf-primary-btn:hover {
  background: #e68900;
}

h2.rf-title.cstm-title {
  margin-top: 70px;
}
.expert-glaucoma-specialists{
  padding: 0px 20px 80px 20px !important;  
}

/* Hero Section */
.sx-hero-pediatric {
  background-color: #a7e4f7; /* Light blue background */
  padding: 60px 0;
}

.sx-btn-orange-pediatric {
  background-color: #ff9800;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
}

.sx-btn-orange-pediatric:hover {
  background-color: #e68900;
}

/* Pediatric Eye Care Services */
.pediatric-eye-care {
  padding: 100px 0;
  background-color: #e0f7fa;
}
.pediatric-eye-care h2{
  text-align: center;
  padding-bottom: 20px;
}
.pediatric-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pediatric-service-card {
  background-color: #ffffff;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pediatric-service-card p {
  color: #333;
}

/* Schedule Eye Check-Up */
.schedule-eye-checkup {
  background-color: #f3f4f6;
  padding: 60px 0;
}
.schedule-eye-checkup h2{
  text-align: center;
  padding-bottom: 20px;
}
/* GRID */
.schedule-checkup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* FLIP CARD */
.flip-card {
  perspective: 1000px;
}

.flip-inner {
  position: relative;
  width: 100%;
  height: 260px;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

/* HOVER FLIP */
.flip-card:hover .flip-inner {
  transform: rotateY(180deg);
}

/* FRONT & BACK */
.flip-front,
.flip-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  overflow: hidden;
}

/* FRONT DESIGN */
.flip-front {
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
}

.flip-front img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.flip-front h3 {
  padding: 10px;
  font-size: 18px;
  color: #0f7c82;
}

/* BACK DESIGN */
.flip-back {
  background: #159a90;
  color: #fff;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

/* MOBILE */
@media(max-width:768px){
  .schedule-checkup-grid {
    grid-template-columns: 1fr;
  }
}

/*.checkup-card {
  background-color: #ffffff;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.checkup-card h3 {
  font-size: 18px;
  color: #0033cc;
}*/

/* Child-Friendly Environment */
.child-friendly-environment {
  text-align: center;
  background-color: #ffffff;
  padding: 60px 0;
}
.child-friendly-environment h2{
  padding-bottom: 20px;
}
.child-friendly-environment p{
  margin-bottom: 0px;
}
/* Schedule Child’s Eye Exam */
.schedule-child-eye-exam {
  background-color: #ff9800;
  padding: 60px 0;
}

.schedule-child-eye-exam p {
  color: white;
}

/* FAQ Section */
.pediatric-faq-section {
  background-color: #f0f0f0;
  padding: 60px 0;
}



/* Book Appointment Form */
.pediatric-book-appointment {
  background-color: #ff9800;
  padding: 60px 0;
}

.pediatric-book-appointment form {
  max-width: 600px;
  margin: auto;
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.pediatric-book-appointment input,
.pediatric-book-appointment textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 6px;
  border: 1px solid #ddd;
}

.pediatric-book-appointment button {
  background-color: #0033cc;
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
}

.pediatric-book-appointment button:hover {
  background-color: #002299;
}

/* General Styles for Slider */
.cornea-eligibility-container {
  text-align: center;
  padding: 60px 0;
  background-color: #f7f9fa;
}

.cornea-header {
  text-align: center;
  margin-bottom: 40px;
}

.cornea-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #003366;
}

.cornea-description {
  color: #666;
  font-size: 1rem;
  margin-top: 10px;
}

.cornea-slider-container {
  overflow: hidden;
  position: relative;
}

.cornea-cards-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.cornea-card {
  min-width: 280px;
  flex: 0 0 auto;
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

/* MOBILE */
@media (max-width: 768px) {
  .cornea-card {
    min-width: 100%;  /* 🔥 full screen card */
  }

  .cornea-slider-nav button {
    padding: 8px 12px;
  }
}
.cornea-card-image {
  width: 100%;
  border-radius: 8px;
  height: auto;
}

.cornea-card-title {
  margin-top: 15px;
  font-size: 1.1rem;
  color: #003366;
  font-weight: 600;
}

/* Navigation Arrows */
.cornea-slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.cornea-prev-btn, .cornea-next-btn {
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  padding: 10px;
  font-size: 18px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cornea-prev-btn:hover, .cornea-next-btn:hover {
  background-color: #003366;
}

/* Button to Book Appointment */
.cornea-button-container {
  text-align: center;
  margin-top: 30px;
}

.cornea-button-container .btn {
  background-color: #ff9800;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.cornea-button-container .btn:hover {
  background-color: #e68900;
}


.vision-correction-slider-container {
  padding: 60px 20px;
  background: #f7f9fa;
}

.vision-correction-header {
  text-align: center;
  margin-bottom: 40px;
}

.vision-correction-header h2 {
  font-size: 28px;
  font-weight: bold;
  color: #003366;
}

/* SLIDER */
.slider-container {
  position: relative;
  overflow: hidden;
}

.vision-correction-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

/* CARD */
.vision-correction-card {
  flex: 0 0 calc(33.333% - 14px);
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  text-align: center;
}

.vision-correction-card img {
  width: 100%;
  border-radius: 8px;
  margin-top: 15px;
}

/* TABLET */
@media (max-width: 1024px) {
  .vision-correction-card {
    flex: 0 0 calc(50% - 10px);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .vision-correction-card {
    flex: 0 0 100%;
  }
}

/* NAV BUTTONS */
.slider-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}

.prev-btn,
.next-btn {
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  padding: 10px 14px;
  cursor: pointer;
  border-radius: 50%;
}

.prev-btn:hover,
.next-btn:hover {
  background: #003366;
}
/* Book Appointment Button */
.book-appointment-btn {
  text-align: center;
  margin-top: 30px;
}

.book-appointment-btn .btn {
  background-color: #ff9800;
  color: #fff;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.book-appointment-btn .btn:hover {
  background-color: #e68900;
}
.toaligncenter{
  text-align: center !important;
}


.cta-btn {
  background-color: #ff7f50;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

.cta-btn:hover {
  background-color: #ff4500;
}

/* Hero Section */
.hero-section {
  background-color: #f2f2f2;
  padding: 50px 0;
  text-align: center;
}

.hero-section h1 {
  font-size: 36px;
  color: #333;
}

.hero-section p {
  font-size: 18px;
  color: #666;
}

/* Vision Comparison Section */
.vision-comparison-section {
  background-color: #fff;
  padding: 50px 0;
  text-align: center;
}

.vision-comparison-section h2 {
  font-size: 30px;
  color: #333;
}

.vision-image {
  position: relative;
}

.vision-image img {
  max-width: 100%;
  border-radius: 10px;
}

.vision-image p {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 18px;
  color: #333;
}

/* What is Glaucoma Section */
.what-is-glaucoma-section {
  background-color: #f2f2f2;
  padding: 50px 0;
}

.what-is-glaucoma-section h2 {
  font-size: 30px;
  color: #333;
  text-align: center;
}

.what-is-glaucoma-section .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.what-is-glaucoma-section p {
  text-align: center;
  font-size: 18px;
  color: #666;
  line-height: 1.6;
}
.sec-div{
  text-align: center;
}

.what-is-glaucoma-section img {
  width: 100%;
  border-radius: 10px;
}

/* Early Detection Section */
.early-detection-section {
  background-color: #fff;
  padding: 50px 0;
  text-align: center;
}

.early-detection-section h2 {
  font-size: 30px;
  color: #333;
}

.early-detection-section p {
  font-size: 20px;
  color: #333;
  margin-top: 20px;
  line-height: 1.6;
}

.early-detection-section .cta-btn-wrap {
  margin-top: 30px;
}

/* Vision Comparison Section */
.vision-comparison-section {
  padding: 60px 0;
  text-align: center;
}

.vision-comparison-section h2 {
  font-size: 28px;
  margin-bottom: 40px;
  font-weight: bold;
  color: #333;
}

.main-con {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 40px;
}

.sub-col {
  width: 250px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sub-col .vision-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 15px;
}

.sub-col p {
  font-size: 18px;
  font-weight: 600;
  color: #333;
}

.cta-btn-wrap {
  margin-top: 30px;
}

.cta-btn {
  display: inline-block;
  background-color: #FF8C00;
  color: white;
  padding: 12px 25px;
  font-size: 18px;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #FF7F00;
}

/* Styling for symptom card grid inside Advanced Symptoms */

/* Styling for symptom card grid inside Advanced Symptoms */
.glc-card-grid {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.glc-symptom-card {
  width: 220px;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  background-color: #fff;
}

.glc-symptom-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}

.glc-symptom-card p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin-top: 10px;
}

/* Advanced Symptoms Section slider */
.glc-card-grid-slider {
  display: flex;
  overflow-x: hidden;
  gap: 20px;
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.glc-card-grid-slider::-webkit-scrollbar {
  display: none;
}

.glc-card-grid-slider {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Smooth transitions for the slider */
.glc-card-grid-slider {
  transition: transform 1s ease-in-out;
}

/* Prevent the content from shrinking */
.glc-symptom-card {
  flex-shrink: 0;
  width: 220px;
  text-align: center;
}

/* The CTA button */
.glc-btn-wrap {
  text-align: center;
  margin-top: 30px;
}

.glc-symptom-card-cs{
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 15px;
  background-color: #fff;
}
.glc-symptom-card-cs img {
    width: 100px !important;
}
/* Styling for Diagnostic Test Section */
.glaucoma-diagnostic-tests {
  background-color: #f1f9f9;
  padding: 40px 0;
}

.glaucoma-diagnostic-tests h2 {
  text-align: center;
  font-size: 30px;
  color: #333;
  margin-bottom: 30px;
}

/* Slider Container */
.glc-diagnostic-slider {
  display: flex;
  overflow: hidden;
  justify-content: flex-start;
  gap: 20px;
  scroll-behavior: smooth;
}

/* Styling for each diagnostic test card */
.glc-diagnostic-card {
  flex-shrink: 0;
  width: 220px;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.glc-diagnostic-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}

.glc-diagnostic-card p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

/* Button styling for Call to Action */
.cta-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.cta-btn {
  background-color: #ff6f00;
  color: #fff;
  padding: 15px 30px;
  border-radius: 30px;
  font-size: 18px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #e65c00;
}




.sx-slider {
  overflow: hidden;
  position: relative;
}

.sx-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollSlider 60s linear infinite;
}

/* pause on hover */
.sx-slider:hover .sx-track {
  animation-play-state: paused;
}

/* IMPORTANT: keep same look */
.sx-slider .surgery-card {
  width: 280px !important;
  flex: 0 0 auto;
}

.sx-slider .service-card {
  width: 300px !important;
  flex: 0 0 auto;
}

@keyframes scrollSlider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.common-surgeries h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

    /*.surgeries-list {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }*/

    .surgery-card {
      background: #fff;
      padding: 20px;

      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }

    .surgery-card:hover {
      transform: translateY(-10px);
    }

    .surgery-card h3 {
      font-size: 24px;
    }

    .surgery-card p {
      margin-bottom: 0;
      font-size: 16px;
    }

    /* Orbit Services Section */
    .orbit-services {
      background-color: #2a3d5c;
      color: white;
      padding: 50px 0;
    }

    .orbit-services h2 {
      text-align: center;
      color: #fff !important;
      font-size: 32px;
      margin-bottom: 40px;
    }

    /*.orbit-services .services-list {
        display: flex;
        justify-content: space-between;
        gap: 20px;
        flex-wrap: wrap;
    }*/

    .orbit-services .service-card {
      background: #fff;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.6s ease;
    }

    .orbit-services .service-card:hover {
      transform: translateY(-10px);
    }

    .orbit-services .service-card h3 {
      font-size: 24px;
    }

    .orbit-services .service-card p {
      font-size: 16px;
      color: #000;
    }

    section.common-surgeries {
      text-align: center;
      padding: 60px 0;
    }



    /* MAIN WRAPPER */
    .sx-oculo-section-v1 {
      background: linear-gradient(135deg, #e6f7f6, #f8fbff);
      padding: 70px 20px;
      font-family: 'Poppins', sans-serif;
    }

/* CONTAINER */
.sx-oculo-section-v1 .sx-container {
  max-width: 1200px;
  margin: auto;
}

/* GRID */
.sx-oculo-section-v1 .sx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

/* LEFT BOX */
.sx-oculo-section-v1 .sx-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.sx-oculo-section-v1 .sx-box h2 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #0a2a43;
}

.sx-oculo-section-v1 .sx-box p {
  color: #555;
  margin-bottom: 15px;
}
.sx-oculo-section-v1 .sx-highlight h2{
  color: #fff !important;
  margin-bottom: 10px;
}

.sx-oculo-section-v1 .sx-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.sx-oculo-section-v1 .sx-box ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.sx-oculo-section-v1 .sx-box ul li::before {
  content: "👉";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
}


/* RIGHT HIGHLIGHT */
.sx-oculo-section-v1 .sx-highlight {
  background: #0f7c82;
  color: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.sx-oculo-section-v1 .sx-highlight h3 {
  margin-bottom: 20px;
  font-size: 24px;
}

.sx-oculo-section-v1 .sx-item {
  margin-bottom: 15px;
}

.sx-oculo-section-v1 .sx-item strong {
  display: block;
  font-size: 16px;
}

.sx-oculo-section-v1 .sx-item p {
  font-size: 14px;
  opacity: 0.9;
}

/* CTA */
.sx-oculo-section-v1 .sx-cta {
  text-align: center;
  margin-top: 50px;
}

.sx-oculo-section-v1 .sx-cta p {
  font-size: 16px;
  color: #444;
  margin-bottom: 20px;
}

.sx-oculo-section-v1 .sx-btn {
  background: #ff8c00;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
}

.sx-oculo-section-v1 .sx-btn:hover {
  background: #e67600;
}

.sx-highlight h3{
  color: #fff;
}
/* MOBILE */
@media (max-width: 768px) {
  .sx-oculo-section-v1 .sx-grid {
    grid-template-columns: 1fr;
  }
}






.sx-retina-final-v1 .sx-section {
  padding: 80px 0;
}

.sx-retina-final-v1 h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sx-retina-final-v1 p {
  color: #555;
  line-height: 1.6;
}
.sx-retina-final-v1 .sx-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.sx-retina-final-v1 .sx-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  border-top: 4px solid #0f7c82;
  transition: 0.3s;
}

.sx-retina-final-v1 .sx-box:hover {
  transform: translateY(-5px);
}
.sx-retina-final-v1 .sx-card {
  display: flex;
  gap: 20px;
  background: #ffffff;
  color: #2b2b2b;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 20px;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  border-left: 4px solid #0f7c82;
}

.sx-retina-final-v1 .sx-card img {
  width: 90px;
  border-radius: 10px;
}
.sx-retina-final-v1 .dark {
  background: #0a5f63;
  color: #fff;
  text-align: center;
}

.sx-retina-final-v1 .dark p {
  max-width: 700px;
  margin: 15px auto 0;
  color: #d9f3f4;
}
.sx-retina-final-v1 .sx-white-box {
  background: #ffffff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.sx-retina-final-v1 .sx-white-box:hover {
  transform: translateY(-5px);
}
.sx-retina-final-v1 .sx-ul {
  max-width: 600px;
  margin: 30px auto 0;
}

.sx-retina-final-v1 .sx-ul li {
  background: #ffffff;
  padding: 12px 15px 12px 40px;
  margin-bottom: 12px;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.sx-retina-final-v1 .sx-ul li::before {
  content: "✔";
  position: absolute;
  left: 12px;
  color: #ff8c1a;
  font-weight: bold;
}
.cta-box-sp {
  background: linear-gradient(135deg, #0f7c82, #0a5f63);
  padding: 50px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
}

.cta-title-sp {
  font-size: 28px;
  margin-bottom: 15px;
}

.cta-desc-sp p {
  max-width: 700px;
  margin: auto;
  color: #d9f3f4;
}

.cta-buttons-sp {
  margin-top: 25px;
}

.cta-buttons-sp a {
  margin: 5px;
}

/* HEADING CENTER */
.sx-heading-center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* GRID */
.sx-eye-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

/* CARD */
.sx-eye-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.sx-eye-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.sx-eye-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* TITLE */
.sx-eye-card h4 {
/*  font-size: 18px;*/
margin-bottom: 8px;
/*  color: #0f7c82;*/
}

/* TEXT */
.sx-eye-card p {
  font-size: 14px;
  color: #555;
}
.sx-eye-check{
  padding-top: 0 !important;
}
.cs-conditions {
  text-align: center;
}
.sx-section.dark.cstm-title h2 {
  color: #fff;
}
.cstm-diabetic-eye {
  padding-top: 0 !important;
}
.cstm-diabetic-eye p{
 text-align: center;
}
.cstm-diabetic-eye h2{
  text-align: center;
}
.cstm-consu p {
  color: #fff !important;
  max-width: 100% !important;
}
.cstm-sec-one h2{
  text-align: center !important;
}
/* MOBILE */
@media(max-width:768px){
  .sx-eye-grid {
    grid-template-columns: 1fr;
  }
}





/* GALLERY */
.sx-opticals-gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 15px;
  margin: 40px 0;
}

.sx-opticals-gallery img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

/* WRAPPER */
.sx-optical-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding: 0 0 60px 0;
}

/* CARD */
.sx-optical-card {
  display: flex;
  align-items: center;
  gap: 30px;
  background: #159a90;
  color: #fff;
  padding: 25px;
  border-radius: 25px;
  transition: 0.3s;
}

.sx-optical-card:hover {
  transform: translateY(-5px);
}

/* REVERSE */
.sx-optical-card.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.sx-optical-card .sx-img img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 15px;
}

/* CONTENT */
.sx-optical-card .sx-content h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.sx-optical-card .sx-content p {
  font-size: 15px;
  line-height: 1.6;
}
section.sx-hero.sx-optical-hero {
    margin-bottom: 50px;
}
/* MOBILE */
@media(max-width:768px){

  .sx-optical-card,
  .sx-optical-card.reverse {
    flex-direction: column;
    text-align: center;
  }

  .sx-optical-card .sx-img img {
    width: 100%;
  }

  .sx-opticals-gallery {
    grid-template-columns: 1fr;
  }

  .sx-optical-hero h1 {
    font-size: 32px;
  }
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000;
}
/* ====== SHANTHI NETHRALAYA EXCLUSIVE FORM ====== */

.snh-aptx-wrap {
  width: 100%;
}

.snh-aptx-row {
  display: flex;
  gap: 18px;
  margin-bottom: 18px;
}

.snh-aptx-col {
  width: 100%;
}

/* INPUT DESIGN */
.snh-aptx-input,
.snh-aptx-textarea {
  width: 100%;
  padding: 15px 18px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  font-size: 14px;
  font-family: inherit;
  transition: all 0.25s ease;
}

/* FOCUS EFFECT */
.snh-aptx-input:focus,
.snh-aptx-textarea:focus {
  border-color: #0f766e;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
  outline: none;
}

/* TEXTAREA */
.snh-aptx-textarea {
  min-height: 70px;
  resize: none;
}

/* BUTTON */
.snh-aptx-btnbox {
  margin-top: 10px;
}

.snh-aptx-btn {
  width: 100%;
  padding: 16px;
  border-radius: 60px;
  border: none;
  background: linear-gradient(135deg, #ff8a00, #ffb347);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.snh-aptx-btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
}

/* CF7 RESPONSE */
.snh-aptx-wrap .wpcf7-response-output {
  margin-top: 15px;
  border-radius: 10px;
  padding: 12px;
}

/* MOBILE */
@media (max-width: 768px) {
  .snh-aptx-row {
    flex-direction: column;
  }
}
/* MOBILE */
@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 15px;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .btn-primary {
    display: none;
  }

  .black-bar-content {
    display: block !important;
    text-align: center;
    gap: 5px;
    font-size: 12px;
  }
  .black-bar-content span{
    display: block !important;
  }
  .extra_quete {
    font-size: 11px;
  }
  .menu-toggle{
    background-color: #00a19a !important;

  }
  #home .service-description{

    display: none !important;

  }
  .link-primary-new{
   margin-left: 0px !important;
 }
 .home .service-card {
  padding: 2px;
}
.doctor .container {
  text-align: center !important;
  width: auto !important;
  margin: 0 auto !important;
}
.doctor-content {
  padding: 10px !important;
}
.doctor {
    padding: 30px 0;
}
.about {
  padding: 30px 0;
}
.about-content {
  gap: 20px;
}
.about-text{
  padding-left: 0px;
}
.cta-title {
  font-size: 30px;
}
.gallery .section-title {
  font-size: 26px;
    margin-right: 10px;
}
.gallery {
    padding: 30px 0;
}
.blog {
    padding: 30px 0;
}
.cta {
  padding: 30px 0;
}
.link-primary-new{
  padding: 12px 15px;
}
.videos-ed .video-card {
  flex: 0 0 100%;
}
.sx-gallery {
  padding: 30px 0;
}
.blog-layout {
  display: grid;
  grid-template-columns: 100% !important;
}
.sxcp-formbox {
  padding: 20px;
}
.cataract-section {
  padding: 20px 0;
}
.cataract-left h2{
  font-size: 1.5625rem;
}
.symptoms-section {
  padding: 30px 0;
}
.symptoms-header h2{
  font-size: 1.5625rem;
}
.symptoms-header {
  margin-bottom: 20px;
}
.sx-hero h1 {
  font-size: 1.875rem;
}
.cataract-right .overlay {
  position: absolute;
  bottom: 0;
  top: 0;
}
.cataract-right {
  min-height: 0;
}
.sx-section {
    padding: 30px 0;
}
.symptom-card {
  text-align: center;
  display: block;
}
.symptom-icon {
  padding: 12px;
  margin-bottom: 10px;
}
.symptoms-btn-wrap {
      margin-top: 0px;
}
.iol-btn-wrap {
  margin-top: 30px;
}
.iol-section {
    padding: 30px 0px;
  }

.cost-section {
    padding: 30px 10px;
}
.cost-btn-wrap {
    margin-top: 0px;
}
.sx-doc-slider-sec {
    padding: 30px 20px;
}

.Corneal-section {
  padding: 30px 0;
}
.cornea-treatment-sec h2, .cornea-section-title {
  font-size: 1.5625rem;
}
.cornea-treatment-sec {
    padding: 0px 0 0px 0;
}
.cornea-indications-sec {
    padding: 30px 0;
  }
.cornea-types-sec {
    padding: 30px 0;
  }
.cornea-prep-sec {
    padding: 30px 0;
}
.cornea-type-content ol,.cornea-type-content ul {
    margin: 0;
}
.sx-hero {
  padding: 20px 0 30px;
}
.what-is-glaucoma-section {
    padding: 30px 0;
}
.glc-symptoms-section {
    padding: 30px 0;
}
.what-is-glaucoma-section h2 {
    font-size: 1.5625rem;
}
.glc-symptom-card {
    width: 100%;
  }
.early-detection-section h2, .glaucoma-diagnostic-tests h2{
          font-size: 1.5625rem;
}
.early-detection-section p {
      font-size: 100%;
}
.risk-factors-section {
    padding: 0;
}

.rf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.glc-diagnostic-card {
    width: 100%;
}
.faq {
    padding: 30px 0;
    background: #00958e;
}
.services-grid-sp {
    grid-template-columns: repeat(1, 1fr);;
}
.pediatric-services-grid{
      grid-template-columns: repeat(1, 1fr);

}
.sx-retina-final-v1 .sx-grid {
      grid-template-columns: repeat(1, 1fr);
}
 .iol-container {
    padding: 15px;
  }

  .iol-header h2 {
    font-size: 22px;
    text-align: center;
  }

  .iol-main {
    flex-direction: column;
    gap: 20px;
  }

  /* TABLE SCROLL */
  .iol-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .iol-table {
    min-width: 600px; /* scroll enable */
    font-size: 13px;
  }

  .iol-table th,
  .iol-table td {
    padding: 10px;
    text-align: center;
    white-space: nowrap;
  }

  /* GRID / ACCORDION */
  .iol-grid {
    width: 100%;
  }

  .iol-card {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
  }

  .iol-btn {
    width: 100%;
    text-align: left;
    padding: 14px;
    font-size: 15px;
    font-weight: 600;
/*    background: #f7f7f7;*/
    border: none;
  }

  .iol-content {
    padding: 12px 14px;
    font-size: 14px;
    line-height: 1.6;
  }

  /* CTA BUTTON */
  .iol-btn-wrap {
    margin-top: 20px;
    text-align: center;
  }
  
}
