.page-id-904 .footerabove{display:none;}
.page-id-1199 .footerabove{display:none;}

/*====home page css start from here====*/
:root {
  --primary-color: #4a2a75;
  --accent-color: #f38629;
  --font-lato: 'Lato', sans-serif;
}

/* body {
  font-family: var(--font-lato);
  color: #333;
} */
p:empty {
  margin: 0;
  padding: 0; /* Optional: Also remove padding if needed */
}
/* Global button style */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}
.btn-primary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

/* Section titles */
.section-title {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Common spacing */
.section {
  padding: 60px 0;
}

/*  */

.homepagemainclass {
  --navy-start: #00017a;
  --navy-mid:   #00014f;
  --navy-end:   #000132;
  --orange:     #f38629;
  overflow: hidden;
}

.homepagemainclass .banner-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row; /* ✅ Force horizontal layout */
  min-height: 500px;
  background: #4a2a75;
}

.homepagemainclass .banner-left {
  width: 50%;
  padding: 0 4rem;
  color: #fff;
  z-index: 2;
  text-align: left;
}

.homepagemainclass .banner-left h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.homepagemainclass .banner-left .subtitle {
  color: #9ec5ff;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.homepagemainclass .banner-left .description {
  color: #e2e2e2;
  font-size: 1.05rem;
  line-height: 1.6;
}

.homepagemainclass .banner-right {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  overflow: hidden;
}

.homepagemainclass .banner-video-mask {
  position: absolute;
  inset: 0;
  background-color: var(--orange);
  clip-path: polygon(24% 0, 100% 0, 100% 100%, 0% 100%);
}

.homepagemainclass .banner-video-mask video {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(25% 0, 100% 0, 100% 100%, 1% 100%);
}

/* Carousel controls / indicators */
.homepagemainclass .carousel-indicators {
  bottom: 20px;
}
.homepagemainclass .carousel-indicators [data-bs-target] {
  background-color: rgb(206 179 242);
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.homepagemainclass .carousel-indicators .active {
  background-color: #ffffff;
}

/* Fade transition */
.carousel.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity .8s ease-in-out;
}
.carousel.carousel-fade .carousel-item.active {
  opacity: 1;
  transition: opacity .8s ease-in-out;
}

/* ✅ REMOVE stacking on mobile */
@media (max-width: 991px) {
  .homepagemainclass .banner-slide {
    flex-direction: row !important;
    flex-wrap: nowrap;
    min-height: auto !important;
	height: 300px;
  }

  .homepagemainclass .banner-left {
    width: 45%;
    padding: 1rem 1.5rem;
  }

  .homepagemainclass .banner-right {
    width: 50%;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
  }

  .homepagemainclass .banner-video-mask,
  .homepagemainclass .banner-video-mask video {
/*     clip-path: polygon(25% 0, 100% 0, 100% 100%, 1% 100%); */
  }

  .homepagemainclass .banner-left h2 {
    font-size: 14px;
  }
	.homepagemainclass .banner-left .subtitle {
		font-size:13px;
	}
  .homepagemainclass .banner-left .description {
    font-size: 12px;
  }
}

.ast-container {max-width:100% !important;}

/* Next Section */
/* ================================
   SECOND SECTION (EMBRACE VIDEO)
   ================================ */

.homepagemainclass .video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;  /* keeps video height consistent */
  overflow: hidden;
  z-index: 1;
  background: linear-gradient(to right, #e1e7ff, #f4e8ff);
}

/* --- Video styling --- */
.homepagemainclass .video-container video {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0 !important;
  pointer-events: none !important; /* allows overlay to capture clicks */
  display: block;
	padding: 15px !important;
}

/* --- DESKTOP OVERLAY LINKS --- */
.homepagemainclass .video-links {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 2%;
  padding: 0 3%;
  z-index: 10 !important;
  pointer-events: auto;
}

.homepagemainclass .video-links a {
  display: block;
  flex: 1 1 0;
  max-width: 17%;
  height: 66%;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  transition: background-color 0.25s ease;
}

.homepagemainclass .video-links a:hover {
  background-color: rgba(255, 255, 255, 0.12);
	border-radius: 17px;
}

/* --- MOBILE OVERLAY LINKS --- */
.homepagemainclass .video-links-mobile {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 2rem;
  z-index: 10 !important;
  pointer-events: auto;
}

.homepagemainclass .video-links-mobile a {
  display: block;
  width: 100%;
  height: 18%; /* roughly equal clickable rows */
  border-radius: 12px;
  background: transparent;
  pointer-events: auto;
  transition: background-color 0.25s ease;
}

.homepagemainclass .video-links-mobile a:hover {
  background-color: rgba(255, 255, 255, 0.12);
}

/* --- Z-index + stacking fixes --- */
.homepagemainclass .video-container,
.homepagemainclass .video-links,
.homepagemainclass .video-links-mobile {
  transform: translateZ(0);
}

/* --- Adjust for smaller tablets if needed --- */
@media (max-width: 991px) {
  .homepagemainclass .video-container {
    aspect-ratio: 9 / 16; /* portrait-friendly for mobile */
  }
  .homepagemainclass .video-links {
    display: none !important; /* hide desktop overlays */
  }
  .homepagemainclass .video-links-mobile {
    display: flex !important; /* show mobile overlays */
  }
}

/* --- TABLET RESPONSIVE FIX (Bootstrap md range: 768px–991px) --- */
@media (min-width: 768px) and (max-width: 991px) {
  .homepagemainclass .video-container {
    aspect-ratio: 4 / 3; /* a bit taller for tablets */
    height: auto;
  }

  /* Show desktop video on tablets */
  .homepagemainclass .video-container video.d-md-block {
    display: block !important;
  }
  .homepagemainclass .video-container video.d-md-none {
    display: none !important;
  }

  /* Adjust clickable areas */
  .homepagemainclass .video-links {
    padding: 0 3%;
    gap: 1.5%;
  }
  .homepagemainclass .video-links a {
    width: calc(100% / 5 - 1.5%);
    height: 68%; /* slightly taller on tablets */
  }
}
.why-choose-home{position: unset;}
.why-choose-home .filterdctr{position: relative;
    left: 70%;
    float: right;}

@media (max-width: 738px) {
		.why-choose-home .filterdctr{position: relative;
    left: 45%;
    float: right;}
	}
/*  */
/* Navbar Appearance */
.navbar {
  transition: all 0.4s ease;
  background-color: #ffffff;
}
.navbar.sticky {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
}
.navbar.transparent {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: none !important;
}

/* Buttons */
:root { 
  --accent-color: #4a2a75;
}

.btn-outline-primary,
.searchbtn {
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: color 0.35s ease, border-color 0.35s ease;
}

.btn-outline-primary::before,
.searchbtn::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
  z-index: -1;
  will-change: transform;
}

.btn-outline-primary {
background: #fff;
    color: #4a2a75 !important;
    border: 1px solid #4a2a75 !important;
    transition: none;
}

.btn-outline-primary::before {
  background: var(--accent-color);
  transform: scaleY(0); 
}

.btn-outline-primary:hover::before {
  transform: scaleY(0); 
}

.btn-outline-primary:hover {
  color: var(--accent-color); 
  background: #fff;
}

.searchbtn {
  background: var(--accent-color);
  color: #fff;
  border: 1px solid var(--accent-color);
}
.searchbtn {
  padding: 3px 8px !important;
}
.btn-outline-primary {
  padding: 3px 8px !important;
}
.searchbtn::before {
  background: #fff;
}

.searchbtn:hover::before {
  transform: scaleY(1);
}

.searchbtn:hover {
  color: #000 !important;
  background: #fff;
  border-color: var(--accent-color);
}

.searchbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  text-decoration: none !important;
  background: var(--accent-color);
  border: 1px solid #4a2a75 !important;
  color: #fff;
}

.searchbtn .searchbtn {
  color: inherit;
}
.searchbtn .fas.fa-search i {
  font-size: 13px !important;
  margin-right: 5px;
  margin-top: 3px;
}
.searchbtn > i.fas.fa-search {
  font-size: 12px !important;
  margin-right: 5px !important;
  margin-top: 2px !important;
}

/* Mobile Icons */
.mobile-icons {
  display: none;
}
@media (max-width: 992px) {
  .mobile-icons {
    display: flex;
    align-items: center;
  }
  .desktop-buttons {
    display: none;
  }
}
/* ===== Search Popup Styles ===== */
    .search-popup-overlay {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.7);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }
    .search-popup {
      background: #fff;
      width: 90%;
      max-width: 500px;
      padding: 30px;
      border-radius: 12px;
      position: relative;
      box-shadow: 0 5px 25px rgba(0,0,0,0.2);
    }
    .search-popup h4 {
      font-size: 1rem;
      margin-bottom: 15px;
      text-align: left;
      color: #4a2a75;
    }
    .search-popup .close-search {
      position: absolute;
      top: 10px;
      right: 15px;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: #000;
      cursor: pointer;
    }
    .search-popup form {
      display: flex;
      gap: 10px;
    }
    .search-popup input[type="text"] {
      flex: 1;
      padding: 10px 15px;
      border: 1px solid #ccc;
      border-radius: 8px;
      font-size: 1rem;
    }
    .search-popup button[type="submit"] {
      background: #f38629;
      border: none;
      color: #fff;
      padding: 10px 15px;
      border-radius: 8px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s;
    }
    .search-popup button[type="submit"]:hover {
      background: #4a2a75;
    }
    /* Search Results List */
    #searchResults {
      max-height: 250px;
      overflow-y: auto;
      margin-top: 10px;
      border-radius: 8px;
      list-style: none;
      padding-left: 0;
	text-align:left;
		margin:0px;
    }
    #searchResults li {
      padding: 5px 8px;
      border-bottom: 1px solid #eee;
      cursor: pointer;
		margin:10px 0px;
    }
    #searchResults li:hover {
      background-color: #f38629;
      color: #fff;
    }
.custommenubar .justify-content-between img{width:80px !important;}
.custommenubar .d-flex {padding: 0px 0px 0px 20px;}
.custommenubar .nav-link{color: rgb(74 42 117);}
.custommenubar .nav-link:hover{color: rgb(74 42 117);}
.custommenubar .nav-item ul a{color: rgb(74 42 117);}
.custommenubar .dropdown-toggle::after {vertical-align: 2.255px;}
.custommenubar .nav-link:focus-visible {box-shadow: none;}
.custommenubar .navbar-collapse .dropdown .p-2{width: 340% !important;}
.custommenubar .searchbtn{background-color: #4a2a75;
    border: none;color: #fff;padding: 5px 1rem;border-radius:5px;}
.custommenubar .mobile-icons .navbar-toggler{display:none;}
.custommenubar .mobile-icons a img{width:30px !important;}


/* ===========================
   MOBILE STICKY FOOTER NAVBAR
   =========================== */
.mobile-sticky-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -3px 12px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  transition: transform 0.3s ease-in-out;
}

.footer-nav {
  height: 64px;
  padding: 0 0.5rem;
}

.footer-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #333;
  font-size: 0.75rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-btn:hover,
.footer-btn:focus {
  color: #4a2a75; /* purple */
}

.footer-btn i,
.footer-btn img {
  display: block;
}

.footer-btn.active {
  color: #f38629; /* orange */
}

/* Avoid footer overlap with content */
@media (max-width: 991px) {
  body {
    padding-bottom: 64px; /* space for footer */
  }

  /* Navbar open margin fix */
/*   .navbar-collapse.show {
    margin-bottom: 64px;
  } */
}
.mobile-sticky-footer .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0,0,0,0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5em;
  height: 1.5em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.mobile-sticky-footer .footer-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: #333;
  text-decoration: none;
}

.mobile-sticky-footer .footer-btn i,
.mobile-sticky-footer .footer-btn img {
  font-size: 20px;
  margin-bottom: 4px;
}
.mobile-sticky-footer .footer-btn {padding:0px !important;}

#mainNavbar .navbar-nav .nav-link{font-size:14px;font-weight: 600;}
/* Collapse */
/* --- Mobile Slide-In Menu --- */
@media (max-width: 991px) {
  /* turn the collapsed navbar into a full-screen sidebar */
  #mainNavbar.collapse {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95); /* transparent/white layer */
    z-index: 2000;
    transition: left 0.4s ease-in-out;
    overflow-y: auto;
    padding: 2rem 1.5rem;
  }

  /* when the menu is open (Bootstrap adds .show) */
  #mainNavbar.show {
    left: 0;
  }

  /* make links larger and spaced nicely */
  #mainNavbar .navbar-nav .nav-link {
    display: block;
    font-size: 1.2rem;
    color: #333;
  }

  /* dropdowns inside slide menu */
  #mainNavbar .dropdown-menu {
    position: static;
    float: none;
    box-shadow: none;
    background: transparent;
    padding-left: 1rem;
  }

  /* two-column dropdown style for specialties */
  #mainNavbar .dropdown-menu .row {
    display: flex;
    flex-wrap: wrap;
	 padding-left:0px !important;
  }

  #mainNavbar .dropdown-menu .col-md-6 {
    flex: 0 0 50%;
  }

  /* optional close button */
/*   #mainNavbar::before {
    content: "✕";
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    color: #333;
    cursor: pointer;
  } */

  /* clicking the 'X' closes the menu */
  #mainNavbar::before:hover {
    opacity: 0.7;
  }
}

/* Mobile slide-panel CSS */
    @media (max-width: 991px) {

      /* base slide panel style (initially off-screen left) */
      #mainNavbar.mobile-slide-panel {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 90% !important;
        height: 87vh !important;
        max-width: 100% !important;
        transform: translateX(-100%);
        transition: transform 0.35s ease-in-out;
        background: rgba(255,255,255,0.98);
        z-index: 2100 !important;
        overflow-y: auto;
        padding: 2.25rem 1.25rem;
        -webkit-overflow-scrolling: touch;
      }

      /* when open */
      #mainNavbar.mobile-slide-panel.show {
        transform: translateX(0);
      }

      /* prevent Bootstrap inline height from interfering during collapsing */
      #mainNavbar.mobile-slide-panel.collapsing {
        height: 100vh !important;
      }

      /* close button */
      .menu-close-btn {
        position: absolute;
        top: 14px;
        right: 16px;
        font-size: 30px;
        line-height: 1;
        color: #333;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 2200;
      }

      .menu-close-btn:focus {
        outline: none;
      }

      /* menu layout */
      #mainNavbar.mobile-slide-panel .navbar-nav {
        flex-direction: column;
        gap: 0.25rem;
        margin-top: 1.5rem;
		 border-top: 1px solid #dcdcdc;
      }

      #mainNavbar.mobile-slide-panel .nav-link {
        font-size: 1.05rem;
        padding: 0.8rem 0;
        color: #222;
      }

      #mainNavbar.mobile-slide-panel .nav-link:hover {
        color: black;
      }

      /* make dropdowns act as native stacked lists inside panel */
      #mainNavbar.mobile-slide-panel .dropdown-menu {
        position: static;
        float: none;
        box-shadow: none;
        background: transparent;
        margin: 0;
        padding-left: 1rem;
		border: none;
      }

      /* two-column dropdown becomes stacked, but you can keep two columns if desired */
      #mainNavbar.mobile-slide-panel .dropdown-menu .row {
        display: flex;
        flex-wrap: wrap;
		  flex-direction: column !important;
      }
      #mainNavbar.mobile-slide-panel .dropdown-menu .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
		  
      }
		#mainNavbar.mobile-slide-panel .dropdown-menu .dropdown-item {
    padding: 0.5rem 0.75rem;
			color:black !important;
  }
    }

@media (max-width: 991px) {
	.desktop-buttons .btn-outline-primary{display:none;}
	.desktop-buttons #openSearch{display:none;}
}
.menu-title-label {font-weight: bolder;}
@media (max-width: 991px) {
      /* Slide-in mobile menu */
      #mainNavbar.mobile-slide-panel {
        position: fixed !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 90vh;
        transform: translateX(-100%);
        transition: transform 0.35s ease-in-out;
        background: rgba(255,255,255,0.98);
        z-index: 2100;
        overflow-y: auto;
        padding: 2.25rem 1.25rem;
      }
      #mainNavbar.mobile-slide-panel.show {
        transform: translateX(0);
      }

      /* Menu label (top-left) */
      .menu-title-label {
        position: absolute;
        top: 16px;
        left: 18px;
        font-size: 1.3rem;
        font-weight: 600;
        color: #222;
        z-index: 2200;
        pointer-events: none;
        display: block;
      }

      /* Close button (top-right) */
      .menu-close-btn {
        position: absolute;
        top: 0px;
        right: 18px;
        font-size: 32px;
        line-height: 1;
        color: #333;
        background: transparent;
        border: none;
        cursor: pointer;
        z-index: 2201;
        display: block;
      }
      .menu-close-btn:hover {
        color: #000;
        background: transparent;
        box-shadow: none !important;
		  
      }
    }

    /* 🔒 Hide menu text and close button on desktop */
    @media (min-width: 992px) {
      .menu-title-label,
      .menu-close-btn {
        display: none !important;
      }
	
    }
@media (max-width: 992px){
	.custommenubar .navbar-collapse .dropdown .p-2 {width:100% !important;}	
	.custommenubar .mobilebtnchnge{position: relative;
        top: 50%;
        border-top: 1px solid #d4d4d4;
        padding-top: 20px;}
	.custommenubar .searchbtn{width:100%;}
}
.py-2 {padding-top: 0.7rem !important;
    padding-bottom: .7rem !important;}
.footerabove .clrprt{background-color: #f38629;border-radius: 7px;}
.footerabove .clrprt h4{color:white;}
.footerabove .clrprt h2{color:white;}
.footerabove .textpart{padding: 20px 30px;}
.footerabove {margin: 0px 0px 30px 0px;}
.footerabove .everest-forms .evf-submit-container  button{color: white;
    background: #4a2a75;
    border-radius: 5px;}
.mobile-slide-panel .btn:focus-visible {box-shadow: none;}
/* Ensure search popup shows above all elements (desktop fix) */
.search-popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 99999 !important; /* raise above navbar and header */
  justify-content: center;
  align-items: center;
}

.search-popup {
  background: #fff;
  padding: 25px 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  text-align: center;
  z-index: 100000; /* ensure above everything */
}

#closeSearch {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 1.8rem;
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  color: #333;
}

/* make sure header doesn't block clicks */
.navbar, header, .custommenubar {
  z-index: 1000 !important;
}
.quick-enquiry-mock-form #evf-820 {background:white;padding: 15px 10px;
    border-radius: 10px;}
.quick-enquiry-mock-form .evf-field-container .evf-grid-1 span {color: #4a2a75;}
.quick-enquiry-mock-form .evf-field-container .evf-grid-1 label {margin: 0px;}
.quick-enquiry-mock-form .evf-field-container .evf-field{margin:0px !important;}
.quick-enquiry-mock-form .evf-submit-container button { background: #4a2a75 !important; color: white!important; border-radius: 10px!important; width: 100%!important;}
.home-map .map-container .w-full{width:100%;}

 .ast-single-post .entry-content a, .ast-comment-content a:not(.ast-comment-edit-reply-wrap a) {
    text-decoration: none !important;
}
.ast-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.shadow-lg {
    box-shadow: none !important;
}

/* Our Specialities home page*/
.our-specialities h2 {
    font-size: 2.25rem;
    color: #1c2b8c;
}
.speciality-card {
      background-color: #f2f6ff;
      border-radius: 23px;
      padding: 2rem 1rem;
      position: relative;
      transition: all 0.3s ease;
      box-shadow: 0 0 0 rgba(0, 0, 0, 0);
	margin-bottom: 55px !important;
    }

    .speciality-card:hover {
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      transform: translateY(-5px);
    }

    .icon-circle {
      width: 70px;
      height: 70px;
      background-color: #27276e !important;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: -40px;
      left: 50%;
      transform: translateX(-50%);
    }

    .icon-circle img {
      width: 50px !important;
      height: 50px !important;
    }

    .speciality-card h5 {
      margin-top: 46px !important;
      font-size: 1rem;
      line-height: 1.5rem;
      color: #1a1a1a;
    }

    .speciality-card ol {
      padding-left: 1.2rem;
      margin-top: -0.5rem !important;
      font-size: 0.75rem;
      line-height: 1rem;
      color: #333;
    }

    a.text-decoration-none:hover .speciality-card {
      background-color: #e8f0ff;
    }
.our-specialities {
  background-color: #f1f5f9;
	padding-bottom: 0px !important;
}

.speciality-card {
  background-color: #e0e7ff;
  border-radius: 30px;
  padding: 15px 10px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  height: 80%;
  min-height: 230px; /* Fixed height for all cards */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.speciality-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: #1c2b8c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
	box-shadow: 
        0 0 0 8px rgb(241 245 249), 0 0 0 10px rgb(241 245 249)
}

.icon-circle img {
  width: 40px;
  height: 40px;
}

.speciality-card h5 {
  margin-top: 2.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  color: #1a1a1a;
}

.speciality-card ol {
  padding-left: 1.2rem;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
  color: #333;
}

a.text-decoration-none:hover .speciality-card {
  background-color: #e8f0ff;
}



/* --- Why Choose Us Section Styles --- */

#why-choose-us {
    padding-top: 5px !important; 
    padding-bottom: 0 !important; 
    margin-bottom: 0 !important; 
}

#why-choose-us .container-fluid {
    max-width: 100%;
}

.why-choose-us-left-col {
    background-color: #4a2a75; 
    color: #ffffff;
    
    display: block; 
    align-items: initial; 
    justify-content: initial; 
    padding: 0;
}

.why-choose-us-content {
    min-height: auto; 
    padding: 6rem 3rem !important;
}
@media (max-width: 768px){
.why-choose-us-content
 {
    min-height: auto;
    padding: 3rem !important;
}
}

.why-choose-us-right-col {
    background-color: #f8f9fa; 
    padding: 0;
}



.why-choose-us-right-col > div {
    padding: 1.5rem !important; 
}
@media (min-width: 768px) {
    .why-choose-us-right-col > div {
        padding: 2rem 3rem 0rem 3rem !important; 
    }
}
.home-map {
    padding: 30px 0px;
}
.home-map h2 {
    font-size: 30px;
}
.home-map .directions-text {
    color: #ffffff !important;
    font-size: 16px !important;
}
.why-choose-us-right-col .row {
    margin-bottom: 0 !important; 
}

.card-custom-style { border-radius: 0.75rem; border: 1px solid #e0e0e0 !important; transition: all 0.3s ease; cursor: pointer; }
.card-custom-style:hover { box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }
.card-1 { background-color: #FFFBF2; }
.card-2 { background-color: #F0F9FF; }
.card-3 { background-color: #F5F3FF; }
.card-4 { background-color: #FFF0F5; }
.icon-lg { font-size: 2.5rem; line-height: 1; }
.icon-1 { color: #ffd966; }
.icon-2 { color: #38bdf8; }
.icon-3 { color: #8b5cf6; }
.icon-4 { color: #f43f5e; }



@media (min-width: 992px) {
    .why-choose-us-left-col { 
        flex: 0 0 auto; 
        width: 25%;
        min-height: 100%; 
    }
    .why-choose-us-right-col { 
        flex: 0 0 auto; 
        width: 75%; 
    }
}



/* home map section*/

.home-map .bg-dark-blue {
    background-color: #4a2a75 !important;
}

.home-map .map-container {
    padding: 0;

}

@media (min-width: 768px) {
    .home-map .row.g-0 {
        display: flex; 
    }
    
    .home-map .map-text-panel {

        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    

    .home-map iframe {
        height: 100%;width:100%;
    }
}

.home-map .directions-text {
    color: #b0c4de;
}

.home-map .small-text {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

#why-choose-us h2 {
    color: white;
    font-size: 30px;
}
/*doctor & package section*/
.tab-pane:not(.show) {
    min-height: 0;
    margin-top: 0 !important;
    padding-top: 0 !important;
}
.why-choose-home {
    padding: 30px !important;
}

/* --- TAB STYLING TO MATCH SCREENSHOT --- */
.why-choose-home .nav-tabs {
    border-bottom: none; /* Removes the border line */
}
.why-choose-home .nav-tabs .nav-link {
    color: #6c757d;
    font-weight: 600;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 0.5rem 0.5rem 0.25rem 0; /* Adjusted padding for tighter look */
    margin-right: 1.5rem;
    font-size: 0.9rem;
}
.why-choose-home .nav-tabs .nav-link:hover {
    color: #4a2a75; /* Keep hover simple */
    background-color: transparent;
}
.why-choose-home .nav-tabs .nav-link.active {
    color: #4a2a75;
    background-color: transparent;
    border-color: #4a2a75;
}

/* --- NEW: DOCTOR FILTER STYLING (Based on screenshot) --- */
.filter-btn-custom {
background-color: #f1f1f1;
    color: #333;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    font-weight: 500;
    padding: 0 0.8rem !important; 
    height: 33px !important; 
    line-height: 0px !important; 
    font-weight: 500;	
    text-align: left; 
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    min-width: 106px; 
}
.filter-btn-custom:hover {
background-color: #e9ecef;
    color: #333;
    border-color: #ced4da;
}
.filter-menu-custom {
padding: 0.5rem 0;
    border: 1px solid #e9ecef;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    max-height: 250px;
    overflow-y: auto;
}
.filter-item-custom {
display: flex;
    align-items: center;
    padding: 0.25rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: #333;
    margin: 0;
    width: 100%;
}
.filter-item-custom:hover {
background-color: #f8f9fa;
}


/* Existing Card Styles */
.why-choose-home .card {
    border-radius: 12px;
    transition: all 0.3s ease;
	border: 2px solid #4a2a75 !important;
}
.why-choose-home .card:hover {
    background: #f9fbff;
}
div#packages h6 {
    font-size: 16px;
    text-align: center;
}
ul.list-unstyled {
    font-size: 13px;
    padding-left: 0px !important;
}


/* --- DOCTOR CARD FIXES (Your original styles) --- */
.doctor-card-item .card { /* Targeting the new wrapper class */
    border: 1px solid #dee2e6 !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 15px;
    font-size: 0.85rem;
}
.doctor-card-item .card img {
    width: 90px !important;
    height: 90px !important;
    margin-bottom: -0.5rem !important;
}
.doctor-card-item .card h6 {
    min-height: 20px;
    font-size: 1rem;
    margin-bottom: 0.25rem !important;
	margin-top: 15px;
}
.doctor-card-item .card p.text-muted.small:nth-of-type(1) {
    min-height: 34px;
    line-height: 1.2;
    margin-bottom: 0.25rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.doctor-card-item .card p.text-muted.small:nth-of-type(2) {
    min-height: 18px;
    margin-bottom: 0.25rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.doctor-card-item .card p.small:last-of-type {
    min-height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0 !important;
}
.doctor-card-item .card .d-flex.justify-content-center.gap-2.mt-2 {
    margin-top: 10px !important;
}
.doctor-card-item .card .btn-sm {
padding: 0.25rem 1rem !important;
    font-size: 0.75rem;
    border: 1px solid #4a2a75 !important;
}
.doctor-card-item .card .btn-sm:hover
{
    background-color: #4a2a75;
    color: #fff !important;
}

.doctor-card-item .btn-outline-primary { border-color: #0026a3; color: #0026a3; }
.doctor-card-item .btn-primary { background-color: #4a2a75; border-color: #4a2a75; }

.package-card .text-primary.fw-bold { color: #0026a3 !important; }
.package-card .btn-warning {
    background-color: #f38629 !important;
    border-color: #f38629 !important;
    color: #ffffff !important;
}

@media (min-width: 768px) {
    .col-md-custom-5, .col-lg-custom-5, .col-xl-custom-5 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}



/*footer*/
.custome-footer * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Footer Container Styling */
.custome-footer { 
    background-color: #4a2a75; 
    color: #FFFFFF; 
    padding-top: 30px;
    padding-left: 1%;
    padding-right: 1%;
}

.custome-footer .footer-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
}

/* Column Styling */
.custome-footer .footer-col {
    padding: 0 15px;
}

.custome-footer .col-info {
    flex-basis: 30%; 
}

.custome-footer .col-links {
    flex-basis: 40%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.custome-footer .col-form {
    flex-basis: 30%; 
    color: #000000; 
    padding: 5px 10px;
    border-radius: 4px;
}

/* Logo and Hospital Name */
.custome-footer .logo-area {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.custome-footer .footer-logo {
    width: 100px;
    height: auto;
    margin-right: 10px;
}
/* Address and Contact Details */
.custome-footer .address, .custome-footer .contact-detail {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
    font-weight: 500;
}

.custome-footer .contact-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}

.custome-footer .contact-link:hover {
    color: #8888FF;
}

/* Social Media Section */
.custome-footer .social-heading {
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    margin-bottom: 5px;
    color: #FFFFFF;
}

.custome-footer .social-links {
    display: flex;
    gap: 15px;
}

.custome-footer .social-icon {
    color: #FFFFFF;
    font-size: 18px;
    transition: color 0.3s;
}

.custome-footer .social-icon:hover {
    color: #8888FF;
}

/* Links Section Styling */
.custome-footer .section-heading {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #FFFFFF;
}

.custome-footer .link-group {
    font-size: 11px;
    line-height: 1.5;
}

.custome-footer .footer-link {
		color: #fff;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
    font-size: 13px;
}

.custome-footer .footer-link:hover {
    color: #FFFFFF;
}

.custome-footer .link-group span {
color: #fff;
    margin: 0 2px;
}

/* Quick Enquiry Form Styling (Mock/Placeholder) */
.custome-footer .section-heading-form {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
	color:white;
}

/* Mock Form Styling (Everest Form */
.custome-footer .quick-enquiry-mock-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.custome-footer .form-group {
    display: flex;
    flex-direction: column;
}

.custome-footer .form-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #0A0A58;
}

.custome-footer .form-label.required::after {
    content: " *";
    color: red;
}

.custome-footer .form-input {
    padding: 10px;
    border: 1px solid #CCCCCC;
    border-radius: 4px;
    font-size: 14px;
}

.custome-footer .submit-btn {
    background-color: #0A0A58;
    color: #FFFFFF;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.custome-footer .submit-btn:hover {
    background-color: #1A1A78;
}

/* Copyright Bar Styling */
.custome-footer .copyright-bar {
    border-top: 1px solid #9494af;
    padding: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
}

.custome-footer .copyright-text {
    font-size: 12px;
    color: #CCCCFF;
}

.custome-footer .policy-links .policy-link {
    font-size: 12px;
    color: #CCCCFF;
    text-decoration: none;
    transition: color 0.3s;
}

.custome-footer .policy-links .policy-link:hover {
    color: #FFFFFF;
}

.custome-footer .policy-links span {
    color: #CCCCFF;
    margin: 0 5px;
}

@media (max-width: 992px) {
    .custome-footer .footer-container {
        flex-wrap: wrap;
    }
    .custome-footer .col-info, .custome-footer .col-links, .custome-footer .col-form {
        flex-basis: 100%;
        margin-bottom: 30px;
        padding-left: 0;
        padding-right: 0;
    }
    .custome-footer .col-form {
        order: initial;
    }
    .custome-footer .copyright-bar {
        flex-direction: column;
        gap: 10px;
    }
    .custome-footer .policy-links {
        margin-top: 5px;
    }
}
@media (max-width: 992px){
	.quick-enquiry-mock-form #evf-820 {
    margin-bottom: -25px !important;
}}


.package-buttons {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
	margin-bottom: 40px;
}

.pkg-btn {
  background: #00008B;
  color: #fff;
  padding: 16px 40px;
  border-radius: 18px;
  font-size: 20px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0px 8px 18px rgba(0,0,0,0.15);
  transition: 0.3s ease;
  text-decoration: none;
}

.pkg-btn:hover {
  transform: translateY(-3px);
  background: #000070;
	color: white;
}

@media (max-width: 768px) {
  .package-buttons {
    flex-direction: column;
    gap: 0px;
    padding: 0 20px;
  }

  .pkg-btn {
    width: 100%;
    justify-content: center;
    font-size: 18px;
    border-radius: 14px;
  }
}
/*====home page css end here====*/

/*=====contact page css start from here====*/

.contactpage-ind {
    background-color: #121063; 
}

.contactpage-hero-section {

    padding-top: 50px;    
    padding-bottom: 50px; 
    color: #fff; 
	background-color: #4a2a75;
}

.contactpage-text-column {
    padding-left: 60px;   
    padding-right: 30px;  
}

.contactpage-ind-breadcrumb {
    font-size: 0.95rem; 
    opacity: 0.8;      
    margin-bottom: 20px;
}

.contactpage-content-block {
    padding-top: 40px; 
}

.contactpage-ind-title {
font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 5px;
    line-height: 1.2;
    color: #fff;
}

.contactpage-ind-description {
    font-size: 18px; 
    line-height: 1.6;  
    max-width: 600px; 
}

.contactpage-icon-column {
    padding-right: 220px; 
}

.contactpage-ind-icon-wrapper {
    width: 250px;        
    height: 250px;       
    border-radius: 50%;  
    background-color: #f38629; 
    flex-shrink: 0;     
}

.contactpage-ind-envelope-img {
    max-width: 100% !important;
    max-height: 100% !important;
    height: auto;
    display: block;
    width: 160px;      
}

@media (max-width: 767.98px) {
    .contactpage-hero-section {
        padding-top: 50px;   
        padding-bottom: 50px; 
    }
    .contactpage-text-column {
        padding-left: 20px;   
        padding-right: 20px; 
    }

    .contactpage-ind-breadcrumb {
        margin-bottom: 15px; 
    }

    .contactpage-content-block {
        padding-top: 20px; 
        margin-bottom: 15px; 
    }

    .contactpage-ind-description {
        font-size: 1rem;     
        max-width: 100%;     
    }


}

.contactpage-form-section {
    background-color: #ffffff; 
    padding-top: 50px; 
    padding-bottom: 0px !important; 
}
@media (max-width: 768px) {
.contactpage-form-section {
    padding-bottom: 30px !important; 
	}}

.contactpage-relative-wrapper {
    position: relative;
    
    min-height: 500px; 
}


.contactpage-form-content-col {
    background-color: #4a2a75; 
    color: #ffffff;
    border-radius: 8px;
    z-index: 1; 
    width: 100%; 
}


.contactpage-text-narrow {
    max-width: 300px; 
}

.contactpage-form-title {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff; 
}

.contactpage-form-card-col {
    z-index: 2; 
    width: 100%; 
}

.contactpage-form-card {
    background-color: #ffffff; 
    border-radius: 8px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; 
}



@media (min-width: 768px) { 
   
    .contactpage-form-content-col {
        position: absolute;
        top: -10px;
        left: 134px;
        width: 60%;
        padding-right: 15px !important;; 
    }
    
    .contactpage-form-content-inner {
        padding-right: 20px; 
    }


    .contactpage-form-card-col {
        position: absolute; 
        width: 50%; 
        top: 25px; 
        left: 500px; 
    }

    .contactpage-relative-wrapper {
        height: 700px; 
    }
}

@media (max-width: 767.98px) {

    .contactpage-relative-wrapper {
        min-height: auto;
    }
    
    .contactpage-form-content-col {
        position: static; 
        width: 100%;
        margin-bottom: 15px; 
    }

    .contactpage-form-card-col {
        position: static; 
        width: 100%;
        padding: 0 15px; 
    }
}


/* CONTACT FORM CONTACT PAGE*/

.contactpage-form-description {
font-size: 13px;
    line-height: 1.6;
    margin-bottom: 8px !important;
    max-width: 250px;
}

.contactpage-form-title {
    max-width: none;
}
@media (max-width: 767.98px) {
    .contactpage-form-description {
        max-width: 100%; 
    }
}
.contactpage-form-steps {
    max-width: 250px;
    font-size: 13px;
}

.contactpage-form-steps p {
    margin-bottom: 5px !important;
}

/* EVEREST FORMS SUBMIT BUTTON STYLING (Mobile-First Reset) */

.contactpage-ind .everest-forms-part-button input[type=submit], 
.contactpage-ind .everest-forms input[type=submit],
.contactpage-ind .everest-forms button[type=submit],
.contactpage-ind .everest-forms a.button:not(.button-large), 
.contactpage-ind .everest-forms button.button:not(.button-large), 
.contactpage-ind .everest-forms-form-selector input[type=submit],
.contactpage-ind .everest-forms-form-selector button[type=submit],
.contactpage-ind .wp-block-everest-forms-form-selector a.button:not(.button-large), 
.contactpage-ind .wp-block-everest-forms-form-selector button.button:not(.button-large), 
.contactpage-ind .everest-forms-part-button {
    color: #fff !important;
    cursor: pointer;
    font-size: inherit;
    font-weight: 400;
    line-height: 1.5;
    background-color: #4a2a75; 
    border: 1px solid #4a2a75;
    border-radius: 3px;
    width: 100%; 
    padding: 10px 0; 
}



@media (min-width: 768px) {
    .contactpage-ind .everest-forms-part-button input[type=submit], 
    .contactpage-ind .everest-forms input[type=submit],
    .contactpage-ind .everest-forms button[type=submit],
    .contactpage-ind .everest-forms a.button:not(.button-large), 
    .contactpage-ind .everest-forms button.button:not(.button-large), 
    .contactpage-ind .everest-forms-form-selector input[type=submit],
    .contactpage-ind .everest-forms-form-selector button[type=submit],
    .contactpage-ind .wp-block-everest-forms-form-selector a.button:not(.button-large), 
    .contactpage-ind .wp-block-everest-forms-form-selector button.button:not(.button-large), 
    .contactpage-ind .everest-forms-part-button {
        width: auto; 
        padding: 5px 194px; 
       
    }
}


/* map+contact section contact page */
.contactpage-ind .contactpage-map-section {
    padding: 0;
}
.contactpage-ind .contactpage-map-text-panel {
    background-color: #4a2a75 !important; 
    color: #ffffff; 
    padding-top: 48px !important; 
    padding-bottom: 48px !important; 
    display: flex; 
    flex-direction: column;
    justify-content: center; 
}

.contactpage-ind .contactpage-map-text-panel h2 {
    font-size: 2.5rem; 
    color: #ffffff; 
    font-weight: 600;
}

.contactpage-ind .contactpage-map-container {
    padding: 0;
}

.contactpage-ind .contactpage-map-container iframe {
    width: 100%;
    height: 350px; 
    display: block;
}

@media (min-width: 768px) {
    .contactpage-ind .contactpage-map-section .row.g-0 {
        display: flex;
        align-items: stretch; 
        min-height: 1px; 
    }

    .contactpage-ind .contactpage-map-container {

        min-height: 450px; 
    }
    
    .contactpage-ind .contactpage-map-container iframe {
        height: 100%; 
        width: 100%; 
        display: block; 
    }


    .contactpage-ind .contactpage-map-text-panel {
     
        padding-top: 48px !important; 
        padding-bottom: 48px !important;
        padding-left: 48px !important; 
        padding-right: 48px !important; 
        
        height: 100%; 
    }
}
.map-curly-arrow {
    position: absolute;
    left: 260px;
    max-width: 100%;
    width: 127px;
}
@media (max-width: 767px) {
    .contactpage-ind .map-curly-arrow {
        display: none; 
    }
}

/* CONNECT WITH US SECTION STYLING - FINAL FIXES social icons */
.contactpage-ind.connect-social-section {
	padding-top: 80px;
	padding-bottom: 80px;
	background-color: #ffffff;
}

.contactpage-ind .connect-social-section .text-content-panel h2 {
	color: #333;
	font-size: 3rem;
	font-weight: 500;
	line-height: 1.2;
}

.contactpage-ind .connect-social-section .text-content-panel p {
	color: #555;
	font-size: 1.1rem;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
}

.contactpage-ind .connect-social-section .social-icon-item {
	transition: transform 0.3s ease;
	text-decoration: none;
}

.contactpage-ind .connect-social-section .social-icon-item:hover {
	transform: translateY(-5px);
}

.contactpage-ind .connect-social-section .icon-circle {
	width: 80px;
	height: 80px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	font-size: 32px;
	color: #fff;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contactpage-ind .connect-social-section .icon-label {
	font-size: 1.1rem;
	font-weight: 500;
	color: #333;
}


.contactpage-ind .connect-social-section .facebook-color {
	background-color: #3b5998;
}

.contactpage-ind .connect-social-section .facebook-text {
	color: #3b5998;
}

.contactpage-ind .connect-social-section .twitter-color {
	background-color: #1da1f2;
}

.contactpage-ind .connect-social-section .twitter-text {
	color: #1da1f2;
}

.contactpage-ind .connect-social-section .instagram-color {
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.contactpage-ind .connect-social-section .instagram-text {
	color: #d6249f;
}

.contactpage-ind .connect-social-section .youtube-color {
	background-color: #ff0000;
}

.contactpage-ind .connect-social-section .youtube-text {
	color: #ff0000;
}

.contactpage-ind .connect-social-section .linkedin-color {
	background-color: #0077b5;
}

.contactpage-ind .connect-social-section .linkedin-text {
	color: #0077b5;
}


.contactpage-ind .connect-social-section .threads-color {
	background-color: #000000;
}

.contactpage-ind .connect-social-section .threads-text {
	color: #000000;
}


@media (max-width: 991px) {
	.contactpage-ind .connect-social-section .text-content-panel {
		text-align: center;
		margin-top: 40px;
	}

	.contactpage-ind .connect-social-section .text-content-panel h2 {
		font-size: 2.5rem;
	}
}

@media (min-width: 992px) {
	.contactpage-ind .connect-social-section .text-content-panel.text-lg-start p {
		margin-left: 0;
		margin-right: 0;
		max-width: 100%;
	}
}

@media (max-width: 767px) {
	.contactpage-ind.connect-social-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.contactpage-ind .connect-social-section .icon-circle {
		width: 70px;
		height: 70px;
		font-size: 28px;
	}

	.contactpage-ind .connect-social-section .icon-label {
		font-size: 0.95rem;
	}

	.contactpage-ind .connect-social-section .social-icons-panel .row.g-4 {
		justify-content: center;
	}
}


/* EMERGENCY CONTACT SECTION STYLING */

.contactpage-ind .emergency-contact-section {
    background: linear-gradient(to bottom right, #f1f5f9, #cbd5e1);
    padding: 65px 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.contactpage-ind .emergency-card {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 60px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 90%; 
    max-width: 800px; 
    margin: 0 50px; 
    text-align: left;
}

.contactpage-ind .emergency-card .heading-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.contactpage-ind .emergency-card .heading-wrapper h2 {
    color: #1c1c1c;
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
}

.contactpage-ind .emergency-card .heading-wrapper .fa-triangle-exclamation {
    color: #333;
    font-size: 2.5rem;
    margin-right: 15px;
}

.contactpage-ind .emergency-card .content-wrapper .lead {
font-size: 17px;
    color: #000000;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

.contactpage-ind .emergency-card .phone-number-red {
    color: #ef4444;
    font-weight: 600;
}

@media (max-width: 767px) {
    .contactpage-ind .emergency-contact-section {
        padding: 40px 0;
        min-height: auto;
    }

    .contactpage-ind .emergency-card {
        padding: 24px !important; 
        margin: 0 15px;
        width: auto; 
    }

    .contactpage-ind .emergency-card .heading-wrapper h2 {
        font-size: 1.8rem;
    }

    .contactpage-ind .emergency-card .heading-wrapper .fa-triangle-exclamation {
        font-size: 1.8rem;
        margin-right: 10px;
    }

    .contactpage-ind .emergency-card .content-wrapper .lead {
        font-size: 1.1rem;
    }
}
/*====contact page css end here=====*/
/*====our doctors page css start from here====*/
.our-doctorsbanner {
  background-color: #3e2165;
  color: #ffffff;
  text-align: center;
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .our-doctorsbanner {
    padding: 3rem 2rem 4rem 2rem;
  }
}
.ourdoctors__heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  color: inherit;
}

@media (min-width: 768px) {
  .ourdoctors__heading {
    font-size: 2.30rem !important;
  }
}

.ourdoctors__description {
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .ourdoctors__description {
    font-size: 1rem;
  }
}

.alldoctors {
  padding-top: 3rem;
  padding-bottom: 1rem !important;
}

.alldoctors .doctor-card-item .card {
  border: 1px solid #dee2e6 !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 15px;
  font-size: 0.85rem;
}
.alldoctors .doctor-card-item .card img {
  width: 90px !important;
  height: 90px !important;
  margin-bottom: -0.5rem !important;
}
.alldoctors .doctor-card-item .card h6 {
  min-height: 20px;
  font-size: 1rem;
  margin-bottom: 0.25rem !important;
  margin-top: 15px;
}

.alldoctors .doctor-card-item .card p.text-muted.small:nth-of-type(1) {
  min-height: 34px;
  line-height: 1.2;
  margin-bottom: 0.25rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alldoctors .doctor-card-item .card p.text-muted.small:nth-of-type(2) {
  min-height: 18px;
  margin-bottom: 0.25rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
}
.alldoctors .doctor-card-item .card p.small:last-of-type {
  min-height: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0 !important;
}
.alldoctors .doctor-card-item .card .d-flex.justify-content-center.gap-2.mt-2 {
  margin-top: 10px !important;
}
.alldoctors .doctor-card-item .card .btn-sm {
  padding: 0.25rem 1.8rem !important;
  font-size: 0.75rem;
  border: 1px solid #4a2a75 !important;
}
.alldoctors .doctor-card-item .card .btn-sm:hover {
  background-color: #4a2a75;
  color: white !important;
}
.alldoctors .doctor-card-item .btn-outline-primary {
  border-color: #0026a3;
  color: #0026a3;
}
.alldoctors .doctor-card-item .btn-primary {
  background-color: #4a2a75;
  border-color: #4a2a75;
}

.alldoctors .doctor-card-item .card:hover {
  background: #f9fbff;
}
.page-template-default .content-area {margin-top: 0px !important;}
.page-template-default .content-area {margin-bottom: 0px !important;}
/*====our doctors page css start from here====*/
.spcltreatmnt .icon-circle{background-color:#ffffff !important;border: 2px solid #3e2165;top: -57px;width: 100px;height: 100px;}
.spcltreatmnt .row.justify-content-centersa{margin: 100px 0px 50px 0px;}
.spcltreatmnt .justify-content-centersa1{margin: 100px 0px 0px 0px;}
.page-id-1174 .footerabove {display:none;}
/*======about us page css start from here=====*/
.facilities-section {
	background-color: #fff;
}

.section-title h2 {
	color: #222;
	margin-bottom: 0.5rem;
	font-size: 2rem;
}

.section-title .lead {
	font-size: 1.1rem;
	font-weight: 400;
}

.facility-list {
	display: grid;
	gap: 1rem;
}

.facility-item {
	background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
	padding: 1.5rem;
	border-radius: 0.5rem;
	transition: all 0.3s ease-in-out;
}

.facility-item h3 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.facility-item p {
	font-size: 0.85rem;
	color: #555;
	margin-bottom: 0;
}

.bg-custom-blue {
	background-color: #3e2165;
	padding-top: 0px !important;
	padding-bottom: 0px !important;
}

.banner-view-all-link:hover {
	text-decoration: underline !important;
}

.bg-light-gradient {

	background: linear-gradient(to left, #e2e8f0, #f1f5f9, #f1f5f9);
	margin: 50px auto;
}

.commitment-box {
	background-color: #ffffff;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.commitment-icon i {
	font-size: 4rem;
	color: #333;
	margin-bottom: 1.5rem;
}

.commitment-box h2 {
	color: #222;
}

.commitment-box p.lead {
	font-size: 1.1rem;
	line-height: 1.7;
	color: #555;
}
/*======about us page css end here=====*/
/* HEALTH PACKAGES SECTION: healthpackages-page */
.healthpackages-page .tab-pane:not(.show) {
    min-height: 0;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.healthpackages-page div#packages h6 {
    font-size: 16px;
    text-align: center;
}

.healthpackages-page ul.list-unstyled {
    font-size: 13px;
    padding-left: 0px !important;
}

.healthpackages-page .package-card .text-primary.fw-bold {
    color: #3e2165 !important;
}


.healthpackages-page .d-grid.gap-2 {
    gap: 0rem !important; 
}

.healthpackages-page .package-card .btn {
    height: 40px !important; 
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600; 
    font-size: 0.95rem; 
    padding: 0.5rem 1rem; 
	    margin-bottom: 5px;
}

.healthpackages-page .package-card .btn-warning {
    background-color: #f38629 !important;
    border-color: #f38629 !important;
    color: #ffffff !important;
	    margin-bottom: -10px;
}

.healthpackages-page .package-card .btn-primary {
background-color: #3e2165 !important;
    border-color: #3e2165 !important;
    color: #ffffff !important;
}

.healthpackages-page .package-card .btn-primary::before {
    content: "\f095"; 
    font-family: "Font Awesome 6 Free"; 
    font-weight: 900; 
    margin-right: 0.5rem;
}

.healthpackages-page .card.border-0 {
    border: 2px solid #3e2165 !important;
    border-radius: 10px !important;
}
/* HEALTH PACKAGES SECTION: healthpackages-page css end here */
/*health insurance page start from here*/

.healthinsurance {

    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 100vh;
    width: 100%;
}

.healthinsurance__container {
    padding: 5rem 2.5rem; 
    width: 100%;
}

@media (min-width: 1024px) { 
    .healthinsurance__container {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
@media (min-width: 1280px) {  .healthinsurance__container {
        padding-left: 10rem;
        padding-right: 10rem;
    }
}

.healthinsurance__grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 2.5rem; 
    width: 100%;
}
@media (min-width: 768px) { 
    .healthinsurance__grid {
        grid-template-columns: repeat(2, 1fr); 
    }
}
@media (min-width: 1024px) { 
    .healthinsurance__grid {
        gap: 5rem; 
    }
}

.healthinsurance__emi-card,
.healthinsurance__reimbursement-card {
    padding: 2.5rem; 
    border-radius: 1rem; 
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    height: 100%;
}

.healthinsurance__content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 2.5rem; 
}
.healthinsurance__emi-card {
    background-color: #3e2165; 
}

.healthinsurance__reimbursement-card {
    background-color: #f38629; 
}

.healthinsurance__title {

    font-weight: 600; 

    line-height: 1.2;
    font-size: 1.875rem; 
}
@media (min-width: 1024px) { 
    .healthinsurance__title {
        font-size: 2.25rem;
    }
}

.healthinsurance__text {

    font-weight: 400; 

    font-size: 1.125rem; 
    line-height: 1.5rem; 
}
@media (min-width: 768px) { 
    .healthinsurance__text {
        line-height: 2rem; 
    }
}

.healthinsurance__title--white,
.healthinsurance__text--white {
    color: #ffffff; 
}

.healthinsurance__title--dark,
.healthinsurance__text--dark {
    color: #1c1c1c; 
}
/*health insurance page end here */
.faqsection{padding:5rem 0px;}
.faqsection .col-md-8 .accordion-button{background-color:red;background-color: #f38629;
    font-size: 20px;
    padding: 28px;border-radius: 5px !important;color: #3e2165;}
.faqsection .col-md-8 .accordion-item{border:none;}
.page-id-1335 .footerabove{display:none;}
.faqsection .col-md-8 .accordion-body{padding: 10px 10px;
    border: 1px solid #e9e9e9;
    border-radius: 10px;}

/* colors */
.bg-navy { background:#00017a !important; }

/* base box */
.cost-box {
  position: relative;
  padding: 1.8rem;
  border-radius: 14px;
  min-height: 190px;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.cost-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* header area */
.cost-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
  position: relative;
  transition: opacity .3s ease;
}

/* bouncing chevron */
.toggle-icon {
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  z-index: 3;
}
.toggle-icon svg {
  display: block;
  transition: transform .25s ease;
  animation: bounce 1.2s infinite ease-in-out;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* overlay detail (hidden by default) */
.cost-detail {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.95);
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  border-radius: 14px;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* visible state */
.cost-box.active .cost-detail {
  opacity: 1;
  pointer-events: auto;
}
.cost-box.active .toggle-icon svg {
  transform: rotate(180deg);
  animation: none;
}
.cost-box.active .cost-header {
  opacity: 0.2;
}
.appointment-doctor-bottom .vaish-appointment {max-width: none;}
.popupeverywhere .vaish-appointment{margin: 0px auto;box-shadow: none;padding: 0px;}
.popupeverywhere .modal-body{padding: 0rem 1rem 1rem 1rem;}
.page-id-1518 .footerabove{display:none;}
.privacypolicy .sectionsamepri {
    box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    margin: 20px;
    bak: white;
    background: white;
    padding: 30px;
    border-radius: 10px;
}
.page-id-1899 .footerabove{display:none;}
.heaidingpri{display: flex;
    align-content: center;
    align-items: center;}
.sectionsamepri .heaidingpri i{font-size: 1.875rem;
    font-weight: 600;
    /* font-family: 'Lato', sans-serif; */
    line-height: 1.3em;
    margin-bottom: 20px;
    padding: 0px 20px 0px 0px;}
.sectionsamepr2 {text-align: center;
    margin: 20px;
    padding: 40px;}
.page-id-1934 .footerabove{display:none;}
.intenralpage {background: #dbeafe;padding:70px 0px;}
.leftintpag h1{font-size:3.5rem;color:#2f2a6b;}
.leftintpag p{font-size:1.2rem;}
.rghtp{box-shadow: rgba(17, 12, 46, 0.15) 0px 48px 100px 0px;
    padding: 20px;
    background: #eff6ff;}
.rghtp .forminternalpge .evf-submit-container button{width: 100%;
    background: #2f2a6b;
    color: white;
    border-radius: 10px;}
.intenralpage .rghtp .btnsintpag button {
    width: 100%;
    background-color: rgb(34 197 94 / var(--tw-bg-opacity, 1));
    margin: 0px 2px;
    padding: 5px;
    margin-bottom: 5px;
    border-radius: 10px;
}
.intenralpage .rghtp .btnsintpag button a{color:white;}
.internalpage .headingfar{text-align:center;}
.internalpage .headingfar h2{color:#2f2a6b;font-weight: 900;}
.internalpage .col-md-8 .accordion-button {background-color: #4a2a75;    color: #f8b60d;}
.faqsection .accordion-flush .accordion-item br{display:none;}
.faqsection .accordion-flush .accordion-item{margin: 10px 0px;}
.faciltiesinter {padding: 60px 0px;}
.faciltiesinter .heading{text-align: center;
    margin-bottom: 30px;}
.faciltiesinter .secton{background-color: rgb(224 231 255);
    padding: 2.5rem;
    border-radius: 10px;
    margin: 10px 0px;
height: 13.5rem;}
.faciltiesinter .heading h2{color:#4a2a75;}
.faciltiesinter .secton h3{color:#4a2a75;}
.interntipatient h2{font-size: 3.25rem;
    color: #4a2a75;
    font-weight: 900 !important;
    padding: 30px 0px;}
.interntipatient .mb-5{margin-bottom: 8rem !important;}
.why-choose-us-leftcol {
    background-color: rgb(241 245 249 / var(--tw-bg-opacity, 1));
    color: #000000;
    display: block;
    align-items: initial;
    justify-content: initial;
    padding: 0;
}
.why-choose-us-leftcol .mb-3{color:#4a2a75 !important;text-align:center;}
.why-choose-us-rightcol{background-color: white !important;}
.why-choose-us-leftcol .opacity-75 {text-decoration-line: underline !important;font-weight: 900 !important;}
.why-choose-us-leftcol .hightlh{color: #4a2a75 !important;font-weight: 800 !important;}
.why-choose-us-leftcol .why-choose-us-content .highlghtinter{font-size: 1.2rem !important;}
.why-choose-us-rightcol .everest-forms #evf-2255 button{width: 100%;
    background: #4a2a75;
    border-radius: 10px;
color:white;}
.page-id-2219 .footerabove {display:none;}
.ast-archive-entry-banner[data-post-type="post"] {min-height: 372px;background:#f5f9fa;}
.blog .ast-container{max-width: 1200px !important;}
.blog .post-content .entry-title a{text-decoration: none !important;
    color: #4a2a75;
    font-weight: normal;
    font-size: 16px;}
.ast-blog-single-element.ast-taxonomy-container a{color: #363635;}
.blog .read-more a {
    display: inline-block;
    color: #4a2a75;
}
.blog .site-content {
    padding-top: 20px;
}
.single-post #primary{margin:0px;}
.single-post .ast-container{max-width:1240px !important;}
.single-post .site-content{background:white;}
.single-post .ast-single-post-featured-section{margin:0px !important;}
.single-post .entry-header {text-align:center !important;border-bottom: 1px solid #c6c6c6;}

.single-post .entry-header a{color:rgb(74 42 117)}
.single-post .entry-header .published{color:rgb(74 42 117)}