@import url("https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Lora", serif !important;
}

a {
  text-decoration: none;
  color: inherit;
}

.topbar {
  background: #0d1b2a;
  color: #ffffff;
  font-size: 14px;
  padding: 8px 0;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.top-info span {
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.top-info i {
  color: #00a99d;
  margin-right: 6px;
}

/* ================= LINKS ================= */
.top-link:hover {
  /*color: #00a99d;*/
}

/* ================= SOCIAL ICONS ================= */
.social-icons a {
  color: #ffffff;
  margin-left: 8px;
  font-size: 14px;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s ease;
}

.social-icons a:hover {
  background: #00a99d;
  transform: translateY(-3px);
}

/* ================= MOBILE + TABLET ================= */
@media (max-width: 768px) {
  .topbar {
    text-align: center;
  }

  .top-info {
    justify-content: center;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .top-info span {
    font-size: 12px;
  }

  .social-icons {
    display: none;
  }
}
/* ================= NAVBAR ================= */
.custom-navbar {
  background: #ffffff;
  padding: 10px 0;
  z-index: 999;
}

/* Logo Box */

/* Logo Box */
.logo-box {
  display: flex;
  align-items: center;
  gap: 6px; /* dono icons ke beech space */
  text-decoration: none;
}

/* Main Logo */
.logo-img {
  height: 50px; /* logo size */
  width: auto;
  object-fit: contain;
}

/* Agar second icon chhota rakhna hai */
.logo-box img:nth-child(2) {
  height: 30px; /* small icon size */
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
  .logo-img {
    height: 36px;
  }

  .logo-box img:nth-child(2) {
    height: 24px;
  }
}

.circle {
  width: 12px;
  height: 12px;
  background: #00b894;
  display: inline-block;
  border-radius: 50%;
  margin-right: 8px;
}

/* Nav Links */
.nav-link {
  font-weight: 700;
  font-size: 1.2rem;
  color: #333 !important;
  transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #00b894 !important;
}
/* Dropdown Parent */
.custom-dropdown .nav-link {
  font-weight: 600;
  color: #1a3c6e !important;
  position: relative;
  transition: 0.3s ease;
}
.dropdown-item {
  font-weight: 700;
  font-size: 1rem;
}

/* Hover Effect on Nav Link */
.custom-dropdown .nav-link:hover {
  color: #00b894 !important;
}

/* Dropdown Menu Box */
.custom-menu {
  border-radius: 10px;
  border: none;
  padding: 8px 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  animation: fadeInDown 0.3s ease;
}

/* Dropdown Item */
.custom-menu .dropdown-item {
  font-weight: 500;
  padding: 10px 20px;
  transition: 0.3s ease;
}

/* Hover Effect */
.custom-menu .dropdown-item:hover {
  background-color: #00b894;
  color: white;
  padding-left: 25px;
}

/* Smooth Animation */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Search */
.search-icon {
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.search-icon:hover {
  color: #00b894;
}

/* Contact Button */
.contact-btn {
  background: #00b894;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s;
  text-decoration: none;
}

.contact-btn:hover {
  background: #009e7d;
  color: #fff;
}

/* Mobile */
@media (max-width: 991px) {
  .logo-box {
    padding: 15px 20px;
  }

  .contact-btn {
    width: 100%;
    text-align: center;
    margin-top: 15px;
  }
  .navbar .nav-link {
    font-size: 16px; /* Menu text chhota */
  }

  .navbar-brand {
    font-size: 18px; /* Logo text chhota */
  }

  .contact-btn {
    font-size: 12px; /* Button text chhota */
    padding: 6px 12px;
  }

  .dropdown-item {
    font-weight: 500;
    font-size: 1rem;
  }
}

/* ================= HERO SECTION ================= */

.hero-section {
  position: relative;
}

.hero-slide {
  height: 70vh;

  /* ✅ Yaha background image add ki gayi */
  /* <-- apni image ka path likhiye */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Green Overlay (Optional) */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(
    0,
    128,
    115,
    0.6
  ); /* thoda halka kiya for better visibility */
}

/* Content */
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

.hero-small {
  font-size: 20px;
  color: #00f5d4;
  font-weight: 800;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 800;
  margin: 15px 0;
}

.hero-content p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* Button */
.hero-btn {
  background: #00bfa6;
  color: #fff;
  padding: 14px 40px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.hero-btn:hover {
  background: #009e8a;
  color: #fff;
}

/* Arrow Style */
.custom-arrow {
  filter: invert(1);
  width: 35px;
  height: 35px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 40px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-slide {
    height: 80vh;
  }
}

/* SECTION BACKGROUND */
.optometrist-section {
  background: #f5f7fa;
}

.intro-img {
  position: relative;
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.intro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Experience Badge */
.experience-badge {
  position: absolute;
  right: 15px;
  bottom: 10px;
  width: 110px;
  height: 110px;
  background: #00b894;
  color: white;
  border-radius: 50%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.experience-badge h5 {
  color: #ffffff;
  font-weight: 700;
}

.experience-badge p {
  font-size: 14px;
  margin: 0;
  padding-top: 0;
}

/* Small Overlap Image */
.small-img {
  position: absolute;
  bottom: -40px;
  right: 100px;
  width: 65%;
}

/* Section Title */
.section-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
}

/* Checklist */
.checklist li {
  margin-bottom: 12px;
  font-size: 16px;
}

.checklist i {
  color: #00b894;
  margin-right: 8px;
}

/* Appointment Box */
.appointment-box {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.doctor-img img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

/* Patient Counter Box */
/* ===== PATIENT BOX ===== */
.patient-box {
  background: #1abc9c;
  color: white;
  padding: 12px 15px;
  border-radius: 12px;
  width: fit-content;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  text-align: center;
  cursor: pointer;
}

/* Anchor Full Clickable */
/* Parent Anchor */
.patient-box a {
  display: flex;
  align-items: center; /* Vertical center */
  justify-content: center; /* Horizontal center */
  gap: 8px; /* Icon & text spacing */
  text-decoration: none;
}

/* Icon */
.patient-box i {
  font-size: 1rem;
  color: #ffffff;
  margin: 0;
}

/* Text */
.patient-box span {
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* Hover Effect */
.patient-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

/* Hover Text Color */
.patient-box:hover i,
.patient-box:hover h6 {
  color: #ffffff;
}
/* Default (Desktop) */
.appointment-box {
  gap: 15px;
}

/* Mobile View */
@media (max-width: 768px) {
  .appointment-box {
    flex-direction: column; /* Sab niche aa jayega */
    align-items: flex-start; /* Left align */
  }

  .patient-box {
    width: 100%;
    margin-top: 15px;
    text-align: center;
  }

  .call-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .small-img {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 20px;
    width: 100%;
  }

  .vertical-line {
    display: none;
  }

  .experience-badge {
    position: relative;
    margin-bottom: 20px;
  }

  .section-title {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .experience-badge {
    right: 15px;
    bottom: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
  }

  .experience-badge h3 {
    font-size: 20px !important;
    margin: 0 !important;
  }

  .experience-badge p {
    font-size: 12px !important;
    margin: 0 !important;
  }
}

/* service service   */
.services-section {
  background-color: #f1eae2;
}

/* Card Base */
.service-card {
  background: #00b894;
  color: white;
  padding: 10px;
  border-radius: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  height: 100%;
  cursor: pointer;
}

/* Title */
.service-card h4 {
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* Paragraph */
.service-card p {
  font-size: 15px;
  color: #f0fdf6;
  line-height: 1.7;
  transition: 0.3s;
}

/* Icon */
.icon-box {
  width: 90px;
  height: 90px;
  background: #f4f4f4;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 32px;
  color: #00b894;
  transition: 0.4s ease;
}

/* 🔥 STRONG HOVER EFFECT */
.service-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 45px rgba(241, 115, 43, 0.4);
}

/* Text White on Hover */
.service-card:hover h4,
.service-card:hover p {
  color: #ffffff;
}

/* Icon Change */
.service-card:hover .icon-box {
  background: #ffffff;
  color: #4ff12b;
  transform: scale(1.15);
}

/* ===== DARK SECTION ===== */
.services-dark {
  background: #3d404f;
  color: #fff;
}

/* Heading */
.section-heading {
  font-size: 42px;
  font-weight: 700;
}

.section-heading span {
  color: #1abc9c;
}

.section-text {
  color: #cfd2da;
}

/* Card */
.service-box {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  transition: 0.4s;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-content {
  padding: 15px;
}

/* ===================================== */
/* TABLET RESPONSIVE - 1024px */
/* ===================================== */

@media (max-width: 1024px) {
  /* Heading Size Adjust */
  .section-heading {
    font-size: 34px;
  }

  .section-text {
    font-size: 15px;
  }

  /* 3 Column se 2 Column */
  .services-dark .col-lg-4 {
    width: 50%;
  }

  /* Card Spacing */
  .service-box {
    margin-bottom: 20px;
  }

  /* Image Height Control */
  .service-img img {
    height: 220px;
    object-fit: cover;
  }

  /* Icon Size Adjust */
  .icon-circle {
    width: 60px;
    height: 30px;
    font-size: 20px;
  }

  /* Content Padding Adjust */
  .service-content {
    padding: 10px;
  }

  .service-content h4 {
    font-size: 18px;
  }

  .service-content p {
    font-size: 14px;
  }

  /* Button Center */
  .team-btn {
    padding: 10px 25px;
    font-size: 14px;
  }
}

/* 📱 Mobile Friendly */
@media (max-width: 1024px) {
  .service-card {
    background: #00b894;
    color: #fff;
  }

  .service-card h4,
  .service-card p {
    color: #fff;
  }
  .service-card i {
    color: #16c75a;
  }
}
/* -- ===== SERVICES SECTION START =====  */

.view-more-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  background: #ff7b29;
  color: #fff;
  text-decoration: none;
  border-radius: 6px;
  font-size: 15px;
  transition: 0.3s ease;
}

.view-more-btn:hover {
  background: #1b1e1d;
  color: #fff;
}

/* Image */
.service-img img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* Icon */
.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  position: absolute;
  top: 180px;
  left: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
}

.icon-circle.green {
  background: #1abc9c;
}

.icon-circle.dark {
  background: #1abc9c;
}

/* Content */
.service-content {
  /* padding: 60px 30px 40px; */
  position: relative;
}

.service-content h4 {
  font-weight: 600;
  margin-bottom: 10px;
  color: black;
}

.service-content p {
  color: #777;
}

/* Watermark */
.watermark {
  position: absolute;
  bottom: 10px;
  right: 20px;
  font-size: 80px;
  color: rgba(0, 0, 0, 0.05);
  font-weight: 700;
}

/* Hover Effect */
.service-box:hover {
  transform: translateY(-10px);
}

/* Active Card */
.service-box.active {
  border-bottom: 5px solid #1abc9c;
}
/* ===================================== */
/* MOBILE RESPONSIVE - 768px */
/* ===================================== */

@media (max-width: 768px) {
  /* Heading Section */
  .section-heading {
    font-size: 26px;
    text-align: center;
    line-height: 1.4;
  }

  .section-text {
    font-size: 14px;
    text-align: center;
    margin-top: 10px;
  }

  /* Cards Full Width */
  .services-dark .col-lg-4 {
    width: 100%;
  }

  /* Card Spacing */
  .service-box {
    margin-bottom: 25px;
  }

  /* Image Height Control */
  .service-img img {
    height: 200px;
    object-fit: cover;
  }

  /* Icon Adjust */
  .icon-circle {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }

  /* Content Adjust */
  .service-content {
    padding: 18px;
    text-align: center;
  }

  .service-content h4 {
    font-size: 17px;
  }

  .service-content p {
    font-size: 14px;
  }

  /* Watermark Smaller */
  .watermark {
    font-size: 40px;
  }

  /* Button Center */
  .team-btn {
    padding: 10px 22px;
    font-size: 14px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .section-heading {
    font-size: 30px;
  }
}

/* ================================
   CTA SECTION
================================ */

.cta-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;

  /* Background Image */
  background-image: url("/image/premhelp1.webp"); /* 👈 apna image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Green Overlay */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(24, 183, 143, 0.88); /* Green overlay */
}

/* Container Above Overlay */
.cta-section .container {
  position: relative;
  z-index: 2;
}

/* ================================
   CTA HEADING
================================ */

.cta-title {
  font-size: 46px;
  font-weight: 700;
  color: #ffffff;
  max-width: 750px;
  line-height: 1.3;
}

/* ================================
   CTA BUTTON
================================ */

.cta-btn {
  background: #2f2f3a;
  color: #ffffff;
  padding: 14px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  transition: all 0.3s ease;
}

/* Arrow Circle */
.arrow-circle {
  width: 42px;
  height: 42px;
  background: #ffffff;
  color: #18b78f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

/* Hover Effect */
.cta-btn:hover {
  background: #000000;
  color: #ffffff;
}

.cta-btn:hover .arrow-circle {
  transform: translateX(6px);
}

/* ================================
   RESPONSIVE
================================ */

@media (max-width: 992px) {
  .cta-title {
    font-size: 32px;
    text-align: center;
  }

  .cta-section .col-lg-4 {
    text-align: center !important;
    margin-top: 25px;
  }
}

@media (max-width: 576px) {
  .cta-title {
    font-size: 26px;
  }

  .cta-btn {
    padding: 12px 25px;
  }
}
/* ===== TEAM SECTION ===== */
.team-section {
  background: #f4f4f4;
}

/* Heading */
.team-title {
  font-size: 40px;
  font-weight: 700;
  color: #222;
}

/* Card */
.team-card {
  background: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.4s;
  position: relative;
}

/* Image */
.team-img {
  position: relative;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  transition: 0.4s;
}

/* Share Icon */
.share-icon {
  position: absolute;
  bottom: -20px;
  right: 20px;
  width: 45px;
  height: 45px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-size: 16px;
}

/* Bottom Info Area */
.team-info {
  padding: 30px 20px;
  background: linear-gradient(to right, #dcefea, #f1eae2);
}

.team-info h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.team-info p {
  margin: 0;
  color: #777;
  font-size: 14px;
}

/* Hover Effect */
.team-card:hover img {
  transform: scale(1.05);
}

.team-card:hover {
  transform: translateY(-10px);
}

/* Button */
.team-btn {
  background: #18b78f;
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.team-btn:hover {
  background: #0e8f6d;
  color: #fff;
}

/* Responsive */
@media (max-width: 992px) {
  .team-title {
    font-size: 28px;
  }
  .team-center {
    padding-bottom: 20px;
  }
  .team-title br {
    display: none;
  }
}

/* ===== TESTIMONIAL SECTION ===== */

/* ============================= */
/*   EC Testimonial Section      */
/* ============================= */

.testimonial-card {
  padding: 15px 20px;
  border-radius: 10px;
  background-color: #035a47;
  color: #fff;
}

.testimonial-card .testimonial-card-wrapper .testimonial-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}
.testimonial-card .testimonial-card-wrapper .testimonial-img img {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-section {
  background: #f9fbff;
}

.blog-title {
  font-size: 40px;
  font-weight: 700;
  color: #222;
}

.blog-title span {
  color: #1abc9c;
}

.blog-subtitle {
  color: #777;
  font-size: 16px;
}

/* Card */
.blog-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.4s;
}

.blog-card:hover {
  transform: translateY(-10px);
}

/* Image */
.blog-img {
  width: 100%;
  height: 240px;
  position: relative;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}

.blog-card:hover img {
  transform: scale(1.1);
}

/* Date Badge */
.blog-date {
  position: absolute;
  bottom: -20px;
  left: 25px;
  background: #1abc9c;
  color: #fff;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
}

/* Optional Green Overlay */
.overlay-green::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 188, 156, 0.6);
}

/* Content */
.blog-content {
  padding: 40px 25px 25px;
}

.blog-content h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

.blog-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
}

.blog-meta i {
  color: #1abc9c;
  margin-right: 5px;
}

.blog-content p {
  font-size: 15px;
  color: #777;
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #1abc9c;
  font-weight: 600;
  text-decoration: none;
}

.read-more:hover {
  color: #16a085;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-title {
    font-size: 28px;
  }
}
.how-works {
  background: #f8f9f9;
  position: relative;
  overflow: hidden;
}

/* Background Faded Title */
.bg-title {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 80px;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  z-index: 0;
}

/* Main Title */
.section-title {
  font-size: 36px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

/* Step Box */
.step-box h4 {
  font-weight: 600;
  margin-top: 20px;
}

.step-box p {
  color: #777;
  font-size: 15px;
}

/* Circular Image */
.step-img {
  width: 180px;
  height: 180px;
  margin: auto;
  border-radius: 50%;
  position: relative;
  border: 3px dashed #00b894;
  padding: 10px;
}

.step-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Step Number Badge */
.step-number {
  position: absolute;
  top: -10px;
  left: -10px;
  background: #f97316;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover Effect */
.step-box:hover .step-img {
  border-color: #f97316;
  transition: 0.4s;
}

.step-box:hover h4 {
  color: #00b894;
  transition: 0.4s;
}

/* Responsive */
@media (max-width: 768px) {
  .bg-title {
    font-size: 50px;
    top: 20px;
  }

  .section-title {
    font-size: 26px;
  }

  .step-img {
    width: 150px;
    height: 150px;
  }
}
.emergency-section {
  background: linear-gradient(135deg, #0fa78d, #087f72);
  position: relative;
  overflow: hidden;
}

/* Big faded background text */

/* Title */
.emergency-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.3;
}

.emergency-title span {
  color: #ff7a2f;
}

/* Text */
.emergency-text {
  margin-top: 20px;
  font-size: 16px;
  opacity: 0.9;
}

/* Phone Section */
.phone-icon {
  width: 50px;
  height: 50px;
  background: #ff7a2f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-icon i {
  color: #fff;
  font-size: 1rem;
}

.emergency-contact small {
  opacity: 0.8;
}

.emergency-contact h4 {
  margin: 0;
  font-weight: 700;
}

/* Ambulance image */
.ambulance-img {
  max-width: 90%;
}

/* Responsive */
@media (max-width: 992px) {
  .emergency-title {
    font-size: 28px;
  }

  .emergency-section::before {
    font-size: 50px;
    right: 20px;
  }
}

/* ===============================
   CONTACT SECTION - EYE IMAGE BG
================================= */

.contact-section {
  padding: 90px 0;
  background:
    linear-gradient(rgba(0, 100, 60, 0.8), rgba(0, 100, 60, 0.8)),
    url("/image/premhelp1.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Container */
.contact-container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;
}

/* Left Side Content */
.contact-left {
  flex: 1;
  color: #ffffff;
}

.contact-left h2 {
  font-size: 38px;
  margin-bottom: 15px;
}

.contact-left p {
  margin-bottom: 20px;
  color: #e6f5ee;
}

.contact-details p {
  margin-bottom: 12px;
  font-size: 15px;
  color: #f0fdf6;
  text-decoration: none;
}
.contact-details a {
  text-decoration: none;
  color: inherit; /* Same color as normal text */
}

/* Right Side Form Card */
.contact-right {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Form Row */
.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row input,
.form-row select {
  flex: 1;
}

/* Inputs */
input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 14px;
  transition: 0.3s ease;
}

/* Focus Effect */
input:focus,
select:focus,
textarea:focus {
  border-color: #0f9b6f;
  outline: none;
  box-shadow: 0 0 8px rgba(15, 155, 111, 0.4);
}

/* Textarea */
textarea {
  margin-bottom: 20px;
  resize: none;
}

/* Submit Button */
.submit-btn {
  width: 100%;
  padding: 14px;
  background: #0f9b6f;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

.submit-btn:hover {
  background: #087f5b;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }

  .form-row {
    flex-direction: column;
  }
}
/* ===============================
   FAQ SECTION - EYE HOSPITAL
================================= */

.faq-section {
  padding: 80px 0;
  background: #f4fdf9;
}

.faq-container {
  width: 90%;
  max-width: 900px;
  margin: auto;
}

.faq-heading {
  text-align: center;
  margin-bottom: 40px;
}

.faq-heading h2 {
  font-size: 32px;
  color: #0f9b6f;
  margin-bottom: 10px;
}

.faq-heading p {
  color: #555;
}

/* FAQ Item */
.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

/* Question Button */
.faq-question {
  width: 100%;
  padding: 18px;
  background: #ffffff;
  border: none;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
}

.faq-question:hover {
  background: #e6f5ee;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  background: #ffffff;
  transition: max-height 0.4s ease;
  padding: 0 18px;
}

.faq-answer p {
  padding: 15px 0;
  color: #555;
}
/* ===============================
   WHY CHOOSE US - PREMIUM DESIGN
================================= */

.why-section {
  background: linear-gradient(to right, #f8fffc, #e6f9f1);
}

.why-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

/* LEFT IMAGE */
.why-image {
  flex: 1;
  position: relative;
}

.why-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* RIGHT CONTENT */
.why-content {
  flex: 1;
  position: relative;
}

/* Big Background Text */
.bg-text {
  position: absolute;
  top: -60px;
  left: 0;
  font-size: 100px;
  font-weight: 900;
  color: rgba(0, 150, 100, 0.06);
  z-index: 0;
}

/* Main Heading */
.why-content h2 {
  font-size: 45px; /* bada size */
  font-weight: 600; /* strong bold */
  line-height: 1.3; /* height control */
  color: #222;
}

/* Description */
.desc {
  color: #666;
  margin-bottom: 40px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* Features Grid */
.why-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Feature Card */
.feature {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 30px 25px 25px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

/* Left Accent Line */
.feature::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, #0f9b6f, #00b894);
  border-radius: 15px 0 0 15px;
}

/* Hover Effect */
.feature:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Heading */
.feature h4 {
  font-size: 20px; /* Thoda bada */
  margin-bottom: 12px;
  font-weight: 700;
  color: #0f9b6f;
}

/* Paragraph */
.feature p {
  color: #555;
  font-size: 15px; /* Thoda readable */
  line-height: 1.7;
  margin: 0;
}

/* ===================================== */
/* TABLET RESPONSIVE - 1024px */
/* ===================================== */

@media (max-width: 1024px) {
  .why-container {
    flex-direction: column;
    gap: 40px;
  }

  /* CONTENT PEHLE AAYE */
  .why-content {
    text-align: center;
    width: 100%;
  }

  /* IMAGE NICHE */
  .why-image {
    width: 100%;
  }

  .why-image img {
    width: 100%;
    border-radius: 18px;
  }

  /* BG TEXT NORMAL KAR DIYA */
  .bg-text {
    position: relative;
    top: 0;
    font-size: 60px;
    margin-bottom: 10px;
  }

  .why-content h2 {
    font-size: 32px;
  }

  .desc {
    font-size: 15px;
    margin-bottom: 30px;
  }

  /* Features 2 column hi rahe */
  .why-features {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* 📱 Mobile Responsive */
@media (max-width: 768px) {
  .bg-text {
    font-size: 30px !important;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: black;
    font-weight: 350px;
  }

  .feature {
    padding: 22px;
  }

  .feature h4 {
    font-size: 18px;
  }

  .feature p {
    font-size: 14px;
  }
}

/* Responsive */
@media (max-width: 992px) {
  .why-container {
    flex-direction: column;
  }

  .why-features {
    grid-template-columns: 1fr;
  }

  .bg-text {
    font-size: 60px;
  }
  .why-section {
    padding-bottom: 12px;
  }
  .why-content h2 {
    font-size: 25px;
  }
}

/* ===== EYE PRODUCT SECTION ===== */
/* Content */
.eye-product-section .small-title {
  color: #00b894;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 10px;
}

.eye-product-section h2 {
  font-size: 42px;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #111;
}

.eye-product-section p {
  color: #555;
  line-height: 1.7;
  max-width: 520px;
}

/* Button */
.eye-product-section .eye-btn {
  display: inline-block;
  margin-top: 20px;
  background: #00b894;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
}

.eye-product-section .eye-btn:hover {
  background: #00b894;
}

/* Responsive */
@media (max-width: 992px) {
  .eye-product-section .eye-grid {
    grid-template-columns: 1fr;
  }

  .eye-product-section .overlay-img {
    position: relative;
    bottom: 0;
    right: 0;
    margin-top: 20px;
  }

  .eye-product-section h2 {
    font-size: 34px;
  }

  .eye-product-section {
    padding-top: 15px;
  }
}
.footer-section {
  background: linear-gradient(135deg, #1c2331, #0d3b66);
  color: #ffffff;
  padding: 60px 0 30px;
}

.footer-brand h4 {
  font-size: 20px;
  font-weight: 700;
}

.footer-brand span {
  font-size: 14px;
  color: #2a9d8f;
}

.footer-tagline {
  margin-top: 10px;
  font-size: 14px;
}

.footer-title {
  font-weight: 600;
  margin-bottom: 15px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #2a9d8f;
}

.footer-contact {
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
  font-size: 14px;
}

.footer-bottom a {
  color: #2a9d8f;
  text-decoration: none;
}

.footer-social a {
  display: inline-block;
  margin-right: 10px;
  color: #ffffff;
  font-size: 18px;
}

.footer-social a:hover {
  color: #2a9d8f;
}

/* ============================= */
/* MOBILE FOOTER EXACT FORMAT */
/* ============================= */

@media (max-width: 768px) {
  .footer-section {
    background: linear-gradient(135deg, #1c2331, #0d3b66);
    padding: 35px 20px;
  }

  .footer-section .row > div {
    width: 100%;
    margin-bottom: 30px;
  }

  /* Brand */
  .footer-brand h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
  }

  .footer-brand span {
    display: block;
    font-size: 13px;
    color: #2a9d8f;
    margin-bottom: 8px;
  }

  .footer-tagline {
    font-size: 14px;
    margin-bottom: 15px;
  }

  /* Social Icons */
  .footer-social {
    margin-bottom: 20px;
  }

  .footer-social a {
    font-size: 18px;
    margin-right: 12px;
  }

  /* Section Titles */
  .footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
  }

  /* Links */
  .footer-links {
    padding-left: 0;
  }

  .footer-links li {
    margin-bottom: 10px;
  }

  .footer-links a {
    font-size: 15px;
    color: #ffffff;
  }

  /* Contact */
  .footer-contact {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  /* Bottom */
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 13px;
    text-align: center;
  }
}

/* ===================================== */
/* FOOTER TABLET RESPONSIVE - 1024px */
/* ===================================== */

@media (max-width: 1024px) {
  .footer-section {
    padding: 50px 0 25px;
  }

  /* Column spacing adjust */
  .footer-section .col-lg-4,
  .footer-section .col-lg-3,
  .footer-section .col-lg-2 {
    width: 50%;
  }

  .footer-brand h4 {
    font-size: 18px;
  }

  .footer-brand span {
    font-size: 13px;
  }

  .footer-tagline {
    font-size: 13px;
  }

  .footer-title {
    font-size: 16px;
  }

  .footer-links li {
    font-size: 14px;
  }

  .footer-contact {
    font-size: 13px;
  }

  .footer-social a {
    font-size: 16px;
    margin-right: 8px;
  }

  .footer-bottom {
    font-size: 13px;
  }
}

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 10px;
  background: #25d366;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  width: 50px;
  height: 50px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.whatsapp-float i {
  text-align: center;
}

.whatsapp-float:hover {
  background: #1ebe5d;
}

/* ===== CALL FLOAT BUTTON ===== */
.call-float {
  position: fixed;
  bottom: 30px;
  right: 20px; /* RIGHT SIDE */
  width: 50px;
  height: 50px;
  background: red;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  z-index: 999;
  transition: 0.3s;
}

.call-float:hover {
  background: #0056b3;
}

/* ===== SECTION ===== */
.overview-section {
  background: #0e3b3e;
  padding: 100px 0;
}

/* ===== HEADING ===== */
.product-header {
  margin-bottom: 60px;
}

.product-title {
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.product-title span {
  color: #18b78f;
}

.product-subtitle {
  color: #e0e0e0;
  font-size: 16px;
  line-height: 1.7;
  max-width: 500px;
  margin-left: auto;
}

/* ===== CARD ===== */
.overview-card {
  background: #f4f4f4;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.overview-card:hover {
  transform: translateY(-8px);
}

/* Image */
.overview-img {
  padding: 15px;
  padding-bottom: 0;
}

.overview-img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 15px;
  display: block;
}

/* Content */
.overview-content {
  padding: 15px;
  flex-grow: 1;
}

.overview-content h4 {
  font-weight: 700;
  margin-bottom: 15px;
  color: #18b78f;
}

.overview-content p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* ===== CALL BUTTON ===== */
.call-now-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #18b78f;
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.call-now-btn:hover {
  background: #0f8f6d;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .product-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .product-title {
    font-size: 26px;
  }

  .product-header {
    text-align: center;
  }

  .product-subtitle {
    margin: 15px auto 0;
    text-align: center;
  }

  .overview-section {
    padding: 70px 0;
  }
}
