body {
  margin: 0;
}

.navbar {
  height: 70px;
  background-color: #03045e;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.navbar div {
  height: 70px;
  background-color: #0077b6;
  margin-right: 2px;
}

.navbar div:hover {
  background-color: #03045e;
}

.navbar div p {
  text-align: center;
  padding: 5px 12px;
}

.navbar div p a {
  color: white;
  text-decoration: none;
  font-family: "Montserrat", serif;
  font-size: 10px;
  font-weight: 500;
}

.navbar div a i {
  width: 40px;
  font-size: 19px;
  padding: 5px 10px;
}

/* Second Navbar */

.navbar2 {
  height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 50px;
}

.navbar2 ul {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -90px;
}

.navbar2 ul li {
  font-family: "Montserrat", serif;
  font-size: 14px;
  list-style-type: none;
  margin-right: 15px;
}

.navbar2 ul li a {
  text-decoration: none;
  font-weight: 700;
  line-height: 4;
  color: #00a896;
}

.navbar2 input {
  height: 25px;
  font-family: "Montserrat", serif;
  font-weight: 600;
  padding: 5px;
}

@media (max-width: 1024px) {
  .navbar {
    display: none;
  }

  .navbar2 ul li {
    margin-right: 8px;
    font-size: 12px;
  }

  .navbar2 ul li a {
    line-height: 1;
  }
}

@media (max-width: 800px) {



  .navbar {
    display: flex;
  }

}



@media (min-width: 821px) {
  .mobile-navbar {
    display: none;
  }

  .mobile-input {
    display: none;
  }
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 5px 0;
  transition: 0.3s;
}

@media (min-width: 1024px) {
  .logo1 {
    display: none;
  }
}

/* Navbar on mobile */
@media screen and (max-width: 920px) {
  .logo1 {
    display: block;
  }

  .logo1 img {
    width: 100px;
    margin-left: 20px;
    margin-top: 10px;
  }

  .navbar {
    display: none;
    /* Hide the main navbar on mobile */
    flex-direction: column;
    align-items: flex-start;
    
  }

  .navbar.active {
    display: block;
    /* Display navbar when active */
    position: absolute;
    z-index: 999;
    width: 100%;
  }

  .navbar2 {
   
    /* Hide navbar2 on mobile */
  }

  .navbar2.active {
    display: flex;
    /* Display navbar2 when active */
  }

  .mobile-menu-btn {
    display: block;
    position: absolute;
    top: 10px;
    right: 20px;
    z-index: 9999;
  }

  .search-btn {
    display: block;
    position: absolute;
    top: 17px;
    right: 20px;
    z-index: 9999;
    background-color: white;
    border: 1px solid rgba(255, 255, 255, 0);
  }



  .mobile-menu-btn span {
    background-color: #03045e;
  }

  /* Adjust the mobile navbar items */
  .navbar>div {
    width: 100%;
    padding: 0.2rem 0;
    height: 60px;
  }

  .navbar div p {
    font-size: 14px;
    text-align: left;
    font-weight: 700;
  }

  .navbar2 input {
    width: 80%;
    margin-top: 1rem;
  }

  .mobile-input {
    display: none;
  }

  .navbar2 li {
    margin-right: 10px;
    font-size: 12px;
  }

  /* Hide elements when not active */
  .mobile-navbar {
    display: none;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}

/* Desktop styles */
@media (min-width: 921px) {
  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .mobile-navbar {
    display: none;
  }
}

@media (min-width: 1024px) {
  .search-btn {
    display: none;
  }
}

.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 70px;
  left: -2px;
  background-color: #03045e;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
  color: white;
  min-width: 190px;
}

.dropdown-content a {
  color: white;
  padding: 10px 15px;
  text-decoration: none;
  display: block;
  font-size: 10px;
  font-family: 'Montserrat', serif;
  font-weight: 500;
  background-color: #03045e;
  border-bottom: 0.2px solid #5d3f99;
}

.dropdown-content a:hover {
  background-color: #03045e;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown a {
  text-decoration: none;
  color: inherit;
}


.dropdown-content2 {
  display: none;
  position: absolute;
  background-color: #0077b6;
  z-index: 1;
  color: white;
  min-width: 190px;

}

.dropdown-content2 a {
  text-decoration: none;
  display: block;
  color: white;
  font-size: 14px;
}

.dropdown2:hover .dropdown-content2 {
  display: block;
}

.double-drop {
  display: flex;
  padding: 30px;
}

.double-menu {
  width: 200px;
  margin-right: 20px;
}

.double-menu a {
  color: black;
  font-weight: 700;
}

.double-menu a:hover {
  background-color: #00a896;
}




Hero Section
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  /* Ensure no overflow */
  overflow: hidden;
  min-height: 480px;        /* add this */
  background: #e9eef0;
}

.hero-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, #e2e8ea 8%, #f2f5f6 18%, #e2e8ea 33%);
  background-size: 200% 100%;
  animation: heroShimmer 1.4s linear infinite;
  z-index: 1;
}

@keyframes heroShimmer {
  to { background-position-x: -200%; }
}

.hero.is-loaded .hero-skeleton {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

@media (min-width: 2000px) {
  .hero {
    height: 90%;
  }
}

.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;
  /* Hide all images initially */
}

.hero img.active {
  display: block;
  /* Show only the active image */
}

/* Hero text overlay */
.hero-text {
  position: absolute;
  top: 36%;
  left: 44%;
  transform: translate(-50%, -50%);
  max-width: 1200px;
  text-align: left;
  font-family: 'Montserrat', serif;
  opacity: 0;
  animation: slideInUp 0.8s ease-out 0.4s forwards;
  z-index: 5;
}

.hero-text h2 {
  margin: 0 0 12px 0;
  color: #fd8103;
  font-size: 52px;
  font-weight: 800;
}

.hero-text p {
  margin: 0;
  font-size: 24px;
  line-height: 1.6;
  color: black;
  min-width: 1050px;
  font-weight: 600;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 30px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* Controls */
.controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  opacity: 0;
  /* Hidden by default */
  transition: opacity 0.3s ease;
}

.controls button {
  background-color: rgba(0, 0, 0, 0);
  color: rgb(255, 255, 255);
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 34px;
  border-radius: 5px;
  transition: 0.5s ease;
}

.controls button:hover {
  font-size: 40px;
}

/* Show controls on hover */
.hero:hover .controls {
  opacity: 1;
  /* Make controls visible */
}

/* Navigation Dots */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.dots span {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dots span.active {
  background-color: white;
  /* Highlight active dot */
}



.social-icons {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  z-index: 1000;
}

.social-icons a {
  text-decoration: none;
  width: 35px;
  height: 35px;
  color: white;
  font-size: 14px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.2px solid white;
  background-color: #00a896;
  transition: background-color 0.3s, transform 0.3s;
}

.social-icons a:hover {
  background-color: #5d3f99;
  transform: scale(1.1);
}

/* Individual colors for each icon */
.facebook {
  background-color: #3b5998;
}

.twitter {
  background-color: #1da1f2;
}

.instagram {
  background-color: #e4405f;
}

.linkedin {
  background-color: #0077b5;
}

/* Right Side Sticky Options */
.sticky-right {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 35px;
  z-index: 1000;
}

/* REQUEST INFO Button */
/* REQUEST INFO Button (Vertical Style) */
/* REQUEST INFO Button (Vertical Style, Far Right) */
.sticky-right .request-info {
  position: fixed;
  /* Keeps it fixed on the screen */
  top: 50%;
  /* Centers vertically */
  right: 45px;
  /* Sticks to the far right of the screen */
  transform: translateY(-50%) rotate(-90deg);
  /* Centers vertically and rotates text for readability */
  writing-mode: vertical-rl;
  /* Makes the text vertical */
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  height: 150px;
  color: white;
  background-color: #00a896;
  padding: 0 5px;
  font-family: 'Montserrat', serif;
  transition: background-color 0.3s, transform 0.3s;
  z-index: 1000;
  /* Ensures it stays on top of other elements */
}


.sticky-right .request-info:hover {
  background-color: #e64a19;
}

/* WhatsApp Icon */
.sticky-right .whatsapp {
  position: fixed;
  /* Keeps it fixed */
  top: calc(50% + 150px);
  /* Places it slightly below the REQUEST INFO button */
  right: 10px;
  /* Adjust distance from the right edge */
  text-decoration: none;
  padding: 10px;
  width: 50px;
  height: 50px;
  color: white;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  border-radius: 50%;
  transition: background-color 0.3s, transform 0.3s;
  z-index: 1000;
}

.sticky-right .whatsapp:hover {
  background-color: #128c7e;
  transform: scale(1.1);
}


.booking {
  background-color: white;
  width: 100%;
  margin-top: -30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.booking-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 50px;
  margin-right: 50px;
  width: 90%;
  padding-left: 45px;
  padding-right: 45px;
  margin-bottom: 20px;
}

.container {
  margin: 10px 5px;
  border-radius: 2px;
  padding: 5px;
  background-color: white;
  width: 50%;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.container p {
  font-family: 'Montserrat', serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1;
  text-align: center;
  color: #00a896;
}

.container div a button {
  background-color: white;
  border-radius: 5px;
  font-family: 'Montserrat', serif;
  color: black;
  font-weight: 300;
  font-size: 15px;
  padding: 10px 10px;
  border: 1px solid rgb(0, 0, 119);
  margin: 0 20px;
  margin-bottom: 10px;
  transition: 0.5s ease;
}

.container div a button:hover {
  background-color: white;
  border: 0.5px solid #4c2d7b;
  color: black;
}

.container div {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 820px) {
  .hero {
    margin-top: 20px;
    margin-bottom: 1px;
    width: 100%;
  }

  .hero img {
    width: 100%;
  }

  .booking-container {
    display: block;
    margin: 0;
    padding-left: 20px;
    padding-right: 20px;
  }

  .container {
    margin: 50px 1px;
    width: 95%;
  }

  .sticky-right .whatsapp {
    font-size: 18px;
    padding: 10px;
    width: 30px;
    height: 30px;
  }
}

.call-to-action {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e4f4f4;
  padding: 50px;
  font-family: "Montserrat", serif;
}

.call-to-action1 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e4f4f4;
  padding: 35px;
  font-family: "Montserrat", serif;
  margin-top: -30px;
}

@media (max-width: 768px) {
  .call-to-action1 {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.call-container {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-container1 {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
}


.border-line2 {
  width: 2.2px;
  height: 240px;
  background-color: #03045e;
}


@media (max-width: 1024px) {
  .border-line2 {
    display: none;
  }
}

.container-call1 {
  width: 50%;
  padding: 2px 20px 0 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: gray;
}

.border-line {
  width: 2.2px;
  height: 60px;
  background-color: #03045e;
}

@media (max-width: 768px) {
  .call-container1 {
    display: block;
    padding-top: 10px;
  }

  .for-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .border-line {
    width: 200px;
    height: 2.2px;
    background-color: #03045e;
  }
}

.container-call {
  width: 50%;
  padding: 20px 20px 0 20px;
}


@media (max-width: 1024px) {
  .call-container1 {
    width: 100%;
  }

  .container-call1 {
    width: 100%;
    padding: 0;
  }

  .call-to-action {
    padding-left: 10px;
    padding-right: 10px;
  }

  .call-container {
    width: 100%;
  }

  .container-call {
    padding-left: 10px;
    padding-right: 10px;
  }
}


.container-call p {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  color: gray;
  text-align: justify;
}

.container-call button {
  background-color: #03045e;
  border-radius: 5px;
  font-family: 'Montserrat', serif;
  color: white;
  font-weight: 300;
  font-size: 15px;
  padding: 10px 20px;
  border: 0;
  margin-top: 30px;
  transition: 0.5s ease;
}

@media (max-width: 768px) {
  .call-container {
    display: block;
  }

  .container-call {
    width: 95%;
    border-right: 1px solid white;
    border-bottom: 2px solid #4c2d7b;
  }
}


.welcome-line {
  text-align: center;
  font-family: 'Montserrat', serif;
  font-size: 25px;
  color: #00a896;
}

.welcome-line p {
  font-size: 18px;
  margin-left: 50px;
  font-weight: 400;
  margin-right: 50px;
  color: gray;
  margin-top: -30px;
  margin-bottom: 60px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .welcome-line p {
    text-align: justify;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.counter-section {
  background-color: #00a896;
}

.counters {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 30px;
  margin-right: 30px;
}

.counter {
  margin: 40px;
  padding: 40px;
}

.counter h3,
.counter p {
  text-align: center;
  color: white;
}

.counter h3 {
  font-family: 'Montserrat', serif;
  font-size: 50px;
  margin: 0;
}

.counter p {
  font-size: 18px;
  font-family: 'Montserrat', serif;
}

@media (max-width: 1024px) {
  .counters {
    display: block;
    padding: 1px;
  }
}

.about {
  background-color: #e4f4f4;
  padding: 30px;
}

.about-container1 {
  display: block;
}

.about-para {
  margin-bottom: 70px;
  padding-right: 50px;
  font-family: "Montserrat", serif;
  text-align: justify;
  font-weight: 500;
  line-height: 2;
  display: flex;
}

.about-para div {
  width: 100%;
}

.about-para2 {
  display: flex;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}

@media (max-width: 1024px) {
  .about-para2 {
    width: 100%;
    display: block;
  }
}

.about-video {
  height: 400px;
}

.about-video video {
  width: 560px;
}

.footer {
  background-color: #03045e;
  padding-bottom: 5px;
}

.footer-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 40px;
  background-color: #03045e;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.footer ul {
  list-style: none;
}

.footer ul li a {
  text-decoration: none;
  color: white;
  font-family: "Montserrat", serif;
  font-weight: 700;
  line-height: 1.5;
}

.f-column1 {
  margin: 20px;
}

.social-footer {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
}

.social-footer div {
  border: 1px solid white;
  padding: 7px 10px;
}

.social-footer a {
  color: white;
}







.mobile-active {
  margin-bottom: 200px;
}

@media (max-width: 1024px) {

  .about-container1 {
    display: block;
  }

  .about-para {
    padding-right: 0;
    width: 100%;
    display: block;
  }

  .about-para div {
    width: 90%;
  }

  .about-video video {
    width: 280px;
  }

  .footer-container {
    gap: 20px;
    justify-content: center;
  }

  .footer ul {
    display: block;
  }

  #none-mobile {
    display: none;
  }

  .f-column1 {
    margin: 5px;
    width: 45%;
    text-align: center;
  }

  .social-column {
    width: 100%;
    align-items: center;
    margin-top: 20px;
  }

  .mobile-active {
    margin-bottom: 0;
  }

  .mobile-active li {
    font-size: 12px;
  }
}

@media (max-width: 1024px) {
  .social-footer {
    align-items: center;
    justify-content: center;
  }
}

.video-div video {
  width: 600px;
  margin: 15px 15px 50px 15px;

}


.about-para2 img {
  height: 26px;
  margin-right: 10px;
}

/* Styling for the button */
#backToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
  /* Hidden by default */
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#backToTop:hover {
  background-color: #0056b3;
}

@media (max-width: 1024px) {
  #backToTop {
    margin-bottom: 40px;
  }
}

.FAQS {}

.faq-container {
  margin: 50px 80px;
  border-radius: 5px;
  box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.1);
}


.faq1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .faq-container {
    margin: 20px;
  }

  .faq1 {
    display: block;
  }
}

.faq-icon {
  margin: 50px 20px;
  padding: 20px;
  border-radius: 5px;
}

.faq-icon h3 {
  text-align: center;
  font-family: "Montserrat", serif;
  font-size: 18px;
}

.faq-icon p {
  text-align: center;
  font-family: "Montserrat", serif;
  font-weight: 500;
  color: gray;
  font-size: 18px;
}

.faq-icon:hover {
  background-color: rgb(221, 221, 221);
}

.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 1200px;
  margin: auto;
}

@media (max-width: 1024px) {
  .carousel-container {
    display: none;
  }
}

.carousel-wrapper {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.carousel-slide {
  display: flex;
  justify-content: center;
  min-width: 100%;
}

.faq-icon {
  margin: 20px;
  text-align: center;
  padding: 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.faq-icon:hover {
  background-color: rgb(221, 221, 221);
}

.carousel-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
}

.carousel-button.prev {
  left: 10px;
}

.carousel-button.next {
  right: 10px;
}

.social {
  color: white;
}

.social-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.follow-text {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 14px;
  font-family: 'Montserrat', serif;
  letter-spacing: 0.5px;
  color: white;
}

.social-footer {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-footer div {
  border: 1px solid white;
  padding: 7px 10px;
  transition: all 0.3s ease;
}

.social-footer div:hover {
  background-color: #00a896;
  border-color: #00a896;
}

.social-footer a {
  color: white;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-copyright {
  font-family: 'Montserrat', serif;
  color: white;
  text-align: center;
  padding: 25px 20px;
  margin: 20px 0 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-weight: 500;
}

@media (max-width: 1024px) {
  .social-column {
    align-items: center;
  }

  .social-footer {
    justify-content: center;
  }

  .follow-text {
    text-align: center;
    width: 100%;
  }

  .footer-copyright {
    padding: 20px 10px;
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .social {
    margin-left: 0;
  }

  .footer-copyright {
    padding: 15px 10px;
    font-size: 12px;
  }
}


.nav-button-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 1024px) {
  .nav-button-container {
    display: block;
  }
}

.nav-button {
  margin: 20px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 8px 30px;
  background-color: white;
  border: 2px solid #0056b3;
  color: #0056b3;
  font-family: "Montserrat", serif;
  font-weight: 600;
}

.nav-button:hover {
  border-top-right-radius: 0;
  border-bottom-left-radius: 0;
  transition: 0.5s ease-in-out;
}

.form-and-why {
  display: flex;
  margin: 0 30px;
  justify-content: center;
  font-family: "Montserrat", serif;
}




.why {
  width: 49%;
  margin: 20px 0;
}



.why h2 {
  color: #00a896;
}

.why h2, .why p, .why ul {
  margin: 0 0 0 50px;
}



.why p, .why ul {
  line-height: 2;
  font-weight: 500;
}

.why p {
  margin-bottom: 20px;
  margin-right: 40px;
  text-align: justify;
}




.form {
  font-family: "Montserrat", serif;
  width: 49%;
  margin: 20px 90px 20px 0;
  padding: 5px 20px;
  box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.1);
}



.form h2 {
  text-align: center;
  color: #00a896;
}

.form-div {
  display: flex;
  justify-content: center;
  gap: 5px;
}



.form-container {
  margin: 5px;
}

.form-container label {
  font-weight: 700;
  color: #03045e;
  font-size: 14px;
  display: grid;
  justify-content: center;
}

.form-container label input {
  border-radius: 5px;
  width: 250px;
  height: 50px;
  border: 1px solid grey;
  box-shadow: 10px 10px 10px 10px #00a8970c;
}

.form-container label select {
  width: 250px;
  border: 1px solid grey;
  border-radius: 5px;
  height: 55px;
  background-color: white;
}

#lab-test-input, #preferred-date-input, #select-department {
  width: 515px;
}

@media (max-width: 768px) {
  .form {
    width: 98%;
    margin: 5px;
  }
  .form-div {
    display: block;
  }
  
  
  #preferred-date-input {
    width: 250px;
  }
  #select-department {
    width: 250px;
  }
}

.form-button {
  margin: 50px;
}

.form-button button {
  padding: 15px 40px;
  border-radius: 30px;
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 15px;
  color: white;
  background-color: #fd8103;
  border: 1px solid #fd8103;
}


.diagnostic {
  background-color: #f4f0ff;
  margin-top: 50px;
  padding-bottom: 50px;
}

.diagnostic h2 {
  padding-top: 30px;
  text-align: center;
  font-family: "Montserrat", serif;
  color: #fd8103;
  font-size: 35px;
  font-weight: 700;
}

.diagnostic-container {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 50px;
}



.diagnostic-card {
  padding: 20px;
  width: 400px;
  box-shadow: 1px 5px 5px 5px #abbbbb2a;
  border-radius: 20px;
  background-color: white;
}

@media (max-width: 1024px) {
  .diagnostic-container {
    display: grid;
    gap: 0;;
    margin-bottom: 0;
  }
  .diagnostic-card {
    margin: 5px;
    width: 100%;
    padding: 5px;
  }
  .form-button {
    margin-right: 20px;
  }
  .form {
    padding: 0 5px;
  }
}

.diagnostic-card h3 {
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 18px;
  color: #00a896;
  margin-left: 20px;
}

.diagnostic-card ul {
  font-family: "Montserrat", serif;
  font-weight: 500;
  list-style: none;
}

.diagnostic-card ul::marker {
  color: #fd8103;
}

.diagnostic-card ul li::before {
  content: '■'; /* Square bullet as a custom symbol */
  color: #fd8103; /* Bullet color */
  margin-right: 10px; /* Space between bullet and text */
}

.diagnostic-card ul li {
  margin-bottom: 10px;
}

.pharmacy-hero {
  background-color: rgb(248, 248, 248);
  position: relative;
  bottom: 50px;
}

.p-hero {
  margin-left: 200px;
}

.pharmacy-hero-container {
  font-family: "Montserrat", serif;
}

.pharmacy-hero-container h1 {
  font-size: 60px;
  font-weight: 500;
  color: #fd8103;
  line-height: 60px;
  padding-top: 50px;
}

.pharmacy-hero-container h2 {
  font-size: 26px;
  font-weight: 600;
  color: #00a896;
  margin-top: -10px;
}

.pharmacy-hero-container ul {
  font-size: 24px;
  padding-bottom: 20px;
  color: #00a896;
  font-weight: 400;
}

.pharmacy-hero-container ul li::marker {
  color: #fd8103;
}

.imaging-services {
  background-color: white;
  margin: 0 100px 0 100px;
  font-family: "Montserrat", serif;
}

.imaging-services h3, .imaging-services h2 {
  text-align: center;
  color: #fd8103;
}

.imaging-services h2 {
  margin-top: -10px;
  font-size: 35px;
  font-weight: 700;
}

.imaging-services-card-container {
  display: flex;
}


.imgs-card {
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  width: 25%;
  padding: 5px 20px 20px 20px;
  color: white;
  margin: 10px 10px 10px 10px;
  background-image:  linear-gradient(45deg, #00a896 0%, #41c9bb 100%);
  transform: translateY(0); /* Initial position */
  transition: transform 0.2s ease-in;
}


@media (max-width: 1023px) {
  .imaging-services-card-container {
    display: grid;
    width: 90%;
  }
  .imgs-card {
    width: 95%;
  }

  .imaging-services {
    margin: 10px;
  }
  .diagnostic-card {
    width: 300px;
  }
}

.imgs-card:hover {
  background-image: linear-gradient(45deg, #31948a 0%, #00a896 100%);
  transform: translateY(-15px); /* Moves the card upward */
  position: relative;
}

.imgs-card h4 {
  font-size: 21px;
  font-weight: 700;
}

.imgs-card p {
  line-height: 25px;
  font-size: 16px;
  margin-top: -25px;
  font-weight: 500;
}

.imgs-card button {
  font-family: "Montserrat", serif;
  font-weight: 700;
  padding: 5px 10px;
  font-size: 13px;
  color: white;
  border: 1px solid #41c9bb;
  background-color: #00a896;
  display: none;
}

.imgs-card button:hover {
  border: 1px solid rgba(255, 255, 255, 0);
  transition: 0.5s ease;
}


.contact-hero {
  background-image: url(../img/new-gallery/hero-5.jpeg);
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
}

.contact-hero h1 {
  margin-top: 0;
  padding: 50px 0 50px 100px;
  font-family: "Montserrat", serif;
  font-size: 60px;
  font-weight: 700;
  color: #fd8103;
}

.contact-hero p {

}

.why button {
  background-color: white;
  border: 1px solid #00a896;
  padding: 10px;
  border-radius: 10px;
  position: relative;
  left: 50px;
}

.why h3 {
  font-weight: 700;
  font-size: 26px;
  color: #fd8103;
  position: relative;
  left: 50px;
}

.why .contact-list {
  position: relative;
  right: 40px;
}

@media (max-width: 1024px) {
  .form-and-why {
    display: grid;
    margin: 0 30px 0 20px;
  }
  .why {
    width: 100%;
    margin: 0 5px;
    text-align: justify;
  }
  .why h2, .why p, .why ul {
    margin: 0;
  }
  .why h3 {
    position: relative;
    left: 10px;
  }
}

.pharmacy-sub-hero {
  background-color: #e4f4f4;
  
}

.p-sub-hero-container {
  display: flex;
  font-family: "Montserrat", serif;
  justify-content: center;
  gap: 20px;
}

.p-sub-hero-container p a {
  text-decoration: none;
  font-weight: 700;
}

.why-pharmacy {
  font-family: "Montserrat", serif;
}

.why-pharmacy h2 {
  text-align: center;
  font-weight: 700;
  font-size: 45px;
  color: #00a896;
}

.why-pharmacy-container {
  display: flex;
  justify-content: center;
  margin: 0 90px;
}

.why-pharmacy-card {
  background-color: #e4f4f4;
  margin: 15px;
  padding: 30px 10px;
  width: 50%;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  transform: translateY(0); /* Initial position */
  transition: transform 0.2s ease-in;
}

.why-pharmacy-card:hover {
  transform: translateY(-15px); /* Moves the card upward */
  position: relative;
}

.info-form {
  display: flex;
  justify-content: center;
  margin: 0 120px;
  gap: 50px;
}

.pharmacy-info {
  width: 50%;
}

#pharmacy-form {
  margin-right: 0;
}

.info-card {
  background-color: #fddabc;
  width: 90%;
  line-height: 10px;
  padding: 20px;
  margin: 20px 0;
}

@media (max-width: 1024px) {
  .info-card {
    line-height:normal;
  }
}

.info-card h3 {
  color: #00a896;
}

.info-card h3 a {
  text-decoration: none;
}

.info-card p {
  font-weight: 500;
}

.info-card p span {
  font-weight: 700;
}



.insurance-card-container {
  display: flex;
  justify-content: center;
  margin: 0 100px 50px 100px;
  font-family: "Montserrat", serif;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  gap: 50px;
}

@media (max-width: 1024px) {
  .insurance-card-container {
    display: block;
    margin: 0;
  }
  .contact-hero h1 {
    padding: 10px;
    font-size: 25px;
  }
}

.insurance-card {
  box-shadow: 5px 5px 25px 5px rgb(224, 224, 224);
  padding: 10px;
  border-radius: 5px;
}

.insurance-card img {
  width: 250px;
  height: 250px;
  border-radius: 5px;
}

.insurance-card h3 {
  margin: 0;
  color: #00a896;
}

.insurance-details {
  text-align: justify;
  margin: 0 200px 100px 200px;
  font-family: "Montserrat", serif;
}

@media (max-width: 1024px) {
  .insurance-details {
    margin: 0 20px 50px 20px;
  }
}

.insurance-details p {
  font-size: 20px;
  font-weight: 400;
  color: gray;
}

.f-column1 ul li a {
  transition: 0.3s ease;
}

.f-column1 ul li a:hover{
  color: black;
}

.insurance-details h2 {
  font-size: 30px;
  font-weight: 700;
  color: #00a896;
}

.insurance-details p a {
  text-decoration: none;
}

@media (max-width: 1024px) {
  .insurance-details p a{
    display: none;
  }
}

.insurance-details ul li a {
  text-decoration: none;
}

.insurance-details ul li::marker {
  color: #00a896;
  font-size: 25px;
}

.qr-container {
  display: flex;
  justify-content: center;
  gap: 200px;
}

@media (max-width: 1024px) {
  .qr-container {
    display: block;
  }
}

.qr-container h3 {
  text-align: center;
  margin: 0;
  color: #00a896;
}

.diagnosis-services {
  font-family: "Montserrat", serif;
  margin: 60px 120px;
}



.diagnosis-services h2 {
  font-size: 30px;
  text-align: center;
  font-weight: 600;
  color: #00a896;
}

.diagnosis-services p {
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .diagnosis-services p {
    padding: 10px;
  }
}

.d-services {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.d-list h2 {
  font-weight: 700;
  font-size: 28px;
  line-height: 1.2em;
  position: relative;
  right: 110px;
}

.d-list ul li::marker {
  color: #00a896;
}

.d-list {
  position: relative;
  bottom: 20px;
}

.d-image img {
  border-radius: 10px;
  width: 550px;
}

.d-image video {
  width: 550px;
}

@media (max-width: 1024px) {
  .diagnosis-services {
    margin: 0;
  }
  .d-services {
    display: block;
    padding: 20px;
    text-align: justify;
  }

  .d-list h2 {
    right: 0;
  }

  .d-image img {
    width: 97%;
    padding: 5px;
  }

  .d-image video {
    width: 100%;
  }
  
  .d-video {
    padding: 20px;
  }
}

.ticks {
  list-style: none; /* Remove default bullet */
padding: 0;
}
.ticks li {
  position: relative;
  padding-left: 25px; /* Add space for the custom marker */
}
.ticks li::before {
  content: '✔'; /* Tick symbol */
position: absolute;
left: 10;
color: #00a896; /* Customize tick color */
font-size: 1.5em; /* Adjust tick size */
}

@media (max-width: 1024px) {
  .ticks li::before {
    content: '';
  }
}

.latest {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.788), rgba(0, 0, 0, 0.836)), url(../img/new-gallery/arial-1.jpeg);
  background-size: cover;
  color: white;
  font-family: "Montserrat", serif;
  padding-top: 50px;
  margin-bottom: -50px;
}

.latest h2 {
  margin-left: 120px;
  font-size: 30px;
}



.underline {
  margin-left: 120px;
  width: 150px;
  height: 5px;
  background-color: white;
}

.latest-carousel-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 20px;
  gap: 20px;
}

.latest-carousel-container {
  position: relative;
  width: 90%;
  max-width: 1200px;
  border-radius: 10px;
}

.latest-carousel {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 20px;
  padding: 20px 10px;
  padding-bottom: 100px;
}

@media (max-width: 1024px) {
  .latest-carousel {
    display: block;
  }
}

.latest-news-card {
  flex: 0 0 calc(25% - 15px);
  min-width: 280px;
  opacity: 1;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.latest-card-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: all 0.4s ease;
  overflow: hidden;
}

.latest-news-card:hover .latest-card-image {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.latest-card-content {
  padding: 20px 5px 0;
  color: white;
  display: flex;
  flex-direction: column;
}

.latest-card-category {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #00a896;
  margin-bottom: 8px;
}

.latest-card-content h3 {
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 10px 0;
  color: white;
  transition: all 0.3s ease;
}

.latest-card-content p {
  font-size: 15px;
  font-weight: 400;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.latest-news-card:hover .latest-card-content h3 {
  color: #00a896;
}

.latest-carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  padding: 12px 16px;
  cursor: pointer;
  z-index: 10;
  font-size: 24px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.latest-carousel-btn:hover {
  background-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.latest-prev {
  left: 0;
}

.latest-next {
  right: 0;
}

@media (max-width: 1024px) {
  .latest-news-card {
    flex: 0 0 calc(50% - 10px);
    min-width: 250px;
  }

  

  .latest-carousel-btn {
    padding: 10px 14px;
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .latest h2 {
    margin-left: 30px;
  }

  .underline {
    margin-left: 30px;
  }

  .latest {
    padding-bottom: 45px;
  }
}

@media (max-width: 768px) {
  .latest-news-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .latest-carousel-wrapper {
    margin: 30px 10px;
    gap: 10px;
  }

  .latest-carousel-btn {
    padding: 8px 12px;
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  

  .latest-card-content h3 {
    font-size: 18px;
  }

  .latest-card-content p {
    font-size: 14px;
  }
}

@media (min-width: 1024px) {
  .toggle2-btn {
    display: none;
  }
  .drop-icon {
    display: none;
  }
}

.logo2 {
  display: flex;
}

@media (max-width: 1024px) {
  .responsive-br {
    display: none;
  }
  .logo2 {
    display: none;
  }
  .drop-icon {
    margin-left: 5px;
  }
  .toggle2-btn {
    display: block;
    position: absolute;
    top: 50px;
    background-color: transparent;
    border: 2px solid transparent;
    right: 20px;
    z-index: 9999;
  }
  .toggle2-btn span {
    background-color: #333;
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;

  }
  .navbar2 {
    display: none;
    width: 100%;
  }
  .navbar2.active {
    display: block;
    margin-left: 50px;
  }
  .navbar2 input {
    display: none;
  }
  .navbar2 ul {
    display: block;
    position: relative;
    top: 50px;
    left: 0;
    height: 250px;
    z-index: 9999;
    width: 100%;
    background-color: white;
  }
  .navbar2 ul li {
    margin: 20px;
  }
}

.contact-section {
  background-color: #00a896;
  margin: 0;
  font-family: "Montserrat", serif;
}

.contact-container {
  display: flex;
  justify-content: center;
}



.cont-card {
  margin: 20px;
}

.cont-card p a {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.cont-card p a:hover {
  color: #fd8103;
}

.cont-bord {
  height: 100px;
  width: 2px;
  background-color: white;
}

@media (max-width: 1024px) {
  .contact-container {
    display: none;
  }
}


.gynaecology-form {
  background-color: #e4f4f4;
  font-family: "Montserrat", serif;
}

.gynaecology-form p {
  text-align: center;
  padding: 50px 100px 20px 100px;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 768px) {
  .gynaecology-form p {
    padding: 20px;
  }
}

.gynaecology-form div {
  display: flex;
  justify-content: center;
}

.gynaecology-form div button {
  background-color: white;
    border-radius: 5px;
    font-family: 'Montserrat', serif;
    color: black;
    font-weight: 300;
    font-size: 15px;
    padding: 10px 10px;
    border: 1px solid rgb(0, 0, 119);
    margin: 0 20px;
    margin-bottom: 50px;
    transition: 0.5s ease;
}

.gyn {
  background-image: url(../img/gp3.jpg);
  background-size: cover;
  font-family: "Montserrat", serif;
}


.gyn div {
  padding: 50px 100px;
}


.gyn div h2 {
  font-weight: 600;
  font-size: 30px;
  color: white;
}

.gyn div p {
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: white;
}

.gyn div ul li p {
  font-weight: 500;
}

.cont-card div p {
  text-decoration: none;
  color: white;
  font-size: 18px;
  font-weight: 600;
  width: 70%;
}

.cont-card h2 {
  color: white;
}

.cont-card div button {
  font-family: "Montserrat", serif;
  border-radius: 40px;
  font-size: 18px;
  height: 50px;
  width: 20%;
  margin: 0 5px 0 80px;
  background-color: #fd8103;
  font-weight: 600;
  border: 1px solid white;
}

.cont-card div button a {
  color: white;
  text-decoration: none;
}

.some-words {
  margin: 10px 100px;
  font-family: "Montserrat", serif;
  font-weight: 500;
  line-height: 1.5;
}

.physio-services {
  background-color: #016d62;
  font-family: "Montserrat", serif;
}

.physio-services h2 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: white;
  padding: 50px 0 0 0;
}

.physio-container {
  margin: 0 100px;
  padding: 10px 0;
}

.physio-card {
  display: flex;
  justify-content: center;
  padding: 20px 0 10px 0;
  margin: 10px 0;
  border: 1px solid rgba(255, 255, 255, 0.397);
  box-shadow: 10px 10px 10px 10px rgba(255, 255, 255, 0.151);
  border-radius: 10px;
}


.physio-icon {
  margin: 0 30px 0 0;
  width: 25%;
}

.physio-icon div {
  display: flex;
  justify-content: center;
}

.physio-icon div img {
  width: 62px;
}

.physio-icon h3 {
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  color: #fd8103;
  line-height: 1.2em;
}

.physio-list {
  width: 25%;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  color: white;
}


@media (max-width: 1024px) {
  .physio-card {
    display: block;
  }
  .physio-icon {
    width: 100%;
    text-align: center;
  }
  .physio-list {
    width: 100%;
  }
  .physio-container {
    margin: 0 10px;
  }
}

.vaccination-button {
  background-color: #fd8103;
  border: 1px solid #fd8103;
  padding: 10px 20px;
  font-family: "Montserrat", serif;
  color: white;
  font-weight: 600;
  font-size: 18px;
  border-radius: 25px;
}

.vaccination-button a {
  text-decoration: none;
  color: white;
}

.home-table {
  font-family:  "Montserrat", serif;
}




.home-table h1 {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
}

.home-table p {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.home-table h2 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1em;
  padding-bottom: 10px;
  text-align: center;
}

.home-table h1, h2 {
  color: #00a896;
}

.home-table div {
  display: flex;
  justify-content: center;
  font-size: 32px;
}

@media (max-width: 1024px) {
  .home-table div {
    padding: 0 5px;
  }
}

.doctor-listings {
  font-family: "Montserrat", serif;
background: linear-gradient(135deg, #e7e7e7, #d3d3d3, #d9d9d9);
}


.surgical-cards {
  margin: 100px 0;
}

.surgical-cards h2 {
  font-family: "Montserrat", serif;
  font-size: 42px;
  text-align: center;
}

.surgical-card-container {
  display: flex;
  justify-content: center;
  margin: 10px 100px;
  font-family: "Montserrat", serif;
}

.surgical-card {
  display: grid;
  border: 1px solid #e4f4f4;
  margin: 0 5px;
  width: 20%;
  line-height: 18px;
  padding: 0;
  text-align: center;
  background-color: #e4f4f4;
  transition: 0.3s ease;
}



.surgical-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: #00a896;
}


.surgical-card p {
  font-weight: 500;
  color: #25d366;
}

.surgical-card:hover {
  background-color: #497777;
}

.surgical-card:hover h3 {
  color: white;
}

.surgical-card:hover p {
  color: #39f17d;
}

.sports-cards {
  font-family: "Montserrat", serif;
  margin: 100px 0;
}

.sports-card-container {
  display: flex;
  justify-content: center;
  margin: 0 100px;
}

.sports-card {
  border: 1px solid #f2f2f2;
  padding: 20px;
  margin: 5px;
  background-color: #f2f2f2;
  width: 25%;
}

.sports-card h3 {
  color: #fd8103;
}

@media (max-width: 1024px) {
  .surgical-card-container {
    display: block;
    margin: 5px 20px 5px 10px;
  }
  .surgical-card {
    width: 100%;
    margin: 5px;
  }
  .sports-card-container {
    display: block;
    margin: 0 10px;
  }
  .sports-card {
    width: 85%;
  }
}

/* Styling for the new heading */
/* Container styling to hold both elements side-by-side */
.wfs-container {
  display: flex;
  align-items: stretch; /* Ensures both columns have equal height if needed */
  justify-content: center;
  gap: 24px; /* Crisp, modern gap spacing */
  max-width: 1350px;
  margin: 0 auto;
  padding: 60px 20px;
}

/* Image Container */
.wfs-image-container {
  flex: 1;
  max-width: 400px;
  position: relative;
  overflow: hidden; /* Keeps the shimmer effect inside the rounded corners */
  border-radius: 24px;
  min-height: 400px; /* Gives the skeleton a default height before image loads */
}

/* 1. The Skeleton Fallback */
.wfs-image-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, #e2e8ea 8%, #f2f5f6 18%, #e2e8ea 33%);
  background-size: 200% 100%;
  animation: heroShimmer 1.4s linear infinite;
  z-index: 2; /* Sits on top until hidden */
}

/* 2. The Image (Starts hidden/transparent for a smooth fade-in) */
.wfs-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0; 
  transition: opacity 0.4s ease-in-out; /* Smooth transition when loaded */
  position: relative;
  z-index: 1;
}

/* 3. Your Existing Shimmer Animation */
@keyframes heroShimmer {
  to {
    background-position-x: -200%;
  }
}

/* Text Card Panel */
.wfs-text-card {
  flex: 1.5;
  background-color: #dbeafe;
  border-radius: 24px;
  padding: 48px;
  display: flex;
  flex-direction: column;
}



.wfs-card-footer {
  margin-top: auto; /* Pushes the signature to the bottom if the card gets tall */
  padding-top: 32px; /* Leaves breathing room below the main text */
  text-align: right; /* Aligns text right */
}

/* Signature Name styling */
.wfs-signature-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 2px 0;
}

/* Signature Title styling */
.wfs-signature-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #64748b;
  margin: 0;
  text-transform: uppercase; /* Makes it look modern and crisp */
  letter-spacing: 0.5px;
}

/* Responsive design adjustment */
@media (max-width: 768px) {
  .wfs-card-footer {
    text-align: center; /* Centers the name nicely on mobile screens */
    padding-top: 24px;
  }
}

/* Header Text Layout */


.wfs-director-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #1e293b; /* Premium slate color */
  margin: 0 0 4px 0;
}

.wfs-director-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #64748b; /* Muted subtitle color */
  margin: 0;
}

/* Main Quote / Message Styling */
.wfs-card-body p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem; /* Bold, large modern typography scale */
  line-height: 1.4;
  font-weight: 400;
  color: #0f172a; /* Deep navy/black for high aesthetic readability */
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.separator-line {
  display: flex;
  justify-content: center;
  align-items: center;
}

.separator-line div {
  height: 1px;
  min-width: 1000px;
  background-color: rgb(177, 177, 177);
}

@media (max-width: 1000px) {
  .separator-line div {
    min-width: 500px;
    height: 1px;
  }
}

@media (max-width: 500px) {
  .separator-line div {
    min-width: 250px;
  }
}

/* Responsive adjustment for tablet/mobile */
@media (max-width: 768px) {
  .wfs-container {
    display: block;
  }

  .wfs-image-container  {
    margin-bottom: 20px;
  }

  .wfs-text-card {
    padding: 32px 24px;
  }

  .wfs-card-body p {
    font-size: 1.4rem;
  }
}

/* Section Base Container */
.features-section {
  background-color: #dbeafe; 
  padding: 60px 0; /* Zeroed out horizontal padding to let containers hit their full boundaries */
  font-family: 'Montserrat', sans-serif;
}

/* Centered Header Style */
.section-main-title {
  text-align: center;
  font-size: 3.2rem;
  font-weight: 300; 
  color: #1e293b;
  margin-bottom: 60px;
  letter-spacing: -1px;
}

/* Utility class for selective bolding */
.text-bold {
  font-weight: 700;
  color: #0f172a;
}

/* Split Columns Layout Container */
.feature-split-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0; /* CRITICAL: Zero gap lets facing image edges align perfectly down the middle */
  max-width: 1300px;
  margin: 0 auto 80px auto;
}

/* Alternating flip rule for desktop layout */
.row-reverse-desktop {
  flex-direction: row-reverse;
}

/* Image Side Layout - Locked at exactly 50% width */
.feature-image-wrapper {
  flex: 0 0 50%;
  width: 50%;
  height: 480px; /* Uniform height ensures perfectly identical shapes */
  position: relative;
  overflow: hidden;
  border-radius: 32px; 
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.feature-image-wrapper img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover; 
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

/* Shimmer Skeleton integration */
.feature-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, #e2e8ea 8%, #f2f5f6 18%, #e2e8ea 33%);
  background-size: 200% 100%;
  animation: heroShimmer 1.4s linear infinite;
  z-index: 1;
}

/* Text Content Column Styling - Locked at exactly 50% width */
.feature-text-wrapper {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

/* Padding classes ensure text elements don't bunch up against the image center lines */
.content-padding-right {
  padding-left: 60px;
  padding-right: 20px;
}

.content-padding-left {
  padding-right: 60px;
  padding-left: 20px;
}

/* Minimal Editorial Title */
.feature-sub-title {
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1.2;
  color: #1e293b;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

.feature-description {
  max-width: 600px;
}

/* Body Content Block paragraphs */
.feature-description p {
  font-size: 1.05rem;
  line-height: 1.6;
  font-weight: 400;
  color: #475569; 
  margin: 0 0 13px 0;
}

.feature-description p:last-child {
  margin-bottom: 0;
}

/* Media Queries for Responsive Mobile Screens */
@media (max-width: 992px) {
  .feature-split-container,
  .feature-split-container.row-reverse-desktop {
    flex-direction: column; 
    gap: 30px;
    margin-bottom: 60px;
    padding: 0 20px;
  }
  
  .section-main-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }

  .feature-sub-title {
    font-size: 2rem;
  }
  
  .feature-image-wrapper,
  .feature-text-wrapper {
    flex: 1 1 100%;
    width: 100%;
  }

  .feature-image-wrapper {
    max-width: 600px;
    height: 320px; 
  }

  .content-padding-right,
  .content-padding-left {
    padding: 0;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* ==========================================================================
   Accepted Insurance Section (Infinite Slider Carousel)
   ========================================================================== */
.accepted-insurance-section {
  background-color: #e4f4f4;
  padding: 50px 0;
  overflow: hidden;
  font-family: 'Montserrat', sans-serif;
  border-top: 1px solid rgba(0, 168, 150, 0.1);
}

.insurance-ticker-title {
  text-align: center;
  margin-bottom: 30px;
}

.insurance-ticker-title h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #00a896;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
}

.insurance-ticker-title .insurance-underline {
  margin: 12px auto 0 auto;
  width: 80px;
  height: 4px;
  background-color: #fd8103;
  border-radius: 2px;
}

.insurance-ticker-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 15px 0;
}

/* Gradient overlays on left and right for fade out effect */
.insurance-ticker-container::before,
.insurance-ticker-container::after {
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.insurance-ticker-container::before {
  left: 0;
  background: linear-gradient(to right, #e4f4f4 0%, rgba(228, 244, 244, 0) 100%);
}

.insurance-ticker-container::after {
  right: 0;
  background: linear-gradient(to left, #e4f4f4 0%, rgba(228, 244, 244, 0) 100%);
}

.insurance-ticker-track {
  display: flex;
  width: calc(280px * 12); /* 280px item width * 12 items */
  animation: scrollInsurance 25s linear infinite;
}

.insurance-ticker-track:hover {
  animation-play-state: paused;
}

.insurance-ticker-item {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
}

.insurance-card-wrapper {
  background: white;
  padding: 20px;
  border-radius: 12px;
  width: 100%;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 24px rgba(0, 168, 150, 0.08);
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(0);
}

.insurance-card-wrapper img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(10%) contrast(95%);
  opacity: 0.9;
  transition: all 0.4s ease;
}

.insurance-card-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 32px rgba(0, 168, 150, 0.15);
}

.insurance-card-wrapper:hover img {
  filter: grayscale(0%) contrast(100%);
  opacity: 1;
}

@keyframes scrollInsurance {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-280px * 3)); /* Shift by the width of 3 unique items */
  }
}

@media (max-width: 768px) {
  .accepted-insurance-section {
    padding: 40px 0;
  }

  .insurance-ticker-title h2 {
    font-size: 1.8rem;
  }
  
  .insurance-ticker-item {
    width: 200px;
    padding: 0 10px;
  }
  
  .insurance-card-wrapper {
    height: 90px;
    padding: 12px;
  }
  
  .insurance-ticker-track {
    width: calc(200px * 12);
  }
  
  @keyframes scrollInsurance {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-200px * 3));
    }
  }
}

:root {
  --primary-green: #004d25;
  --primary-red: #c8102e;
  --dark-navy: #0f172a;
  --text-dark: #1e293b;
  --bg-light: #f8fafc;
}

.hepatitis-campaign {
  background-color: var(--bg-light);
  padding: 3rem 1rem;
  font-family: system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
}

.campaign-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.brand-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-green);
  background-color: #e6f4ea;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.main-title {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0;
  line-height: 1;
}

.highlight-title-dark {
  background-color: var(--primary-green);
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  display: inline-block;
  padding: 0.25rem 1.5rem;
  margin: 0.5rem 0;
  border-radius: 2px;
}

.highlight-title-red {
  color: var(--primary-red);
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.date-badge {
  display: inline-block;
  background-color: var(--primary-green);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 0.25rem 2rem;
  margin: 0.75rem 0 2rem 0;
  border-radius: 2px;
}

.quote-card {
  background: #ffffff;
  border-left: 4px solid var(--primary-green);
  padding: 1.5rem;
  margin: 0 auto 2.5rem auto;
  max-width: 600px;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  border-radius: 0 8px 8px 0;
}

.cta-banner {
  display: inline-block;
  background-color: var(--dark-navy);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.5rem;
  text-transform: uppercase;
  padding: 0.75rem 2.5rem;
  transform: skewX(-8deg);
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.cta-banner span {
  display: inline-block;
  transform: skewX(8deg);
}

.services-list {
  max-width: 550px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: left;
}

.service-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.free-offer {
  background-color: #f0fdf4;
  border: 1px solid #dcfce7;
}

.paid-offer {
  background-color: #fef2f2;
  border: 1px solid #fee2e2;
}

.service-card p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.free-offer strong {
  color: var(--primary-green);
}

.price {
  color: var(--primary-red);
  font-weight: 800;
}