/********** Template CSS **********/
:root {
    --primary: #F4DA68;
    --light: #FF9900;
    --dark: #00BCF2;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s; /* Smooth transition */
  position: relative; /* Positioning for shadow effect */
}

.btn.btn-primary {
  color: #FFFFFF;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

.meet-team-btn {
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 5px 15px;
  font-size: 14px;
  text-decoration: none;
  background: linear-gradient(145deg, #007bff, #0056b3); /* Gradient for shiny effect */
  color: white;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3); /* Initial shadow for depth */
  overflow: hidden; /* To contain the shiny effect */
}

.text-light-gray {
  color: lightgray; /* Light gray shade */
}

.form-control {
  background-color: #fff; /* Background color */
  color: #000; /* Text color */
}

.meet-team-btn::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3); /* White overlay for shine */
  border-radius: 50%; /* Circular overlay */
  transform: scale(0); /* Start scaled down */
  transition: transform 0.3s ease; /* Smooth transition */
  pointer-events: none; /* Prevent interference with button clicks */
}

.meet-team-btn:hover {
  background: linear-gradient(145deg, #0056b3, #004494); /* Darker gradient on hover */
  transform: translateY(-5px); /* Lift effect */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* Increased shadow */
}

.meet-team-btn:hover::before {
  transform: scale(1); /* Scale up the shine effect on hover */
}

.btn:hover {
  transform: translateY(-5px); /* Lift for btn class */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5); /* Increased shadow */
}

.meet-team-btn i {
  margin-left: 5px;
}

.unique-back-to-top {
  /* Example styles */
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #007bff; /* Change as needed */
  color: white;
  border-radius: 50%;
  padding: 10px 15px;
}


/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 3rem;
    color: #333;
    font-family: 'Lato' , sans-serif;
}

/* Team Container
.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}*/

/* Team Card
.team-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 300px;
    text-align: center;
}*/

/* Team Image
.team-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #ddd;
}*/

/* Team Info */
.team-info {
    padding: 20px;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.team-info p {
    font-size: 1rem;
    color: #777;
    margin-bottom: 20px;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.social-icon {
    color: #333;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #007bff;
}

/*** Help ***/
.help-sec {
  background-color: #ffffff;
  padding: 100px;
  box-shadow: inset;
}

.feature-box {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  border-radius: 20px;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.feature-box:hover {
  background-color: #fbfbfb;
  color: #000000;
  cursor: pointer;
  transform: scale(1.05);
}

.feature-box i {
  font-size: 5em;
  color: #6EA4C5;
  margin-bottom: 20px;
}

.feature-box h3 {
  font-size: 1.5em;
  color: #1c64b1;
  margin-bottom: 10px;
  text-decoration: none;
}

.feature-box h3:hover {
    text-decoration: none;
}
.feature-box p:hover {
  text-decoration: none;
}

.virtual-tour-guide {
  text-align: left;
}

.guide-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

.guide-box {
  width: 32%;
  margin: 10px 0;
  padding: 20px;
  border: 2px solid #33a156;
  border-radius: 10px;
  background-color: #ccf4d8;
}

.guide-box h5 {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
  font-weight: bold;
  text-align: left;
}

.guide-box p {
  font-size: 1.2em;
  color: #666;
  margin: 5px 0;
}

.guide-box .icon {
  font-size: 1.5em;
  color: #33a156;
  margin-right: 10px;
}

.faq-section {
  background-color: #ffffff;
  padding: 50px;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1); /* Corrected box-shadow */
  margin-top: 20px;
}

.faq {
  margin: 20px 0;
  padding: 10px;
  background: #F3F4F6;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Reduced opacity for softer shadow */
  display: flex;
  flex-direction: column;
  position: relative;
}

.faq-question,
.faq-answer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding-left: 20px;
  color: #000000;
  transition: color 0.3s ease-in-out; /* Smoother transition */
  margin: 10px 0;
  cursor: pointer;
}

.faq-question::before,
.faq-answer::before {
  content: '';
  position: absolute;
  width: 4px;
  border-radius: 2px;
  top: 0;
  bottom: 0;
  left: 0;
}

.faq-question::before {
  background-color: #6EA4C5;
}

.faq-answer::before {
  background-color: yellow;
}

.faq-question span {
  font-size: 1.2em; /* Reduced font size for better alignment */
}

.faq-question i,
.faq-answer i {
  font-size: 1.5em; /* Adjusted size for consistency */
  margin-left: 10px;
  color: #6EA4C5;
}

.faq-question:hover {
  color: #f7d619;
}

.faq-answer {
  display: none;
  padding-left: 24px; /* Adjusted padding for better alignment */
}

.faq-answer p {
  font-size: 1em; /* Adjusted for better readability */
  text-align: justify;
  margin: 10px 0;
  color: #000000;
  flex: 1;
  font-weight: normal; /* Reduced font-weight for clarity */
}

.faq-answer a {
  color: rgb(0, 0, 0);
  font-weight: bold;
  text-decoration: underline; /* Added underline for clarity */
}

/* Optional: FAQ Toggle Animation */
.faq.active .faq-answer {
  display: block;
  animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.faq.active .faq-answer {
  display: block;
  animation: slideDown 0.3s ease-in-out;
}

.faq.active .faq-question i {
  transform: rotate(180deg);
  transition: transform 0.3s ease-in-out;
}


/*** Heading ***/
h1,
h2,
h3,
h4,
.h1,
.h2,
.h3,
.h4,
.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
    font-family: 'Lato', 'san serif';
    font-weight: 700;
}

h5,
h6,
.h5,
.h6 {
    font-weight: 600;
}

.font-secondary {
    font-family: 'Lato', 'san serif';
}

.icon-lg {
  font-size: 1.5rem; /* Increase icon size */
  margin-left: 0px; /* Space between icon and text */
}

/*** Navbar ***/
.navbar .navbar-nav .nav-link {
    padding: 30px 15px;
    color: var(--dark);
    font-weight: 500;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: 'Lato', 'san serif';
    font-weight: 900;
    vertical-align: middle;
    margin-left: 5px;
    transition: .5s;
}

.navbar .dropdown-toggle[aria-expanded=true]::after {
    transform: rotate(-180deg);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 15px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        top: calc(100% - 15px);
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
        
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel::before,
.header-carousel::after,
.page-header::before,
.page-header::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 10px;
    top: 0;
    left: 0;
    z-index: 1;
}

.header-carousel::after,
.page-header::after {
    height: 19px;
    top: auto;
    bottom: 0;
    background: url(../img/bg-header-bottom.png) center center repeat-x;
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }
    
    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
        font-weight: 400 !important;
    }

    .header-carousel .owl-carousel-item h1 {
        font-size: 30px;
        font-weight: 600;
    }
}

.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    margin: 7px 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: transparent;
    border: 1px solid #FFFFFF;
    border-radius: 45px;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .2), rgba(0, 0, 0, .2)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, .5);
}


/*** Facility ***/
.facility-item .facility-icon {
    position: relative;
    margin: 0 auto;
    width: 100px;
    height: 100px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-item .facility-icon::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-icon span {
    position: absolute;
    content: "";
    width: 15px;
    height: 30px;
    top: 0;
    left: 0;
    border-radius: 50%;
}

.facility-item .facility-icon span:last-child {
    left: auto;
    right: 0;
}

.facility-item .facility-icon i {
    position: relative;
    z-index: 2;
}

.facility-item .facility-text {
    position: relative;
    min-height: 250px;
    padding: 30px;
    border-radius: 100%;
    display: flex;
    text-align: center;
    justify-content: center;
    flex-direction: column;
}

.facility-item .facility-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, .9);
    transition: .5s;
    z-index: 1;
}

.facility-item .facility-text * {
    position: relative;
    z-index: 2;
}

.facility-item:hover .facility-icon::before,
.facility-item:hover .facility-text::before {
    background: transparent;
}

.facility-item * {
    transition: .5s;
}

.facility-item:hover * {
    color: #FFFFFF !important;
}


/*** About ***/
.about-img img {
    transition: .5s;
}

.about-img img:hover {
    background: var(--primary) !important;
}


/*** Classes ***/
.classes-item {
    transition: .5s;
}

.classes-item:hover {
    margin-top: -10px;
}


/*** Team ***/
.team-item .team-text {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #FFFFFF;
    border: 17px solid var(--light);
    border-radius: 250px;
    transition: .5s;
}

.team-item:hover .team-text {
    border-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 576px) {
    .testimonial-carousel {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}

.testimonial-carousel .testimonial-item .border {
    border: 1px dashed rgba(0, 185, 142, .3) !important;
}

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 100%;
    height: 45px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    z-index: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 45px;
    font-size: 20px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--dark);
}


/*** Footer ***/
.footer .social-btn {
    margin-right: 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 45px;
    transition: .3s;
}

.footer .social-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
}

/* Updated CSS for Quick Links */
.footer a.quick-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    font-size: 16px;
    font-weight: normal;
    color: #FFFFFF;
    text-transform: capitalize;
    transition: .3s;
    text-decoration: none; /* Ensure it's a text link */
}

.footer a.quick-link::before {
    content: "\f105";
    font-family: 'Font Awesome 5 Free'; /* Ensure correct Font Awesome is used */
    font-weight: 900;
    margin-right: 10px;
    transition: .3s;
}

.footer a.quick-link:hover {
    color: var(--primary) !important;
    letter-spacing: 1px;
}

.footer .form-control {
    border-color: rgba(255,255,255,0.5);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: #FFFFFF;
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--primary) !important;
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}


article {
  --img-scale: 1.001;
  --title-color: black;
  --link-icon-translate: -20px;
  --link-icon-opacity: 0;
  position: relative;
  border-radius: 16px;
  box-shadow: none;
  background: #fff;
  transform-origin: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

article a::after {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  cursor: pointer;
  content: "";
}

/* basic article elements styling */
article h2 {
  margin: 0 0 18px 0;
  font-family: "Lato", sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0.06em;
  color: var(--title-color);
  transition: color 0.3s ease-out;
}

figure {
  margin: 0;
  padding: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

article img {
  max-width: 100%;
  transform-origin: center;
  transform: scale(var(--img-scale));
  transition: transform 0.4s ease-in-out;
}

.article-body {
  padding: 24px;
}

article a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #28666e;
}

article a:focus {
  outline: 1px dotted #28666e;
}

article a .icon {
  min-width: 24px;
  width: 24px;
  height: 24px;
  margin-left: 5px;
  transform: translateX(var(--link-icon-translate));
  opacity: var(--link-icon-opacity);
  transition: all 0.3s;
}

/* using the has() relational pseudo selector to update our custom properties */
article:has(:hover, :focus) {
  --img-scale: 1.1;
  --title-color: #28666e;
  --link-icon-translate: 0;
  --link-icon-opacity: 1;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

.articles {
  display: grid;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

@media screen and (max-width: 960px) {
  article {
    container: card/inline-size;
  }
  .article-body p {
    display: none;
  }
}

@container card (min-width: 380px) {
  .article-wrapper {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 16px;
  }
  .article-body {
    padding-left: 0;
  }
  figure {
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  figure img {
    height: 100%;
    aspect-ratio: 1;
    object-fit: cover;
  }
}

.sr-only:not(:focus):not(:active) {
  clip: rect(0 0 0 0); 
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap; 
  width: 1px;
}

/*Content*/

.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
  max-width: 100%;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper {
  text-align: center;
  padding: 20px;
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article-wrapper {
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.article-wrapper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  text-decoration: none;
  color: #007bff;
  font-weight: bold;
}

.read-more svg {
  margin-left: 5px;
}

.text-justify {
  text-align: justify;
}

/* Feedback Section */
.feedback-section {
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  max-width: 600px;
  margin: auto;
}

/* Headings */
h2 {
  font-size: 1.5em;
  margin-bottom: 15px;
  color: #333;
}

.feedback {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.feedback-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.feedback-option input {
  display: none; /* Hide the default radio button */
}

.feedback-option div {
  font-size: 2em; /* Increase emoji size */
  margin-bottom: 5px;
  transition: transform 0.2s, color 0.2s; /* Transition for smooth effect */
}

.feedback-option span {
  font-size: 1em;
  color: #555;
}

/* Emoji Hover and Selection Effects */
.feedback-option:hover div {
  transform: scale(1); /* Slightly enlarge on hover */
}

.feedback-option input[type="radio"]:checked + div {
  color: gold; /* Change color when selected */
  transform: scale(1.2); /* Enlarge the selected emoji */
}

/* Input Fields */
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
}

/* Submit Button */
input[type="submit"] {
  background-color: #4CAF50;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
}

input[type="submit"]:hover {
  background-color: #45a049;
}

/* Centering */
center {
  margin-top: 20px;
}