   :root {
       --primary-green: #6B8E23;
       /* Muted green for borders, text, buttons */
       --deep-maroon: #5C2526;
       /* Muted maroon for hover states */
       --light-beige: #F5F5DC;
       /* Main background */
       --soft-cream: #5C2526;
       /* Section backgrounds */
       --pale-taupe: #D2B48C;
       /* Borders, card backgrounds */
       --muted-beige: #E8DAB2;
       /* Card backgrounds when not selected */
       --light-gray: #EDEDED;
       /* Call-to-action section background */
       --dark-text: #333333;
       /* Primary text color */
       --light-text: #666666;
       /* Secondary text color */
   }

   .bg-primary-green {
       background-color: var(--primary-green) !important;
   }


   * {

       font-family: 'Noto Sans Tamil', 'Poppins', sans-serif;

   }



   /* Banner Section with Background Image and Quotes */
   .banner-section {
       position: relative;
       width: 100%;
       min-height: 100vh;
       display: flex;
       flex-direction: column;
       align-items: center;
       padding-block: min(10vh, 3rem);
       background-color: var(--light-beige);
   }

   .banner-section .quotes-container {
       width: calc(min(90rem, 90%));
       margin: 0 auto;
       text-align: center;
       color: white;
       position: relative;
       z-index: 1;
       background: linear-gradient(rgba(107, 142, 35, 0.7), rgba(92, 37, 38, 0.7)),
           url('https://source.unsplash.com/random/1200x600?spiritual,temple');
       background-size: cover;
       background-position: center;
       padding: 3rem 2rem;
       border-radius: 10px;
       box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
       margin-bottom: 3rem;
   }

   .banner-section h1 {
       font-size: 2.5rem;
       margin-bottom: 1.5rem;
       color: #5c2526;
       text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
   }

   .banner-section .quote {
       font-family: 'Merriweather', serif;
       font-size: 1.2rem;
       font-style: italic;
       margin-bottom: 1rem;
       opacity: 0;
       animation: fadeIn 1s ease forwards;
       animation-delay: 0.5s;
   }

   .banner-section .quote-author {
       font-size: 1rem;
       font-weight: 300;
       color: var(--soft-cream);
   }

   @keyframes fadeIn {
       from {
           opacity: 0;
           transform: translateY(10px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   /* Swiper Slider */
   .banner-section .swiper {
       width: calc(min(90rem, 90%));
       padding: 1.875rem 0;
   }

   .swiper-slide {
       width: 18.75rem;
       height: 35rem;
       display: flex;
       flex-direction: column;
       justify-content: end;
       align-items: self-start;
       box-shadow: 0.063rem 0.5rem 1.25rem hsl(0deg 0% 0% / 12.16%);
       border-bottom-left-radius: 0.5rem;
       border-bottom-right-radius: 0.5rem;
       transition: all 0.5s ease;
   }

   .swiper-slide:hover {
       transform: translateY(-10px);
   }

   .swiper-slide-img {
       position: relative;
       width: 100%;
       height: 100%;
       overflow: hidden;
       transform: rotate(180deg);
       line-height: 0;
       bottom: -0.063rem;
       border-bottom-left-radius: 0.5rem;
       border-bottom-right-radius: 0.5rem;
   }

   .swiper-slide-img img {
       width: 100%;
       height: 100%;
       position: absolute;
       inset: 0;
       object-fit: cover;
       z-index: -1;
       transition: 0.3s ease-in-out;
       transform: rotate(-180deg);
   }

   .swiper-slide-img svg {
       position: relative;
       display: block;
       width: calc(300% + 1.3px);
       height: 5rem;
       transform: rotateY(180deg);
   }

   .swiper-slide-img .shape-fill {
       fill: var(--light-beige);
   }

   .swiper-slide-content {
       background: var(--muted-beige);
       padding: 0 1.65rem;
       border-bottom-left-radius: 0.5rem;
       border-bottom-right-radius: 0.5rem;
       width: 100%;
   }

   .swiper-slide-content>div {
       transform: translateY(-1.25rem);
   }

   .swiper-slide-content h2 {
       color: var(--primary-green);
       font-family: 'Merriweather', serif;
       font-weight: 700;
       font-size: 1.4rem;
       line-height: 1.4;
       margin-bottom: 0.425rem;
       text-transform: capitalize;
       letter-spacing: 0.02rem;
   }

   .swiper-slide-content p {
       color: var(--light-text);
       line-height: 1.6;
       font-size: 0.9rem;
       display: -webkit-box;
       -webkit-line-clamp: 2;
       -webkit-box-orient: vertical;
       overflow: hidden;
   }

   .swiper-slide-content .show-more {
       width: 3.125rem;
       display: flex;
       align-items: center;
       justify-content: center;
       background: var(--primary-green);
       border-radius: 50%;
       box-shadow: 0px 0.125rem 0.875rem rgba(107, 142, 35, 0.42);
       margin-top: 1em;
       margin-bottom: 0.2em;
       height: 0;
       opacity: 0;
       transition: all 0.3s ease-in;
       margin-left: auto;
   }

   .swiper-slide-content .show-more:hover {
       background: var(--deep-maroon);
       transform: translateX(5px);
   }

   .swiper-slide-content .show-more svg {
       width: 1.75rem;
       color: #fff;
   }

   .swiper-slide-active:hover .show-more {
       opacity: 1;
       height: 3.125rem;
   }

   .swiper-slide-active:hover p {
       display: block;
       overflow: visible;
   }

   .swiper-3d .swiper-slide-shadow-left,
   .swiper-3d .swiper-slide-shadow-right {
       background-image: none;
   }

   .swiper-slide-next .swiper-slide-img::after,
   .swiper-slide-next~.swiper-slide .swiper-slide-img::after {
       background: rgba(0, 0, 0, 0.5);
   }

   .swiper-slide-prev .swiper-slide-img::after,
   .swiper-slide-prev~.swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next) .swiper-slide-img::after {
       background: transparent;
   }

   /* XL Media Query (1200px - 1440px) */
   @media screen and (min-width: 75rem) and (max-width: 90rem) {
       .banner-section .swiper {
           width: 88%;
       }

       .swiper-slide {
           width: 20rem;
           height: 38rem;
       }

       .banner-section h1 {
           font-size: 2.8rem;
       }

       .banner-section .quote {
           font-size: 1.3rem;
       }

       .swiper-slide-content h2 {
           font-size: 1.5rem;
       }

       .swiper-slide-content p {
           font-size: 15px;
       }

       .swiper-slide-img svg {
           height: 5.5rem;
       }
   }

   /* XXL Media Query (1440px and above) */
   @media screen and (min-width: 90rem) {
       .banner-section .swiper {
           width: 85%;
       }

       .swiper-slide {
           width: 22rem;
           height: 40rem;
       }

       .banner-section h1 {
           font-size: 3rem;
       }

       .banner-section .quote {
           font-size: 1.4rem;
       }

       .swiper-slide-content h2 {
           font-size: 1.6rem;
       }

       .swiper-slide-content p {
           font-size: 1.1rem;
       }

       .swiper-slide-img svg {
           height: 6rem;
       }
   }

   /* Mobile Media Query (max-width: 768px) */
   @media screen and (max-width: 48rem) {
       .banner-section {
           min-height: 80vh;
       }

       .banner-section .quotes-container {
           padding: 2rem 1rem;
       }

       .banner-section h1 {
           font-size: 1.8rem;
       }

       .banner-section .quote {
           font-size: 1rem;
       }

       .swiper-slide {
           width: 16rem;
           height: 30rem;
       }

       .swiper-slide-img svg {
           height: 4rem;
       }

       .swiper-slide-content h2 {
           font-size: 1.2rem;
       }

       .swiper-slide-content p {
           font-size: 0.8rem;
       }
   }


   .swiper-slide:not(.swiper-slide-active) .swiper-slide-img img {
       opacity: 0.3;
       transition: opacity 0.3s ease-in-out;
   }

   .swiper-slide-active .swiper-slide-img img {
       opacity: 1;
   }



   /* Alternative: Fade effect for right-side slides (uncomment to use instead) */

   .swiper-slide-next .swiper-slide-img img,
   .swiper-slide-next~.swiper-slide img {
       opacity: 0.3;
       transition: opacity 0.3s ease-in-out;
   }

   .swiper-slide-active .swiper-slide-img img {
       opacity: 1;
   }

   .swiper-slide-prev .swiper-slide-img img,
   .swiper-slide-prev~.swiper-slide:not(.swiper-slide-active):not(.swiper-slide-next) .swiper-slide-img img {
       opacity: 1;
   }


   /* Program Card and Other Sections */
   .program-card {
       transition: all 0.3s ease;
       border: 1px solid var(--pale-taupe);
       border-radius: 10px;
       overflow: hidden;
       background-color: var(--muted-beige);
       box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
   }

   .program-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 30px rgba(107, 142, 35, 0.15);
   }

   .program-card img {
       height: 200px;
       object-fit: cover;
       transition: transform 0.5s ease;
   }

   .program-card:hover img {
       transform: scale(1.05);
   }

   .footer {
       background-color: var(--primary-green);
       color: white;
       background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
   }

   .footer a {
       color: white;
       text-decoration: none;
       transition: all 0.3s ease;
   }

   .footer a:hover {
       color: var(--soft-cream);
       text-decoration: underline;
   }

   /* Wisdom Quote Section */
   .wisdom-quote {
       background: linear-gradient(rgba(107, 142, 35, 0.8), rgba(107, 142, 35, 0.8)),
           url('https://source.unsplash.com/random/1200x600?ancient,scripture');
       background-size: cover;
       background-position: center;
       background-attachment: fixed;
       padding: 5rem 0;
       color: white;
       text-align: center;
       position: relative;
   }

   .wisdom-quote::before {
       content: "\201C";
       font-family: Georgia, serif;
       font-size: 8rem;
       color: rgba(255, 255, 255, 0.2);
       position: absolute;
       top: 2rem;
       left: 2rem;
   }

   .wisdom-quote::after {
       content: "\201D";
       font-family: Georgia, serif;
       font-size: 8rem;
       color: rgba(255, 255, 255, 0.2);
       position: absolute;
       bottom: 2rem;
       right: 2rem;
   }

   .wisdom-quote blockquote {
       font-family: 'Merriweather', serif;
       font-size: 1.8rem;
       font-weight: 300;
       line-height: 1.6;
       margin: 0 auto;
       max-width: 800px;
       position: relative;
       z-index: 1;
   }

   .wisdom-quote .quote-author {
       font-style: italic;
       margin-top: 1.5rem;
       font-size: 1.2rem;
   }

   /* Icon Boxes */
   .icon-box {
       text-align: center;
       padding: 2rem;
       border-radius: 10px;
       transition: all 0.3s ease;
       background-color: white;
       box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
       height: 100%;
   }

   .icon-box:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 30px rgba(107, 142, 35, 0.15);
   }

   .icon-box i {
       font-size: 3rem;
       color: var(--primary-green);
       margin-bottom: 1.5rem;
       transition: all 0.3s ease;
   }

   .icon-box:hover i {
       transform: scale(1.2);
   }

   .icon-box h3 {
       color: var(--primary-green);
       margin-bottom: 1rem;
   }

   /* Section Headings */
   .section-heading {
       position: relative;
       display: inline-block;
       margin-bottom: 2rem;
   }

   .section-heading::after {
       content: '';
       position: absolute;
       bottom: -10px;
       left: 0;
       width: 50px;
       height: 3px;
       background-color: var(--primary-green);
   }

   /* Animation Classes */
   .animate-up {
       animation: fadeInUp 1s ease;
   }

   .animate-down {
       animation: fadeInDown 1s ease;
   }

   .animate-left {
       animation: fadeInLeft 1s ease;
   }

   .animate-right {
       animation: fadeInRight 1s ease;
   }

   /* Keyframes */
   @keyframes fadeInUp {
       from {
           opacity: 0;
           transform: translateY(20px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   @keyframes fadeInDown {
       from {
           opacity: 0;
           transform: translateY(-20px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   @keyframes fadeInLeft {
       from {
           opacity: 0;
           transform: translateX(-20px);
       }

       to {
           opacity: 1;
           transform: translateX(0);
       }
   }

   @keyframes fadeInRight {
       from {
           opacity: 0;
           transform: translateX(20px);
       }

       to {
           opacity: 1;
           transform: translateX(0);
       }
   }

   /* About Section */
   .about-section {
       position: relative;
       overflow: hidden;
   }

   .about-section::before {
       content: '';
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: url('https://www.transparenttextures.com/patterns/rice-paper.png');
       opacity: 0.1;
       z-index: -1;
   }

   /* Timeline */
   .timeline {
       position: relative;
       max-width: 1200px;
       margin: 0 auto;
   }

   .timeline::after {
       content: '';
       position: absolute;
       width: 6px;
       background-color: var(--primary-green);
       top: 0;
       bottom: 0;
       left: 50%;
       margin-left: -3px;
   }

   .timeline-container {
       padding: 10px 40px;
       position: relative;
       background-color: inherit;
       width: 50%;
   }

   .timeline-container::after {
       content: '';
       position: absolute;
       width: 25px;
       height: 25px;
       right: -17px;
       background-color: white;
       border: 4px solid var(--primary-green);
       top: 15px;
       border-radius: 50%;
       z-index: 1;
   }

   .left {
       left: 0;
   }

   .right {
       left: 50%;
   }

   .left::before {
       content: " ";
       height: 0;
       position: absolute;
       top: 22px;
       width: 0;
       z-index: 1;
       right: 30px;
       border: medium solid var(--primary-green);
       border-width: 10px 0 10px 10px;
       border-color: transparent transparent transparent var(--primary-green);
   }

   .right::before {
       content: " ";
       height: 0;
       position: absolute;
       top: 22px;
       width: 0;
       z-index: 1;
       left: 30px;
       border: medium solid var(--primary-green);
       border-width: 10px 10px 10px 0;
       border-color: transparent var(--primary-green) transparent transparent;
   }

   .right::after {
       left: -16px;
   }

   .timeline-content {
       padding: 20px 30px;
       background-color: white;
       position: relative;
       border-radius: 6px;
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
   }

   @media screen and (max-width: 600px) {
       .timeline::after {
           left: 31px;
       }

       .timeline-container {
           width: 100%;
           padding-left: 70px;
           padding-right: 25px;
       }

       .timeline-container::before {
           left: 60px;
           border: medium solid var(--primary-green);
           border-width: 10px 10px 10px 0;
           border-color: transparent var(--primary-green) transparent transparent;
       }

       .left::after,
       .right::after {
           left: 15px;
       }

       .right {
           left: 0%;
       }
   }

   /* Testimonial Section */
   .testimonial-card {
       background-color: var(--muted-beige);
       border: 1px solid var(--pale-taupe);
       border-radius: 10px;
       padding: 2rem;
       box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
       transition: all 0.3s ease;
   }

   .testimonial-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 15px 30px rgba(107, 142, 35, 0.15);
   }

   .testimonial-card .user-img {
       width: 60px;
       height: 60px;
       border-radius: 50%;
       margin-right: 1rem;
   }

   .testimonial-card .rating i {
       color: #f4c430;
   }




   .events-section {
       padding: 5rem 0;
       background-color: var(--light-beige);
   }

   .section-heading {
       font-size: 2.5rem;
       margin-bottom: 1rem;
       opacity: 0;
       transform: translateY(-20px);
       animation: fadeInDown 0.8s ease forwards;
   }

   .text-muted {
       font-size: 1.1rem;
       opacity: 0;
       animation: fadeIn 1s ease forwards 0.2s;
   }

   .event-card {
       background: #fff;
       border: none;
       border-radius: 15px;
       overflow: hidden;
       box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
   }

   .event-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
   }

   .event-card-img {
       position: relative;
       overflow: hidden;
   }

   .event-card-img img {
       width: 100%;
       height: 200px;
       object-fit: cover;
       transition: transform 0.3s ease;
   }

   .event-card:hover .event-card-img img {
       transform: scale(1.05);
   }

   .event-card-img .overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
       opacity: 0;
       transition: opacity 0.3s ease;
   }

   .event-card:hover .event-card-img .overlay {
       opacity: 1;
   }

   .card-body {
       padding: 1.5rem;
   }

   .card-title {
       font-size: 1.5rem;
       font-weight: 700;
       margin-bottom: 0.75rem;
   }

   .card-text {
       font-size: 0.95rem;
       line-height: 1.6;
       color: var(--light-text);
   }

   .btn-green {
       background-color: var(--primary-green);
       color: #fff;
       padding: 0.5rem 1.5rem;
       font-size: 0.9rem;
       transition: background-color 0.3s ease, transform 0.3s ease;
   }

   .btn-green:hover {
       background-color: var(--deep-maroon);
       transform: translateX(5px);
   }

   .btn-outline-green {
       border: 2px solid var(--primary-green);
       color: var(--primary-green);
       padding: 0.5rem 1.5rem;
       font-size: 0.9rem;
       transition: background-color 0.3s ease, color 0.3s ease;
   }

   .btn-outline-green:hover {
       background-color: var(--primary-green);
       color: #fff;
   }

   @keyframes fadeInDown {
       from {
           opacity: 0;
           transform: translateY(-20px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   @keyframes fadeIn {
       from {
           opacity: 0;
       }

       to {
           opacity: 1;
       }
   }

   /* XL Media Query (1200px - 1440px) */
   @media screen and (min-width: 75rem) and (max-width: 90rem) {
       .section-heading {
           font-size: 2.8rem;
       }

       .event-card-img img {
           height: 220px;
       }

       .card-title {
           font-size: 1.6rem;
       }

       .card-text {
           font-size: 1rem;
       }
   }

   /* XXL Media Query (1440px and above) */
   @media screen and (min-width: 90rem) {
       .section-heading {
           font-size: 3rem;
       }

       .event-card-img img {
           height: 240px;
       }

       .card-title {
           font-size: 1.7rem;
       }

       .card-text {
           font-size: 1.1rem;
       }
   }

   /* Mobile Media Query (max-width: 768px) */
   @media screen and (max-width: 48rem) {
       .section-heading {
           font-size: 2rem;
       }

       .text-muted {
           font-size: 0.9rem;
       }

       .event-card-img img {
           height: 180px;
       }

       .card-title {
           font-size: 1.3rem;
       }

       .card-text {
           font-size: 0.85rem;
       }

       .btn-green,
       .btn-outline-green {
           font-size: 0.85rem;
           padding: 0.4rem 1.2rem;
       }
   }





   .contribution-section {
       padding: 5rem 0;
       background-color: var(--light-beige);
   }

   .section-heading {
       font-size: 2.5rem;
       margin-bottom: 1rem;
       opacity: 0;
       transform: translateY(-20px);
       animation: fadeInDown 0.8s ease forwards;
   }

   .text-muted {
       font-size: 1.1rem;
       opacity: 0;
       animation: fadeIn 1s ease forwards 0.2s;
   }

   .contribution-card {
       background: #fff;
       border: none;
       border-radius: 15px;
       overflow: hidden;
       box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
       transition: transform 0.3s ease, box-shadow 0.3s ease;
   }

   .contribution-card:hover {
       transform: translateY(-10px);
       box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
   }

   .contribution-card-img {
       position: relative;
       overflow: hidden;
   }

   .contribution-card-img img {
       width: 100%;
       height: 200px;
       object-fit: cover;
       transition: transform 0.3s ease;
   }

   .contribution-card:hover .contribution-card-img img {
       transform: scale(1.05);
   }

   .contribution-card-img .overlay {
       position: absolute;
       top: 0;
       left: 0;
       width: 100%;
       height: 100%;
       background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
       opacity: 0;
       transition: opacity 0.3s ease;
   }

   .contribution-card:hover .contribution-card-img .overlay {
       opacity: 1;
   }

   .card-body {
       padding: 1.5rem;
   }

   .card-title {
       font-size: 1.5rem;
       font-weight: 700;
       margin-bottom: 0.75rem;
   }

   .card-text {
       font-size: 0.95rem;
       line-height: 1.6;
       color: var(--light-text);
   }

   .btn-green {
       background-color: var(--primary-green);
       color: #fff;
       padding: 0.5rem 1.5rem;
       font-size: 0.9rem;
       transition: background-color 0.3s ease, transform 0.3s ease;
   }

   .btn-green:hover {
       background-color: var(--deep-maroon);
       transform: translateX(5px);
   }

   .btn-outline-green {
       border: 2px solid var(--primary-green);
       color: var(--primary-green);
       padding: 0.5rem 1.5rem;
       font-size: 0.9rem;
       transition: background-color 0.3s ease, color 0.3s ease;
   }

   .btn-outline-green:hover {
       background-color: var(--primary-green);
       color: #fff;
   }

   @keyframes fadeInDown {
       from {
           opacity: 0;
           transform: translateY(-20px);
       }

       to {
           opacity: 1;
           transform: translateY(0);
       }
   }

   @keyframes fadeIn {
       from {
           opacity: 0;
       }

       to {
           opacity: 1;
       }
   }

   /* XL Media Query (1200px - 1440px) */
   @media screen and (min-width: 75rem) and (max-width: 90rem) {
       .section-heading {
           font-size: 2.8rem;
       }

       .contribution-card-img img {
           height: 220px;
       }

       .card-title {
           font-size: 1.6rem;
       }

       .card-text {
           font-size: 1rem;
       }
   }

   /* XXL Media Query (1440px and above) */
   @media screen and (min-width: 90rem) {
       .section-heading {
           font-size: 3rem;
       }

       .contribution-card-img img {
           height: 240px;
       }

       .card-title {
           font-size: 1.7rem;
       }

       .card-text {
           font-size: 1.1rem;
       }
   }

   /* Mobile Media Query (max-width: 768px) */
   @media screen and (max-width: 48rem) {
       .section-heading {
           font-size: 2rem;
       }

       .text-muted {
           font-size: 0.9rem;
       }

       .contribution-card-img img {
           height: 180px;
       }

       .card-title {
           font-size: 1.3rem;
       }

       .card-text {
           font-size: 0.85rem;
       }

       .btn-green,
       .btn-outline-green {
           font-size: 0.85rem;
           padding: 0.4rem 1.2rem;
       }
   }


 