@import url("https://fonts.googleapis.com/css2?family=Inria+Serif:wght@400;700&display=swap");
* {
  padding: 0;
  margin: 0;
}

:root {
  --primary-blue: #1B9AD5;
  --light-green-bg: #F7FFD9;
  --accent-orange: #F26334;
  --olive-green: #6D8B00;
  --light-blue-bg: #DCF5FF;
  --accent-orange-alt: #F26334;
  --gold-yellow: #FCB618;
}

.contact-btn{
  display: flex;
height: 40px;
padding: 0 12px;
justify-content: center;
align-items: center;
gap: 10px;
border-radius: 6px;
border: 1px solid #F26333;
color: #F26334;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
}

.register-btn{
  color: #FFF;
font-family: Montserrat;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: normal;
display: flex;
padding: 10px 16px;
justify-content: center;
align-items: center;
gap: 10px;
border-radius: 6px;
background: linear-gradient(90deg, #F26334 0%, #D73905 100%);
}

.navbar {
    --bs-navbar-padding-x: 0;
 --bs-navbar-padding-y: 0rem !important;
}
/* Top Bar */
.top-bar {
  background: var(--primary-blue);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  /* padding: 0.4rem 0; */
}
.top-bar .contact-info {
  color: #fff;
  font-weight: 500;
}
.top-bar .contact-info a {
  color: #fff;
  text-decoration: none;
}
.top-bar .social-icons a {
  color: #fff;
  margin-left: 12px;
  font-size: 1.1rem;
  transition: color 0.2s;
}
.top-bar .social-icons a:hover {
  color: var(--gold-yellow);
}

/* Navbar */
.main-navbar {
  background: #fff;
  font-family: 'Montserrat', sans-serif;
  box-shadow: 0 2px 8px rgba(27,154,213,0.04);
}
.navbar-brand img {
  height: 80px;
  width: auto;
}
.navbar-nav .nav-link {
  color: var(--accent-orange);
  font-weight: 500;
  font-size: 1rem;
  /* margin: 0 0.7rem; */
  transition: color 0.2s;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:focus,
.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
  /* font-weight: 600; */
  /* background-color: var(--light-blue-bg); */
  /* border-radius: 10px; */
  overflow: hidden;
  transition: color 0.2s;
}
.btn-contact {
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--gold-yellow) 100%);
  color: #fff;
  border-radius: 4px;
  font-weight: 400;
  border: none;
  padding: 0.5rem 1.5rem;
  transition: background 0.2s, color 0.2s;
}
.btn-contact:hover {
  background: linear-gradient(90deg, var(--gold-yellow) 0%, var(--accent-orange) 100%);
  color: #fff;
}

/* Main Nav Buttons */
.btn-orange {
  background: linear-gradient(90deg, var(--accent-orange) 0%, var(--gold-yellow) 100%);
  color: #fff;
  border-radius: 14px;
  font-weight: 400;
  border: none;
  transition: background 0.2s, color 0.2s;
}
.btn-orange:hover {
  background: linear-gradient(90deg, var(--gold-yellow) 0%, var(--accent-orange) 100%);
  color: #fff;
}
.btn-outline-orange {
  border: 2px solid var(--accent-orange);
  color: var(--accent-orange);
  background: transparent;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.btn-outline-orange:hover {
  background: var(--accent-orange);
  color: #fff;
}

/* Mobile Navigation Styles */
.mobile-nav {
  background-color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #000000;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.mobile-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: all 0.3s ease;
  overflow-y: auto;
}
.mobile-menu-overlay.active .mobile-menu-content {
  transform: translateX(0);
}
.mobile-menu-header {
  padding: 20px;
  text-align: right;
  background: var(--primary-blue);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.mobile-menu-close:hover {
  background-color: var(--gold-yellow);
}
.mobile-menu-body {
  padding: 20px;
}
.mobile-menu-items {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu-items li {
  margin-bottom: 0;
  border-bottom: 1px solid var(--gold-yellow);
}
.mobile-menu-items a,
.mobile-link {
  display: block;
  padding: 15px 0;
  color: var(--accent-orange);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}
.mobile-menu-items a:hover,
.mobile-link:hover {
  color: var(--primary-blue);
  padding-left: 10px;
}
.d-grid .btn,
.btn-outline-orange {
  border: 2px solid var(--accent-orange);
  color: var(--accent-orange);
  background: transparent;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}
.d-grid .btn:hover,
.btn-outline-orange:hover {
  background: var(--accent-orange);
  color: #fff;
}
.text-primary-blue {
  color: var(--primary-blue) !important;
}
.fs-5 {
  font-size: 1.25rem !important;
}
.thyo-link {
  color: var(--accent-orange);
  font-weight: 600;
  text-decoration: underline;
}
.mobile-copyright {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.4;
}
.mobile-copyright p {
  margin: 2px 0;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .navbar-brand img {
    height: 60px;
  }
  .main-navbar .btn,
  .main-navbar .btn-outline-orange {
    width: 100%;
    margin-bottom: 10px;
  }
  .main-navbar .navbar-collapse {
    background: #fff;
    padding: 1rem 0;
  }
}
@media (max-width: 575.98px) {
  .navbar-brand img {
    height: 45px;
  }
  .top-bar .container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  .mobile-menu-header img {
    height: 60px !important;
  }
}

/* Headings margin fix */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0rem !important;
}

.carousel-indicators {
  justify-content: flex-start;
  display: flex !important;
}
.carousel-indicators [data-bs-target] {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  border: none;
  margin: 0 6px;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.carousel-indicators .active {
  opacity: 1;
  background-color: #F26334;
}



/* about section styles */
.about-section {
  position: relative;
  background: var(--light-green-bg) url('../banner/About Us.png') no-repeat center bottom;
  background-size: cover;
  overflow: hidden;
}
.about-card {
  background: #fff;
  border: 2px solid #d4e7b0;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(27,154,213,0.04);
  transition: box-shadow 0.2s, transform 0.2s;
  /* min-height: 340px; */
}
.about-card:hover {
  box-shadow: 0 6px 24px rgba(27,154,213,0.10);
  transform: translateY(-6px) scale(1.03);
}
.about-bg-left {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 220px;
  opacity: 0.18;
  z-index: 0;
}
.about-bg-right {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 220px;
  opacity: 0.18;
  z-index: 0;
}
@media (max-width: 991.98px) {
      .about-section {
    background-size: contain;
    background-position: center bottom;
  }
  .about-bg-left, .about-bg-right { width: 120px; }
  .about-card { min-height: 320px; }
}
@media (max-width: 767.98px) {
      .about-section {
    background-image: url('../banner/About Us.png');
    background-size: cover;
    background-position: center bottom;
  }
  .about-bg-left, .about-bg-right { display: none; }
  .about-card { min-height: 0; }
}





/* Why Choose Us Section Styles */
.why-choose-section {
  background: var(--light-blue-bg) url('../banner/why-bg.png') no-repeat left bottom;
  background-size: contain;
  position: relative;
  overflow: hidden;
}
.why-bg-img {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 260px;
  opacity: 0.13;
  z-index: 0;
  pointer-events: none;
}
.why-img-main {
  min-height: 320px;
  min-width: 260px;
}
.why-main-img {
  /* max-width: 420px; */
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(27,154,213,0.10);
  z-index: 2;
  position: relative;
}
.why-small-img {
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(27,154,213,0.10);
  z-index: 3;
  left: -60px;
  top: 60%;
  /* border: 6px solid #fff; */
}
.why-highlight-box {
  background: #fff;
  border-radius: 28px;
  border-left: 12px solid var(--accent-orange);
  box-shadow: 0 2px 12px rgba(27,154,213,0.04);
  display: inline-block;
  min-width: 320px;
  max-width: 100%;
}
@media (max-width: 991.98px) {
  .why-img-main {
    min-height: 220px;
    min-width: 160px;
  }
  .why-main-img {
    max-width: 320px;
  }
  .why-small-img {
    width: 120px;
    left: -30px;
    top: 65%;
  }
  .why-highlight-box {
    min-width: 220px;
    font-size: 1rem;
    padding: 1.2rem;
  }
}
@media (max-width: 767.98px) {
  .why-bg-img {
    display: none;
  }
  .why-img-main {
    min-height: 0;
    min-width: 0;
  }
  .why-main-img {
    max-width: 100%;
  }
  .why-small-img {
    display: none;
  }
  .why-highlight-box {
    min-width: 0;
    width: 100%;
    font-size: 1rem;
    padding: 1rem;
  }
}





/* Impact & Vision Section Styles */



.impact-vision-section {
  background: #fff;
  position: relative;
}
.impact-card {
  /* background: #fff; */
  /* border-radius: 18px; */
  /* box-shadow: 0 2px 12px rgba(27,154,213,0.04); */
  /* padding: 12px 18px 8px 18px; */
  min-width: 120px;
  max-width: 180px;
  flex: 1 1 120px;
  /* border: 2px solid #e3f2fd; */
}
.impact-img {
  width: 100%;
  max-width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid #b2ebf2;
  margin-bottom: 8px;
}
.impact-text {
  color: #444;
  font-size: 0.8rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 0;
}
.vision-mission-bg {
  background: var(--gold-yellow);
  border-radius: 0 0 0 0;
  min-height: 340px;
  display: flex;
  align-items: center;
  position: relative;
border-radius: 24px 0 0 24px;
}
.vision-mission-content {
  width: 100%;

}
.vision-title-box {
  background: linear-gradient(90deg, #14344c 60%, #FCB618 100%);
  padding: 10px 0 10px 0;
  border-radius: 0 0 0 0;
  margin-bottom: 24px;
  
}
.vision-title {
  color: #FCB618;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #FCB618 0%, #1B9AD5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.vision-icon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
@media (max-width: 991.98px) {
  .impact-vision-section .container-fluid {
    padding-left: 0;
    padding-right: 0;
  }
  .impact-card {
    min-width: 190px;
    max-width: 170px;
    padding: 10px 10px 6px 10px;
  }
  .vision-title {
    font-size: 1.5rem;
  }
  .vision-mission-bg {
    min-height: 260px;
    padding: 24px 0;
  }
}
@media (max-width: 767.98px) {
  .impact-vision-section {
    /* padding: 2rem 0 1rem 0; */
  }
  .impact-card {
    min-width: 180px;
    max-width: 100%;
    margin-bottom: 12px;
  }
  .vision-mission-bg {
    border-radius: 0;
    min-height: 180px;
    padding: 16px 0;
  }
  .vision-title {
    font-size: 1.1rem;
  }
  .vision-mission-content {
    padding: 0 10px !important;
  }
}



/* Carousel navigation buttons for services section */
.services-section .carousel-control-prev,
.services-section .carousel-control-next {
  position: absolute;
  top: auto;
  bottom: -40px;
  width: 40px;
  height: 40px;
  /* top: 50%; */
  transform: translateY(-50%);
border-radius: 35px;
background: rgba(255, 255, 255, 0.46);
box-shadow: 0 2.8px 2.8px 0 rgba(0, 0, 0, 0.25);
  border: 2px solid #FCB618;
  opacity: 1;
  transition: background 0.2s, box-shadow 0.2s;
  z-index: 2;
}

.services-section .carousel-control-prev {
  left: 50%;
  transform: translateX(-120%);
}
.services-section .carousel-control-next {
  right: 50%;
  transform: translateX(120%);
}

.services-section .carousel-control-prev-icon,
.services-section .carousel-control-next-icon {
  /* background-size: 60% 60%;
  background-position: center;
  background-repeat: no-repeat;
  filter: invert(60%) sepia(30%) saturate(400%) hue-rotate(180deg); */
  color: var(--accent-orange);
}

.services-section .carousel-control-prev:hover,
.services-section .carousel-control-next:hover {
  background: var(--gold-yellow);
  box-shadow: 0 4px 16px rgba(27,154,213,0.13);
}

@media (max-width: 991.98px) {
  /* .services-section .carousel-control-prev {
    left: 10%;
    transform: none;
  }
  .services-section .carousel-control-next {
    right: 10%;
    transform: none;
  } */
}
@media (max-width: 575.98px) {
  .services-section .carousel-control-prev,
  .services-section .carousel-control-next {
    width: 38px;
    height: 38px;
    /* bottom: 8px; */
  }
  /* .services-section .carousel-control-prev {
    left: 5%;
  }
  .services-section .carousel-control-next {
    right: 5%;
  } */
}





.testimonial-section {
  background: var(--light-blue-bg);
  position: relative;
  overflow: hidden;
}
.testimonial-content-box {
  background: #fff;
  /* border-radius: 32px; */
  padding: 3rem 3rem;
  box-shadow: 0 4px 24px rgba(27,154,213,0.08);
  max-width: 680px;
  margin-right: -80px;
  z-index: 10;
  position: relative;
}
.testimonial-main-img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.testimonial-nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--accent-orange);
  font-size: 1.3rem;
  box-shadow: 0 2px 12px rgba(27,154,213,0.12);
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.testimonial-nav-btn:hover {
  background: var(--gold-yellow);
  color: #fff;
  box-shadow: 0 4px 16px rgba(27,154,213,0.18);
}
@media (max-width: 1199.98px) {
  .testimonial-content-box {
    margin-right: -40px;
    padding: 2.5rem 2.8rem;
  }
}
@media (max-width: 991.98px) {
  .testimonial-content-box {
    margin-right: 0;
    margin-bottom: 0;
    padding: 2rem 2.5rem;
    max-width: 100%;
  }
  .testimonial-main-img {
    /* margin-top: 2rem; */
  }
}
@media (max-width: 767.98px) {
  .testimonial-content-box {
    padding: 1.5rem 1.8rem;
  }
  .testimonial-text {
    font-size: 1rem !important;
  }
}



.footer-section {
  background: var(--light-blue-bg);
  font-family: 'Montserrat', sans-serif;
}
/* .footer-logo {
  height: 110px;
  width: auto;
} */
.footer-social-icons a {
  color: var(--accent-orange);
  font-size: 1.3rem;
  transition: color 0.2s;
}
.footer-social-icons a:hover {
  color: var(--primary-blue);
}
.footer-heading {
  color: var(--accent-orange);
  font-weight: 700;
  font-size: 1.25rem;
}
.footer-links {
  margin: 0;
  padding: 0;
}
.footer-links li {
  /* margin-bottom: 8px; */
  list-style: none;
}
.footer-links a {
  color: #14344c;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
  color: var(--primary-blue);
  padding-left: 5px;
}
.footer-contact-bar {
  background: #fff;
  border-radius: 16px;
  padding: 1.1rem 2rem;
  box-shadow: 0 2px 12px rgba(27,154,213,0.06);
  font-size: 1.15rem;
  margin-top: 2.5rem;
}
.footer-bottom {
  border-top: 1px solid #ccc;
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  font-size: 1rem;
}

.whatsapp-float i {
  font-size: 2rem;
  color: #fff;
}
.whatsapp-float:hover {
  background: #128C7E;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
  transform: scale(1.1);
}
@media (max-width: 1199.98px) {
  /* .footer-logo {
    height: 80px;
  } */
  .footer-map img {
    max-width: 250px;
  }
}
@media (max-width: 991.98px) {

  .footer-contact-bar {
    flex-direction: column;
    /* text-align: center; */
    padding: 1rem;
    font-size: 1rem;
  }
  .footer-map img {
    max-width: 100%;
    min-width: 0;
  }
}
@media (max-width: 767.98px) {
  .footer-section {
    padding: 2rem 0 1rem 0;
  }
  .footer-heading {
    font-size: 1.1rem;
  }
  .footer-contact-bar {
    font-size: 0.97rem;
    padding: 0.7rem 0.5rem;
  }
  /* .footer-logo {
    height: 200px;
  } */

}





.services-section {
  background: var(--accent-orange);
}
.service-card {
  background: #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  /* min-height: 420px; */
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(27,154,213,0.10);
  transform: translateY(-6px) scale(1.03);
}
.service-img {
  background: #d3d3d3;
  min-height: 100px;
  width: 100%;
}
.service-content {
  background: #fff;
  /* border-radius: 0 0 40px 40px; */
  flex-shrink: 0;
}

.service-content h4{
font-size: 1.2rem;
}

.service-content p{
font-size: 0.9rem;
}
.btn-orange {
  background: linear-gradient(90deg, #F26334 0%, #FCB618 100%);
  color: #fff;
  border-radius: 5px;
  font-weight: 500;
  border: none;
  transition: background 0.2s, color 0.2s;
  font-size: 1.3rem;
  padding: 0.2rem 0;
    border-radius: 14px;
  
}
.btn-orange:hover {
  background: linear-gradient(90deg, #FCB618 0%, #F26334 100%);
  color: #fff;
}
@media (max-width: 991.98px) {
  .service-card {
    min-height: 340px;
  }
  .service-img {
    min-height: 140px;
  }
}
@media (max-width: 767.98px) {
  .service-card {
    min-height: 0;
    margin-bottom: 1.5rem;
  }
  .service-img {
    min-height: 120px;
  }

}



/* Why Choose Us Slider Styles */
.why-slider-section {
  background: #f6ffe6;
  border-radius: 28px;
  margin: 2rem 0;
}
.why-slider-box {
  background: #f6ffe6;
  border-radius: 28px;
  padding: 2rem 1rem;
  gap: 0.5rem;
}
.why-slider-item {
  min-width: 140px;
  max-width: 180px;
  margin: 0 12px;
  flex: 1 1 140px;
}
.why-slider-icon {
  height: 56px;
  width: 56px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(62%) sepia(77%) saturate(377%) hue-rotate(46deg) brightness(1.1);
}
.why-slider-title {
  color: #7ca800;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  margin-top: 0.5rem;
  line-height: 1.3;
}
.why-slider-control {
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff !important;
  border-radius: 50%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  opacity: 1 !important;
  z-index: 2;
}
.why-slider-control .carousel-control-prev-icon,
.why-slider-control .carousel-control-next-icon {
  filter: invert(62%) sepia(77%) saturate(377%) hue-rotate(46deg) brightness(1.1);
  width: 2rem;
  height: 2rem;
}

/* Responsive: show 3 items per slide on mobile */
@media (max-width: 991.98px) {
  .why-slider-box {
    padding: 1.2rem 0.5rem;
    gap: 0.2rem;
  }
  .why-slider-item {
    min-width: 110px;
    max-width: 140px;
    margin: 0 6px;
    font-size: 1rem;
  }
  .why-slider-icon {
    height: 40px;
    width: 40px;
  }
  .why-slider-title {
    font-size: 0.8rem;
  }
}
@media (max-width: 767.98px) {
  .why-slider-section {
    border-radius: 16px;
    margin: 1rem 0;
  }
  .why-slider-box {
    border-radius: 16px;
    padding: 1rem 0.2rem;
  }
  .why-slider-item {
    min-width: 90px;
    max-width: 120px;
    margin: 0 2px;
  }
}



/* Join Us CTA Section Styles */
.join-cta-section {
  width: 100%;
  padding: 0;
}
.join-cta-bg {
  background: url('../banner/bg-cta.png') center center/cover no-repeat;
  border-radius: 40px;
  /* min-height: 400px; */
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  align-items: stretch;
}
.join-cta-overlay {
  /* background: rgba(20, 30, 40, 0.45); */
  border-radius: 40px;
  width: 100%;
  height: 100%;
  padding: 3rem 2rem;
}
.join-cta-title {
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
}
.join-cta-divider {
  width: 120px;
  height: 4px;
  background: #FCB618;
  margin: 0 auto 1rem auto;
  border-radius: 2px;
  position: relative;
}
.join-cta-divider::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: #fff;
  margin: 6px auto 0 auto;
  border-radius: 1px;
}
.join-cta-desc {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 2rem;
}
.join-cta-btn {
  background: #F26334;
  color: #fff;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 0.75rem 2.5rem;
  border: 2px solid #fff;
  transition: background 0.2s, color 0.2s;
}
.join-cta-btn:hover {
  background: #fff;
  color: #F26334;
  border: 2px solid #F26334;
}

/* Responsive */
@media (max-width: 991.98px) {
  .join-cta-bg, .join-cta-overlay {
    border-radius: 24px;
  }
  .join-cta-title {
    font-size: 2rem;
  }
  .join-cta-desc {
    font-size: 1.1rem;
  }
}
@media (max-width: 575.98px) {
  .join-cta-bg, .join-cta-overlay {
    border-radius: 14px;
    padding: 1.2rem 0.5rem;
  }
  .join-cta-title {
    font-size: 1.3rem;
  }
  .join-cta-desc {
    font-size: 1rem;
  }
  .join-cta-btn {
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
  }
}



  .hovereffects {
    transition: transform 0.3s cubic-bezier(.4,2,.3,1), box-shadow 0.3s cubic-bezier(.4,2,.3,1);
}

.hovereffects:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 8px 32px rgba(0,0,0,0.15), 0 1.5px 8px var(--accent-orange, #ff9800);
  /* border: 1.5px solid var(--accent-orange, #ff9800); */
  z-index: 2;
}



.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid var(--accent-orange, #F26334);
  opacity: 0.5;
  transition: all 0.3s;
  margin: 0 6px;
}

.carousel-indicators{
    margin-bottom: -1.3rem !important;
}
.carousel-indicators .active {
  background-color: var(--accent-orange, #F26334);
  opacity: 1;
  border-color: #fff;
  box-shadow: 0 0 0 3px rgba(242,99,52,0.2);
}




.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  background: #25d366;
  color: #fff !important;
  font-weight: 600;
  font-size: 1.15rem;
  padding: 0.7rem 1.5rem 0.7rem 1.2rem;
  border-radius: 2rem 0.8rem 2rem 2rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.18);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  gap: 0.7rem;
}
.whatsapp-float i {
  font-size: 1.5rem;
}
.whatsapp-float span {
  margin-left: 0.2rem;
  font-family: 'Montserrat', sans-serif;
}
.whatsapp-float:hover {
  box-shadow: 0 8px 32px rgba(37,211,102,0.28);
  transform: translateY(-3px) scale(1.04);
  color: #fff;
  text-decoration: none;
}
@media (max-width: 575px) {
  .whatsapp-float {
    right: 12px;
    bottom: 16px;
    font-size: 1rem;
    padding: 0.6rem 1.1rem 0.6rem 0.9rem;
  }
  .whatsapp-float i {
    font-size: 1.2rem;
  }
}
