* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
::-webkit-scrollbar-thumb {
  background: #034ea1;
  border-radius: 10px;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #00b7ab6e;
  border-radius: 10px;
}
::-webkit-scrollbar {
  width: 4px;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -ms-overflow-style: scrollbar;
  -webkit-tap-highlight-color: transparent;
}
a {
  text-decoration: none;
}
body {
  font-family: "HelveticaNeue", sans-serif;
  font-size: 14px;
  color: #000;
  max-width: 1660px;
  margin: 0 auto;
  letter-spacing: 1px;
}
p, a {
  font-family: "HelveticaNeueThin" , sans-serif;
}
.container-fluid {
  width: 95%;
  margin: 0 auto;
  position: relative;
}
.container {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
.desktop-only {
  display: block;
}
.mobile-only {
  display: none;
}
/* overflow starts */

.overflow-auto {
  overflow: auto;
}
.overflow-hidden {
  overflow: hidden;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-scroll {
  overflow: scroll;
}
/* overflow Ends */

/* postion starts */

.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.fixed {
  position: fixed;
}
.static {
  position: static;
}
.sticky {
  position: sticky;
}

/* position ends */
/* Display Properties starts */
.d-block {
  display: block;
}
.d-inline {
  display: inline;
}
.d-none {
  display: none;
}
.d-inline-block {
  display: inline-block;
}
.d-grid {
  display: grid;
}
.d-inline-grid {
  display: inline-grid;
}
.d-flex {
  display: flex;
}
.d-inline-flex {
  display: inline-flex;
}
/* Display Properties ends */
.primary-color {
  color: #034ea1;
}
.secondry-color {
  color: #00b7ac;
}
.bg-gradient {
  background: linear-gradient(90deg, #034ea1 0%, #00b7ac 100%);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.no-scroll {
  overflow: hidden;
}
/* skeleton Loader */
.banner-skeleton-loader:empty {
  width: 100%;
  height: 100vh;
  cursor: progress;
  background: linear-gradient(.25turn,transparent,#fff,transparent),linear-gradient(#eee,#eee),radial-gradient(38px circle at 19px 19px,#eee 50%,transparent 51%),linear-gradient(#eee,#eee);
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: -315px 0,0 0,0 190px,50px 195px;
  animation: loading 1.5s infinite;
  }
@keyframes loading {  
  to {
    background-position: 315px 0, 0 0, 0 190px, 50px 195px;
  }
}
.data-loader{
  height: 45vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.double-spinner {
  position: relative;
}

.dbl-spinner {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background-color: transparent;
  border: 4px solid transparent;
  border-top: 4px solid #fff;
  border-left: 4px solid #fff;
  -webkit-animation: 2s spin linear infinite;
  animation: 2s spin linear infinite;
}

.dbl-spinner--2 {
  border: 4px solid transparent;
  border-right: 4px solid #009688;
  border-bottom: 4px solid #009688;
  -webkit-animation: 1s spin linear infinite;
  animation: 1s spin linear infinite;
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.splide__pagination {
  bottom: -60px !important;
}
.splide__pagination__page {
  height: 13px !important;
  width: 13px !important;
  background-color: #034da16e !important;
}
.splide__pagination__page.is-active {
  background: #034EA1 !important;
  transform: scale(1.4) !important;
  opacity: 1 !important;
  border-radius: 50%;
  outline: 1.5px dashed #034EA1 !important;
  outline-offset: 2px !important;
}
.splide__arrows {
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  z-index: 9;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 35%;
}
.splide__arrow {
  background: none !important;
  opacity: 1 !important;
}
.splide__arrow svg {
  fill: #034ea1 !important;
}
.splide__pagination__page {
  margin: 0 10px !important;
}
.section-title {
  font-size: 36px;
  margin-bottom: 35px;
  text-align: center;
  font-weight: 500;
  display: block !important;
  /* color: #034ea1; */
}
.section-title span {
  color: #00b7ac;
}
.section-padding {
  padding: 50px 0;
}
.gradient-text {
  background: linear-gradient( to right, rgba(3, 78, 161, 1), rgba(0, 183, 172, 1) );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  display: inline-block;
  /* width: max-content; */
  margin-left:auto;
  margin-right:auto;
}
.title-width{
  width: max-content;
}
/* header {
  position: sticky;
  width: 100%;
  background: #fff;
  z-index: 999;
  top: 0;
} */
#fixedmenu{
  left: 0;
  position: sticky;
  top: 0;
  transition: transform 0.7s ease;
  width: 100%;
  z-index: 99;
  box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
  background: #fff;
}
.slide-up {
  transform: translateY(-100%);
}
.main-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 5px 0;
  border-bottom: 1px solid rgba(3, 78, 161, 0.2);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
}

.location {
  display: flex;
  align-items: center;
  gap: 5px;
}
.manipal-logo{
  border-right: 1px solid rgba(3, 78, 161, 0.2);
  padding-right: 20px;
  width: 165px;
  height: 28px;
}
.casc-logo1{
  display: none !important;
}
.main-header p {
  font-size: 16px;
  color: rgba(0, 183, 172, 1);
  font-family: "HelveticaNeueRoman", sans-serif;
}
.appointment-btn {
  background: linear-gradient(90deg, #034ea1 0, #00b7ac 100%);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  height: 38px;
  width: 150px;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
}
.appointment-btn:hover {
  background: linear-gradient(90deg,  #00b7ac  0, #034ea1 100%);
}
.appointment-btn p {
  color: #fff;
  padding-left: 5px;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  color: rgba(3, 78, 161, 1);
  font-weight: 400;
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 10px 0;
  font-size: 16px;
}
.nav-list li a,
.nav-list li a span {
  color: rgba(3, 78, 161, 1);
  font-family: "HelveticaNeueRoman", sans-serif;
}
.nav-list li a:hover,
.nav-list li a span:hover,
.nav-list li a.active,
.nav-list li a.active span{
    color: #00b7ac;
    text-decoration: underline;
    text-underline-offset: 5px;
}
.submenu a.active, .hamburger-dropdown a.active, .menu-items a.active {
  color: #00b7ac;
  text-decoration: none !important;
}
.consult-now {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-wrapper {
  width: 100%;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
}
.aboutus-link img {
  margin-left: 5px;
}
.hamburger-menu {
  margin-left: auto;
}
.hamburger-menu img {
  display: block;
}

.hamburger-menu {
  position: relative;
  cursor: pointer;
}

.hamburger-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  overflow: hidden;
  opacity: 0;
  transform: translateY(10px);
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 100;
  min-width: 200px;
  border: 1px solid rgba(3, 78, 161, 0.2);
  border-radius: 10px;
  margin-top: 5px;
}

.hamburger-menu.active .hamburger-dropdown {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.hamburger-dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hamburger-dropdown ul li {
  padding: 0px 30px;
  background-color: white;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
  text-align: right;
}

.hamburger-dropdown ul li:hover {
  padding-right: 25px;
}

.hamburger-dropdown ul li a {
  text-decoration: none;
  color: #034ea1;
  display: block;
  font-size: 16px;
  border-bottom: 1px solid rgba(3, 78, 161, 0.3);
  padding: 25px 0px;
}
.hamburger-dropdown ul li:last-child a {
  border-bottom: none;
}
.hamburger-dropdown ul li a:hover{
  text-decoration: none;
  background: #fff;
}
.hamburger-menu.active .hamburger-dropdown ul li {
  opacity: 1;
  transform: translateY(0);
}

.hamburger-menu.active .hamburger-dropdown ul li:nth-child(1) {
  transition-delay: 0.1s;
}
.hamburger-menu.active .hamburger-dropdown ul li:nth-child(2) {
  transition-delay: 0.2s;
}
.hamburger-menu.active .hamburger-dropdown ul li:nth-child(3) {
  transition-delay: 0.3s;
}
.hamburger-menu.active .hamburger-dropdown ul li:nth-child(4) {
  transition-delay: 0.4s;
}

.hamburger-icon {
  transition: transform 0.4s ease;
}

.hamburger-menu.active .hamburger-icon {
  transform: rotate(180deg);
}

.aboutus-link {
  position: relative;
  cursor: pointer;
  display: flex;
}

.aboutus-icon {
  transition: transform 0.4s ease;
}

.aboutus-link.active .aboutus-icon {
  transform: rotate(180deg);
}

.aboutus-dropdown {
  position: absolute;
  top: 37px;
  left: 0;
  background-color: #fff;
  border: 1px solid rgba(3, 78, 161, 1);
  border-top: none;
  border-radius: 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.4s ease;
  z-index: 99;
  padding: 0;
  list-style: none;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.aboutus-link.active .aboutus-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.aboutus-dropdown li {
  padding: 20px 15px;
  position: relative;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}

.aboutus-dropdown li:last-child {
  border-bottom: none;
}

.aboutus-dropdown li a {
  text-decoration: none;
  color: rgba(3, 78, 161, 1);
  display: block;
  transition: color 0.3s ease, padding-left 0.3s ease;
}

.aboutus-link.active .aboutus-dropdown li:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}
.aboutus-link.active .aboutus-dropdown li:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}
.aboutus-link.active .aboutus-dropdown li:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}
.aboutus-dropdown li:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 0;
  height: 1px;
  background-color: rgba(3, 78, 161, 0.3);
  margin-top: 10px;
}
.aboutus-dropdown li a:hover {
  color: rgba(0, 183, 172, 1);
  padding-left: 10px;
}
/* video and popup css start */
.video-thumbnail-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  max-width: 100%;
}

.video-thumbnail {
  width: 100%;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  margin: auto;
  aspect-ratio: 16 / 9;
}
.patient-stories-slider .video-thumbnail, .testimonials-section .video-thumbnail{
  height: unset;
}
.custom-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 183, 172, 1);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.custom-play-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  width: 0;
  height: 0;
  border-left: 20px solid white;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.video-popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(17, 16, 16, 0.94);
  justify-content: center;
  align-items: center;
}

.video-popup-content {
  position: relative;
  max-width: 90%;
  width: 640px;
  background: #000;
  padding: 0;
  border-radius: 8px;
}

.video-popup-content::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.video-popup-content iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
  border-radius:10px;
}

.video-close-btn {
  position: absolute;
  top: -20px;
  right: -31px;
  color: #000;
  font-size: 24px;
  font-weight: bold;
  border-radius: 50%;
  padding: 4px 12px;
  cursor: pointer;
  z-index: 10;
}
/* video and popup css end */
.common-bg {
  background-image: url(../images/left-bg.webp), url(../images/right-bg.webp);
  background-position: left top 100px, right bottom;
  background-repeat: no-repeat, no-repeat;
  background-size: auto, auto;
  background-attachment: fixed;
}
.h2-common {
  font-size: 60px;
  font-weight: 500;
  line-height: 100px;
  background: linear-gradient(90deg, #034ea1 0%, #00b7ac 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  width: min-content;
  white-space: nowrap;
  margin: 0 auto;
  padding-top: 80px;
}
.text-gradient {
  background: linear-gradient(90deg, #034ea1 0%, #00b7ac 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: fit-content;
}

/*  Menu bar css */
.menu-container{
  display: none ;
}

.menu-container.open {
  width: 95%;
  transition: width 0.3s ease-in-out;
  z-index: 999;
}

.menu-items {
  display: none;
  flex-grow: 1;
  justify-content: space-around;
  position: relative;
}
.menu-items a{
  color: #034ea1;
  display: flex;
  gap: 2px;
  flex-direction: column;
  align-items: center;
  white-space: nowrap;
  line-height: 16px;
}
.menu-container.open .menu-items {
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 99;
  padding: 8px 12px;
  background-color: #fff;
  border-radius: 50px;
}

/* Submenu (Fixed Position to Avoid Overflow) */
.submenu {
  display: none;
  position: fixed;
  bottom: 86px;
  right: 10%;
  background: white;
  padding: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  white-space: nowrap;
}

.submenu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color:#034ea1;
}

.submenu a:hover {
  background: #f0f0f0;
}

.submenu.active {
  display: block;
}

/* Floating Menu Button */
.menu-btn {
  font-size: 10px;
  color: #034ea1;
  width: 55px;
  height: 55px;
  background: #ffff;
  border: 1px solid #034ea1;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  z-index: 99;
}

/* Close Button */
.close-btn {
    display: none !important;
    position: absolute;
    top: -20px;
    right: -1px;
    border-radius: 50%;
    border: none;
    z-index: 99;
    width: 20px;
    height: 20px;
}

.menu-container.open .close-btn {
  display: block !important;
}

/* Hide Close Button When Submenu is Open */
.submenu.active + .close-btn {
  display: none !important;
}

/*  Menu bar css */

/* formpopup css starts */

/* Popup Overlay */
.popup-overlay-container {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: center;
  z-index: 999;
  transform: translate(-50%, -50%);
}

/* Popup Box */
.popup-box {
  position: relative;
  background: white;
  width: 45%;
  border-radius: 24px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
#initialPopupOptions{
  padding: 30px 20px;
}
#appointmentPopupForm{
  padding: 30px;
}
#opinionPopupInfo{
  padding: 30px;
}
#opinionPopupForm{
  padding: 30px;
}
#thankYouPopup{
  padding: 60px 40px;
}
.popup-box .popup-logo{
  margin: 0 auto;
}
.popup-logo{
  width: 150px;
  height: auto;
}
.popup-logo-book {
  width: 85px;
  height: auto;
}
.popup-head-book{
  background: linear-gradient(90deg, #034ea1 0%, #00b7ac 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  width: min-content;
  white-space: nowrap;
  font-size: 26px;
  font-weight: 400;
  text-align: left;
}
.popup-head-book span{
  font-size: 16px;
  display: block;
  text-align: left;
}
.popup-box h2 {
  text-align: center;
}

.popup-btn-book {
  display: block;
  width: auto;
  padding: 12px 60px;
  margin-top: 40px;
  background: linear-gradient(90deg, #034ea1 0%, #00b7ac 100%);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 36px;
  text-align: center;
  font-family: "Helvetica", sans-serif;
  font-size: 20px;
  font-weight: 300;
}
.popup-btn-second {
  display: block;
  width: auto;
  padding: 12px 60px;
  margin-top: 24px;
  background: transparent;
  color: #034EA1;
  border: 1px solid #00b7ac;
  cursor: pointer;
  border-radius: 36px;
  text-align: center;
  font-family: "HelveticaNeue", sans-serif;
  font-size: 20px;
  font-weight: 300;
}


.button-group{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hidden-section {
  display: none;
}

.appointment-form-group, .opinion-form-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 10px;
}
#opinionPopupForm .appointment-form-group{
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 10px;
}
#opinionPopupForm input{
  margin-top: 4px;
  height: 40px;
  padding:8px 10px;
  font-size: 16px;
}
#opinionPopupForm label{
  font-size: 16px;
}
#opinionPopupForm .input-field textarea{
  margin-top: 4px;
  height: 40px;
  padding: 8px 10px;
  font-size: 16px;
}
.input-half-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

input, textarea {
  width: 100%;
  padding: 8px 15px;
  border: .5px solid #034EA14D;
  border-radius: 10px;
  height: 40px;
  margin-top: 4px;
  font-size: 16px;
  font-family: 'HelveticaNeueThin';
  color: #707070;
}
.select2-container .select2-selection--single{
  border: .5px solid #034EA14D;
  border-radius: 10px !important;
  height: 40px !important;
}
.select2-container .select2-selection--single .select2-selection__rendered{
  display: flex !important;
    align-items: center;
    height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow{
  height: unset !important;
  top: 0px !important;
  bottom: 0px !important;
}
.select2-container--default .select2-selection--single .select2-selection__clear{
  height: 40px !important;
}
.iti{
  display: block !important;
}
.submit-popup-btn {
  margin-top: 32px;
  width: 100%;
  background: linear-gradient(90deg, #034ea1 0%, #00b7ac 100%);
  color: white;
  border: none;
  padding: 18px;
  cursor: pointer;
  border-radius: 36px;
  font-size: 20px;
  line-height: 1.2;
  font-family: "HelveticaNeue", sans-serif;
}

.popup-close-btn {
  position: absolute;
  right: -10px;
  top: -10px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
}

.opinion-info-section {
  padding: 10px;
}
.popup-head{
  background: linear-gradient(90deg, #034ea1 0%, #00b7ac 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  width: min-content;
  white-space: nowrap;
  margin: 0 auto;
  font-size: 36px;
  font-weight: 400;
  margin-top: 10px;
}
.popup-text{
  color: #034EA1;
  margin-top: 12px;
  font-size: 24px;
  text-align: center;
}
.popup-para{
  font-size: 16px;
  line-height: 27px;
  font-family: 'HelveticaNeueThin';
  color: #202124;
  margin-bottom: 12px;
  margin-top: 15px;
}
.popup-ul-head{
  font-size: 16px;
  line-height: 32px;
  font-family: 'HelveticaNeueThin';
  color: #202124;
}
.rotated-square {
  display: inline-block;
  width: 10px; 
  height: 10px;
  background-color:#034ea1;
  transform: rotate(45deg);
  position: relative;
  margin-right: 10px;
}
.popup-ul{
  font-size: 20px;
  line-height: 32px;
  font-family: 'HelveticaNeueThin';
  color: #424757;
  list-style: none;
}
.square-with-tick {
  display: inline-block;
  width: 15px; 
  height: 15px;
  background-color: green; 
  position: relative;
  border-radius: 4px; 
  margin-right: 8px;
}
.popup-ul li{
  font-size: 16px;
}
.square-with-tick::after {
  content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 2px;
    height: 5px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
}
.second-option-btns{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}
.popup-btn{
  width: 100%;
  background: linear-gradient(90deg, #034ea1 0%, #00b7ac 100%);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  border-radius: 36px;
  font-size: 16px;
  line-height: 1.2;
  font-family: "HelveticaNeue", sans-serif;
}
.popup-btn-non{
  text-decoration: underline;
  text-underline-offset: 4px;
  border: none;
  background: transparent;
  color: #034EA1;
  cursor: pointer;
  font-size: 16px;
  line-height: 1.2;
  font-family: "HelveticaNeue", sans-serif;
}
.book-app-head{
  display: flex;   
  align-items: center;
  justify-content: space-between;
}
#thankYouPopup .book-app-head {
  justify-content: space-evenly;
}
#thankYouPopup .popup-head-book{
  text-align: left;
}
#thankYouPopup .popup-head-book span{
margin-top: 8px;
}
.book-app-head p{
  font-size: 20px;
  line-height: 20px;
  color: #034EA1;
}
.appointment-form-group label{
  font-size: 14px;
  color: #034EA1;
  margin-bottom: 5px;
}
.appointment-form-group input{
  border: .5px solid #034EA14D;
}
.input-field textarea {
  resize: none; 
  overflow: hidden; 
  height: 40px;
  margin-top: 4px;
  font-size: 16px;
  font-family: 'HelveticaNeueThin';
}
.phone-input-wrapper {
  display: flex;
  align-items: center;
  border: .5px solid #034EA14D;
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  height: 40px;
  margin-top: 4px;
  font-size: 16px;
  font-family: 'HelveticaNeueThin';
  color: #707070;
}

.phone-prefix {
  white-space: nowrap;
  color: #707070;
  font-size: 16px;
}
.phone-input-wrapper input {
  border: none;
  outline: none;
  flex: 1;
  margin-top: 0px !important;
  padding: 0px 0px 0px 5px !important;
  height: auto !important;
}
.error{
  color: #c61c1a;
  font-size: 12px;
  padding: 0px 10px;
  position: absolute;
    left: 0;
    bottom: -18px;
}
/* formpopup css ends */

/* footer css start */
.foter-bg{
  background-color: rgba(2, 18, 18, 1);
  padding: 40px 0px;
}
.footer-main{
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 20px;
}
.footer-logo{
  display: flex;
  align-items: center;
  gap: 25px;
}
.footer-address{
  color: #fff;
  margin: 30px 0px;
}
.footer-address p{
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 15px;
}
.footer-address p span, .footer-address p a{
  font-family: 'HelveticaNeue', sans-serif;
  color: #ffff;
}
.footer-address p:last-child{
  margin-bottom: 0px;
}
.social-media{
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-menu{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  color: #fff;
  border: 1px solid #034EA1;
  padding: 20px 15px;
  border-radius: 10px;
  height: fit-content;
}
.footer-menu-items h4{
  font-size: 18px;
  margin-bottom: 20px;
}
.footer-menu-items ul li{
  list-style: none;
  margin-bottom: 15px;
}
.footer-menu-items ul li:last-child{
  margin-bottom: 0px;
}
.footer-menu-items ul li a{
  color: #fff;
  font-size: 16px;
  transition: transform 0.3s ease-in-out;
  display: inline-block;
}
.policy-pages{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
}

.policy-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.policy-links a {
  text-decoration: none;
  color: #ffff;
  padding: 0px 10px;
  font-size: 16px;
  font-family: 'HelveticaNeueRoman', sans-serif;
}

.policy-links a:not(:last-child) {
  border-right: 2px solid #fff; 
}
.copy-right{
  color: #ffff;
  font-size: 16px;
  font-family: 'HelveticaNeueRoman', sans-serif;
}
.social-media a{
  display: inline-block;
  transition: transform 0.3s ease-in-out;
}

.social-media a:hover, .footer-menu-items ul li a:hover {
  transform: translateX(5px);
}

.dropdown-btn {
  width: 100%;
  background: rgba(2, 18, 18, 1);
  color: #fff;
  border: none;
  padding: 12px 0px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease-in-out;
  border-bottom: 1px solid #fff;
}
.about-dropdown{
  border-top: 1px solid #fff;
}
.dropdown-arrow {
  font-size: 18px;
  transition: transform 0.3s ease-in-out;
}
.dropdown-content {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
  background: rgba(2, 18, 18, 1);
  transition: max-height 0.4s ease-in-out, padding 0.3s ease-in-out;
}
.dropdown-content a{
  color: #ffff;
  font-size: 16px;
}

.dropdown-content li {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.footer-dropdown.active .dropdown-btn{
  border-bottom: none;
  padding: 12px 0px 0px;
}
.footer-dropdown.active .dropdown-content {
  max-height: 200px;
  padding: 10px 0px 0px;
}

.footer-dropdown.active .dropdown-content li {
  opacity: 1;
  transform: translateY(0);
  padding-bottom: 10px;
}
.footer-dropdown.active .dropdown-content li:nth-child(1) {
  transition-delay: 0.1s;
}
.footer-dropdown.active .dropdown-content li:nth-child(2) {
  transition-delay: 0.2s;
}
.footer-dropdown.active .dropdown-content li:nth-child(3) {
  transition-delay: 0.3s;
}
.footer-dropdown.active .dropdown-content li:nth-child(4) {
  transition-delay: 0.4s;
}
.footer-dropdown.active .dropdown-content li:last-child{
  border-bottom: 1px solid #fff;
}
.footer-dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}
.center-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-bottom: 10px;
}
.center-heading::before,
.center-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: rgba(95, 95, 95, 1);
  margin: 0 10px;
}
/* footer css end */

/* 404 page css start */
.error-page{
  position: relative;
}
.error-page::before{
    content: "";
    position: absolute;
    top: 4%;
    bottom: 0%;
    left: 25px;
    width: calc(100% - 50px);
    background-image: radial-gradient(rgba(3, 78, 161, 0.2) 1px, transparent 1px);
    background-size: 10px 10px;
    z-index: 0;
    overflow: hidden;
    max-width: 100%;
}
.error-page-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  padding: 80px 0px;
}
.error-page-content p:first-of-type {
  font-size: 32px;
  font-family: "HelveticaNeue", sans-serif;
}

.error-page-content p:last-of-type {
  font-size: 24px;
  color: #034EA1;
  font-family: "HelveticaNeue", sans-serif;
}
.explore-btn {
  background: linear-gradient(90deg, #034ea1 0, #00b7ac 100%);
  border-radius: 5px;
  color: #fff;
  font-size: 20px;
  display: block;
  width: max-content;
  padding: 10px 30px;
  border-radius: 20px;
  position: relative;
}
.casc-thankyou{
  width: 22%;
  background: #fff;
}
/* 404 page css end */

.grecaptcha-badge {
  visibility: hidden;
}
#breadcrumb {
  list-style: none;
  padding: 10px 20px;
  font-size: 16px;
}
#breadcrumb li {
  display: inline;
  color: rgb(80 72 72);;
}
#breadcrumb li a:hover{
  text-decoration: none;
}
#breadcrumb a {
  text-decoration: none;
  color: rgba(95, 95, 95, 1);
}
#breadcrumb a:hover {
  color: #034ea1;
}
.appointment-btn a{
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "HelveticaNeue", sans-serif;
}
.bg-menubar{
  background: linear-gradient(#fff0, #20212466);
  width: 100%;
  height: 112px;
  bottom: 0;
  right: 0;
  position: fixed;
  display: none;
  z-index: 0; 
}
.menu-container.open .bg-menubar {
  display: flex; 
}
.social-media svg{
  height: 50px;
  width: 50px;
}
.popup-btn-book-goback{
  position: absolute;
  top: 15px;
  left: 15px;
  padding: 8px 20px;
  color: #fff;
  border: none;
  background: linear-gradient(90deg, #034ea1 0%, #00b7ac 100%);
  border-radius: 36px;
  cursor: pointer;
}
.input-field{
  position: relative;
}
.iti__country-container {
  pointer-events: none; 
}
.desktop-hide{
  display: none;
}
.mobile-hide{
  display: block;
}
/* media query starts */
@media (max-width: 1199px) {
  .policy-links a{
    font-size: 14px;
  }
  .copy-right{
    text-align: center;
    line-height: 26px;
    font-size: 14px;
  }
  .popup-box{
    width: 75%;
  }
  .error-page-content:first-child p {
    font-size: 24px;
    text-align: center;
  }
  .explore-btn {
    font-size: 16px;
  }
  .error-page-content {
    padding: 40px 0px;
  }
  .error-page::before{
    left: unset;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .container {
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
  }
  .container-fluid {
    width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 15px;
}
.footer-main{
  display: block;
}
.desktop-only{
  display: none;
}
.social-media{
  margin-top: 35px;
  justify-content: center;
}
.popup-box {
  width: 85%;
}
.popup-head-book {
  font-size: 24px;
}
#opinionPopupForm label {
  font-size: 16px;
}
#opinionPopupForm input {
  height: 35px;
  padding: 5px 10px;
  font-size: 14px;
}
.phone-input-wrapper {
  height: 35px;
  font-size: 14px;
}
#opinionPopupForm .input-field textarea {
  height: 35px;
  padding: 5px 10px;
  font-size: 14px;
}
.submit-popup-btn {
  padding: 15px;
  font-size: 16px;
}
.nav-list {
  gap: 10px;
  font-size: 14px;
}
}
@media (max-width: 991px) {
  .nav-list li a, .nav-list li a span{
    letter-spacing: 0;
  }
}
@media (max-width: 768px) {
  .mobile-only {
    display: block;
}
.footer-menu{
  display: block;
  border: none;
  padding: 0px;
}
.policy-pages {
  flex-direction: column;
  gap: 25px;
  justify-content: center;
  margin-top: 25px;
}
}
/* Mobile (Up to 767px) */
@media (max-width: 767px) {
  .casc-logo {
    padding-left:5px;
    margin-left: 0px;
  }
  .main-header {
    gap: 5px;
    /* padding: 18px; */
  }
  .appointment-btn p{
    font-size: 12px;
  }
  .appointment-btn{
    padding: 8px;
    height: auto;
    width: auto;
    border-radius: 8px;
  }
  .appointment-btn svg{
    height: 20px;
    width: 20px;
  }
  .casc-logo{
    width: 45px;
  }
  .casc-logo svg{
    width: 100%;
  }
  .menu-container {
    position: fixed;
    bottom: 12px;
    right: 10px;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    width: 55px; 
    transition: width 0.2s ease-in-out ;
    z-index: 99;
  }
  .nav-wrapper{
    display: none;
  }

.footer-dropdown.active .dropdown-content {
  max-height: 200px;
}
  .common-bg {
    background-position: left top 65px, right bottom;
    background-size: 65%, 65%;
  }
  .casc-thankyou {
    width: 40%;
}
#initialPopupOptions{
  padding: 15px;
}
.popup-btn-book, .popup-btn-second{
  margin-top: 20px;
  width: 180px;
  padding: 10px 0px;
}
.popup-head{
  margin-top: 10px;
}
.popup-logo {
  width: 180px;
  height: 190px;
}
.popup-close-btn {
  right: -15px;
  top: -15px;
}
.h2-about{
  white-space: unset !important;
  width: auto !important;
  padding-left: 15px;
  padding-right: 15px;
}
.h3-aboutus-text{
  width: 100% !important;
}
.appointment-form-group{
    max-height: 350px;
    overflow-y: auto;
    padding-right: 5px;
}
.policy-links{
    column-gap: 10px;
    row-gap: 15px;
}
.policy-links a{
  padding: 0px 10px;
}
.policy-links a:nth-last-child(2) {
  border-right: none;
}
.desktop-hide{
  display: block;
}
.mobile-hide{
  display: none;
}
.consult-now {
    background: linear-gradient(90deg, #034ea1 0, #00b7ac 100%);
    border-radius: 8px;
    color: #fff;
    text-align: center;
    padding: 15px;
    font-size: 18px;
}
.menu-items a{
  gap: 0px;
}
}
@media (max-width: 499px) {
  .footer-address {
    margin: 15px 0px 30px;
  }
  .social-media svg{
    height: 32px;
    width: 32px;
  }
  .footer-logo a:first-child img {
    width: 152px;
    height: 32px;
}
.foter-bg {
  padding: 30px 0px;
}

.footer-address p {
  font-size: 16px;
  margin-bottom: 10px;
}
.footer-address p:first-child{
  text-align: center;
}

.footer-logo{
  justify-content: center;
}
.head-office{
  display: none;
}
.popup-box {
  width: 90%;
}
.popup-text {
  font-size: 16px;
}
.popup-head{
  font-size: 32px;
}
.popup-btn-book,.popup-btn-second{
  font-size: 14px;
}
.popup-head-book{
  white-space: pre-line;
  width: 65%;
  font-size: 22px;
  margin-top: 35px;
}
#appointmentPopupForm {
  padding: 15px;
}
.popup-box h2 {
  text-align: left;
}
.popup-logo-book {
  width: 70px;
  height: 78px;
}
input, textarea {
  padding: 12px;
  border-radius: 10px;
  height: 35px;
  margin-top: 4px;
  font-size: 14px;
}
.input-field textarea {
  height: 35px;
  margin-top: 4px;
  font-size: 12px;
  line-height: 12px;
}
.submit-popup-btn {
  margin-top: 20px;
  padding: 10px;
  font-size: 12px;
}
.appointment-form-group label {
  font-size: 12px;
}
.input-half-section {
  grid-template-columns: 1fr;
  gap: 20px;
}
.appointment-form-group, .opinion-form-group {
  gap: 20px;
}
.popup-close-btn svg{
  width: 30px;
}
.input-half-section {
  gap: 20px;
}
#thankYouPopup {
  padding: 40px 16px;
}
#thankYouPopup .book-app-head {
  justify-content: space-between;
}
#thankYouPopup .popup-head-book {
  text-align: left;
  font-size: 20px;
  width: auto;
}
.popup-head-book span {
  font-size: 12px;
  white-space: normal;
}

.policy-links a, .copy-right{
  font-size: 16px;
}
#opinionPopupInfo {
  padding: 15px;
}
#opinionPopupInfo .popup-head-book{
  white-space: pre-line;
  font-size: 20px;
  width: 80%;
}
.popup-para {
  font-size: 12px;
  line-height: 20px;
  width: 100%;
  margin-bottom: 12px;
  font-weight: 300;
}
.popup-ul-head {
  font-size: 12px;
  line-height: 20px;
  font-family: 'HelveticaNeueThin';
  color: #202124;
}
.rotated-square {
  width: 10px;
  height: 10px;
}
.popup-ul {
  font-size: 12px;
  line-height: 20px;
}
.square-with-tick {
  width: 15px;
  height: 15px;
}
.square-with-tick::after {
  width: 3px; 
  height: 6px;
}
.second-option-btns {
  grid-template-columns: 1fr;
  margin-top: 15px;
}
.popup-btn {
  padding: 8px;
  font-size: 12px;
  line-height: 1.2;
  width: 80%;
  margin: 0 auto;
}
.popup-btn-non {
  font-size: 12px;
  line-height: 20px;
}
#opinionPopupForm {
  padding: 15px;
}
#opinionPopupForm .popup-head-book span {
  font-size: 16px;
  white-space: normal;
  display: inline-block;
  padding-left: 6px;
}
#opinionPopupForm label {
  font-size: 12px;
}
#opinionPopupForm input {
  margin-top: 4px;
  height: 35px;
  padding: 4px 14px;
  font-size: 12px;
}
#opinionPopupForm .input-field textarea {
  margin-top: 4px;
  height: 35px;
  padding: 8px 12px;
  font-size: 12px;
  line-height: 20px;
}
.footer-logo a:last-child img {
    width: 62px;
    height: 67px;
}
  .footer-address p::before { 
    content: none; 
  }
  .splide__arrows {
    width: 100% !important;
}
.phone-prefix {
  font-size: 14px;
}
.phone-input-wrapper {
  padding: 0px 10px;
  height: 35px;
}
.error-page-content p:first-of-type {
  font-size: 26px;
}
.error-page-content p:last-of-type {
  font-size: 22px;
  line-height: 32px;
}
#medical_reports{
  line-height: 26px;
}
.manipal-logo{
  padding-right: 15px;
  width: 110px;
  height: 22px;
}
.menu-container.open .menu-items {
  gap: 8px;
}
.menu-items a{
  font-size: 12px;
}
}
@media (max-width: 375px) {
.popup-head {
  font-size: 24px;
}
.popup-btn-book, .popup-btn-second {
  font-size: 16px;
}
.input-half-section {
  gap: 12px;
}
#opinionPopupForm .appointment-form-group {
  gap: 12px;
}
.popup-close-btn svg {
  width: 35px;
}
.error {
  font-size: 10px;
  padding: 0px 4px;
  bottom: -12px;
}
}

@media (max-width: 320px) {
.policy-links a, .copy-right {
  font-size: 14px;
}
.manipal-logo {
  padding-right: 10px;
  width: 100px;
  height: 18px;
}
.appointment-btn {
      padding: 10px 5px;
}
.appointment-btn a{
  gap: 5px;
}
.appointment-btn svg {
        height: 15px;
        width: 15px;
}
}
/* media query ends */