@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

body {
  font-size: 14px;
  color: #585754;
  line-height: 28px;
  font-weight: 400;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  font-family: 'Poppins', sans-serif;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  background: none;
  font-weight: 600;
  line-height: 1.2em;
  font-family: 'Poppins', sans-serif;
}

h1 {
  font-size: 50px;
  color: #0F4D7E;
}

h2 {
  font-size: 27px;
  color: #027876;
}

h3 {
  font-size: 30px;
  color: #0F4D7E;
}

h4 {
  font-size: 19px;
  color: #404040;
}

h5 {
  font-size: 20px;
  color: #0F4D7E;
}

h6 {
  font-size: 17px;
  color: #0F4D7E;
}

/*section {
  position: relative;
}
*/
textarea {
  overflow: hidden;
  resize: none;
}

button {
  background-color: transparent;
  outline: none !important;
  cursor: pointer;
  min-width: auto;
}

p, .text {
  font-size: 14px;
  line-height: 30px;
  color: #585754;
  font-weight: 400;
}

.image_box img{
  width: 100%;
  margin-bottom: 5%;
}

.section_heading{
  position: relative;
  margin-bottom: 3%;
}

.section_heading h1 {
  display: block;
  font-size: 28px;
  line-height: 30px;
  color: #363636;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.section_heading h1::after {
  content: "";
  display: block;
  width: 100px;
  height: 5px;
  background-color: #b1c9c8;
  margin: auto;
  margin-top: auto;
  margin-top: 10px;
}

.section_heading h2 {
  display: block;
  font-size: 28px;
  line-height: 30px;
  color: #027876;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
}

.section_heading p{
  text-align: center;
  font-size: 14px;
  color: #333;
}

.btn {
  display: inline-block;
  padding: 5px 15px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 1%;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  -webkit-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  /*background-color: #01a858;*/
}

.cust_btn{
  padding: 11px 35px;
  border: 1px solid #fff;
  border-radius: 0;
  background-color: #0F4D7E;
  -webkit-transition: border-color .5s,color .5s,background-color .5s;
  transition: border-color .5s,color .5s,background-color .5s;
  color: #fff;
  font-weight: 600;
  text-align: left;
  text-transform: uppercase; 
}

.cust_btn:hover{
  background-color: #fff;
  border: 1px solid #0F4D7E;
  color: #0F4D7E;
}

.bg_grey{
  background-color: #eee;
}

.bg_blue{
  background-color: #0F4D7E;
}

.bg_blue p, .bg_blue h2{
  color: #fff;
}

.image-box{
  text-align: center;
}

.image-box img{
  margin-bottom: 5%;
}

/*---------- Header Css Starts -----------*/

.navbar{
  background-color: #fff;
  border-top: 2px solid #000000;
}

.navbar{
  padding: 0;
}

.navbar-brand img{
  max-width: 280px;
  height: auto;
}

.navbar-light .navbar-nav .nav-link {
  color: #333;
  font-size: 16px;
  font-weight: 600;
}

.navbar-light .navbar-nav .nav-link:hover{
  color: #027876;
}

/*.navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .show > .nav-link {
  color: #fff;
}*/

.navbar-expand-lg .navbar-nav .nav-link {
  padding: 1rem 1rem;
}

.dropdown-menu {
  position: absolute;
  top: 97%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0 0;
  margin: .125rem 0 0;
  font-size: 1rem;
  color: #fff;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 0rem;
}

.dropdown-menu .dropdown-item{
  color: #777;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all .5s;
  -moz-transition: all .5s;
  -ms-transition: all .5s;
  -o-transition: all .5s;
  transition: all .5s;
}

.dropdown-item:focus, .dropdown-item:hover {
  color: #fff;
  text-decoration: none;
  background-color: #027876;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu>.dropdown-menu {
  top: 15%;
  left: 100%;
  margin-top: -6px;
  margin-left: -1px;
  -webkit-border-radius: 0 6px 6px 6px;
  -moz-border-radius: 0 6px 6px;
  border-radius: 0 6px 6px 6px;
}

.dropdown:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu:hover>.dropdown-menu {
  display: block;
}

.dropdown-submenu>a:after {
  display: block;
  content: " ";
  float: right;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
  border-width: 5px 0 5px 5px;
  border-left-color: #ccc;
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown-submenu:hover>a:after {
  border-left-color: #fff;
}

.header_icon{
  margin: 0;
  padding: 0;
}

.header_icon li{
  list-style: none;
  padding: 0px 15px;
  cursor: pointer;
}

.header_icon{
  position: relative;
}

.header_icon li, .header_icon li a{
  font-size: 18px;
  color: #fff;
}

.header_icon .search-box{
  background: #0F4D7E;
  position: absolute;
  top: 45px;
  right: 0px;
  width: 350px;
  padding: 5px;
  display: none;
  z-index: 999;
}

.header_icon .search-box input{
  position: relative;
}

.search_btn{
  display: inline-block;
  padding: 8px 15px;
  border-radius: 0px;
  font-size: 14px;
  color: #fff;
  margin-bottom: 0%;
  background-color: #0f4d7e;
}

/*---------- Header Css Ends -----------*/



/* ---- Banner CSS Starts ------*/


/*.banner{
  background: url(../images/banner-bg.png);
  background-color: #ddfffe;
}*/

.banner_carousel{
  padding-top: 15%;
}

.banner_caption h2 {
    text-transform: uppercase;
    font-size: 32px;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 42px;
    color: #ffffff;
}

.banner_caption p{
  color: #ffffff;
  font-weight: 600;
}

.banner_caption p i{
  background-color: #027876;
  border-radius: 50%;
  padding: 5px;
  color: #fff;
  margin-right: 5px;
}


.banner_form{
  margin-top: 10%;
  margin-bottom: 15%;
  text-align: center;
  background-color: #fcfcfc;
  border-radius: 16px;
  box-shadow: 0 0 20px rgb(0 0 0 / 14%);
  padding: 15px 25px 25px 25px;
}

.banner_form .form_heading{
  margin-bottom: 1%;
}

.banner_form .form_heading h5{
  color: #2B2B2B;
  font-size: 14px;
  margin-top: 0;
}

.banner_form .form_heading h4{
  color: #007c7a;
  font-size: 18px;
  margin-bottom: 10px;
}

.banner_form .form_heading p{
  font-size: 0.8rem;
  color: #666;
}

.banner_form .book-now-btn {
  width: 100%;
  border-radius: 0.25rem;
  font-weight: 500;
  background-image: linear-gradient(to right, #007c7a, #274040);
  color: #fff;
  line-height: 1.2;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.6rem 1rem;
}


.breadcrumb-background-image {
  background-image: linear-gradient(rgb(3 121 119), rgba(0, 0, 0, 0.5)), url(../images/slide2.jpg);
  background-size: cover;
  background-position: bottom;   
  background-repeat: no-repeat;
  position: relative;
  background-color: #001f65;
}

.breadcrumb-background-image h2{
  text-align: center;
  color: #fff;
  padding-top: 5%;
  font-weight: 700;
  text-transform: uppercase;
}

.breadcrumb {
  border-radius: 0;
  background-color: transparent;
  padding: 1% 0 1% 0;

}
.breadcrumb li, .breadcrumb li a {
  font-size: 15px;
  color: #fff;
  text-decoration: none;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: .5rem;
  padding-left: .5rem;
  color: #fff;
  content: "/";
}

/* ---- Banner CSS Ends ------*/

/* About Us CSS Starts */

.about_us{
  padding: 3% 0% 1% 0%;
  background-color: #ffffff;
}

.about_content{
  padding-top: 10%;
}

.about_content p{
  margin-bottom: 10px;
  font-weight: 600;
}

.about_content p i{
  background-color: #027876;
  border-radius: 50%;
  padding: 5px;
  color: #fff;
  margin-right: 5px;
}

.about_image{
  padding: 5%;
}

/* About Us CSS Ends */

/* Our Services CSS Starts */

.our_services{
  padding: 60px 0;
  background-color: #f7fbff;
}

.services-carousel-wrap{
  position: relative;
  padding: 30px 50px;
  background: #027876;
  border-radius: 20px;
}

.services-carousel{
  display: flex;
  gap: 25px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.service-card{
  min-width: calc(33.333% - 17px);
  max-width: calc(33.333% - 17px);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
}

.service-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(2,120,118,0.18);
}

.service-card-img{
  position: relative;
  overflow: hidden;
  height: 220px;
}

.service-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img{
  transform: scale(1.08);
}

.service-card-btn{
  display: inline-block;
  padding: 10px 24px;
  background: #ef4444;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: background 0.3s ease;
  border: none;
  margin-top: 12px;
}

.service-card-btn:hover{
  background: #dc2626;
  color: #fff;
}

.service-card-body{
  padding: 20px;
  text-align: center;
}

.service-card-body h3{
  font-size: 18px;
  font-weight: 700;
  color: #027876;
  margin-bottom: 10px;
}

.service-card-body p{
  font-size: 13px;
  color: #666;
  line-height: 1.7;
  margin: 0;
}

/* Carousel Arrows */
.services-arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #027876;
  font-size: 18px;
  cursor: pointer;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: background 0.3s ease, transform 0.3s ease;
}

.services-arrow:hover{
  background: #e0f5f5;
  transform: translateY(-50%) scale(1.1);
}

.services-arrow-left{
  left: 0;
}

.services-arrow-right{
  right: 0;
}

@media(max-width:991px){
  .service-card{
    min-width: calc(50% - 13px);
    max-width: calc(50% - 13px);
  }
  .services-carousel-wrap{
    padding: 0 45px;
  }
}

@media(max-width:575px){
  .service-card{
    min-width: 100%;
    max-width: 100%;
  }
  .services-carousel-wrap{
    padding: 0 40px;
  }
  .services-arrow{
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .service-card-img{
    height: 180px;
  }
}

/* Our Services CSS Ends */

/* Testimonial CSS Starts */

.testimonial{
  padding: 3% 0%;
  background-color: #F3F7FB;
}

.testimonial_box {
  padding: 50px;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.testimonial_info{
  border-top: 1px solid #DAE5F0;
  padding-top: 10px;
}

.testimonial_info h3{
  font-size: 16px;
  margin: 0;
}

/* Testimonial CSS Ends */


/* Book Appointment CSS Starts */

.book_appointment{
  padding: 3% 0%;
  /*background-color: #F3F7FB;*/
  background-color: #027876;
}

/* Book Appointment CSS Ends */


/*---------- Footer Css Starts -----------*/

.footer{
  /*background: #f0f0f0;*/
  background-color: #eee;
  padding: 2% 0%;
}

.footer .footer_logo{
  /*text-align: center;*/
  margin-top: 30px;
}

.footer .footer_logo img{
  width: auto;
  margin-bottom: 5%;
}

.footer p{
  color: #333;
}

.footer .footer_title h3{
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
  color: #333;
  letter-spacing: 0;
  position: relative;
  margin-top: 30px;
  margin-bottom: 30px;
  text-transform: uppercase;
  padding-bottom: 14px;
}

.footer .footer_title h3:after {
  content: "";
  width: 50px;
  height: 4px;
  background: #2c4b80;
  position: absolute;
  bottom: -4px;
  right: 0;
  left: 0;
  margin-left: 0;
  border-radius: 0;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  z-index: 0;
}

.footer ul{
  margin: 0;
  padding: 0;
}

.footer ul li{
  list-style: none;
  color: #333;
  padding: 2% 0%;
}

.footer .footer_links li {
  margin-bottom: 0px;
}

.footer .footer_links li a {
  font-size: 15px;
  color: #333;
  text-decoration: none;
}

.footer .footer_links li a:hover {
  color: #2c4b80;
}

.footer .address li {
  padding: 0px 0px 16px 40px;
  position: relative;
}

/*.footer .address li i {
    color: #ea7329;
    position: absolute;
    left: 0px;
    top: 0px;
    font-size: 22px;
    width: 35px;
    height: 35px;
    text-align: center;
    border: 1px solid #ea7329;
    padding: 5px;
}*/

.footer .address li i {
  color: #333;
  position: absolute;
  left: 0px;
  top: 0px;
  font-size: 22px;
  width: 35px;
  height: 35px;
  text-align: center;
  border: 1px solid #666;
  padding: 5px;
}

.footer .address li .desc a{
  color: #333;
  text-decoration: none;
}

.footer .address li .desc a:hover{
  color: #2c4b80;
}

.footer_social ul {
  margin: 0;
  padding: 0;
}

.footer_social li {
  display: block;
  margin-right: 5px;
}

.footer_social li a {
  color: #333;
  transition: all 0.3s ease;
  text-decoration: none !important;
  outline: none !important;
}

.footer_social li a:hover i{
  color: #2c4b80;
  /*background: #fb5e75;*/
}


.footer_social li a:hover{
  color: #2c4b80;
  /*background: #fb5e75;*/
}

.footer_social li a i {
  font-size: 15px;
  margin-right: 8px;
  transition: all .8s ease;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  color: #fff;
  background: #333;
  text-align: center;
  display: inline-block;
}

/*---------- Footer Css Ends -----------*/



/*---------- Copyright Css Starts -----------*/

.copyright{
  padding: 10px 0;
  background: #2e2e2e;
  text-align: center;
}

.copyright h6 {
  padding-top: 5px;
  margin: 0;
  font-size: 14px;
  color: #fff;
}

/*---------- Copyright Css Ends -----------*/


/*---------- Copyright Social Css Starts -----------*/


.copyright_social{
  float: right;
}

.copyright_social ul{
  margin: 0;
  padding: 0;
}

.copyright_social ul li{
  list-style: none;
  display: inline-block;
  padding: 0px 10px;
}

.copyright_social ul li a i{
  color: #fff;
  transition: all 0.1s;
}

.copyright_social ul li a i:hover{
  transform: scale(1.2);
}

/*---------- Copyright Social Css Ends -----------*/



/*---------- Back to Top Css Starts -----------*/

#button {
  position: fixed;
  bottom: 40px;
  right: 30px;
  transition: background-color .3s, 
  opacity .5s, visibility .5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button i{
  text-align: center;
  height: 40px;
  font-size: 24px;
  width: 42px;
  border-radius: 4px;
  color: #fff;
  line-height: 36px;
  transition: all 0.3s ease 0s;
  background: #333  ;
  margin-left: 2px;
  box-shadow: 0 0 2px #54595f;
}
#button i:hover {
  cursor: pointer;
  background-color: #0d1a2f;
  border-radius: 4px;
}
#button:active {
  background-color: #0d1a2f;
}
#button.show {
  opacity: 1;
  visibility: visible;
}


/*---------- Back to Top Css Ends -----------*/



/* Button CSS Starts */

.btn {
  padding: 12px 25px;
  font-weight: 500;
  background: none;
  color: #111121;
  border-radius: 5px;
  border: none;
  position: relative;
  overflow: hidden;
  /* z-index: 9; */
  box-shadow: 0px 15px 35px rgb(0 0 0 / 10%);
  cursor: pointer;
  }
  .btn:hover {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  .btn.btn-theme {/* background: rgb(255,83,81); */background: linear-gradient(90deg, rgba(255,83,81,1) 0%, rgba(252,42,126,1) 90%);color: #ffffff;}
  .btn.btn-theme:hover{/* background: rgb(255,83,81); */background: linear-gradient(90deg, rgba(252,42,126,1) 0%, rgba(255,83,81,1) 90%);}
  .insideText {
  color: rgba(255,0,0,0.040);
  font-size: 100px;
  font-weight: 900;
  left: 50%;
  line-height: 200px;
  overflow: hidden;
  position: absolute;
  text-align: center;
  text-transform: uppercase;
  top: 50%;
  white-space: nowrap;
  width: 100%;
  z-index: 0;
  }

/*--translate-XY--*/
  .insideText{transform: translateX(-50%) translateY(-50%); -webkit-transform: translateX(-50%) translateY(-50%); -o-transform: translateX(-50%) translateY(-50%); -ms-transform: translateX(-50%) translateY(-50%); -moz-transform: translateX(-50%) translateY(-50%);}
  @keyframes jello {
    from, 11.1%, to {
      transform: none;
    }
    
    22.2% {
      transform: skewX(-12.5deg) skewY(-12.5deg);
    }
    
    33.3% {
      transform: skewX(6.25deg) skewY(6.25deg);
    }
    
    44.4% {
      transform: skewX(-3.125deg) skewY(-3.125deg);
    }
    
    55.5% {
      transform: skewX(1.5625deg) skewY(1.5625deg);
    }
    
    66.6% {
      transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }
    
    77.7% {
      transform: skewX(0.390625deg) skewY(0.390625deg);
    }
    
    88.8% {
      transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
  }

/* Button CSS Ends */


/* Treatment CSS Starts */

.our_services .accordion-button{
  padding: 0px 25px;
  font-size: 14px;
  font-weight: 600;
  color: #0F4D7E;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M8 0a1 1 0 0 1 1 1v6h6a1 1 0 1 1 0 2H9v6a1 1 0 1 1-2 0V9H1a1 1 0 0 1 0-2h6V1a1 1 0 0 1 1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
  transform: scale(.7) !important;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'%3e%3cpath fill-rule='evenodd' d='M0 8a1 1 0 0 1 1-1h14a1 1 0 1 1 0 2H1a1 1 0 0 1-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

/* Treatment CSS Ends */



/*------------ Whatsapp Css Starts-----------------------
-----------------------------------------------------------*/

.whatsapp{
  position: fixed;
  bottom: 1%;
  left: 1%;
  z-index: 999;
  background: #18c139;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  padding: 7px 1px 1px 1px;
}

.whatsapp .wapp i {
  color: #fff;
  background: #18c139;
  font-size: 35px;
  /* padding: 15%;
  border-radius: 50%; */
}

/*------------ Whatsapp Css Ends-----------------------
-----------------------------------------------------------*/


/* Visit Us CSS Starts */

.visit_us{
  background-color: #F3F7FB;
  padding: 5% 0%;
}

.visit_wrap{
  background-color: #fff;
  padding: 10%;
  margin-bottom: 5%;
}

.visit_wrap h2{
  font-size: 22px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5%;
  color: #0F4D7E;
}

.visit_wrap h5{
  color: #333;
  text-align: left;
  font-size: 16px;
  margin-bottom: 5%;
}

.visit_wrap h5 i{
  padding-right: 5px;
  color: #333;
  font-size: 18px;
}

.visit_image{
  text-align: center;
  margin-bottom: 5%;
}

.visit_image img{
  width: 30%;
}

/* Visit Us CSS Ends */

/* Old carousel CSS removed - replaced by services-grid */

    /* faq css start */
.faq {
    padding: 120px 0 90px;
    background: #f7fbff;
    min-height: 100vh;
}

.faq .section-title {
    margin-bottom: 54px;
}

.faq .section-title h2 {
    margin-bottom: 22px;
        color: #027876;
}

.faq .accordion .card {
    border: none;
    margin-bottom: 30px;
}

.faq .accordion .card:not(:first-of-type) .card-header:first-child {
    border-radius: 10px;
}

.faq .accordion .card .card-header {
    border: none;
    border-radius: 10px;
    padding: 0;
}

.faq .accordion .card .card-header h5 {
    padding: 0;
}

.faq .accordion .card .card-header h5 button {
    color: #027876;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 0 30px 0 70px;
    height: 80px;
    display: block;
    width: 100%;
    color: #027876;
    text-align: left;
    background: #fff;
    -webkit-box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
    box-shadow: 0px -50px 140px 0px rgba(69, 81, 100, 0.1);
    border-radius: 10px 10px 0 0;
    position: relative;
}

.faq .accordion .card .card-header h5 button:after {
    position: absolute;
    left: 30px;
    top: 50%;
    margin-top: -10px;
    width: 20px;
    height: 20px;
    background-color: transparent;
    color: #91fffd;
    text-align: center;
    border: 1px solid #91fffd;
    border-radius: 50%;
    line-height: 100%;
    content: '\f067';
    font-size: 10px;
    line-height: 18px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.faq .accordion .card .card-header h5 button.collapsed {
    color: #ffffff;
    background: #027876;
    border-radius: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid rgba(97, 125, 255, 0.2);
}

.faq .accordion .card .card-header h5 button[aria-expanded="true"]:after {
    content: '\f068';
    color: #fff;
    background-image: -webkit-linear-gradient(-180deg, #027876 0%, #027876 30%, #027876 100%);
}

.faq .accordion .card .card-body {
    -webkit-box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
    box-shadow: 0px 15px 140px 0px rgba(69, 81, 100, 0.1);
    border-radius: 0 0 10px 10px;
    padding-top: 11px;
    margin-top: -6px;
    padding-left: 72px;
    padding-right: 70px;
    padding-bottom: 23px;
    color: rgba(30, 48, 86, 0.8);
    line-height: 30px;
}



    /* faq css end */

    section.banner .banner_caption {
    padding: 60px 0;
}

.main-content {
  position: relative;
  width: 100%;
  z-index: 100;
  top: 0em;
  left:0em;
  color: #FFFFFF;
}
/* BG SLIDESHOW CSS */
.slideshow,
.slideshow::after {
  position: absolute;
  width: 100%;
  height: 100%;
  max-height:540px;
  top: 0px;
  left: 0px;
  z-index: 0;
}
.slideshow::after {
  content: '';
  background: rgb(0 0 0 / 60%);
}
.img-bg-slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  color: transparent; /*hides span's text*/
  background-size: cover; /* covers whole viewport */
  background-position: 100% 100%;
  background-repeat: none;
  opacity: 0;
  z-index: 0;
  animation: backgroundSlideshow 40s linear infinite 0s;
}
.slideshow li:nth-child(1) .img-bg-slide {
   background-image: url('../images/slide1.jpg');
}
.slideshow li:nth-child(2) .img-bg-slide { 
    background-image: url('../images/slide2.jpg');
    animation-delay: 10s; 
}
.slideshow li:nth-child(3) .img-bg-slide { 
    background-image: url('../images/slide3.jpg');
    animation-delay: 20s; 
}

@keyframes backgroundSlideshow {
  0% { opacity: 0;}
  12.5% { opacity: 1;}
  25% { opacity: 1;}
  37.5% { opacity: 0;}
  100% { opacity: 0;} 
}
/* End of BG SLIDESHOW */

/* Old course-section CSS removed */

.about_content.part {
    padding-top: 20px;
}

.gallery {
    padding: 3% 0%;
    background-color: #F3F7FB;
}

/* Contact Page CSS Starts */

.contact_info_cards{
  padding: 40px 0 0;
  background-color: #F3F7FB;
}

.contact-card{
  background: #fff;
  border-radius: 12px;
  padding: 30px 25px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 3px solid #027876;
}

.contact-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(2,120,118,0.15);
}

.contact-card-icon{
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #027876, #045b5a);
  color: #fff;
  font-size: 22px;
  margin: 0 auto 15px;
}

.contact-card h4{
  font-size: 17px;
  font-weight: 700;
  color: #0F4D7E;
  margin-bottom: 8px;
}

.contact-card p{
  font-size: 14px;
  color: #666;
  margin: 0;
  line-height: 24px;
}

.contact-card p a{
  color: #027876;
  font-weight: 500;
}

.contact-card p a:hover{
  color: #0F4D7E;
}

.contact_us{
  padding: 0 0 3%;
  background-color: #F3F7FB;
}

.contact-form-wrap{
  background: #fff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
}

.contact-form-wrap h3{
  font-size: 22px;
  font-weight: 700;
  color: #045b5a;
  margin-bottom: 5px;
}

.contact-form-wrap p{
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.contact-form-wrap label{
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.contact-form-wrap .form-control{
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrap .form-control:focus{
  border-color: #027876;
  box-shadow: 0 0 0 3px rgba(2,120,118,0.1);
}

.contact-form-wrap .form-control.is-invalid{
  border-color: #dc3545;
}

.contact-form-wrap .invalid-feedback{
  display: none;
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
}

.contact-form-wrap .form-control.is-invalid ~ .invalid-feedback{
  display: block;
}

.contact-submit-btn{
  display: inline-block;
  padding: 12px 35px;
  background: linear-gradient(135deg, #027876, #045b5a);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.contact-submit-btn i{
  margin-left: 8px;
}

.contact-submit-btn:hover{
  background: linear-gradient(135deg, #045b5a, #0F4D7E);
  transform: translateY(-2px);
}

.contact-submit-btn:disabled{
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.contact-map-wrap{
  background: #fff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  height: 100%;
}

.contact-map-wrap h3{
  font-size: 22px;
  font-weight: 700;
  color: #045b5a;
  margin-bottom: 5px;
}

.contact-map-wrap p{
  font-size: 14px;
  color: #888;
  margin-bottom: 20px;
}

.contact-map{
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
}

.contact-map iframe{
  display: block;
}

.contact-hours{
  background: #f7fbff;
  border-radius: 10px;
  padding: 20px;
}

.contact-hours h4{
  font-size: 16px;
  font-weight: 700;
  color: #045b5a;
  margin-bottom: 12px;
}

.contact-hours h4 i{
  margin-right: 8px;
}

.contact-hours ul{
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-hours ul li{
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: #555;
  border-bottom: 1px dashed #ddd;
}

.contact-hours ul li:last-child{
  border-bottom: none;
}

.contact-hours ul li span:last-child{
  font-weight: 600;
  color: #027876;
}

/* Contact Page CSS Ends */


/* Appointment Page CSS Starts */

.appointment_section{
  padding: 50px 0;
  background-color: #F3F7FB;
}

.appointment-info h2{
  font-size: 26px;
  font-weight: 700;
  color: #045b5a;
  line-height: 1.4;
  margin-bottom: 12px;
}

.appointment-info p{
  font-size: 14px;
  color: #666;
  line-height: 26px;
  margin-bottom: 20px;
}

.appointment-img{
  text-align: center;
  margin-bottom: 25px;
}

.appointment-img img{
  max-width: 80%;
  height: auto;
}

.appointment-features{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.appointment-feature-item{
  background: #fff;
  border-radius: 10px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.3s ease;
}

.appointment-feature-item:hover{
  transform: translateY(-3px);
}

.appointment-feature-item i{
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #027876, #045b5a);
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.appointment-feature-item span{
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.appointment-form-wrap{
  background: #fff;
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  border-top: 4px solid #027876;
}

.appointment-form-wrap h3{
  font-size: 20px;
  font-weight: 700;
  color: #045b5a;
  margin-bottom: 22px;
  text-align: center;
}

.appointment-form-wrap label{
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.appointment-form-wrap .form-control{
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 14px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.appointment-form-wrap .form-control:focus{
  border-color: #027876;
  box-shadow: 0 0 0 3px rgba(2,120,118,0.1);
}

.appointment-submit-btn{
  display: block;
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, #027876, #045b5a);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.appointment-submit-btn i{
  margin-left: 8px;
}

.appointment-submit-btn:hover{
  background: linear-gradient(135deg, #045b5a, #0F4D7E);
  transform: translateY(-2px);
}

@media(max-width: 767px){
  .appointment-features{
    grid-template-columns: 1fr;
  }
  .appointment-info{
    margin-bottom: 30px;
  }
  .appointment-form-wrap{
    padding: 25px;
  }
}

/* Appointment Page CSS Ends */


/* Thanks Page CSS Starts */

.thanks_section{
  padding: 60px 0;
  background-color: #F3F7FB;
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.thanks-wrap{
  background: #fff;
  border-radius: 16px;
  padding: 50px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: 0 6px 30px rgba(0,0,0,0.1);
}

.thanks-icon{
  margin-bottom: 20px;
}

.thanks-icon i{
  font-size: 70px;
  color: #027876;
}

.thanks-wrap h1{
  font-size: 32px;
  font-weight: 700;
  color: #045b5a;
  margin-bottom: 10px;
}

.thanks-wrap p{
  font-size: 15px;
  color: #666;
  line-height: 26px;
  margin-bottom: 25px;
}

.thanks-buttons{
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.thanks-btn{
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.thanks-btn i{
  margin-right: 6px;
}

.thanks-btn-primary{
  background: linear-gradient(135deg, #027876, #045b5a);
  color: #fff;
}

.thanks-btn-primary:hover{
  background: linear-gradient(135deg, #045b5a, #0F4D7E);
  color: #fff;
  transform: translateY(-2px);
}

.thanks-btn-outline{
  background: #fff;
  color: #027876;
  border: 2px solid #027876;
}

.thanks-btn-outline:hover{
  background: #027876;
  color: #fff;
  transform: translateY(-2px);
}

/* Thanks Page CSS Ends */


/* Form Validation CSS */

.form-control.is-invalid{
  border-color: #dc3545 !important;
}

.invalid-feedback{
  display: none;
  color: #dc3545;
  font-size: 12px;
  margin-top: 4px;
  text-align: left;
}

.form-control.is-invalid ~ .invalid-feedback{
  display: block;
}

/* Form Validation CSS Ends */

/* Gallery CSS Starts */

.gallery-box{
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 30px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.gallery-box img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.gallery-box:hover img{
  transform: scale(1.08);
}

.gallery-box .img-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 120, 118, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-box .img-overlay i{
  color: #fff;
  font-size: 28px;
  background: rgba(255,255,255,0.2);
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #fff;
  transition: transform 0.3s ease;
}

.gallery-box:hover .img-overlay{
  opacity: 1;
}

.gallery-box:hover .img-overlay i{
  transform: scale(1.1);
}

/* Lightbox Overlay */
#overlay{
  background: rgba(0,0,0,0.9);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#overlay img{
  max-width: 80%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

#prevButton, #nextButton{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 30px;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 10000;
}

#prevButton:hover, #nextButton:hover{
  background: rgba(255,255,255,0.3);
}

#prevButton{
  left: 30px;
}

#nextButton{
  right: 30px;
}

#exitButton{
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  background: rgba(255,255,255,0.15);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 10000;
}

#exitButton:hover{
  background: rgba(239, 68, 68, 0.8);
}

/* Gallery CSS Ends */


/* Blog Section CSS Starts */

.blog_section{
  padding: 3% 0%;
  background-color: #F3F7FB;
}

/* Blog Card */
.blog-card{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 30px rgba(2,120,118,0.15);
}

.blog-card-img{
  position: relative;
  overflow: hidden;
  height: 220px;
}

.blog-card-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img{
  transform: scale(1.06);
}

.blog-card-body{
  padding: 20px;
}

.blog-card-date{
  font-size: 13px;
  color: #888;
  display: block;
  margin-bottom: 8px;
}

.blog-card-date i{
  margin-right: 5px;
  color: #027876;
}

.blog-card-body h3{
  font-size: 17px;
  font-weight: 600;
  color: #0F4D7E;
  margin-bottom: 12px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card-body h3 a{
  color: #0F4D7E;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-card-body h3 a:hover{
  color: #027876;
}

.blog-read-more{
  font-size: 14px;
  font-weight: 600;
  color: #027876;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-read-more i{
  font-size: 12px;
  margin-left: 5px;
  transition: margin-left 0.3s ease;
}

.blog-read-more:hover{
  color: #0F4D7E;
}

.blog-read-more:hover i{
  margin-left: 10px;
}

/* Blog Detail Page */
.blog-detail{
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
}

.blog-detail-img{
  overflow: hidden;
}

.blog-detail-img img{
  width: 100%;
  height: auto;
  display: block;
}

.blog-detail-meta{
  padding: 20px 25px 0;
  display: flex;
  gap: 20px;
}

.blog-detail-meta span{
  font-size: 13px;
  color: #888;
}

.blog-detail-meta span i{
  margin-right: 5px;
  color: #027876;
}

.blog-detail-title{
  font-size: 24px;
  font-weight: 700;
  color: #045b5a;
  padding: 12px 25px 0;
  line-height: 1.4;
}

.blog-detail-content{
  padding: 15px 25px 30px;
  font-size: 14px;
  line-height: 28px;
  color: #585754;
}

.blog-detail-content img{
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 10px 0;
}

.blog-detail-content p{
  margin-bottom: 15px;
}

/* Blog Sidebar */
.blog-sidebar{
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-sidebar h4{
  font-size: 18px;
  font-weight: 700;
  color: #045b5a;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 3px solid #027876;
}

.sidebar-post{
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eee;
}

.sidebar-post:last-child{
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-post-img{
  flex-shrink: 0;
  width: 80px;
  height: 65px;
  border-radius: 8px;
  overflow: hidden;
}

.sidebar-post-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sidebar-post-info h5{
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sidebar-post-info h5 a{
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-post-info h5 a:hover{
  color: #027876;
}

.sidebar-post-info span{
  font-size: 12px;
  color: #999;
}

.sidebar-post-info span i{
  margin-right: 4px;
  color: #027876;
}

/* Blog Section CSS Ends */


/* Disclaimer CSS Starts */

.disclaimer_section{
  padding: 3% 0%;
  background-color: #F3F7FB;
}

.disclaimer-content{
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.disclaimer-content h2{
  font-size: 24px;
  font-weight: 700;
  color: #0F4D7E;
  margin-bottom: 15px;
}

.disclaimer-content h3{
  font-size: 18px;
  font-weight: 600;
  color: #027876;
  margin-top: 25px;
  margin-bottom: 10px;
}

.disclaimer-content p{
  font-size: 14px;
  line-height: 28px;
  color: #585754;
  margin-bottom: 12px;
}

.disclaimer-content ul{
  padding-left: 20px;
  margin-bottom: 15px;
}

.disclaimer-content ul li{
  font-size: 14px;
  line-height: 30px;
  color: #585754;
  margin-bottom: 8px;
}

.disclaimer-content ul li a{
  color: #027876;
  font-weight: 500;
}

.disclaimer-content ul li a:hover{
  color: #0F4D7E;
}

/* Disclaimer CSS Ends */

