* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-orange: #F96300;
  /* --primary-orange: #ff6b35; */
  --primary-blue: #1f5ba6;
  --dark-blue: #1a3a52;
  --light-gray: #f5f5f5;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --border-color: #e0e0e0;
}

body {
  color: var(--text-dark);
  font-family: Inter;

}

    /* ===== TOP BAR WITH MARQUEE ===== */
        .top-bar {
            background: linear-gradient(135deg, #2A5179 0%, #1C538E 100%);
            padding: 12px 0;
            border-bottom: 2px solid var(--primary-orange);
            overflow: hidden;
        }

        .marquee-container {
            overflow: hidden;
            position: relative;
            width: 100%;
        }

        .marquee-text {
            display: flex;
            animation: scroll-left 25s linear infinite;
            white-space: nowrap;
            padding: 0 20px;
        }

        .marquee-item {
            display: inline-flex;
            align-items: center;
            gap: 40px;
            padding: 0 30px;
            color: #fff;
            font-size: 14px;
            font-weight: 400;
            letter-spacing: 0.5px;
        }

        .marquee-item::before {
            content: "✦";
            color: var(--primary-orange);
            font-size: 12px;
        }

        @keyframes scroll-left {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }

/* Navigation Bar */



/* Desktop hover dropdown */
@media (min-width: 992px) {
  .dropdown-hover:hover > .dropdown-menu {
    display: block;
    margin-top: 0;
  }
}

/* Dropdown menu styling (no design change) */
.dropdown-menu {
  
  border-radius: 12px;
  padding: 10px 0;
  border: none;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.dropdown-item {
 
  font-size: 16px;
  padding: 10px 20px;
}

.dropdown-item:hover {
  background-color: rgba(249, 99, 0, 0.08);
  color: rgba(249, 99, 0, 1);
}






.navbar-brand-wrapper img{
  height: 100%; 
  width: 380px;
}
.navbar-custom {
  padding: 15px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar-brand-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-circle {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.om-symbol {
  color: var(--white);
  font-size: 40px;
  font-weight: 700;
  font-family: "Noto Sans Devanagari", sans-serif;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-size: 24px;
  font-weight: 700;
  color: #1C538E;
  margin: 0;
  letter-spacing: 0.5px;
}

.brand-subtitle {
  font-size: 12px;
  color: var(--text-light);
  margin: 2px 0 0 0;
  font-weight: 500;
}



.nav-link-desktop {
 font-family: Inter;
font-weight: 400;
font-style: Regular;
font-size: 20px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
color: rgba(0, 0, 0, 1);

}



.nav-link-desktop:hover::after {
  width: 100%;
}

.nav-link-desktop:hover {
  color: var(--primary-orange);
  /* text-decoration: underline; */
}


.btn-cta {
    border: none;
font-family: Inter;
font-weight: 500;
font-style: Medium;
font-size: 24px;
leading-trim: NONE;
line-height: 100%;
letter-spacing: 0%;
color: rgba(255, 255, 255, 1);
background: rgba(249, 99, 0, 1);
border-radius: 50px;
padding: 9px 27px;
text-decoration: none;
}

.btn-cta:hover {
  background-color: #e55a25;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

/* Mobile Menu */
.offcanvas {
  width: 80% !important;
  /* width: 280px !important; */
}

.offcanvas-header {
  background-color: #1C538E;
  color: var(--white);
}

.offcanvas-title {
  font-size: 18px;
  font-weight: 700;
}

.mobile-nav-link {
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  padding: 10px 0 !important;
}

.mobile-nav-link:hover {
  color: var(--primary-orange);
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(42, 81, 123, 1);

}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 60px 0 60px 60px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.6;
  opacity: 0.95;
}

.hero-buttons {
  display: flex;
  /* gap: 15px; */
  /* flex-wrap: wrap; */
  margin-bottom: 40px;
}

.btn-primary-orange {
  background-color: var(--primary-orange);
  color: var(--white);
  border: none;
  padding: 10px 15px;
  border-radius: 18px;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
  margin-right: -20px;
  z-index: 1;
}

/* .btn-primary-orange:hover {
  background-color: #e55a25;
  transform: translateY(-2px);
} */

.btn-secondary {
  background-color: var(--white);
  color: var(--text-dark);
  border: 2px solid var(--white);
  padding: 10px 15px 10px 30px;
  /* border-radius: 18px; */
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.896);
  transform: translateY(-2px);
} */

.hero-features {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 500;
}

.feature-item i {
  font-size: 20px;
}


/* Services Section */
.services-section {
  padding: 60px 0;
  background-color: var(--light-gray);
  margin-top: -40px;
  position: relative;
  z-index: 3;
}

.service-card {
  background: var(--white);
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  /* display: flex;
  flex-direction: column; */
  
}
.service-card.donation-card{
  text-align: left;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
}
.service-icon.donation-label img{
  max-width: 35px;
}

.card-primary .puja-icon.donation-label {
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
}

.card-primary .darshan-icon.donation-label {
  background: linear-gradient(135deg, #1f5ba6 0%, #2d7cb8 100%);
}

.card-primary .donation-icon.donation-label {
  background: linear-gradient(135deg, #e91e63 0%, #f06292 100%);
}

.card-primary .help-icon.donation-label {
  background: linear-gradient(135deg, #4caf50 0%, #66bb6a 100%);
}

.service-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-desc {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}
.service-title.donation-title{
  font-size: 24px;
  font-weight: 600;
  color: #1C538E;
}
.service-desc.donation-desc{
  font-size: 18px;
  font-weight: 400;
  color: #060606;;
}

/* About Section */
.about-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.section-label {
  color: var(--primary-orange);
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #1C538E;
  /* color: var(--text-dark); */
  margin: 15px 0 20px 0;
  letter-spacing: 0.5px;
}

.about-text {
  font-size: 20px;
  line-height: 1.8;
  color: #000;
  /* color: var(--text-light); */
  margin-bottom: 25px;
}

.btn-learn-more {
  background: #1C538E;
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-learn-more:hover {
  background: #1a3a52;
  transform: translateX(4px);
}

.about-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  /* border-radius: 50px; */
}

/* Donations Section */
.donations-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.section-heading {
  margin-bottom: 50px;
}

.section-label-center {
  color: var(--primary-orange);
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.donations-title {
  font-size: 48px;
  font-weight: 800;
  color: #1C538E;
  /* color: var(--text-dark); */
  margin: 10px 0;
  letter-spacing: 0.5px;
}

.donations-subtitle {
  font-size: 20px;
  color: #060606;
  /* color: var(--text-light); */
  font-weight: 400;
}

.donation-card {
  background: var(--white);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  padding: 30px 25px;
  /* text-align: center; */
  position: relative;
  transition: all 0.3s ease;
}

.donation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.donation-card.card-primary{
  border: 2px solid var(--primary-orange);
}

.donation-label {
  background: var(--primary-orange);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  position: absolute;
  top: -12px;
  left: 20px;
  text-transform: uppercase;
}
.service-icon.donation-label{
  font-size: 28px;
}

.card-primary .donation-label {
  background: var(--primary-orange);
}

.card-secondary .donation-label {
  background: var(--primary-orange);
  /* background: #1C538E; */
}

.card-third .donation-label {
  background: #9c27b0;
}

.card-fourth .donation-label {
  background: #ff9800;
}

.donation-title {
  font-size: 24px;
  font-weight: 700;
  color: #1C538E;
  /* color: var(--text-dark); */
  margin: 20px 0 10px 0;
}
.service-title.donation-title{
  margin: 40px 0 10px 0;
}

.donation-desc {
  font-size: 20px;
  color: #060606;
  /* color: var(--text-light); */
  margin-bottom: 15px;
}

.donation-price {
  font-size: 24px;
  font-weight: 800;
  color: #1C538E;
  margin: 20px 0 15px 0;
}

.card-primary .donation-price {
  color: var(--primary-orange);
}

.card-secondary .donation-price {
  color: var(--primary-orange);
}

.card-third .donation-price {
  color: var(--primary-orange);
  /* color: #9c27b0; */
}

.card-fourth .donation-price {
  color: var(--primary-orange);
  /* color: #ff9800; */
}

.btn-book {
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  padding: 12px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
}

.card-secondary .btn-book {
  background: #1C538E;
  /* background: var(--primary-blue); */
}

.card-third .btn-book {
  background: #1C538E;
  /* background: #9c27b0; */
}

.card-fourth .btn-book {
  background: #1C538E;
  /* background: #ff9800; */
}

.btn-book:hover {
  transform: translateY(-2px);
  /* box-shadow: 0 6px 12px rgba(255, 107, 53, 0.3); */
}

/* Events Section */
.events-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}

.events-title {
  font-size: 48px;
  font-weight: 800;
  color: #1C538E;
  /* color: var(--text-dark); */
  margin: 10px 0;
}

.event-card {
  background: var(--white);
  /* border: 2px solid var(--primary-orange); */
  border-top: 2px solid var(--primary-orange);
  border-bottom: 2px solid var(--primary-orange);
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

/* .event-card:hover {
  background: var(--primary-orange);
  color: var(--white);
} */

.event-date {
  /* background: var(--primary-orange); */
  color: var(--primary-orange);;
  /* color: var(--white); */
  padding: 8px 12px;
  border-radius: 20px;
  font-size:24px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 15px;
}

/* .event-card:hover .event-date {
  background: rgba(255, 255, 255, 0.3);
} */

.event-title {
  font-size: 48px;
  font-weight: 700;
  margin: 15px 0 10px 0;
  color: #1C538E;
  /* color: var(--text-dark); */
}

/* .event-card:hover .event-title {
  color: var(--white);
} */

.event-desc {
  font-size: 20px;
  color: #060606;
  /* color: var(--text-light); */
  margin: 0;
}

/* .event-card:hover .event-desc {
  color: rgba(255, 255, 255, 0.9);
} */

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #1C538E 0%, #081728 100%);
  /* background: linear-gradient(135deg, #1f5ba6 0%, #2d7cb8 100%); */
  padding: 60px 0;
  color: var(--white);
}

.cta-content {
  text-align: center;
}

.cta-title {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
  color: var(--primary-orange)
}

.cta-subtitle {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.95;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


.dual-btn {
  display: inline-flex;
  align-items: center;
  border: 2px solid #ffffff;
  border-radius: 40px;
  overflow: hidden;
  background: transparent;
  font-family: inherit;
}

/* Left button */
.btn-left {
  padding: 12px 22px;
  color: #fff;
  background: transparent;
  font-weight: 500;
  white-space: nowrap;
}

/* Right button */
.btn-right {
  padding: 12px 22px;
  background: #ffffff;
  color: #0b3c6f;
  font-weight: 600;
  white-space: nowrap;
}



.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: var(--primary-orange);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta-primary:hover {
  background: #e55a25;
  transform: translateY(-2px);
}

.btn-cta-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 32px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Footer */
.footer {
  background: linear-gradient(135deg, #1C538E 0%, #081728 100%);
  /* background: var(--dark-blue); */
  color: var(--white);
  padding: 60px 0 20px;
}

.logo-circle-footer {
  width: 50px;
  height: 50px;
  background: var(--primary-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.om-symbol {
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
}

.footer-logo {
  margin-bottom: 20px;
  display: flex;
  gap: 20px;
  align-items:center;
}

.footer-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.footer-desc {
  font-size: 20px;
  opacity: 0.8;
  line-height: 1.6;
}

.footer-heading {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 20px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-orange);
}

.footer-info {
  font-size: 20px;
  opacity: 0.8;
  line-height: 1.8;
  margin: 0;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0;
}

.footer-bottom {
  text-align: center;
  font-size: 20px;
  opacity: 0.7;
  padding-top: 20px;
}


/* mahiti.php */
.mahiti-section {
  padding: 80px 0;
  background-color: var(--light-gray);
}
.mahiti-section .banner-img{
  text-align: center;
}
.mahiti-section .banner-img img{
  border-radius: 60px;
  max-width: 100%;
  height: auto;
}
.small-text{
  margin: 20px 0 10px;
  font-size: 16px;
  color: #060606; 
  /* color: var(--text-light);  */
/* font-weight: 400;
font-size: 16px;
line-height: 168%;
letter-spacing: 0%; */
}

.about-mahiti{
  padding: 80px 0;
  background-color: var(--light-gray);
}
.mahiti-title{
  font-weight: 700;
  font-size: 36px;
  color: #1C538E;
  margin: 15px 0 20px 0;
  line-height: 100%;
  letter-spacing: 0%;
}

/* pooja */
.bg{
  background-color: #D9D9D9;
}
.pooja-banner{
  align-items:center;
  text-align:center;
  justify-content: center;
  padding: 20px 0;
  border-radius: 17px;
}

/* time */
.time{
  padding: 80px 0;
  background-color: var(--light-gray);
}
.time input{
  background-color: #D9D9D9;
  border-radius: 8px;
  border: none;
  padding: 10px 20px;
  width: 290px;
  color: #000;
}

.form{
  padding: 80px 0;
  background-color: var(--light-gray);
}
.form input{
  background-color: #D9D9D9;
  border-radius: 8px;
  border: none;
  padding: 10px 20px;
  color: #000;
}
.form textarea{
  background-color: #D9D9D9;
  border-radius: 4px;
  border: none;
  padding: 10px 20px;
  color: #000;
}
.orange-bg{
  background-color: var(--primary-orange);
  text-align: center;
  padding: 10px 0;
}
.orange-bg .about-text{
  color: var(--white);
  margin: 0;
}

/* darshan */
.btnn{
  background-color: var(--primary-orange);
  border-radius: 8px;
  border: none;
  padding: 10px 20px;
  margin: 30px 0 20px 0;
  color: var(--white);
}
.date1{
  margin-top: 75px;
}

/* donation */
.donation{
  padding: 80px 0;
  background-color: var(--light-gray);
}
.bg1{
  background-color: var(--white);
}
.bg-pink{
  background: #ff2d8d;
}
.bg-grey{
  background-color: #D9D9D9;
}

.btn{
  background-color: #D9D9D9;
  width: 100%;
}
.btn:hover{
  background-color: #D9D9D9;
}
.amount-title{
  font-size: 24px;
  font-weight: 600;
  color: #1C538E;
  margin-bottom: 10px;
}
.right-section{
  margin-top: 75px;
} 

/* contact */
.address-box{
  background-color: #D9D9D9;
  padding: 80px 0;
  border-radius: 17px;
  text-align: center;
}
.contact-details{
  text-align: left;
  margin: 0 0 0 15%;
}

.table-primary th {
  background-color: #1C538E;
  /* background-color: #1f4e79 !important; */
  color: #fff;
  font-weight: 600;
  font-size: 24px;
}
.table-responsive td{
  background-color: #D9D9D9;
  font-size: 20px;
}
table td, table th {
  vertical-align: middle;
  /* font-size: 15px; */
}
table.table-bordered {
  border-color: #F5F5F5;
}
table.table-bordered th,
table.table-bordered td {
  border: 2px solid #F5F5F5;
  border-radius: 4px;
}


@media (min-width:768px) {
    .offcanvas{
    display: none;
}
}

/* Responsive */
@media(max-width: 976px){
  .hero-title{
    font-size: 38px;
  }
  .section-title,
  .donations-title,
  .event-title,
  .events-title,
  .cta-title{
    font-size: 32px;
  }
  .mahiti-title{
    font-size: 28px;
  }

  .btn-primary-orange {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .top-bar-div{
    overflow-x: auto;
    flex-wrap: nowrap;
    gap: 30px;
    -webkit-overflow-scrolling: touch;
  }
  .top-bar-div::-webkit-scrollbar {
    display: none;
  }
  .navbar-brand-wrapper img{
    height: 100%; 
    width: 220px;
  }
  .brand-title {
    font-size: 18px;
  }

  .brand-subtitle {
    font-size: 10px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-content{
    padding: 20px 0 20px 20px
  }
  .hero-subtitle {
    font-size: 14px;
  }
/* 
  .hero-buttons {
    flex-direction: column;
  } */

  .btn-primary-orange,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .btn-primary-orange {
  padding: 15px 0;
  font-size: 14px;
}
.btn-secondary {
  padding: 15px 0px;
  /* border-radius: 18px; */
  font-size: 14px;
}

  .hero-features {
    flex-direction: column;
    gap: 15px;
  }

  .section-title {
    font-size: 28px;
  }
  .service-title.donation-title,
  .section-label,
  .section-label-center,
  .event-date,
  .footer-title,
  .footer-heading {
    font-size: 20px;
  }
  .about-text,
  .service-desc.donation-desc,
  .donations-subtitle,
  .donation-desc,
  .event-desc,
  .cta-subtitle {
    font-size: 16px;
  }
  .donations-title {
    font-size: 28px;
  }

  .events-title,
  .event-title {
    font-size: 28px;
  }

  .cta-title {
    font-size: 28px;
  }

  .donation-card {
    margin-top: 15px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
  }

  .footer-desc,
  .footer-links a,
  .footer-info,
  .footer-bottom {
    font-size: 18px;
  }

  /* .services-section,
  .about-section,
  .donations-section,
  .events-section{
    padding: 30px 0;
  } */
   
  .cta-section{
    padding: 40px 0;
  }

  .date1 {
    margin-top: 25px;
  }
  .right-section{
  margin-top: 0px;
} 
}

.table-primary th {
  font-size: 20px;
}
.table-responsive td{
  background-color: #D9D9D9;
  font-size: 16px;
}

@media (max-width: 576px) {
  .nav-link-desktop {
    display: none;
  }

  .navbar-custom {
    padding: 10px 0;
  }

  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .feature-item {
    font-size: 12px;
  }

  .section-title {
    font-size: 22px;
  }

  .donations-title {
    font-size: 22px;
  }
  .donation-title {
    font-size: 20px;
  }
  .mahiti-title{
    font-size: 22px;
  }

  .service-card {
    padding: 20px 15px;
  }

  .donation-price {
    font-size: 20px;
  }

  .footer {
    padding: 40px 0 15px;
  }

  .row {
    --bs-gutter-x: 1rem;
  }
}
