* {
    font-family: Montserrat, Helvetica, 'Open Sans', sans-serif;
    -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;
}
.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__arrow:disabled svg path {
  fill: grey;
  cursor: not-allowed;
}
.splide__pagination__page {
  margin: 0 10px !important;
}
.section-title {
  font-size: 36px;
  margin-bottom: 35px;
  text-align: center;
  
  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: 10px 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);
  
}
.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);
  
}
.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;
}


/* 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;
}



.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 */


.appointment-btn a{
  color: #fff;
  
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-size: 18px;
}
.grecaptcha-badge{
  display: none !important;
}

/* 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;
  }
  .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%;
}
.footer-logo a:last-child img {
    width: 62px;
    height: 67px;
}
  .footer-address p::before { 
    content: none; 
  }
  .splide__arrows {
    width: 100% !important;
}

}

/* media query ends */