    body{
        padding: 0;
        margin: 0;
        box-sizing: border-box;
    }
    a{

        text-decoration: none;
    }
    .main-btn{
    background-color:#ff8c43; 
    border-radius:50px; 
    font-size:18px;
    color: #fff;

    }
    .main-btn:hover{
    color:#ff8c43;
    background-color: #fff;
    border: 1px solid #ff8c43;
    }
    .active{
      color: #ff8c43;
    }
    /* top bar */
    .topbar {
      background: #eef2d4;
      font-size: 15px;
    }
    @media only screen and (max-width: 767px) {
    .topbar {
        display: none;
    }
    }
.header-main {
  position: sticky;
  top: 0;
  z-index: 1030;
}

nav a {
  font-size: 18px;
  font-weight: 500;
  color: #000;
  text-decoration: none;
  padding: 0 10px;
}

nav a:hover {
  color: #ff8c43;
}

.active-menu {
  color: #ff8c43 !important;
  font-weight: 600;
}

/* DESKTOP DROPDOWN */
.dropdown-menu-container {
  position: relative;
}

.dropdown-menu-container .dropdown-menu-box {
  position: absolute;
  top: 40px;
  left: 0;
  background: white;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  padding: 10px 0;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
}

.dropdown-menu-box a {
  display: block;
  padding: 10px 20px;
  color: black;
  text-decoration: none;
  font-size: 16px;
}

.dropdown-menu-box a:hover {
  background: #e7f6f4;
}

/* SHOW DROPDOWN */
.dropdown-menu-container:hover .dropdown-menu-box {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* MOBILE MENU */
.mobile-menu a {
  font-size: 20px;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #000;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.15);
  transition: left .3s ease;
  padding: 20px;
  z-index: 2000;
  overflow-y: auto;
}

.mobile-menu.open {
  left: 0;
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  z-index: 1999;
}

.menu-overlay.show {
  display: block;
}

/* MOBILE DROPDOWN */
.mobile-dropdown-header {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
  align-items: center;
}

.mobile-dropdown-body {
  max-height: 0;
  overflow: hidden;
  padding-left: 15px;
  transition: max-height .35s ease;
}

.mobile-dropdown-body.open {
  max-height: 300px; /* enough space for items */
}

.mobile-dropdown-body a {
  border-bottom: none !important;
  font-size: 18px;
  padding: 8px 0;
}

.rotate {
  transform: rotate(180deg);
  transition: .3s;
}

/* hero */
.home-slider-section {
  position: relative;
}

.unique-owl-slider .slider-item {
  height: 480px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: #00000091;
}

.slider-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  
  padding: 20px;
}

.slider-content h1 {
  font-size: 30px;
  font-weight: 700;
}

.slider-content p {
  font-size: 18px;
  margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
  .unique-owl-slider .slider-item { height: 300px; }
  .slider-content{width: 100%;}
  .slider-content h1 { font-size: 26px; }
  .slider-content p { font-size: 16px; }
}


    /* about section */
/* SECTION WRAPPER */
.about-modern {
  padding: 90px 0;
  background: #f4f9f7;
  font-family: "Poppins", sans-serif;
}

/* GRID */
.about-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 50px;
}

/* IMAGE */
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  border-radius: 20px;

}

.about-image-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}
.about-image-badge i {
  color: #0c8a6b;
  font-size: 20px;
}

/* TEXT AREA */
.about-tag {
  font-size: 16px;
  font-weight: 600;
  color: #0c8a6b;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.about-tag span {
  width: 40px;
  height: 3px;
  background: #0c8a6b;
  display: block;
  border-radius: 5px;
}

.about-title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

/* FEATURES LIST */
.about-features {
  display: grid;
  gap: 20px;
  margin-bottom: 30px;
}

.about-feature-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.about-feature-box .icon {
  width: 55px;
  height: 55px;
  background: #e8f7f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #0c8a6b;
  flex-shrink: 0;
}

.about-feature-box h4 {
  font-size: 20px;
  margin-bottom: 4px;
}

.about-feature-box p {
  font-size: 15px;
  color: #555;
  margin: 0;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  background-color: #ff8c43;
  color: #fff;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: .3s;
}
.about-btn i {
  margin-left: 8px;
}
.about-btn:hover {
  color: #ff8c43;
  background-color: #fff;
  border: 1px solid #ff8c43;
}

/* becom a members */
.join-img-wrapper {
  border-radius: 18px;
  transition: 0.4s ease;
}
.join-img-wrapper:hover {
  transform: scale(1.02);
}

/* Badge */
.join-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #ffffffdd;
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  color: #0a8a78;
}

.join-badge i {
  margin-right: 8px;
}

/* ANIMATIONS */
@keyframes fadeLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

.fade-in-left {
  animation: fadeLeft 1s ease forwards;
}
.fade-in-right {
  animation: fadeRight 1s ease forwards;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .about-container {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .about-title {
    font-size: 32px;
  }
}

@media (max-width: 600px) {
  .about-title {
    font-size: 28px;
  }
}

  /* features-section */
  .features-section {
  padding: 80px 0;
  background: #f7fbf9;
}

.features-container {
  max-width: 1300px;
  margin: auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* BOX */
.feature-box {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.07);
  transition: all .35s ease;
  transform: translateY(0);
  opacity: 0;
}

/* HOVER EFFECT */
.feature-box:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

/* ICON */
.feature-icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #e7f5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  color: #0c8a6b;
}

/* TEXT */
.feature-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-text {
  font-size: 16px;
  color: #555;
  line-height: 1.55;
}

/* ANIMATIONS */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp .8s ease forwards;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .features-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .features-container {
    grid-template-columns: 1fr;
  }
}

/* TESTIMONIAL SECTION */

.testi-sec {
  padding: 80px 0;
  background: #e8f6f3;
}

.testi-left {
  padding-right: 40px;
}

.testi-tag {
  color: #1aa37a;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 18px;
}

.testi-title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 20px;
}

.highlight {
  color: #f8b86a;
  border-bottom: 4px solid #f8b86a;
}

.testi-text {
  margin: 25px 0;
  font-size: 18px;
  color: #3e4a47;
}

.testi-btn {
  display: inline-block;
  margin-top: 20px;
  background: #1aa37a;
  padding: 15px 28px;
  color: #fff;
  font-size: 18px;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s;
}

.testi-btn:hover {
  background: #0f7052;
}

/* Right side carousel */
.testi-carousel .testi-box {
  background: #fff;
  border-radius: 20px;
  padding: 35px;
  display: flex;
  align-items: center;
  gap: 30px;
  min-height: 350px;
}

.stars {
  color: #f7a928;
  font-size: 22px;
}

.t-head {
  font-size: 28px;
  margin: 15px 0;
}

.t-para {
  color: #566963;
  font-size: 18px;
  line-height: 1.6;
}
@media (max-width: 768px) {
    .t-head {
        font-size: 16px;
    }
    .t-para {

    font-size: 16px;

  }
  }

.t-profile {
  margin-top: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.t-profile img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testi-img img {
  width: 260px;
  border-radius: 20px;
  object-fit: cover;
}

/* Owl Dots */
.owl-dots {
  margin-top: 20px !important;
  text-align: center;
}

.owl-dot span {
  width: 14px;
  height: 14px;
  background: #d1d1d1;
  display: block;
  border-radius: 50%;
  margin: 5px;
}

.owl-dot.active span {
  background: #1aa37a;
}

/* why choise us */
.text-teal { color: #0d7a68; }
.text-accent { color: #e4a067; }

.icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #0d7a68;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle i {
    color: #fff;
    font-size: 28px;
}

.btn-accent {
    background: #eab17a;
    color: #000;
}
.btn-accent:hover {
    background: #d89c66;
}

/* services */
.icon-box {
    width: 50px;
    height: 50px;
    background: #0d7a68; /* Blue */
    color: #fff; /* White icon */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%; /* Circle */
    font-size: 20px;
  }

  .service-card {
    transition: 0.3s ease;
    border-radius: 15px;
  }

  .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
  }

/* counter section */
 .counter-circle {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    background: #fff;
  }

  .icon-img {
    width: 60px;
    margin-bottom: 15px;
    filter: invert(34%) sepia(28%) saturate(1200%) hue-rotate(122deg) brightness(92%) contrast(91%);
  }

  .counter {
    font-size: 45px;
    font-weight: 700;
    margin: 0;
  }

  .counter-text {
    margin-top: 5px;
    font-size: 16px;
    color: #6c6c6c;
  }

  /* gallery */
  .gallery-img {
    width: 100%;
    height: 200px;         /* SAME HEIGHT FOR ALL */
    object-fit: cover;      /* Crop for perfect fit */
    border-radius: 10px;
  }

  /* faq */
  .faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 0;
    margin-bottom: 15px;
    overflow: hidden;
    transition: .3s;
  }

  .faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
  }

  .faq-icon {
    position: absolute;
    right: 20px;
    top: 22px;
    font-size: 22px;
    color: #d08a2d;
    font-weight: bold;
  }

  .faq-answer {
    padding: 0 20px 20px;
    font-size: 13px;
    color: #666;
    display: none;
  }

  .faq-answer.show {
    display: block;
  }


  /* contact from */
  .know-more-section {
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* Dark blue overlay look */
.know-more-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #007b73b7;
}
.know-more-section * {
  position: relative;
}

.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
.section-title {
  font-size: 30px;

}
}
/* CALL BOX */
.call-box {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  display: inline-block;
}

.call-inner {
  background: #007b72;
  padding: 18px 30px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.call-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.call-text {
  color: #fff;
  font-size: 26px;
  font-weight: 600;
}

/* FORM CARD */
.form-card {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.input-box {
  height: 60px;
  border-radius: 12px;
  font-size: 18px;
  margin-bottom: 20px;
}

.textarea {
  height: 140px;
  resize: none;
}

.submit-btn {
  width: 100%;
  background: #007b72;
  color: #fff;
  padding: 18px;
  font-size: 20px;
  border-radius: 12px;
  border: none;
  margin-top: 10px;
}
.submit-btn:hover{
  color: #007b72;
  border: 1px solid #007b72;

}


    /* footer */
    .footer-line {
    width: 90px;
    height: 3px;
    background: linear-gradient(to right, #0fa088, #333);
    margin: 10px 0 20px;
  }

  .footer-link {
    color: #bfbfbf;
    text-decoration: none;
    transition: color 0.3s;
  }
  .footer-link:hover {
    color: #0fa088;
  }

  .social-icon {
    width: 45px;
    height: 45px;
    background: #111;
    border-radius: 50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:18px;
    transition:0.3s;
    text-decoration:none;
  }
  .social-icon:hover {
    background:#0fa088;
  }

  .back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 10px;
    background: #0fa088;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:20px;
    cursor:pointer;
    transition:0.3s;
    z-index: 999;
  }
  .back-to-top:hover {
    background:#0c7e6a;
  }

  /* cta section */
  .hero-oldage {
  background: #FFF7E1;  
  padding: 50px 0;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: #222;
  margin-bottom: 15px;
}

.hero-subtext {
  font-size: 16px;
  color: #555;
  margin-bottom: 25px;
}

.hero-btn {
  display: inline-block;
  background: #FF8A3D;
  color: #fff;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 10px 20px rgba(255, 138, 61, 0.3);
}

.hero-btn:hover {
  background: #ff7420;
  box-shadow: 0 12px 25px rgba(255, 138, 61, 0.45);
}

/* about page code  */
/* HERO SECTION */
.about-hero {
    position: relative;
    width: 100%;
    height: 78vh;
    
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DARK OVERLAY */
.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.742);
    z-index: 1;
}

/* CONTENT */
.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 15px;
}

.about-hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* BREADCRUMB */
.breadcrumb {
    font-size: 18px;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    opacity: 0.9;
}

.breadcrumb span {
    margin: 0 6px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .about-hero {
        height: 55vh;
    }

    .about-hero-content h1 {
        font-size: 36px;
    }

    .breadcrumb {
        font-size: 16px;
    }
}


/* Main Section Heading */
.mvs-main-heading {
  font-size: 36px;
  font-weight: 700;
  color: #222;
}

.mvs-main-subtext {
  font-size: 16px;
  color: #555;
  max-width: 650px;
  margin: 0 auto;
}

/* Card Layout */
.mvs-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: .3s ease;
}

.mvs-card:hover {
  transform: translateY(-5px);
}

/* Image */
.mvs-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* Inner Content */
.mvs-content {
  padding: 28px 24px;
}

/* Icon Circle (SMALLER SIZE) */
.mvs-icon {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  border: 2px solid #a5cfcf;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: .3s ease;
}

.mvs-icon i {
  font-size: 26px;
  color: #2d7f96;
  transition: .3s ease;
}

/* Hover Effect → Icon BG & Icon color */
.mvs-card:hover .mvs-icon {
  background: #2d7f96;
  border-color: #2d7f96;
}

.mvs-card:hover .mvs-icon i {
  color: #fff;
}

/* Titles */
.mvs-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #222;
}

/* Paragraph */
.mvs-text {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media(max-width: 767px){
  .mvs-img {
    height: 200px;
  }
  .mvs-icon {
    height: 60px;
    width: 60px;
  }
  .mvs-icon i {
    font-size: 23px;
  }
}


/* contact page */
.contact-section {
  padding: 70px 0;
  background: #f7fdfc;
  text-align: center;
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #e8f4f2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  transition: 0.3s;
}

.contact-card:hover .contact-icon {
  background: #00a88f;
  color: #fff;
}

.contact-icon i {
  font-size: 28px;
  color: #00a88f;
  transition: 0.3s;
}

.contact-card:hover .contact-icon i {
  color: #fff;
}

.contact-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  color: #555;
}


/* member */
.team-member {
    position: relative;
    text-align: center;
    border-radius: 10px;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .team-member img {
    width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
    max-height: 200px;
  }

  .member-info {
    padding: 10px;
  }

  .member-name {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 5px;
  }


  .about-member {
    font-size: 14px;
  }

  .team-member:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Adds shadow on hover */
  }

  /* donet */
  .help-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    height: 380px;            /* fixed but responsive-friendly */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.20);
    transition: transform .3s ease, box-shadow .3s ease;
}

/* Background image for each card */
.help-card-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform .4s ease;
}

/* Black overlay inside card */
.help-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.60);  /* black transparent layer */
}

/* Card text content */
.help-content {
    z-index: 2;
    padding: 20px;
    width: 85%;
}

.help-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 26px rgba(0,0,0,0.35);
}

.help-card:hover .help-card-img {
    transform: scale(1.08);
    filter: brightness(0.5);

}

/* Responsive adjustments */
@media (max-width: 768px) {
    .help-card {
        height: 330px;
    }
}

@media (max-width: 576px) {
    .help-card {
        height: 300px;
    }
    .help-content p {
        font-size: 0.88rem;
    }
}

/* trustee section */
.trustee-section {
  background: #fafafa;
}

/* Sticky Image */
.sticky-img-wrapper {
  position: sticky;
  top: 110px; /* your sticky header height */
}

.section-title-m {
  font-weight: 700;
  animation: fadeInUp 0.8s ease forwards;
  color: #0a8a78;
}

.trustee-img {
  border-radius: 20px;
  transform: scale(0.95);
  transition: 0.4s;
  animation: fadeInRight 1s ease forwards;
}
.trustee-img:hover {
  transform: scale(1.03) rotate(1deg);
}

.trustee-content p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  background: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  transition: 0.3s;
}
.trustee-content p:hover {
  transform: translateX(8px);
  background: #f0f7ff;
}

.fade-in {
  animation: fadeIn 1.2s ease forwards;
  opacity: 0;
}

/* Animations */
@keyframes fadeInUp {
  0% {opacity: 0; transform: translateY(20px);}
  100% {opacity: 1; transform: translateY(0);}
}
@keyframes fadeInRight {
  0% {opacity: 0; transform: translateX(30px);}
  100% {opacity: 1; transform: translateX(0);}
}
@keyframes fadeIn {
  0% {opacity: 0;}
  100% {opacity: 1;}
}



.temple-card {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  text-decoration: none;
  transition: 0.4s ease;
}

.temple-image {
  width: 100%;
  height: 330px;
  background-size: cover;
  background-position: center;
  transition: 0.5s ease;
  filter: brightness(70%);
  border-radius: 20px;
}

.temple-card:hover .temple-image {
  transform: scale(1.06);
  filter: brightness(55%);
}

.temple-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 1rem;
  color: #000;
  font-weight: 600;
  display: flex;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.temple-card:hover .temple-badge {
  transform: translateY(-5px);
}

.temple-badge i {
  color: #0aa06e;
  font-size: 1.2rem;
}


    /* Card Hover Effect */
    .highlight-card {
        transition: all 0.4s ease;
        border-radius: 16px;
        background: #ffffff;
        border: none;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    }
    .highlight-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    /* Icon Style */
    .highlight-icon {
        font-size: 32px;
        color: #ff8c43 !important;
        margin-bottom: 10px;
    }

    /* Fade-in Animation */
    .fade-in {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeInMove 1s ease forwards;
    }
    @keyframes fadeInMove {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }


   /* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 50px;
    height: 50px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    animation: zoomPulse 1.5s infinite ease-in-out;
}

/* Zoom Animation */
@keyframes zoomPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.15); }
    100% { transform: scale(1); }
}

/* ======================== */
/* MOBILE RESPONSIVE STYLES */
/* ======================== */

/* Tablets (768px and below) */
@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 15px;
        left: 15px;
        width: 45px;
        height: 45px;
        font-size: 22px;
    }
}

/* Phones (480px and below) */
@media (max-width: 480px) {
    .whatsapp-btn {
        bottom: 12px;
        left: 12px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}

/* Very Small Phones (360px and below) */
@media (max-width: 360px) {
    .whatsapp-btn {
        bottom: 10px;
        left: 10px;
        width: 38px;
        height: 38px;
        font-size: 18px;
    }
}
