/* .logo {
    max-height: 60px; 
    max-width: 60px; 
    height: auto;
} */
.stylish-font {
    /* font-family: 'Playfair Display', serif;*/
    font-family: 'Cinzel', serif;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertically centers the text inside */
}

.tagline {
    color: #6a9904;
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
}

.logoSec {
    max-height: 80px;
}




.custom-form {
    /* max-width: 600px; */
    /* margin: 0 auto; */
    padding: 20px;
    /* background-color: #f7f7f7; */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.form-control {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: white;
    color: #333;
    font-size: 16px;
}

.form-control:focus {
    border-color: #4caf50;
    outline: none;
}


.company-name {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    color: #2e5725;
    /* deep green */
}

.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.service {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 1.5rem;
    /* width: 260px; */
    text-align: center;
    transition: transform 0.3s ease;
}

/* FAQ */
.faq-item {
    background: #fff;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #2a6f63;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-question {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    color: #2a6f63;
}

.faq-toggle {
    font-size: 20px;
    transition: transform 0.3s;
}

.faq-answer {
    display: none;
    padding-top: 10px;
    color: #555;
}

.faq-active .faq-answer {
    display: block;
}

.faq-active .faq-toggle {
    transform: rotate(180deg);
}







.custom-block-wrap {
    overflow: hidden;
    position: relative;
    border-radius: 10px;
}

/* Default image animation settings */
.custom-block-image {
    transition: transform 0.4s ease, filter 0.4s ease;
    transform: scale(1);
    filter: brightness(100%);
}

/* On hover or focus: zoom in and brighten */
.custom-block-wrap:hover .custom-block-image,
.custom-block-wrap:focus-within .custom-block-image {
    transform: scale(1.1);
    filter: brightness(110%);
}

/* Optional: Shrink or fade when losing focus (using a class toggle in JS) */
.custom-block-wrap.blur-effect .custom-block-image {
    transform: scale(0.98);
    filter: brightness(90%);
}

.custom-block-image {
    animation: fadeInZoom 5s ease forwards;
}


@keyframes zoomFade {
    0% {
        transform: scale(0.95);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s, transform 0.3s;
}

.animate-on-scroll.active {
    animation: zoomFade 0.6s ease forwards;
}



/* Adddon CSS for banner/hero section */
/* Adddon: Modern, less-tall, clean hero styling */

.bannerSection .carousel {
    /* height: 70vh; */
    position: relative;
    overflow: hidden;
}

.bannerSection .carousel-item {
    height: 100%;
}

.bannerSection .carousel-image {
    height: 100%;
    /* object-fit: cover; */
    width: 100%;
    filter: brightness(70%);
}

.bannerSection .carousel-caption {
    position: absolute;
    bottom: 15%;
    left: 40%;
    transform: translateX(-50%);
    text-align: center;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
}

.bannerSection .carousel-caption h1 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bannerSection .carousel-caption p {
    font-size: 1.2rem;
    font-weight: 300;
}

.bannerSection .carousel-control-prev-icon,
.bannerSection .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 10px;
    border-radius: 50%;
}

@media (max-width: 768px) {
    /* .bannerSection .carousel {
        height: 50vh;
    } */

    .bannerSection .carousel-caption h1 {
        font-size: 2rem;
    }

    .bannerSection .carousel-caption p {
        font-size: 1rem;
    }
}




.carousel-item {
    background: #f8f9fa;
    border-radius: 1rem;
    /* min-height: 400px; */
}

.testimonial-name {
    font-weight: bold;
    /* margin-bottom: 0.5rem; */
}

.testimonial-meta {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    /* white-space: pre-wrap; */
}



.site-footer-bottom {
    background-color: #000000;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;
}

.site-footer {
    background-color: #282626;
    padding-top: 20px;
}

.site-header {
    background: #3c7620;
}

h5.site-footer-title.mb-3 {
    color: #8c4c11;
}

h2 {
    color: #994602;
}

.getDirection {
    background: #a15911;
}

.bookAppointment {
    background: #3e7622;
}

h5 {
    color: #2575fc;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
    color: #6b9922;
}

.navbar-expand-lg .navbar-nav .nav-link.custom-btn:hover,
.custom-border-btn:hover {
    background: #2e5725;
}

.social-icon-link:hover {
    background: none;
}

.volunteer-section {
    background: #4f8243de;
}

.testimonial-section::after,
.volunteer-section::after {
    background: none;
}

.testimonial-section::before,
.volunteer-section::before {
    background: none;
}



.book-session-section {
    background: linear-gradient(135deg, #f0f8ff 0%, #f0f8ff 100%);
    color: white;
    text-align: center;
    padding: 100px 20px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    animation: fadeInUp 1s ease forwards;
}

.book-session-section .content {
    /* max-width: 600px; */
    margin: 0 auto;
}

.book-session-section h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-book {
    background-color: #f39c12;
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.btn-book:hover {
    background-color: #d35400;
    color: white;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 600px) {
    .book-session-section h2 {
        font-size: 2rem;
    }

    .btn-book {
        padding: 15px 30px;
        font-size: 1rem;
    }
}


.testimonial-section {
    background: #f9f9f9;
    padding: 80px 20px;
}

.testimonial-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.07);
    max-width: 700px;
    animation: fadeInUp 0.9s ease both;
}

.testimonial-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #333;
}

.testimonial-meta {
    margin-top: 20px;
    color: #2575fc;
    font-weight: bold;
}

.testimonial-details {
    font-size: 0.95rem;
    margin-top: 10px;
    color: #666;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        padding: 30px 20px;
    }

    .testimonial-quote {
        font-size: 1rem;
    }
}

.section-padding {
    padding-top: 25px;
    padding-bottom: 25px;
}
.custom-btn:hover {
    background: #994602c9;
}





/* banner new css 05-06-2025 start  */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

.carousel-caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 2rem;
  z-index: 10;
  font-family: 'Poppins', sans-serif;
}

/* === SLIDE 1 === */
.carousel-item:nth-child(1) .overlay-text {
  text-align: left;
  align-self: flex-end;
  padding-bottom: 8%;
  max-width: 600px;
  color: #ffffff;
}

.carousel-item:nth-child(1) .overlay-text h1 {
  font-size: 67px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.carousel-item:nth-child(1) .overlay-text p {
  font-size: 25px;
  font-weight: 300;
  line-height: 1.5;
  color: #ffffff;
}

/* === SLIDE 2 === */
.carousel-item:nth-child(2) {
  position: relative; /* make sure parent is positioned */
}
.carousel-item:nth-child(2) .overlay-text h1 {
  font-size: 67px;
}
.carousel-item:nth-child(2) .overlay-text p {
  font-size: 25px;
  color: #ffffff;
}
.carousel-item:nth-child(2) .overlay-text {
  position: absolute;
  top: 75px;
  left: 40%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  pointer-events: none; /* so clicks pass through if needed */
  /* color: #352118; */
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
}

/* === SLIDE 3 === */
.carousel-item:nth-child(3) .overlay-text {
  text-align: right;
  align-self: flex-start;
  padding-top: 10%;
  margin-left: auto;
  /* max-width: 650px; */
  color: #ffffff;
}

.carousel-item:nth-child(3) .overlay-text h1 {
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.carousel-item:nth-child(3) .overlay-text p {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.5;
  color: #ffffff;
}

/* === Responsive for mobile === */
@media (max-width: 768px) {
  .carousel-caption {
    padding: 0 1rem;
  }

  .overlay-text h1 {
    font-size: 32px !important;
  }

  .overlay-text p {
    font-size: 16px !important;
  }

  .carousel-item:nth-child(1) .overlay-text,
  .carousel-item:nth-child(2) .overlay-text,
  .carousel-item:nth-child(3) .overlay-text {
    text-align: center !important;
    align-self: center !important;
    margin: 0 auto;
    padding: 0;
    color: #ffffff !important;
  }
}


/* banner new css 05-06-2025 end  */


/* services for home mage  new css 05-06-2025 start  */
#services .additional-services h3 {
  font-size: 28px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #333;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.service-item {
  background-color: #f5f5f5;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 400;
  color: #444;
  transition: background-color 0.3s ease;
}

.service-item:hover {
  background-color: #e0e0e0;
}

.services-description {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.6;
  color: #555;
  max-width: 900px;
  margin: 0 auto;
  padding-top: 10px;
  font-family: 'Poppins', sans-serif;
}
.services-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.service-item {
  background: #6B8E23; /* Olive Green */
  color: #fff;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  cursor: pointer; /* 🔥 This line adds the hand cursor */
}

.service-item:hover {
  background: #8B4513; /* Saddle Brown */
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}


/* services for home mage  new css 05-06-2025 end  */

/* testimonial new css 05-06-2025 start  */


.testimonialCarouselSec {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 1.5rem;
  padding: 2rem 1rem;
  scroll-behavior: smooth;
  background-color: #f5f5f5; /* Light neutral background */
}

.testimonialCarouselSec .testimonial-card {
  flex: 0 0 320px;
  background: #ffffff; /* White background for contrast */
  border-radius: 20px;
  padding: 1.5rem;
  scroll-snap-align: start;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #A0C69E; /* Soft green accent */
  transition: all 0.3s ease;
}

.testimonialCarouselSec .testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.testimonialCarouselSec .testimonial-icon {
  font-size: 2rem;
  color: #A0C69E; /* Soft green */
  margin-bottom: 1rem;
}

.testimonialCarouselSec .testimonial-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 0.5rem;
}

.testimonialCarouselSec .testimonial-snippet {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
}

.testimonialCarouselSec .see-more-btn {
  margin-top: 1rem;
  background-color: #A0C69E; /* Soft green */
  color: white;
  border: none;
  padding: 0.5rem 1.2rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.testimonialCarouselSec .see-more-btn:hover {
  background-color: #855E42; /* Warm brown */
}

/* Modal Styles */
.testimonialCarouselSec .modal-content {
  border-radius: 16px;
  background-color: #ffffff; /* White background */
  border: 4px solid #A0C69E; /* Soft green border */
  padding: 1.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.testimonialCarouselSec .modal-title {
  font-weight: 600;
  color: #ffffff;
}

.testimonialCarouselSec .modal-body {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.testimonialCarouselSec .btn-close {
  /* background-color: #855E42; Warm brown */
  border-radius: 50%;
  padding: 0.5rem;
}

.testimonialCarouselSec .btn-close:hover {
  background-color: #A0C69E; /* Soft green */
}


/* testimonial  new css 05-06-2025 end  */

.featured-block .img-fluid {
    width: 100%;
    height: auto;
    max-height: 156px;
}