
html,body{
  overflow-x:hidden;
}



/* CSS for section section:Header */
.top-bar {
    background-color: #14b8a6;
    color: white;
    font-size: 12px;
    padding: 10px 0;
  }
  .top-bar-content {
    display: flex;
    justify-content: space-between;
  }
  .top-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  .top-links1 {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }

@media(max-width:992px){
  .top-bar{
    display: none;
  }
  .main-header {
    background-color: white;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
    position: fixed !important;
    width: 100% !important;
}
}


.call-btn{
    display:flex;
}



  /* Header base */
.main-header {
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1000;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.nav-menu ul li {
  position: relative;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #111827;
  font-size: 15px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}

/* Dropdown icon rotation */
.nav-menu ul li:hover .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-icon {
  transition: transform 0.3s ease;
}

/* Submenu container */
.nav-menu ul li ul {
  position: absolute;
  top: 100%;
  left: 0;
  /* min-width: 220px; */
  background: #ffffff;
  /* border-radius: 8px; */
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  /* padding: 10px 0; */
  display: none;
  flex-direction: column;
  z-index: 999;
  width: 100%;
}


/* ===== HEADER BASE ===== */
.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===== NAV DESKTOP ===== */
.nav-menu ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-menu ul li {
  position: relative;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #111;
  font-weight: 500;
}


.stats-strip {
  background: #0db39e;
  padding: 40px 0;
}

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

.stat-box {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #fff;
}

.stat-icon {
  font-size: 36px;
}

.stat-box strong {
  font-size: 32px;
  display: block;
}

.stat-box span {
  font-size: 16px;
  opacity: 0.9;
}




@media(max-width:780px){
    .hero-content {
    padding: 0 10px !important;
}
    .eka-facility-list-wrap {
    display: flex;
    flex-direction: column !important;
    gap: 20px;
    justify-content: center;
}
.eka-facility-item-box {
    display: flex;
    gap: 18px;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(135deg, #f3fbf8, #ffffff);
    border: 1px solid #cceee1;
    transition: all 0.35s ease;
    cursor: pointer;
    width: 100% !important;
}

.call-btn {
    border-radius: 99px;
    padding: 10px 20px;
    gap: 8px;
    font-size: 16px;
    display: none !important;
}
}

@media(max-width:991px){
  .submenu {
    position: absolute;
    /* top: 159% !important; */
    left: 0px !important;
    background: #fff;
    display: none;
    min-width: 250px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, .1); */
     height: auto !important; 
    /* overflow-y: scroll; */
}
#footer {
    background-color: #076c61;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 30px !important;
}
}



.social-icons {
  display: flex;
  gap: 14px;
}

.social-icons a {
  width: 46px;
  height: 46px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  background-color: #ffffff;
  color: #0f766e; /* adjust to your theme */
  transform: translateY(-3px);
}


/* ===== SUBMENU DESKTOP ===== */
.submenu {
  position: absolute;
      /* top: 159% !important; */
    left: 0px !important;
  background: #fff;
  display: none;
  min-width: 250px;
  /* box-shadow: 0 10px 25px rgba(0,0,0,.1); */
      /*height: 438px;*/
    /*overflow-y: scroll;*/
}

.has-submenu:hover .submenu {
  display: block;
}

.submenu li {
  padding: 5px 16px;
}

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

.mobile-menu-toggle span {
  width: 26px;
  height: 3px;
  background: #111;
  transition: .3s;
}

/* ===== HAMBURGER → X ===== */
.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== MOBILE MENU ===== */
@media (max-width: 991px) {

  .mobile-menu-toggle {
    display: flex;
  }

  .desktop-only {
    display: none;
  }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: #fff;
    transition: .4s ease;
    overflow-y: auto;
    padding-top: 40px !important;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 0 !important;
    align-items: stretch !important;
  }

  .nav-menu ul li {
    border-bottom: 1px solid #eee;
  }

  .nav-menu ul li a {
    display: flex;
    justify-content: space-between;
    padding: 16px 20px;
  }

  /* Mobile submenu */
  .submenu {
    position: static;
    display: none;
    box-shadow: none;
  }

  .has-submenu.open .submenu {
    display: block;
  }

  .submenu li a {
    padding-left: 40px;
    /* background: #f9f9f9; */
  }
}
.has-submenu .arrow {
  transition: transform 0.3s ease;
}

.has-submenu.open .arrow {
  transform: rotate(180deg);
}

/* Mobile only */
@media (max-width: 991px) {

  .submenu {
    display: none !important;
  }

  .has-submenu.open > .submenu {
    display: block !important;
  }

}



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

/* Submenu items */
.nav-menu ul li ul li {
    width: 100%;
    border-bottom: 1px solid #00000024;
}

.nav-menu ul li ul li a {
  padding: 10px 16px;
  font-size: 14px;
  color: #374151;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Hover effect */
.nav-menu ul li ul li a:hover {
  background: #f3f4f6;
  color: #2563eb;
}

/* Optional arrow spacing fix */
.nav-menu ul li ul li a img {
  display: none;
}

  .main-header {
    background-color: white;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo img {
    height: 52px; 
    width: auto;
  }
  .nav-menu ul {
    display: flex;
    gap: 30px;
    align-items: center;
  }
  .nav-menu a {
    font-size: 14px;
    color: #374151;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .dropdown-icon {
    width: 10px;
  }
  .call-btn {
    gap: 10px;
    padding: 10px 20px;
  }
 
.top-bar a{
    text-decoration:none;
    color:#690000;
}

@media(min-width:992px){
    .hero-content {
    padding: 0 80px !important;
}
}

@media(max-width:600px){
    .grid-3 {
    display: flex;
    flex-direction: column !important;
    gap: 41px;
}
.doctor-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    width: 100% !important;
}
}
/* CSS for section section:Hero */

@media(max-width:600px){
    #hero {
    position: relative;
    height: 770px !important;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}
.hero-text-box h1 {
    font-size: 30px !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
}

@media (max-width: 424px) {
    #hero {
        position: relative;
        height: 820px !important;
        display: flex;
        align-items: center;
        color: white;
        overflow: hidden;
    }
}

@media(max-width:360px){
        #hero {
        position: relative;
        height: 890px !important;
        display: flex;
        align-items: center;
        color: white;
        overflow: hidden;
    }
        .features-grid{
        grid-template-columns: repeat(1, 1fr) !important;
    }
        .stats-grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}
@media(min-width:1100px){
    #hero {
    position: relative;
    height: 515px !important;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}
.submenu {
    position: absolute;
    /* top: 159% !important; */
    left: -50px !important;
    background: #fff;
    display: none;
    min-width: 250px;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, .1); */
    /*height: 438px;*/
    /*overflow-y: scroll;*/
}
}


#hero {
    position: relative;
    height: 687px;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
  }
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.7) 0%, rgba(30, 58, 138, 0.6) 100%);
  }
  .hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 !important;
  }
  .hero-text-box h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .hero-desc {
    font-size: 18px;
    color: #d3e1f4;
    max-width: 600px;
    margin-bottom: 30px;
  }
  .hero-info {
    background-color: white;
    color: black;
    padding: 20px;
    border-radius: 16px;
    max-width: 616px;
    font-size: 16px;
  }
  .hero-buttons {
    display: flex;
    gap: 20px;
  }
.hero-btn {
    height: 60px;
    padding: 0 30px !important;
    font-size: 16px !important;
    gap: 10px;
    border-radius: 15px !important;
    background-color: #14b8a6 !important;
    border: 2px solid #fff !important;
    display: inherit !important;
}
 .hero-btn:hover{
  background-color:#6a0000 !important;
}
.hero-btn1:hover{
  background-color:#14b8a6 !important;
}
  .hero-btn img {
    width: 18px;
  }
  .green{
      color : #14b8a6;
  }
  .hero-btn1 {
    background-color: #5e0002 !important;
}
  

/* CSS for section section:Features */
#features {
    padding: 80px 0;
    background-color: #f0fffc;
  }
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .section-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
  }
  .underline {
    width: 96px;
    height: 4px;
    background-color: #0066cc;
    margin: 0 auto;
  }
  .features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
  }
  .feature-card {
    background: white;
    border: 0.5px solid #078668;
    border-radius: 16px;
    padding: 24px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
    transition: transform 0.3s;
  }
  .feature-card:hover {
    transform: translateY(-5px);
  }
  .icon-circle {
    width: 80px;
    height: 80px;
    background-color: #d1fff5;
    border: 1px solid #14b8a6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .feature-card h3 {
    font-size: 14px;
    font-weight: 600;
    color: #690002;
  }
  @media (max-width: 1024px) {
    .features-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }
  @media (max-width: 600px) {
    .features-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  
  
  
.leading{
    display:flex !important;
}  
  

/* CSS for section section:About */
#about {
    padding-top: 80px;
  }
  .about-content {
    display: flex;
    gap: 80px;
    margin-bottom: 80px;
  }
  .about-text {
    flex: 1;
  }
  .about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 24px;
  }
  .about-text p {
    color: #4b5563;
    margin-bottom: 24px;
    font-size: 16px;
  }
  
  @media(max-width:360px){
      .about-stats {
    display: flex;
    gap: 15px !important;
    margin-top: 40px;
    flex-direction: column !important;
    /* justify-content: center; */
}
  }
  .about-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
  }
  .stat-item {
    display: flex;
    flex-direction: column;
  }
  .stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #06b29f;
  }
  .stat-label {
    color: #4b5563;
    font-size: 14px;
  }
  .about-images {
    flex: 1;
    display: flex;
    gap: 16px;
  }
  .img-col-1 {
  
    width: 100%;
  }
  .img-col-2 {
        display: flex;
    flex-direction: column;
    gap: 16px;
    width: 50%;
  }
  .about-images img {
    border-radius: 16px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .stats-strip {
    background-color: #06b29f;
    padding: 48px 0;
    color: white;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
  }
  .stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
  }
  .stat-box img {
    width: 38px;
    height: auto;
  }
  .stat-box strong {
    display: block;
    font-size: 30px;
    font-weight: 700;
  }
  .stat-box span {
    font-size: 14px;
    opacity: 0.9;
  }
  @media (max-width: 1024px) {
    .about-content { flex-direction: column; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }

    
  }
  
   @media (max-width: 1024px) and (min-width: 992px) {
       
       .nav-menu ul li a {
    text-decoration: none;
    color: #111827;
    font-size: 12px !important;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 0;
}
       
       
   }

/* CSS for section section:ChairmanConnect */
#chairman-connect {
    padding: 80px 0;
  }
  .cc-wrapper {
    display: flex;
    gap: 24px;
  }
  .chairman-card {
    flex: 1;
    background-color: #0e877a;
    border-radius: 16px;
    padding: 40px;
    color: white;
    overflow: hidden;
  }
  .chairman-content {
    display: flex;
    gap: 20px;
  }

  @media(max-width:991px){
    .chairman-content {
    display: flex;
    gap: 20px;
    flex-direction: column !important;
} 
  .chairman-image {
    width: 100% !important;
    border-radius: 12px;
    overflow: hidden;
} 
  .chairman-text {
    /* flex: 1; */
    text-align: center !important; 
}
  }

  .chairman-text {
    flex: 1;
  }
  .chairman-text h3 { font-size: 24px; margin-bottom: 20px; }
  .chairman-text h4 { font-size: 18px; margin-bottom: 10px; }
  .chairman-text h5 { font-size: 18px; font-weight: 700; margin-bottom: 20px; }
  .chairman-text p { font-size: 14px; margin-bottom: 30px; line-height: 1.6; }
  .btn-white-pill {
    background: white;
    color: #0a4b8f;
    border-radius: 9999px;
    padding: 10px 24px;
    border: none;
    font-weight: 600;
  }
  .chairman-image {
    width: 224px;
    border-radius: 12px;
    overflow: hidden;
  }
  .chairman-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .connect-card {
    flex: 1;
    background-color: #f7f8fa;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .connect-card h2 { font-size: 28px; color: #111827; margin-bottom: 10px; }
  .connect-card .subtitle {
    color: #4b5563;
    margin-bottom: 20px;
    margin-top: 40px;
  }
  .connect-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
  }
  .connect-feature img { width: 48px; height: 48px; }
  .connect-feature p { color: #374151; font-size: 14px; line-height: 1.6; }
  .connect-buttons {
    display: flex;
    gap: 16px;
  }
  @media (max-width: 1024px) {
    .cc-wrapper { flex-direction: column; }
  }

/* CSS for section section:International */
#international {
    padding: 80px 0;
  }
  .intl-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
  }
  .intl-content {
    flex: 1;
  }
  .intl-content h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 24px;
  }
  .intl-content p {
    color: #374151;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  .intl-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .intl-item {
    background-color: #e8fffa;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
  }
  .intl-item .icon-box {
    height: 36px;
    display: flex;
    align-items: center;
  }
  .intl-item span {
    font-size: 14px;
    color: #1f2937;
    font-weight: 500;
  }
  .intl-image {
    flex: 1;
  }
  .intl-image img {
    border-radius: 16px;
    width: 100%;
  }
  @media (max-width: 768px) {
    .intl-wrapper { flex-direction: column; }
    .intl-grid { grid-template-columns: repeat(2, 1fr); }
  }

/* CSS for section section:Services */
#services {
    padding: 80px 0;
    background-color: #ecfffb;
  }
  .services-header {
    margin-bottom: 40px;
  }
  .services-header p { color: #4b5563; font-size: 18px; }
  .services-header h2 { font-size: 36px; color: #06b29f; font-weight: 700; }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .service-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 4px 6px rgba(0,0,0,0.1);
  }
  .service-img {
    height: 256px;
    overflow: hidden;
  }
  .service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .service-info {
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .service-icon {
    width: 40px;
    height: 40px;
    background-color: #14b8a6;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .service-info h3 {
    font-size: 18px;
    color: #690002;
  }
  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
  }

/* CSS for section section:Insurance */
#insurance {
    padding: 80px 0;
  }
  .insurance-header {
    text-align: center;
    margin-bottom: 40px;
  }
  .insurance-header h2 {
    color: #094c7a;
    font-size: 32px;
    margin-bottom: 16px;
  }
  .insurance-header p {
    color: #4b5563;
  }
  .insurance-logos {
    display: flex;
    /* flex-direction: column; */
    gap: 24px;
  }
  .logo-row {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
  }
  .logo-box {
    background-color: rgba(244, 249, 255, 0.7);
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    width: 356px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  .logo-box img {
    max-height: 100%;
    max-width: 100%;
  }
  .insurance-footer {
    text-align: center;
    margin-top: 40px;
    color: #6b7280;
    font-size: 14px;
  }

/* CSS for section section:Testimonials */
#testimonials {
    padding: 80px 0;
    background-color: #f0fffc;
  }
  .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .testimonial-card {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0px 10px 15px rgba(0,0,0,0.1);
  }
  .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
  }
  .testimonial-text {
    color: #374151;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
    height: 100px;
  }
  .user-profile {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .user-profile img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
  }
  .user-profile h4 {
    font-size: 16px;
    color: #111827;
    font-weight: 600;
  }
  .user-profile span {
    font-size: 14px;
    color: #4b5563;
  }
  @media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
  }

/* CSS for section section:FAQ */
#faq {
    padding: 80px 0;
  }
  .faq-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .faq-header h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 10px;
  }
  .faq-list {
    max-width: 896px;
    margin: 0 auto;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
  }
  .faq-item {
    border-bottom: 1px solid #e5e7eb;
    padding: 24px;
    background: white;
  }
  .faq-item:last-child {
    border-bottom: none;
  }
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
  }

/* CSS for section section:Footer */
#footer {
    background-color: #076c61;
    color: rgba(255, 255, 255, 0.8);
    padding-top: 80px;
  }
  .footer-col ul{
  padding-left : 0;
}
.footer-col ul li a{
  text-decoration : none !important;
  color:#fff;
}
.bottom-content p{
    margin-bottom:0 !important;
  }
  .bottom-links img{
      position:relative;
      top:-9px;
  }
  .footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
  }
  .footer-logo img {
    /* width: 242px; */
    margin-bottom: 20px;
    background-color: #fff;
  }
  .footer-tagline {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 20px;
    color: white;
    font-size: 14px;
  }
  .footer-desc {
    margin-bottom: 30px;
    font-size: 14px;
  }
  .footer-contact h4 {
    color: white;
    margin-bottom: 10px;
  }
  .contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    font-size: 14px;
  }
  .social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
  }
  .icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer-col h4 {
    color: white;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  .footer-col ul li {
    margin-bottom: 12px;
    font-size: 14px;
    cursor: pointer;
  }
  .coe-grid {
    display: flex;
    gap: 20px;
  }
  .footer-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
  }
  .btn-footer {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
  }
  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    font-size: 14px;
  }
  .bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .bottom-links {
    display: flex;
    gap: 10px;
  }
  @media (max-width: 1024px) {
    .footer-content { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 780px) {
    .footer-content { grid-template-columns: 1fr; }
    .bottom-content { flex-direction: column; gap: 10px; }

    .insurance-logos {
    display: flex;
    flex-direction: column !important;
    gap: 24px;
}
  }


@media(max-width:426px){
  .services-grid {
    display: flex;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    flex-direction: column !important;
}
}  


@media(max-width:376px)
{
  .connect-buttons {
    display: flex;
    gap: 16px;
    flex-direction: column !important;
}
}
  .faq-item {
  border-bottom: 1px solid #e5e7eb;
  padding: 18px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
}

.faq-question img {
  transition: transform 0.3s ease;
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  margin-top: 12px;
}

.faq-item.active .faq-question img {
  transform: rotate(180deg);
}





.testimonial-slider-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.testimonial-slider {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  min-width: 100%;
  background: #fff;
  padding: 24px;
  border-radius: 12px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #1111114d;
  color: #fff;
  border: none;
  padding: 12px 16px;
  cursor: pointer;
  font-size: 22px;
  border-radius: 50%;
  z-index: 999;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

@media (min-width: 768px) {
  .testimonial-card {
    min-width: 50%;
  }
}

@media (min-width: 1024px) {
  .testimonial-card {
    min-width: 33.33%;
  }
}



/* CSS for section section:Header */
.top-bar {
    background-color: #14b8a6;
    color: white;
    font-size: 12px;
    padding: 10px 0;
  }
  .top-bar-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
  .top-links, .top-links-right {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
  }
  .top-link-item {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
  }
  .main-header {
    background: white;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
    padding: 20px 0;
  }
  .header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .logo img {
    height: 50px;
  }
  .main-nav {
    display: none;
    gap: 30px;
    align-items: center;
  }
  @media(min-width: 1024px) {
    .main-nav {
      display: flex;
    }
  }
  .nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
  }
  .nav-link-dropdown {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    font-weight: 500;
  }
  .emergency-btn {
    background-color: #690002;
    color: white;
    border: none;
    border-radius: 99px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
  }

/* CSS for section section:About */
#about {
    /*padding: 80px 0;*/
    background-color: white;
  }
  .about-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .badge {
    color: #0c4a6e;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
  }
  .underline {
    width: 96px;
    height: 4px;
    background-color: #0c4a6e;
    margin: 10px auto 0;
  }
  .about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
  }
  @media (min-width: 992px) {
    .about-content {
      grid-template-columns: 1fr 1fr;
    }
  }
  .image-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }
  .about-text p {
    margin-bottom: 24px;
    color: var(--text-gray);
    line-height: 1.7;
  }
  .contact-info {
    display: flex;
    gap: 40px;
    margin-top: 32px;
    flex-wrap: wrap;
  }
  .contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .contact-item img {
    width: 20px;
  }
  .contact-item .label {
    display: block;
    font-size: 14px;
    color: #6b7280;
  }
  .contact-item .value {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
  }

/* CSS for section section:Services */
#care-services {  
    padding: 80px 0;
    background-color: #f8fafc;
}
.care-header {
    text-align: center;
    margin-bottom: 48px;
}
.care-card {
    background: white;
    padding: 32px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}
.care-card:hover {
    transform: translateY(-5px);
}

.care-grid{
      display: flex;
    gap: 20px;
}
.care-card .icon-box {
    margin-bottom: 20px;
    height: 44px;
    display: flex;
    align-items: center;
}
.care-card h3 {
    font-size: 18px;
    color: var(--text-dark);
}


/* CSS for section section:WhoWeAre */
#who-we-are {
    padding: 80px 0;
    background-color: #dffdfa;
  }
  .who-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
  }
  @media (min-width: 992px) {
    .who-content {
      grid-template-columns: 1fr 1fr;
    }
  }
  .description {
    margin-bottom: 32px;
    color: var(--text-gray);
    font-size: 18px;
  }
  .beneficiaries-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }
  .beneficiary-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 500;
    color: var(--text-dark);
  }
  .icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(12, 74, 110, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .quote-box {
    background-color: rgba(12, 74, 110, 0.05);
    border-left: 4px solid #0c4a6e;
    padding: 20px;
    font-style: italic;
    color: var(--text-dark);
  }
  .image-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

/* CSS for section section:CoreValues */
#core-values {
    padding: 80px 0;
    background-color: #f7f7f7;
  }
  .values-header {
    text-align: center;
    margin-bottom: 48px;
  }
  .values-grid{
    display: flex;
    gap: 20px;
  }

  .value-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  }
  .value-card .icon-wrapper {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .value-card h4 {
    margin-bottom: 8px;
    color: var(--text-dark);
  }
  .value-card p {
    color: var(--text-gray);
    font-size: 14px;
  }

/* CSS for section section:MissionVision */
#mission-vision {
    padding: 60px 0;
    background-color: white;
  }
  .mv-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }
  @media (min-width: 768px) {
    .mv-grid {
      grid-template-columns: 1fr 1fr;
    }
  }
  .mv-card {
    padding: 40px;
    border-radius: 16px;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .mission-card {
    background: linear-gradient(135deg, #0c8468 0%, #14b8a6 100%);
  }
  .vision-card {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
  }
  .mv-icon-bg {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
  }
  .mv-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .mv-card p {
    font-size: 18px;
    line-height: 1.5;
  }

/* CSS for section section:WhyChooseUs */
#why-choose-us {
    padding: 80px 0;
    background-color: #10a191;
    color: white;
  }
  .wcu-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .wcu-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  .wcu-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 200px;
  }
  .wcu-icon {
    width: 80px;
    height: 80px;
    background-color: #0d9488;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
  }
  .wcu-item h4 {
    font-size: 18px;
    font-weight: 600;
  }

/* CSS for section section:Accreditation */
#accreditation {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
  }
  .acc-header {
    text-align: center;
    margin-bottom: 60px;
  }
  .acc-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #f3f4f6;
  }
  .acc-grid{
    display: flex;
    gap: 20px;
  }
  .acc-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Gradient background simulated or extracted */
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%); 
  }
  .acc-icon-wrapper img {
    filter: brightness(0) invert(1); /* Assuming icons are white on teal */
  }
  .acc-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-dark);
  }
  .acc-card p {
    font-size: 14px;
    color: var(--text-gray);
  }

/* CSS for section section:VisitUs */
#visit-us {
    padding: 60px 0;
    background-color: var(--bg-visit);
    text-align: center;
  }
  .address-block {
    margin-bottom: 32px;
  }
  .address-block h3 {
    font-size: 24px;
    margin-bottom: 8px;
  }
  .visit-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
  }

/* CSS for section section:Header */
.site-header {
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.top-bar {
  background-color: #14b8a6; /* Teal from design */
  color: #fff;
  font-size: 12px;
  padding: 8px 0;
}
.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
.top-left, .top-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.contact-item, .top-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 500;
}
.icon-sm {
  width: 12px;
  height: 12px;
}
.main-nav {
  padding: 16px 0;
}
.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 50px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-item {
  color: #374151;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-item.active {
  color: var(--primary-teal);
}
.call-btn {
  border-radius: 99px;
  padding: 10px 20px;
  gap: 8px;
  font-size: 16px;
  display:none !important;
}
@media (max-width: 1024px) {
  .nav-links { display: none; } /* Simplified for mobile */
}

/* CSS for section section:Hero */
.hero-section {
  background: linear-gradient(135deg, rgba(12, 132, 104, 0.1) 0%, rgba(12, 132, 104, 0.05) 50%, #ffffff 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-content {
  flex: 1;
  /*max-width: 600px;*/
}
.breadcrumbs {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 16px;
}
.breadcrumbs .active {
  color: var(--primary-teal);
  font-weight: 600;
}
.hero-content h1 {
  font-size: 48px;
  color: var(--text-dark);
  margin-bottom: 13px;
  line-height: 1.2;
}
.hero-desc {
  font-size: 16px;
  color: var(--text-gray);
  margin-bottom: 32px;
  line-height: 1.6;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-image {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.hero-image img {
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
  }
  .hero-content h1 {
    font-size: 36px;
  }
}
.hero-content{
    padding:0 80px;
}
/* CSS for section section:ComprehensiveCare */
.comprehensive-section {
  padding: 80px 0;
  background-color: #fff;
}
.comp-container {
  display: flex;
  align-items: center;
  gap: 60px;
}
.comp-image {
  flex: 1;
}
.comp-image img {
  border-radius: 24px;
  width: 100%;
  object-fit: cover;
}
.comp-content {
  flex: 1;
}
.comp-content h2 {
  font-size: 36px;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.comp-content p {
  color: var(--text-gray);
  margin-bottom: 20px;
  line-height: 1.6;
}
.quote-box {
  background-color: rgba(12, 132, 104, 0.05);
  border-left: 4px solid var(--primary-teal);
  padding: 20px;
  margin-top: 30px;
  font-style: italic;
  color: var(--text-dark);
  font-weight: 500;
}
@media (max-width: 768px) {
  .comp-container {
    flex-direction: column-reverse;
  }
}

/* CSS for section section:Conditions */
.conditions-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.condition-pill {
  background: #fff;
  border: 1px solid rgba(12, 132, 104, 0.2);
  border-radius: 99px;
  padding: 16px;
  text-align: center;
  color: var(--text-dark);
  font-weight: 500;
  transition: all 0.3s;
}
.condition-pill:hover {
  background: var(--primary-teal);
  color: #fff;
  border-color: var(--primary-teal);
}
@media (max-width: 1024px) {
  .conditions-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .conditions-grid { grid-template-columns: 1fr; }
}

/* CSS for section section:Specialists */
.specialists-section {
  background-color: var(--primary-teal-light);
  padding: 80px 0;
}
.doctor-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  width:31%;
}
.doc-img-wrapper {
  height: 320px;
  overflow: hidden;
}
.doc-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doc-info {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.doc-info h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.doc-qual {
  color: var(--primary-teal);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}
.doc-spec {
  color: var(--text-gray);
  font-size: 14px;
  margin-bottom: 20px;
  flex: 1;
}
.doc-exp {
  background: var(--primary-teal);
  color: #fff;
  padding: 10px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

/* CSS for section section:Treatments */
.treatments-section {
  padding: 80px 0;
  background-color: #fff;
}
.treatment-card {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.3s;
}
.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.icon-box {
  width: 56px;
  height: 56px;
  background: rgba(12, 132, 104, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.treatment-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.treatment-card p {
  color: var(--text-gray);
  font-size: 15px;
  line-height: 1.5;
}

/* CSS for section section:WhyChoose */
.why-choose-section {
  background: linear-gradient(135deg, #06b29f 0%, #0c8468 100%);
  padding: 80px 0;
}
.feature-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 32px;
  color: #fff;
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

/* CSS for section section:Facilities */
.facilities-section {
  padding: 80px 0;
  background-color: #fff;
}
.facility-item {
  text-align: center;
  padding: 20px;
  background: #f9fafb;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}
.fac-icon {
  width: 80px;
  height: 80px;
  background: rgba(12, 132, 104, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.facility-item h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.facility-item p {
  font-size: 14px;
  color: var(--text-gray);
}

/* CSS for section section:TraumaBanner */
.trauma-banner {
  background: linear-gradient(90deg, rgba(105, 0, 0, 0.05) 0%, #ffffff 100%);
  padding: 60px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.trauma-icons {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.t-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
  width: 160px;
}
.t-icon {
  width: 64px;
  height: 64px;
  background: rgba(105, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-item h4 {
  font-size: 16px;
  color: var(--text-dark);
}

/* CSS for section section:Testimonials */
.testimonials-section {
  padding: 80px 0;
  background-color: #fff;
}
.testi-card {
  background: #f9fafb;
  border-radius: 16px;
  padding: 32px;
  border: 1px solid #e5e7eb;
}
.testi-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.user-img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.stars {
  display: flex;
  gap: 4px;
}
.treatment-tag {
  color: var(--primary-teal);
  font-size: 14px;
  margin-bottom: 12px;
}
.testi-text {
  color: var(--text-gray);
  font-style: italic;
  margin-bottom: 24px;
  font-size: 15px;
}
.recovery-tag {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

/* CSS for section section:CTA */
.cta-section {
  padding: 80px 0;
  background-color: #fff;
  text-align: center;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}
/*about list css*/
.hospital-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hospital-features li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  color: #374151;
  font-size: 16px;
  line-height: 1.6;
}

.hospital-features li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #0d9488; /* hospital green */
  font-size: 16px;
  font-weight: bold;
}

/* home css*/
    /*24/7 section*/
    
#services {
  background: #f4fbfa;
  padding: 80px 0;
  font-family: 'Poppins', sans-serif;
}

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

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

.services-header p {
  color: #0e877a;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.services-header h2 {
  font-size: 2.4rem;
  font-weight: 700;
  color: #083f39;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Card */
.service-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(14, 135, 122, 0.35);
}

/* Image */
.service-img {
  height: 220px;
  overflow: hidden;
}

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

.service-card:hover .service-img img {
  transform: scale(1.08);
}

/* Info */
.service-info {
  padding: 22px;
  text-align: center;
}

.service-icon {
  width: 55px;
  height: 55px;
  margin: -48px auto 12px;
  background: #0e877a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(14, 135, 122, 0.4);
}

.service-icon img {
  width: 26px;
}

.service-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #083f39;
  margin: 0;
}

/* Footer Text */
.services-footer-text {
  margin: 60px auto 0;
  max-width: 850px;
  text-align: center;
}

.services-footer-text p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
}

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

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

  .services-header h2 {
    font-size: 1.9rem;
  }
}

.hero-btn1{
    display:flex !important;
color:white !important;    
}



/* ================= EKASHILAA UNIQUE STYLES ================= */

.eka-medical-facility-section {
  background-color: #ffffff;
  padding: 70px 0;
  font-family: "Segoe UI", sans-serif;
}

.eka-medical-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.eka-medical-heading span {
  color: #06b29f;
}

.eka-medical-paragraph {
  font-size: 1rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* ================= FACILITY LIST ================= */

.eka-facility-list-wrap {
  display: flex;
  flex-direction: row;
 
  gap: 20px;
}

.eka-facility-item-box {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f3fbf8, #ffffff);
  border: 1px solid #cceee1;
  transition: all 0.35s ease;
  cursor: pointer;
  width:50%;
}

.eka-facility-item-box:hover {
  background: linear-gradient(135deg, #1b9b6b, #06b29f);
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(27, 155, 107, 0.35);
}

.eka-facility-item-box:hover .eka-facility-title-text,
.eka-facility-item-box:hover .eka-facility-desc-text,
.eka-facility-item-box:hover .eka-facility-icon-circle i {
  color: #252323;
}

/* ================= ICON ================= */

.eka-facility-icon-circle {
  width: 58px;
  height: 58px;
  min-width: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1b9b6b, #06b29f);
  display: flex;
  align-items: center;
  justify-content: center;
}
.eka-facility-item-box:hover > .eka-facility-icon-circle {
  background: #fff;
}

.eka-facility-icon-circle i {
  font-size: 24px;
  color: #ffffff;
}
.eka-facility-item-box:hover .eka-facility-desc-text {
  color: aliceblue;
}
.eka-facility-item-box:hover .eka-facility-title-text {
  color: #212323;
}
/* ================= TEXT ================= */

.eka-facility-title-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0b4d3b;
  margin-bottom: 6px;
}

.eka-facility-desc-text {
  font-size: 0.95rem;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

/* ================= IMAGE ================= */

.eka-facility-image-shell {
  background: linear-gradient(135deg, #e3f6ef, #ffffff);
  padding: 26px;
  border-radius: 24px;
}

.eka-facility-image-shell img {
  width: 100%;
  border-radius: 18px;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .eka-medical-heading {
    font-size: 2rem;
  }
}

    /* Our Clients */

    .hsc-collab-section {
      padding: 60px 20px;
    }

    .hsc-collab-wrapper {
      max-width: 1140px;
      margin: 0 auto;
    }

    .hsc-collab-wrapper h3 {
       color: #dc3545;
    font-weight: 500;
    font-size: 36px;
    font-family: 'Grenze', serif;
    line-height: 55px;
    text-align: center;
    }

    .hsc-collab-title {
      text-align: center;
      font-size: 26px;
      font-weight: 700;
      margin-bottom: 30px;
      color: #c50000;
    }

    /* SCROLLER WRAP */
    .hsc-collab-scroller {
      position: relative;
      overflow: hidden;
    }

    .hsc-collab-track {
      display: flex;
      align-items: center;
      gap: 30px;
      width: max-content;
      animation: hsc-collab-scroll 25s linear infinite;
      height:165px;
    }

    .hsc-collab-scroller:hover .hsc-collab-track {
      animation-play-state: paused;
    }

    /* LOGO CARD */
    .hsc-collab-card {
      flex: 0 0 180px;
      background: #ffffff;
      border-radius: 14px;
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      height:125px;
    }

    .hsc-collab-card img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }

    @keyframes hsc-collab-scroll {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }

    @media (max-width: 600px) {
      .hsc-collab-card {
        flex: 0 0 150px;
        padding: 14px 18px;
      }

      .hsc-collab-title {
        font-size: 22px;
      }
    }
.grid-3{
    display: flex;
    flex-direction: row;
    gap: 41px;
}





.doc-exp a{
    display: contents;
    color:#fff;
text-decoration:none;
    
}