/* ============================================
   DPEH - Divya Prabha Eye Hospital Template
   ============================================ */

:root {
  --navy: #0a2463;
  --navy-dark: #061a47;
  --navy-light: #0d2f7a;
  --royal: #1e56d9;
  --royal-hover: #1648c0;
  --accent: #2b7de9;
  --green: #25d366;
  --green-dark: #1da851;
  --white: #ffffff;
  --light-bg: #f4f7fc;
  --gray: #6b7a99;
  --gray-light: #e8edf5;
  --text: #1a2b4a;
  --shadow: 0 8px 30px rgba(10, 36, 99, 0.1);
  --shadow-lg: 0 15px 45px rgba(10, 36, 99, 0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
@font-face {
  font-family: "HelveticaNeueLT W1G 65 Md";
  src: url("./fonts/HelveticaLTStd-Cond.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

body {
  
}

body {
 /* font-family: 'Poppins', sans-serif; */
    font-family: "HelveticaNeueLT W1G 65 Md", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---- Top Bar ---- */
.top-bar {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  padding: 8px 0;
}

.top-bar a {
  color: rgba(255, 255, 255, 0.85);
}

.top-bar a:hover {
  color: var(--white);
}

.top-bar .divider {
  margin: 0 10px;
  opacity: 0.4;
}

.top-bar .social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 6px;
  font-size: 0.75rem;
  transition: var(--transition);
}

.top-bar .social-icons a:hover {
  background: var(--royal);
  transform: translateY(-2px);
}

/* ---- Navbar ---- */
.navbar-main {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(10, 36, 99, 0.08);
  padding: 12px 0;
  transition: var(--transition);
}

.navbar-main.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 25px rgba(10, 36, 99, 0.12);
}

.navbar-brand .logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--royal), var(--navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.navbar-brand .logo-text {
  line-height: 1.1;
}

.navbar-brand .logo-text strong {
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: 1px;
}

.navbar-brand .logo-text small {
  font-size: 0.6rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.brand-logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 100px;
    padding: 5px; 
    border-radius: 5px;
    background: #ffffff;
}

.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text) !important;
  padding: 8px 14px !important;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--royal) !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--royal);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.nav-phone {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}

.nav-phone i {
  color: var(--royal);
  margin-right: 6px;
}

.btn-appointment {
  background: var(--royal);
  color: var(--white);
  border: none;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}

.btn-appointment:hover {
  background: var(--royal-hover);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 86, 217, 0.35);
}


/* ---- Section Common ---- */
.section-padding {
  padding: 50px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-title .title-line {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--accent));
  border-radius: 2px;
  margin: 0 auto;
}

.section-title p {
  color: var(--gray);
  margin-top: 14px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.section-header-row h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.view-all-link {
  color: var(--royal);
  font-weight: 600;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.view-all-link:hover {
  color: var(--navy);
  gap: 10px;
}

/* ---- Specializations ---- */
.specializations {
  background: var(--light-bg);
}

.spec-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid transparent;
}

.spec-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(30, 86, 217, 0.15);
}

.spec-card .spec-icon {
  width: 70px;
  height: 70px;
  background: rgba(30, 86, 217, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--royal);
  transition: var(--transition);
}

.spec-card:hover .spec-icon {
  background: var(--royal);
  color: var(--white);
  transform: scale(1.1);
}

.spec-card h5 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.spec-card p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* ---- Technology Section ---- */
.technology-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.technology-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(30, 86, 217, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.tech-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 20px;
}

.tech-content p {
  opacity: 0.85;
  line-height: 1.7;
  margin-bottom: 28px;
}

.btn-tech {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition);
}

.btn-tech:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}

.tech-gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
}

.tech-item {
  flex: 0 0 auto;
  width: 160px;
  text-align: center;
  transition: var(--transition);
}

.tech-item:hover {
  transform: translateY(-5px);
}

.tech-item img {
  width: 160px;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 10px;
  border: 2px solid rgba(255, 255, 255, 0.15);
}

.tech-item span {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.9;
}

/* ---- Doctors Section ---- */
.doctors-section {
  background: var(--white);
}

.doctor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
  height: 100%;
}

.doctor-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.doctor-card .doctor-img {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.doctor-card .doctor-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.doctor-card:hover .doctor-img img {
  transform: scale(1.05);
}

.doctor-card .doctor-body {
  padding: 20px 16px 24px;
}

.doctor-card h5 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
  font-size: 1rem;
}

.doctor-card .specialty {
  color: var(--gray);
  font-size: 0.8rem;
  margin-bottom: 14px;
}

.doctor-card .btn-doctor {
  width: 36px;
  height: 36px;
  background: var(--royal);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.doctor-card .btn-doctor:hover {
  background: var(--navy);
  transform: rotate(90deg);
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 50px 0;
}

.stat-item {
  text-align: center;
  color: var(--white);
  padding: 10px;
}

.stat-item .stat-icon {
  font-size: 2rem;
  margin-bottom: 10px;
  opacity: 0.9;
}

.stat-item h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin: 0;
}

/* ---- Testimonials ---- */
.testimonials-section {
  background: var(--light-bg);
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  text-align: center;
  height: 100%;
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card .quote-icon {
  font-size: 3rem;
  color: rgba(30, 86, 217, 0.15);
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-card .patient-img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 16px;
  border: 3px solid var(--royal);
}

.testimonial-card .stars {
  color: #ffc107;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.testimonial-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-card h6 {
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.testimonial-nav .carousel-control-prev,
.testimonial-nav .carousel-control-next {
  width: 44px;
  height: 44px;
  background: var(--royal);
  border-radius: 50%;
  opacity: 1;
  top: 50%;
  transform: translateY(-50%);
}

.testimonial-nav .carousel-control-prev {
  left: -22px;
}

.testimonial-nav .carousel-control-next {
  right: -22px;
}

/* ---- Contact Section ---- */
.contact-section {
  background: var(--light-bg);
}

.contact-info h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-item .icon {
  width: 44px;
  height: 44px;
  background: rgba(30, 86, 217, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--royal);
  flex-shrink: 0;
}

.contact-item h6 {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
  font-size: 0.9rem;
}

.contact-item p {
  color: var(--gray);
  font-size: 0.85rem;
  margin: 0;
}

.contact-social {
  display: flex;
  gap: 10px;
  margin: 24px 0;
}

.contact-social a {
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.contact-social a:hover {
  background: var(--royal);
  transform: translateY(-3px);
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 250px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Appointment Form */
.appointment-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.appointment-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  padding: 24px 28px;
}

.appointment-header h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}

.appointment-body {
  padding: 28px;
}

.appointment-body .form-control,
.appointment-body .form-select {
  border: 1px solid var(--gray-light);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 0.9rem;
  transition: var(--transition);
}

.appointment-body .form-control:focus,
.appointment-body .form-select:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 3px rgba(30, 86, 217, 0.15);
}

.btn-submit {
  background: var(--royal);
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: 600;
  width: 100%;
  transition: var(--transition);
}

.btn-submit:hover {
  background: var(--royal-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30, 86, 217, 0.35);
}

/* ---- Footer ---- */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  padding-top: 60px;
}

.footer h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer p {
  font-size: 0.85rem;
  line-height: 1.7;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}

.footer-contact i {
  color: var(--royal);
  margin-top: 3px;
}

.hours-box {
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 16px;
  margin-top: 16px;
}

.hours-box table {
  width: 100%;
  font-size: 0.8rem;
}

.hours-box td {
  padding: 4px 0;
}

.hours-box .emergency-badge {
  background: var(--royal);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  margin-top: 12px;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  margin-top: 40px;
  font-size: 0.8rem;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ---- Floating Elements ---- */
.floating-sidebar {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.floating-sidebar a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
}

.floating-sidebar a .tooltip-text {
  position: absolute;
  right: 55px;
  background: var(--navy);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.floating-sidebar a:hover .tooltip-text {
  opacity: 1;
  visibility: visible;
}

.floating-sidebar .float-book {
  background: var(--royal);
  border-radius: 8px 0 0 0;
}

.floating-sidebar .float-call {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--gray-light);
}

.floating-sidebar .float-whatsapp {
  background: var(--green);
  border-radius: 0 0 0 8px;
}

.floating-sidebar a:hover {
  width: 52px;
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: scale(1.1);
}

/* ---- Animations ---- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 6px 35px rgba(37, 211, 102, 0.6);
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (max-width: 991px) {
  .section-padding {
    padding: 60px 0;
  }

 

  .floating-sidebar {
    display: none;
  }

  .testimonial-nav .carousel-control-prev {
    left: 10px;
  }

  .testimonial-nav .carousel-control-next {
    right: 10px;
  }
}

@media (max-width: 767px) {
  .top-bar {
    text-align: center;
  }

  .top-bar .row > div {
    margin-bottom: 6px;
  }

  .nav-phone {
    display: none !important;
  }

  

  .stats-bar .stat-item {
    margin-bottom: 20px;
  }

  .section-header-row {
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  

  .tech-gallery {
    justify-content: flex-start;
  }
}
/*==============================
 Technology Showcase
===============================*/

.technology-showcase{
    background:#fff;
}

.technology-card{

    background:linear-gradient(135deg,#0a2463,#1548b8);

    border-radius:18px;

    overflow:hidden;

    display:flex;

    align-items:center;

    color:#fff;

    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.tech-left{

    width:28%;

    padding:40px;
}

.tech-label{

    display:inline-block;

    font-size:13px;

    background:rgba(255,255,255,.15);

    padding:6px 14px;

    border-radius:30px;

    margin-bottom:15px;
}

.tech-left h2{

    font-size:32px;

    font-weight:700;

    margin-bottom:15px;
}

.tech-left p{

    color:rgba(255,255,255,.85);

    margin-bottom:25px;

    line-height:1.7;
}

.btn-tech-more{

    background:#fff;

    color:#0a2463;

    border-radius:40px;

    padding:12px 26px;

    font-weight:600;

    transition:.3s;
}

.btn-tech-more:hover{

    background:#ffd34d;

    color:#000;
}

.tech-right{

    width:72%;

    display:grid;

    grid-template-columns:repeat(3,1fr);
}

.tech-box{

    text-align:center;

    padding:35px 20px;

    border-left:1px solid rgba(255,255,255,.15);

    transition:.35s;
}

.tech-box:hover{

    background:rgba(255,255,255,.08);

    transform:translateY(-5px);
}

.tech-box img{

    width:100%;

    object-fit:contain;

    margin:auto;

    margin-bottom:18px;
}

.tech-box h6{

    color:#fff;

    font-weight:600;

    margin-bottom:4px;
}

.tech-box small{

    color:rgba(255,255,255,.75);

    font-size:13px;
}
/* Tablet */

@media(max-width:992px){

.tech-left{

    width:100%;

    text-align:center;

    padding:35px;
}

.tech-right{

    width:100%;

    grid-template-columns:repeat(3,1fr);
}

.technology-card{

    flex-direction:column;
}

}


/* Mobile */

@media(max-width:768px){

.tech-right{

    grid-template-columns:repeat(2,1fr);
}

.tech-box{

    padding:25px 15px;
}

.tech-box img{

    width:100%;
}

.tech-left h2{

    font-size:28px;
}

}


/* Small Mobile */

@media(max-width:480px){

.tech-right{

    grid-template-columns:1fr;
}

.tech-box{

    border-left:none;

    border-top:1px solid rgba(255,255,255,.15);
}

}
/*=========================
 Our Specializations
=========================*/

.specialization-section{
   background: var(--light-bg);
}

.special-card{
    background:#fff;
    border:1px solid #edf1f7;
    border-radius:12px;
    padding:28px 18px;
    text-align:center;
    height:100%;
    transition:.35s ease;
    box-shadow:0 5px 20px rgba(10,36,99,.06);
}

.special-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(10,36,99,.12);
    border-color:#1e56d9;
}

.special-card img{
    width:65px;
    height:65px;
    object-fit:contain;
    margin:0 auto 18px;
    transition:.3s;
}

.special-card:hover img{
    transform:scale(1.1);
}

.special-card h5{
    font-size:18px;
    font-weight:700;
    color:#0a2463;
    margin-bottom:10px;
    line-height:1.3;
}

.special-card p{
    font-size:14px;
    color:#6b7a99;
    line-height:1.6;
    margin:0;
}
@media(max-width:992px){

.special-card{
    padding:25px 15px;
}

.special-card img{
    width:55px;
    height:55px;
}

.special-card h5{
    font-size:16px;
}

}

@media(max-width:576px){

.special-card{
    padding:20px 12px;
}

.special-card img{
    width:50px;
    height:50px;
}

.special-card h5{
    font-size:15px;
}

.special-card p{
    font-size:13px;
}

}
/*==========================
Awards Section
==========================*/

.awards-section{
    background:#fff;
}

.award-card{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(10,36,99,.08);
    transition:.35s ease;
    height:100%;
    border:1px solid #edf2f7;
}

.award-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(10,36,99,.15);
}

.award-card img{
    width:100%;
    aspect-ratio:4/3;
    object-fit:cover;
    transition:.4s;
}

.award-card:hover img{
    transform:scale(1.05);
}

.award-content{
    padding:20px;
    text-align:center;
}

.award-content h5{
    color:var(--navy);
    font-weight:700;
    font-size:18px;
    margin-bottom:8px;
}

.award-content p{
    color:var(--gray);
    font-size:14px;
    margin:0;
}

@media(max-width:768px){

.award-content{
    padding:16px;
}

.award-content h5{
    font-size:16px;
}

}

.feature-card{

    background:#fff;

    border-radius:18px;

    padding:18px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    flex:1;

    min-width:170px;

}

.feature-icon{

    width:55px;

    height:55px;

    border-radius:14px;

    background:#edf4ff;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#1e56d9;

    font-size:24px;

}

.feature-card h6{

    margin:0;

    font-weight:700;

    color:#081f5c;

}

.feature-card p{

    margin:0;

    color:#666;

    font-size:14px;

}


.btn-book{

    background:#0a2463;

    color:#fff;

    padding:15px 30px;

    border-radius:12px;

    font-weight:600;

    text-decoration:none;

    transition:.3s;

}

.btn-book:hover{

    background:#143b9e;

    color:#fff;

}

.btn-whatsapp{

    background:#fff;

    color:#111;

    border:2px solid #25D366;

    padding:15px 30px;

    border-radius:12px;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.btn-whatsapp i{

    color:#25D366;

}

.btn-whatsapp:hover{

    background:#25D366;

    color:#fff;

}

.btn-whatsapp:hover i{

    color:#fff;

}


.stat-item h3{

    margin:0;

    color:#081f5c;

    font-size:34px;

    font-weight:700;

}

.stat-item span{

    font-size:14px;

    color:#666;

}



@media(max-width:768px){
   

.feature-card{

    width:100%;

}


.btn-book,
.btn-whatsapp{

    width:100%;

    text-align:center;

}



}
/*==========================
      ABOUT SECTION
===========================*/

.about-section{
    padding:60px 0;
    background:#fff;
}

.about-tag{
    display:inline-block;
    padding:8px 18px;
    background:#e9f7f6;
    color:#00897b;
    border-radius:50px;
    font-weight:600;
    font-size:14px;
    margin-bottom:18px;
}

.about-title{
    font-size:42px;
    font-weight:700;
    color:#0d2c54;
    margin-bottom:15px;
    line-height:1.2;
}

.about-section p{
    color:#666;
    font-size:16px;
    line-height:1.9;
    margin-bottom:20px;
}

.about-features{
    display:flex;
    flex-wrap:wrap;
    gap:15px 25px;
}

.feature-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-weight:600;
    color:#0d2c54;
}

.feature-item i{
    color:#00a99d;
    font-size:18px;
}

.about-video{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.about-video iframe{
    width:100%;
    height:420px;
    border:0;
    display:block;
}

/* Responsive */

@media(max-width:991px){

.about-title{
    font-size:34px;
}

.about-video iframe{
    height:350px;
}

}

@media(max-width:767px){

.about-section{
    padding:70px 0;
}

.about-title{
    font-size:28px;
}

.about-video iframe{
    height:250px;
}

.about-features{
    flex-direction:column;
    gap:12px;
}

}


.hero{

    position:relative;
    width:100%;
    min-height:100vh;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero-bg{

    position:absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    top:0;
    left:0;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    animation: 0.8s ease 0.6s 1 normal both running fadeInUp;
}

.overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(
        90deg,
        rgba(255,255,255,.95) 0%,
        rgba(255,255,255,.82) 35%,
        rgba(255,255,255,.25) 70%,
        rgba(255,255,255,.05) 100%
    );
}

.hero-content{

    position:relative;
    z-index:2;
    padding:60px;
}


.hero h1{

    font-size:56px;
    line-height:1.15;
    color:#082d78;
    font-weight:700;
    margin-bottom:45px;
}

.tagline{

    display:inline-block;
    background:white;
    padding:18px 28px;
    border-radius:3px;

    color:#0a2d7d;
    font-size:30px;
    font-weight:500;

    box-shadow:0 5px 20px rgba(0,0,0,.08);

    margin-bottom:40px;
}

.buttons{

    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn{

    text-decoration:none;
    background:#0d2b77;
    color:white;
    padding:18px 36px;
    border-radius:40px;
    font-weight:600;
    transition:.3s;
}

.btn:hover{

    background:#1d4cb8;
    transform:translateY(-2px);
}



@media(max-width:991px){

.hero{

min-height:700px;

}

.hero-content{

padding:40px;
max-width:100%;
}

.hero h1{

font-size:42px;
}

.tagline{

font-size:22px;
}

}

/* Mobile */

@media(max-width:768px){

.hero{

min-height:650px;
align-items:flex-start;
padding-top:50px;

}

.hero-content{

padding:25px;
}


.hero h1{

font-size:30px;
line-height:1.3;
margin-bottom:25px;
}

.tagline{

font-size:16px;
padding:12px 16px;
margin-bottom:25px;
line-height:1.6;
}

.buttons{

flex-direction:column;
}

.btn{

text-align:center;
padding:14px;
}

}

/* Small Mobile */

@media(max-width:480px){

.hero h1{

font-size:26px;

}

.tagline{

font-size:14px;

}

}
.text-justify {
    text-align: justify;
}

.page-banner {
            background: linear-gradient(to right, rgb(207 221 240 / 95%) 0%, rgb(162 192 231 / 85%) 50%, rgba(245, 248, 252, 0.4) 100%), url(../images/Divya-Prabha--Eye-Hospital-page-banner-page.jpg) center / cover no-repeat;
            padding: 80px 0 80px;
            text-align: left;
            position: relative;
            border-bottom: 1px solid var(--gray-light);
        }
        
        .page-banner h1 {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 25px;
            color: #0b3775;
        }
        
        .banner-nav {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .banner-nav a {
            color: #6c757d;
            text-decoration: none;
            font-weight: 400;
            font-size: 1.05rem;
            transition: color 0.3s;
        }
        
        .banner-nav a:hover, .banner-nav a.active {
            color: #0b3775;
        }

        /* Content Blocks */
        .content-card {
            background: var(--white);
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 8px 30px rgba(10, 36, 99, 0.05);
            margin-bottom: 30px;
            height: 100%;
        }

        .feature-list {
            list-style: none;
            padding: 0;
        }

        .feature-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 15px;
            color: var(--text);
        }

        .feature-list li::before {
             content: "✓";
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--royal);
        }

        /* Awards Timeline */
        .award-box {
            background: rgba(30, 86, 217, 0.05);
            border-left: 3px solid var(--royal);
            padding: 15px 20px;
            margin-bottom: 15px;
            border-radius: 0 8px 8px 0;
        }
        
        .award-title {
            color: var(--navy);
            font-weight: 600;
            margin-bottom: 5px;
        }
.video-container {
    position: relative;
    padding-bottom: 56.25%;}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
