﻿body{
  font-weight: 400;
  background-color:#fff8f3;
}
img{
    width:100%;
}
.btn-enq{
  color: #fff;
  background: #308810;
  padding: 8px 18px;
  border-radius: 20px;
}
.btn-enq:hover{
    background-color:#1f5c37;
    color:#fff;
}

.navbar-brand img{
    width:100px;
    height:auto;
    margin: -5px 0 5px;
}
/*hero section*/
.hero-section {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero-section .swiper,
.hero-section .swiper-wrapper,
.hero-section .swiper-slide {
  height: 100%;
}

.hero-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter:brightness(40%);
}

/* Optional: Pagination style */
.swiper-pagination-bullet {
  background: #ffd633; /* your brand color */
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: blue
}
.hero-section .swiper-slide img {
    transform: scale(1);
    transition: transform 8s ease-in-out;
}

.hero-section .swiper-slide-active img {
    transform: scale(1.2);
}
.hero-text{
    position:absolute;
    left:3%;
    top:50%;
    max-width:650px;
    line-height:1.6;
}
.hero-text h2{   
   color:#fff;
   font-size:3.3rem;
   font-weight:600;
}

@media(max-width:768px){
  .hero-section {
  width: 100%;
  height: 40vh;
  position: relative;
  overflow: hidden;
}
  .hero-text h2{   
   color:#fff;
   font-size:1.9rem;
   font-weight:600;
}
  .navbar-brand img{
    width:80px;
    height:auto;
}
  .btn-enq{
   color: #fff;
  background: #308810;
  padding: 8px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  }
}


/*About section*/

.about-section{
    padding:100px 0;
    background:#f8f9fa;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.about-content{
    padding-left:20px;
}

.about-tag{
    display:inline-block;
    font-size:14px;
    font-weight:600;
    color:#308810;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.about-content h2{
    font-size:42px;
    font-weight:600;
    line-height:1.3;
    color:#222;
    margin-bottom:25px;
}

.about-content p{
    font-size:16px;
    line-height:1.9;
    color:#666;
    margin-bottom:18px;
}

.about-btn{
    display:inline-block;
    padding:10px 30px;
    background:#308810;
    color:#fff;
    border-radius:50px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
    transition:0.3s ease;
    margin-bottom:15px;
}

.about-btn:hover{
    background:#1f5c37;
    color:#fff;
    text-decoration:none;
}

/* RESPONSIVE */

@media(max-width:991px){

    .about-content{
        padding-left:0;
    }

    .about-content h2{
        font-size:34px;
    }

}

@media(max-width:576px){

    .about-section{
        padding:30px 0;
    }

    .about-content h2{
        font-size:28px;
    }

    .about-content p{
        font-size:15px;
    }
}


/*Offer section*/
.offerings{
    padding:40px 0;
    background:#f9f9f9;
    
}

.section-title{
    font-size:32px;
    margin-bottom:10px;
}

.section-subtitle{
    font-size:16px;
    margin-bottom:40px;
    color:#666;
}

.offerings-box {
  display: flex;
  gap: 25px;
  justify-content: center;
}

.offer-card{
    background:#fff;
    border-radius:10px;
   border: 1px solid #ddd;
    transition:0.3s;
    width:calc(25% - 19px);
}
.offer-text{
    padding:0px 10px 10px;
}

.offer-card img{
    width:100%;
    height:32vh;
    object-fit:cover;
    margin-bottom:15px;
}

.offer-card h3{
    font-size:1.4rem;
    margin-bottom:10px;
    font-weight:500;
}

.offer-card p{
    font-size:14px;
    color:#555;
}
@media(max-width:768px){
  .offerings-box {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
  justify-content: center;
}
  .offer-card{
        width:calc(50% - 13px);
    }

}
@media(max-width:480px){
  .offer-card{
        width:100%;
    }
}

/*Meditation section*/
.benefits{
    padding:40px 0;
}

.benefits-box{
    display:flex;
    align-items:center;
    gap:40px;
}

/* Left Content */
.benefits-content{
    flex:1;
}

.benefits-content h2{
    font-size:32px;
    margin-bottom:20px;
}

.benefits-content p{
    font-size:16px;
    margin-bottom:20px;
    line-height:1.6;
}

.benefits-content ul{
    list-style:none;
    padding:0;
    margin-bottom:25px;
}

.benefits-content ul li{
    margin-bottom:10px;
    font-size:15px;
}

/* Right Image */
.benefits-img{
    flex:1;
}

.benefits-img img{
    width:100%;
    border-radius:10px;
    height:350px;
    object-fit:cover;
}

/* Button (reuse if already exists) */
.btn{
    display:inline-block;
    padding:10px 20px;
    background:#ff6600;
    color:white;
    text-decoration:none;
    border-radius:5px;
}
.box-bottom{
    background:black;
    padding:20px;
    color:#fff;
}

@media(max-width:768px){
    .benefits-box {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction:column-reverse;
}
}

/*journey*/
.journey{
    padding:80px 0;
    background:linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../img/md1.jpg") no-repeat center/cover;
    background-attachment:fixed;
    color:#fff;
    text-align:center;
}

.section-title{
    font-size:32px;
    margin-bottom:10px;
    font-weight:600;
    color:#fff;
}

.section-subtitle{
    font-size:16px;
    margin-bottom:40px;
    color:#333;
}

.journey-box{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.journey-step{
    background:#1a1a1a;
    padding:30px;
    width:260px;
    border-radius:10px;
    transition:0.3s;
}

.journey-step:hover{
    transform:translateY(-8px);
}

.journey-step span{
    display:block;
    font-size:28px;
    font-weight:bold;
    color:#fff;
    margin-bottom:10px;
}

.journey-step h3{
   margin-bottom: 10px;
  font-size: 20px;
  color: #f60;
  font-weight: 600;
}

.journey-step p{
    font-size:14px;
    color:#ccc;
}


/*connect section*/
.connect{
    padding:40px 0;
    background:#fff;
    color:#fff;
}

.connect-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    border:2px solid #ddd;
    padding: 40px;
    border-radius: 5px;
}

/* Left Side */
.connect-left{
    flex:0.7;
    border-right:2px solid #222;
}

.connect-left h2{
    font-size:38px;
    font-weight:500;
    margin-bottom:10px;
}

/* Button */
.btn{
    display:inline-block;
    padding:12px 25px;
    background:#ff6600;
    color:#fff;
    text-decoration:none;
    border-radius: 30px;
    transition:transform 0.5s ease; 
    
}
.btn:hover{
    display:inline-block;
    padding:12px 25px;
    background:#ff6600;
    color:#fff;
    text-decoration:none;
    border-radius: 30px;
    transform:scale(0.9);
}


/* Right Side */
.connect-right{
    flex:1.3;
}

.connect-right p{
    font-size:16px;
    line-height:1.7;
    color:#333;
}


@media(max-width:768px){
  .connect-box {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-direction: column;
}

  .but{
      display:none;
  }
  .connect-left {
  flex: 0.7;
  border-bottom: 2px solid #222;
  border-right:none;
}

}
@media(min-width:768px) {
    .butt {
        display: none;
    }
}

/*footer*/
.ftco-footer-social{
    display:flex;
    gap:10px;
    padding:0;
    list-style:none;
}

.ftco-footer-social li a{
    display:flex;
    align-items:center;
    justify-content:center;
    width:40px;
    height:40px;
    background:#222;
    color:#fff;
    border-radius:50%;
    text-decoration:none;
    transition:0.3s;
}

/* Hover effect */
.ftco-footer-social li a:hover{
    background:#ff6600;
    transform:translateY(-3px);
}

/*Mission & Vision*/

.mv-section{
    padding:60px 0;
    background:#f8f9fa;
}

.mv-heading span{
    color:#308810;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.mv-heading h2{
    font-size:42px;
    font-weight:600;
    color:#222;
    margin-top:10px;
}

.mv-box{
    background:#fff;
    padding:50px 40px;
    border-radius:20px;
    position:relative;
    overflow:hidden;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.3s ease;
    border-bottom:5px solid #308810;
}

.mv-number{
    position:absolute;
    top:20px;
    right:30px;
    font-size:70px;
    font-weight:600;
    color:rgba(44,122,75,0.08);
    line-height:1;
}

.mv-box h3{
    font-size:30px;
    font-weight:600;
    color:#222;
    margin-bottom:20px;
    position:relative;
    z-index:2;
}

.mv-box p{
    font-size:16px;
    line-height:1.9;
    color:#666;
    position:relative;
    z-index:2;
}

/* RESPONSIVE */

@media(max-width:991px){

    .mv-heading h2{
        font-size:34px;
    }

    .mv-box{
        padding:40px 30px;
    }

}

@media(max-width:576px){

    .mv-section{
        padding:70px 0;
    }

    .mv-heading h2{
        font-size:28px;
    }

    .mv-box h3{
        font-size:24px;
    }

    .mv-number{
        font-size:55px;
    }

}


/*join section*/
.join-sec{
    background:black;
    margin:60px 0px;
}
.jointxt{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:#fff;
}
.jointxt h2{
    color:#fff;
}
.jointxt p{
    text-align:center;
}
.joinimg{
    padding:0;
}


/* PROJECTS SECTION */

.projects-section{
    padding:60px 0;
    background:#ffffff;
}

.project-heading span{
    color:#308810;
    font-size:15px;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.project-heading h2{
    font-size:42px;
    font-weight:600;
    color:#222;
    margin-top:10px;
    margin-bottom:15px;
}

.project-heading p{
    max-width:600px;
    margin:auto;
    color:#666;
    font-size:16px;
    line-height:1.8;
}

.project-card{
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    transition:0.3s ease;
    height:100%;
    border: 1px solid rgb(221, 221, 221);
}


.project-card img{
   width: 100%;
  height: 32vh;
  object-fit: cover;
}

.project-content{
    padding: 20px 15px;;
}

.project-content h3{
    font-size:24px;
    font-weight:600;
    color:#222;
    margin-bottom:15px;
}

.project-content p{
    font-size:15px;
    color:#666;
    line-height:1.8;
    margin-bottom:20px;
}

.project-btn{
    display:inline-block;
    padding:10px 24px;
    background:#308810;
    color:#fff;
    border-radius:40px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:0.3s ease;
}

.project-btn:hover{
    background:#1f5c37;
    color:#fff;
    text-decoration:none;
}

/* RESPONSIVE */

@media(max-width:991px){

    .project-heading h2{
        font-size:34px;
    }

}

@media(max-width:576px){

    .projects-section{
        padding:70px 0;
    }

    .project-heading h2{
        font-size:28px;
    }

    .project-content h3{
        font-size:22px;
    }

}

/* ===================================
        BREADCRUMB
=================================== */

.page-banner{
    background: rgba(48, 136, 16, 0.97);
    padding: 80px 0;
}

.banner-content h1{
    color: #fff;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.banner-content p{
    color: #fff;
    margin: 0;
    font-size: 16px;
}

.banner-content p a{
    color: #fff;
    text-decoration: none;
}


/*About us Page*/

.section-title{
    margin-bottom: 60px;
}

.section-title span{
    color: #308810;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title h2{
    font-size: 40px;
    font-weight: 600;
    margin-top: 10px;
}

img{
    max-width: 100%;
}



/* ===================================
        ABOUT SECTION
=================================== */

.about-image img{
    border-radius: 12px;
    width: 100%;
}

.about-content{
    padding-left: 30px;
}

.sub-heading{
    color: #308810;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-content h2{
    font-size: 42px;
    font-weight: 600;
    line-height: 1.4;
    margin: 15px 0 20px;
}

.about-content p{
    color: #666;
    line-height: 32px;
    margin-bottom: 20px;
}

.theme-btn{
    display: inline-block;
    background: #308810;
    color: #fff;
    padding: 14px 34px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.4s;
}

.theme-btn:hover{
    background: #256b0f;
    color: #fff;
}



/* ===================================
        MISSION SECTION
=================================== */

.mission-section{
    background: #f8f9fa;
}

.mission-box{
    background: #fff;
    padding: 45px 35px;
    border-radius: 12px;
    transition: 0.4s;
    height: 100%;
    border:1px solid #ccc;
}

.mission-box:hover{
    transform: translateY(-8px);
}

.mission-box .icon{
    width: 75px;
    height: 75px;
    background: rgba(48,136,16,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mission-box .icon span{
    color: #308810;
    font-size: 36px;
}

.mission-box h3{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 18px;
}

.mission-box p{
    color: #666;
    line-height: 30px;
}
.mission-box .icon{
    width: 80px;
    height: 80px;
    background: rgba(48,136,16,0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.mission-box .icon i{
    font-size: 34px;
    color: #308810;
}


/* ===================================
        RESPONSIVE
=================================== */

@media(max-width:991px){

    .about-content{
        padding-left: 0;
        margin-top: 40px;
    }

    .about-content h2{
        font-size: 34px;
    }

    .section-title h2{
        font-size: 34px;
    }

    .banner-content h1{
        font-size: 40px;
    }

}


@media(max-width:767px){

    .page-banner{
        padding: 60px 0;
    }

    .banner-content h1{
        font-size: 32px;
    }

    .banner-content p{
        font-size: 14px;
    }

    .section-title{
        margin-bottom: 40px;
    }

    .section-title h2{
        font-size: 28px;
    }

    .about-content h2{
        font-size: 30px;
    }

    .about-content p{
        line-height: 28px;
    }

    .mission-box{
        margin-bottom: 30px;
    }

    .mission-box h3{
        font-size: 24px;
    }

    .activity-box{
        padding: 35px 20px;
    }

    .activity-box span{
        font-size: 45px;
    }

    .activity-box h4{
        font-size: 22px;
    }

}


@media(max-width:575px){

    .banner-content h1{
        font-size: 28px;
    }

    .about-content h2{
        font-size: 26px;
    }

    .section-title h2{
        font-size: 24px;
    }

    .theme-btn{
        padding: 12px 28px;
        font-size: 14px;
    }

}
/* =====================================
        CORE ACTIVITIES
===================================== */

.core-activities{
    padding: 100px 0;
    background: #fff;
}


/* =====================================
        SECTION HEADING
===================================== */

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

.section-heading span{
    color: #308810;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-heading h2{
    font-size: 48px;
    font-weight: 600;
    margin: 15px 0;
    color: #222;
}

.section-heading p{
    max-width: 600px;
    margin: auto;
    color: #777;
    line-height: 30px;
    font-size: 16px;
}


/* =====================================
        ACTIVITY CARD
===================================== */

.activity-card{
    background: #fff;
    padding: 45px 30px;
    border-radius: 18px;
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    height: 100%;
    border: 1px solid #f1f1f1;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.activity-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}


/* top green effect */

.activity-card::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #308810;
}


/* =====================================
        ICON
===================================== */

.activity-icon{
    width: 85px;
    height: 85px;
    background: rgba(48,136,16,0.10);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.activity-icon span{
    color: #308810;
    font-size: 42px;
}


/* =====================================
        CARD CONTENT
===================================== */

.activity-card h3{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 18px;
    color: #222;
}

.activity-card p{
    color: #666;
    line-height: 30px;
    margin-bottom: 0;
    font-size: 15px;
}


/* =====================================
        RESPONSIVE
===================================== */

@media(max-width:991px){

    .core-activities{
        padding: 80px 0;
    }

    .section-heading h2{
        font-size: 40px;
    }

    .activity-card{
        padding: 40px 25px;
    }

}


@media(max-width:767px){

    .core-activities{
        padding: 60px 0;
    }

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

    .section-heading h2{
        font-size: 32px;
    }

    .section-heading p{
        font-size: 15px;
        line-height: 28px;
    }

    .activity-card{
        padding: 35px 25px;
    }

    .activity-card h3{
        font-size: 24px;
    }

    .activity-icon{
        width: 75px;
        height: 75px;
    }

    .activity-icon span{
        font-size: 36px;
    }

}


@media(max-width:575px){

    .section-heading h2{
        font-size: 28px;
    }

    .activity-card{
        text-align: center;
    }

    .activity-icon{
        margin: 0 auto 25px;
    }

}

/*Annadanam page*/
/* =====================================
        SERVICE DETAILS
===================================== */

.service-details-section{
    padding: 100px 0;
    background: #fff;
}

.service-image img{
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.service-content{
    padding-left: 40px;
}

.service-subtitle{
    color: #308810;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-content h2{
    font-size: 48px;
    font-weight: 600;
    line-height: 1.4;
    margin: 18px 0 22px;
    color: #222;
}

.service-content p{
    color: #666;
    line-height: 32px;
    margin-bottom: 18px;
}


/* =====================================
        HIGHLIGHTS
===================================== */

.service-highlights{
    margin-top: 30px;
}

.highlight-item{
    display: flex;
    align-items: center;
    margin-bottom: 18px;
}

.highlight-item i{
    color: #308810;
    font-size: 20px;
    margin-right: 12px;
}

.highlight-item span{
    color: #333;
    font-weight: 500;
}


/* =====================================
        BUTTON
===================================== */

.service-btn{
    display: inline-block;
    margin-top: 20px;
    background: #308810;
    color: #fff;
    padding: 14px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.4s;
}

.service-btn:hover{
    background: #256b0f;
    color: #fff;
}


/* =====================================
        FEATURE SECTION
===================================== */

.service-feature-section{
    padding: 60px 0;
    background: #f8f9fa;
}

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

.section-heading span{
    color: #308810;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-heading h2{
    font-size: 44px;
    font-weight: 600;
    margin-top: 12px;
}


/* =====================================
        FEATURE CARD
===================================== */

.feature-card{
    background: #fff;
    padding: 45px 30px;
    border-radius: 18px;
    text-align: center;
    transition: 0.4s;
    height: 100%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.feature-icon{
    width: 90px;
    height: 90px;
    background: rgba(48,136,16,0.10);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 25px;
}

.feature-icon i{
    color: #308810;
    font-size: 38px;
}

.feature-card h3{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p{
    color: #666;
    line-height: 30px;
    margin-bottom: 0;
}


/* =====================================
        RESPONSIVE
===================================== */

@media(max-width:991px){

    .service-details-section,
    .service-feature-section{
        padding: 80px 0;
    }

    .service-content{
        padding-left: 0;
        margin-top: 40px;
    }

    .service-content h2{
        font-size: 38px;
    }

    .section-heading h2{
        font-size: 38px;
    }

}


@media(max-width:767px){

    .service-details-section,
    .service-feature-section{
        padding: 60px 0;
    }

    .service-content h2{
        font-size: 30px;
    }

    .service-content p{
        line-height: 28px;
    }

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

    .section-heading h2{
        font-size: 30px;
    }

    .feature-card{
        padding: 35px 25px;
    }

    .feature-card h3{
        font-size: 24px;
    }

}


@media(max-width:575px){

    .service-content h2{
        font-size: 26px;
    }

    .section-heading h2{
        font-size: 26px;
    }

    .service-btn{
        padding: 12px 28px;
        font-size: 14px;
    }

}

/*Medicine Page*/
/* =====================================
        SERVICE DETAILS
===================================== */

.service-details-section{
    padding: 60px 0;
    background: #fff;
}

.service-row{
    margin-bottom: 100px;
}

.service-row:last-child{
    margin-bottom: 0;
}


/* =====================================
        IMAGE
===================================== */

.service-image{
    overflow: hidden;
    border-radius: 18px;
}

.service-image img{
    width: 100%;
    border-radius: 18px;
    transition: 0.5s;
}



/* =====================================
        CONTENT
===================================== */

.service-content{
    padding-left: 40px;
}

.left-space{
    padding-left: 0;
    padding-right: 40px;
}

.service-subtitle{
    color: #308810;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-content h2{
    font-size: 40px;
    font-weight: 600;
    line-height: 1.4;
    margin: 16px 0 20px;
    color: #222;
}

.service-content p{
    color: #666;
    line-height: 32px;
    margin-bottom: 18px;
}


/* =====================================
        HIGHLIGHTS
===================================== */

.service-highlights{
    margin-top: 25px;
}

.highlight-item{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.highlight-item i{
    color: #308810;
    margin-right: 12px;
    font-size: 18px;
}

.highlight-item span{
    color: #333;
    font-weight: 500;
}


/* =====================================
        BUTTON
===================================== */

.service-btn{
    display: inline-block;
    margin-top: 15px;
    background: #308810;
    color: #fff;
    padding: 14px 34px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.4s;
}

.service-btn:hover{
    background: #256b0f;
    color: #fff;
}


/* =====================================
        RESPONSIVE
===================================== */

@media(max-width:991px){

    .service-details-section{
        padding: 80px 0;
    }

    .service-row{
        margin-bottom: 70px;
    }

    .service-content{
        padding-left: 0;
        margin-top: 40px;
    }

    .left-space{
        padding-right: 0;
    }

    .service-content h2{
        font-size: 34px;
    }

}


@media(max-width:767px){

    .service-details-section{
        padding: 60px 0;
    }

    .service-row{
        margin-bottom: 60px;
    }

    .service-content h2{
        font-size: 28px;
    }

    .service-content p{
        line-height: 28px;
    }

}


@media(max-width:575px){

    .service-content h2{
        font-size: 24px;
    }

    .service-btn{
        padding: 12px 28px;
        font-size: 14px;
    }

}

/*Education page*/
/* =====================================
        EDUCATION SECTION
===================================== */

.edu-program-section{
    padding: 100px 0;
    background: #f6f9f4;
}


/* =====================================
        TITLE
===================================== */

.edu-title-wrap{
    text-align: center;
    margin-bottom: 70px;
}

.edu-mini-title{
    color: #308810;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.edu-title-wrap h2{
    font-size: 3.3rem;
    font-weight: 600;
    margin-top: 15px;
    color: #222;
    line-height: 1.3;
}


/* =====================================
        LARGE CARD
===================================== */

.edu-large-card{
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.edu-large-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.edu-overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.15));
    z-index: 1;
}

.edu-card-content{
    position: absolute;
    bottom: 40px;
    left: 40px;
    z-index: 2;
    max-width: 80%;
}

.edu-card-content span{
    color: #9dff7d;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.edu-card-content h3{
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    margin: 15px 0;
}

.edu-card-content p{
    color: rgba(255,255,255,0.85);
    line-height: 30px;
}


/* =====================================
        INFO BOX
===================================== */

.edu-info-box{
    background: #308810;
    padding: 45px 35px;
    border-radius: 25px;
    height: 100%;
    color: #fff;
}
.edu-info-box h3{
    color: #fff;
}

.info-icon{
    width: 85px;
    height: 85px;
    border-radius: 20px;
    background: rgba(255,255,255,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.info-icon i{
    font-size: 38px;
    color: #fff;
}

.edu-info-box h3{
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 18px;
}

.edu-info-box p{
    line-height: 30px;
    color: rgba(255,255,255,0.85);
}

.edu-info-box ul{
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
}

.edu-info-box ul li{
    margin-bottom: 18px;
    font-size: 16px;
}

.edu-info-box ul li i{
    margin-right: 10px;
}


/* =====================================
        SMALL CARDS
===================================== */

.edu-small-card{
    background: #fff;
    padding: 40px 35px;
    border-radius: 22px;
    height: 100%;
    transition: 0.4s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
}

.edu-small-card:hover{
    transform: translateY(-10px);
}

.small-icon{
    width: 80px;
    height: 80px;
    border-radius: 18px;
    background: rgba(48,136,16,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.small-icon i{
    color: #308810;
    font-size: 34px;
}

.edu-small-card h3{
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #222;
}

.edu-small-card p{
    color: #666;
    line-height: 30px;
    margin-bottom: 0;
}


/* =====================================
        RESPONSIVE
===================================== */

@media(max-width:991px){

    .edu-program-section{
        padding: 80px 0;
    }

    .edu-title-wrap h2{
        font-size: 40px;
    }

    .edu-large-card{
        min-height: 420px;
    }

    .edu-card-content h3{
        font-size: 34px;
    }

}


@media(max-width:767px){

    .edu-program-section{
        padding: 60px 0;
    }

    .edu-title-wrap{
        margin-bottom: 45px;
    }

    .edu-title-wrap h2{
        font-size: 30px;
    }

    .edu-card-content{
        left: 25px;
        bottom: 25px;
        max-width: 90%;
    }

    .edu-card-content h3{
        font-size: 28px;
    }

    .edu-info-box{
        padding: 35px 25px;
    }

    .edu-small-card{
        padding: 35px 25px;
    }

}


@media(max-width:575px){

    .edu-title-wrap h2{
        font-size: 24px;
    }

    .edu-card-content h3{
        font-size: 24px;
    }

    .edu-info-box h3{
        font-size: 26px;
    }

    .edu-small-card h3{
        font-size: 22px;
    }

}

/*Health Care*/
/* =====================================
        HEALTHCARE SECTION
===================================== */

.healthcare-section{
    padding: 100px 0;
    background: #fff;
}


/* =====================================
        HEADING
===================================== */

.healthcare-heading{
    margin-bottom: 70px;
}

.healthcare-heading span{
    color: #308810;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.healthcare-heading h2{
    font-size: 52px;
    font-weight: 600;
    margin: 15px 0;
    color: #222;
}

.healthcare-heading p{
    max-width: 600px;
    margin: auto;
    color: #666;
    line-height: 30px;
}


/* =====================================
        IMAGE
===================================== */

.healthcare-image{
    overflow: hidden;
    border-radius: 10px;
}

.healthcare-image img{
    width: 100%;
    border-radius: 10px;
    transition: 0.5s;
}

/* =====================================
        CONTENT
===================================== */

.healthcare-content{
    padding-left: 40px;
}

.content-box{
    background: #f8f9fa;
    padding: 50px;
    border-radius: 25px;
    border-left: 5px solid #308810;
}

.mini-title{
    color: #308810;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-box h3{
    font-size: 38px;
    font-weight: 600;
    margin: 18px 0;
    line-height: 1.4;
}

.content-box p{
    color: #666;
    line-height: 32px;
}


/* =====================================
        SERVICE BOXES
===================================== */

.healthcare-services{
    margin-top: 90px;
}

.health-box{
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 22px;
    text-align: center;
    height: 100%;
    transition: 0.4s;
}

.health-box:hover{
    transform: translateY(-10px);
    background: #308810;
}

.health-box:hover h3,
.health-box:hover p,
.health-box:hover .health-icon i{
    color: #fff;
}

.health-icon{
    width: 85px;
    height: 85px;
    border-radius: 50%;
    background: rgba(48,136,16,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto auto 25px;
}

.health-icon i{
    color: #308810;
    font-size: 34px;
    transition: 0.4s;
}

.health-box h3{
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 15px;
    transition: 0.4s;
}

.health-box p{
    color: #666;
    line-height: 30px;
    margin-bottom: 0;
    transition: 0.4s;
}


/* =====================================
        BOTTOM SECTION
===================================== */

.healthcare-bottom{
    margin-top: 90px;
    background: #207800;
    padding: 60px;
    border-radius: 10px;
}

.bottom-content span{
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.bottom-content h2{
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    margin-top: 15px;
    line-height: 1.4;
}

.bottom-text p{
    color: rgba(255,255,255,0.88);
    line-height: 32px;
    margin-bottom: 0;
}


/* =====================================
        RESPONSIVE
===================================== */

@media(max-width:991px){

    .healthcare-section{
        padding: 80px 0;
    }

    .healthcare-heading h2{
        font-size: 40px;
    }

    .healthcare-content{
        padding-left: 0;
    }

    .content-box{
        padding: 40px;
    }

    .bottom-content h2{
        font-size: 34px;
    }

}


@media(max-width:767px){

    .healthcare-section{
        padding: 60px 0;
    }

    .healthcare-heading{
        margin-bottom: 45px;
    }

    .healthcare-heading h2{
        font-size: 30px;
    }

    .content-box{
        padding: 30px;
    }

    .content-box h3{
        font-size: 28px;
    }

    .healthcare-services{
        margin-top: 60px;
    }

    .healthcare-bottom{
        margin-top: 60px;
        padding: 35px;
    }

    .bottom-content h2{
        font-size: 28px;
    }

}


@media(max-width:575px){

    .healthcare-heading h2{
        font-size: 25px;
    }

    .content-box h3{
        font-size: 24px;
    }

    .bottom-content h2{
        font-size: 24px;
    }

    .health-box{
        padding: 35px 25px;
    }

}

/*projects*/
/* =====================================
        IMPACT PROJECTS
===================================== */

.impact-projects-section{
    padding: 100px 0;
    background: #f8faf7;
}


/* =====================================
        HEADING
===================================== */

.impact-project-heading{
    margin-bottom: 80px;
}

.impact-project-heading span{
    color: #308810;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.impact-project-heading h2{
    font-size: 52px;
    font-weight: 600;
    margin: 15px 0;
    color: #222;
}

.impact-project-heading p{
    max-width: 760px;
    margin: auto;
    color: #666;
    line-height: 32px;
}


/* =====================================
        PROJECT WRAPPER
===================================== */

.impact-project-wrapper{
    margin-bottom: 100px;
}

.last-project{
    margin-bottom: 0;
}


/* =====================================
        IMAGE
===================================== */

.impact-project-image{
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.impact-project-image img{
    width: 100%;
    border-radius: 10px;
    transition: 0.5s;
}



/* =====================================
        CONTENT
===================================== */

.impact-project-content{
    padding-left: 60px;
}

.right-space{
    padding-left: 0;
    padding-right: 60px;
}

.project-mini-title{
    color: #308810;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.impact-project-content h3{
    font-size: 42px;
    font-weight: 600;
    line-height: 1.4;
    margin: 18px 0 22px;
    color: #222;
}

.impact-project-content p{
    color: #666;
    line-height: 32px;
    margin-bottom: 18px;
}


/* =====================================
        RESPONSIVE
===================================== */

@media(max-width:991px){

    .impact-projects-section{
        padding: 80px 0;
    }

    .impact-project-heading h2{
        font-size: 40px;
    }

    .impact-project-content{
        padding-left: 0;
        margin-top: 35px;
    }

    .right-space{
        padding-right: 0;
    }

    .impact-project-content h3{
        font-size: 34px;
    }

    .impact-project-wrapper{
        margin-bottom: 70px;
    }

}


@media(max-width:767px){

    .impact-projects-section{
        padding: 60px 0;
    }

    .impact-project-heading{
        margin-bottom: 50px;
    }

    .impact-project-heading h2{
        font-size: 30px;
    }

    .impact-project-content h3{
        font-size: 28px;
    }

    .impact-project-content p{
        line-height: 29px;
    }

    .impact-project-wrapper{
        margin-bottom: 60px;
    }

}


@media(max-width:575px){

    .impact-project-heading h2{
        font-size: 24px;
    }

    .impact-project-content h3{
        font-size: 24px;
    }

}

/*Contact Page*/
/* =====================================
        CONTACT SECTION
===================================== */

.contact-page-section{
    padding: 100px 0;
    background: #f8faf7;
}


/* =====================================
        LEFT INFO BOX
===================================== */

.contact-info-box{
    background: #111;
    padding: 30px 30px;
    border-radius: 28px;
    height: 100%;
}

.contact-mini-title{
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-info-box h2{
    color: #fff;
    font-size: 42px;
    font-weight: 600;
    margin: 18px 0;
}

.contact-info-box p{
    color: rgba(255,255,255,0.85);
    line-height: 30px;
}


/* =====================================
        INFO ITEMS
===================================== */

.contact-info-item{
    display: flex;
    margin-top: 35px;
}

.contact-icon{
    width: 65px;
    height: 65px;
    min-width: 65px;
    background: rgba(255,255,255,0.12);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.contact-icon i{
    color: #fff;
    font-size: 24px;
}

.contact-details h4{
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 0px;
}

.contact-details p{
    margin-bottom: 0;
}


/* =====================================
        SOCIAL ICONS
===================================== */

.contact-social-icons{
    margin-top: 40px;
}

.contact-social-icons a{
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.12);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    margin-right: 12px;
    transition: 0.4s;
    text-decoration: none;
}

.contact-social-icons a:hover{
    background: #fff;
    color: #308810;
}


/* =====================================
        FORM BOX
===================================== */

.contact-form-box{
    background: #fff;
    padding: 40px 40px;
    border-radius: 28px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    height: 100%;
}

.form-mini-title{
    color: #308810;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-form-box h2{
    font-size: 42px;
    font-weight: 600;
    margin: 18px 0 25px;
    color: #222;
}


/* =====================================
        FORM CONTROLS
===================================== */

.contact-form-control{
    width: 100%;
    height: 55px;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 0 20px;
    font-size: 16px;
    margin-bottom: 10px;
    outline: none;
    transition: 0.4s;
}

.contact-form-control:focus{
    border-color: #308810;
    box-shadow: 0 0 0 4px rgba(48,136,16,0.10);
}

.message-box{
    height: auto;
    padding-top: 18px;
    resize: none;
}


/* =====================================
        BUTTON
===================================== */

.contact-submit-btn{
    background: #308810;
    color: #fff;
    border: none;
    padding: 15px 38px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.4s;
}

.contact-submit-btn:hover{
    background: #256b0f;
}


/* =====================================
        RESPONSIVE
===================================== */

@media(max-width:991px){

    .contact-page-section{
        padding: 80px 0;
    }

    .contact-info-box,
    .contact-form-box{
        padding: 45px 35px;
    }

    .contact-info-box h2,
    .contact-form-box h2{
        font-size: 34px;
    }

}


@media(max-width:767px){

    .contact-page-section{
        padding: 60px 0;
    }

    .contact-info-box,
    .contact-form-box{
        padding: 35px 25px;
    }

    .contact-info-box h2,
    .contact-form-box h2{
        font-size: 28px;
    }

    .contact-info-item{
        flex-direction: column;
    }

    .contact-icon{
        margin-bottom: 15px;
    }

}


@media(max-width:575px){

    .contact-info-box h2,
    .contact-form-box h2{
        font-size: 24px;
    }

    .contact-form-control{
        height: 55px;
    }

    .contact-submit-btn{
        width: 100%;
    }
}

/*Gallery*/
/* =====================================
        GALLERY SECTION
===================================== */

.foundation-gallery-section{
    padding: 100px 0;
    background: #f8faf7;
}


/* =====================================
        HEADING
===================================== */

.gallery-main-heading{
    margin-bottom: 60px;
}

.gallery-main-heading span{
    color: #308810;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.gallery-main-heading h2{
    font-size: 52px;
    font-weight: 700;
    color: #222;
    margin: 15px 0;
}

.gallery-main-heading p{
    max-width: 760px;
    margin: auto;
    color: #666;
    line-height: 30px;
}


/* =====================================
        CUSTOM GRID
===================================== */

.custom-gallery-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


/* =====================================
        IMAGE BOX
===================================== */

.gallery-image-box{
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    position: relative;
}

.gallery-image-box img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.5s;
}


/* =====================================
        MODAL
===================================== */

.gallery-modal{
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.92);
    padding: 40px;
}

.gallery-modal-content{
    display: block;
    margin: auto;
    max-width: 50%;
    max-height: 80vh;
    border-radius: 12px;
    animation: galleryZoom 0.4s;
    object-fit:cover;
}


/* =====================================
        CLOSE BUTTON
===================================== */

.gallery-close{
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 50px;
    font-weight: 700;
    cursor: pointer;
    z-index: 999;
    transition: 0.3s;
}

.gallery-close:hover{
    color: #308810;
}


/* =====================================
        ANIMATION
===================================== */

@keyframes galleryZoom{

    from{
        transform: scale(0.7);
        opacity: 0;
    }

    to{
        transform: scale(1);
        opacity: 1;
    }

}


/* =====================================
        RESPONSIVE
===================================== */

@media(max-width:991px){

    .foundation-gallery-section{
        padding: 80px 0;
    }

    .gallery-main-heading h2{
        font-size: 40px;
    }

    .custom-gallery-grid{
        grid-template-columns: repeat(2, 1fr);
    }

}


@media(max-width:767px){

    .foundation-gallery-section{
        padding: 60px 0;
    }

    .gallery-main-heading{
        margin-bottom: 40px;
    }

    .gallery-main-heading h2{
        font-size: 30px;
    }

    .custom-gallery-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-image-box img{
        height: 260px;
    }

    .gallery-modal-content{
        max-width: 95%;
    }

}


@media(max-width:575px){

    .gallery-main-heading h2{
        font-size: 24px;
    }

    .gallery-close{
        font-size: 38px;
        right: 20px;
    }

}

/*Blog page*/
/* =====================================
        BLOG SECTION
===================================== */

.foundation-blog-section{
    padding: 100px 0;
    background: #f8faf7;
}


/* =====================================
        HEADING
===================================== */

.blog-main-heading{
    margin-bottom: 60px;
}

.blog-main-heading span{
    color: #308810;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.blog-main-heading h2{
    font-size: 52px;
    font-weight: 600;
    color: #222;
    margin: 15px 0;
}

.blog-main-heading p{
    max-width: 760px;
    margin: auto;
    color: #666;
    line-height: 30px;
}


/* =====================================
        BLOG GRID
===================================== */

.foundation-blog-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}


/* =====================================
        BLOG CARD
===================================== */

.foundation-blog-card{
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.4s;
    box-shadow: 0 12px 40px rgba(0,0,0,0.04);
}



/* =====================================
        IMAGE
===================================== */

.foundation-blog-image{
    overflow: hidden;
}

.foundation-blog-image img{
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.5s;
}




/* =====================================
        CONTENT
===================================== */

.foundation-blog-content{
    padding: 30px;
}

.blog-meta-info{
    margin-bottom: 15px;
}

.blog-meta-info span{
    color: #308810;
    font-size: 14px;
    font-weight: 500;
}

.blog-meta-info i{
    margin-right: 8px;
}

.foundation-blog-content h3{
    font-size: 28px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #222;
}

.foundation-blog-content p{
    color: #666;
    line-height: 30px;
    margin-bottom: 25px;
}


/* =====================================
        BUTTON
===================================== */

.blog-read-btn{
    display: inline-block;
    padding: 12px 28px;
    background: #308810;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.4s;
}

.blog-read-btn:hover{
    background: #256b0f;
    color: #fff;
}


/* =====================================
        RESPONSIVE
===================================== */

@media(max-width:991px){

    .foundation-blog-section{
        padding: 80px 0;
    }

    .foundation-blog-grid{
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-main-heading h2{
        font-size: 40px;
    }

}


@media(max-width:767px){

    .foundation-blog-section{
        padding: 60px 0;
    }

    .foundation-blog-grid{
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .blog-main-heading{
        margin-bottom: 40px;
    }

    .blog-main-heading h2{
        font-size: 30px;
    }

    .foundation-blog-content h3{
        font-size: 24px;
    }

}


@media(max-width:575px){

    .blog-main-heading h2{
        font-size: 24px;
    }

    .foundation-blog-content{
        padding: 24px;
    }

}

/*Donate page*/
/* =====================================
        DONATE SECTION
===================================== */

.donate-page-section{
    padding: 100px 0;
    background: #f8faf7;
}


/* =====================================
        WRAPPER
===================================== */

.donate-wrapper{
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}


/* =====================================
        LEFT BOX
===================================== */

.donate-details-box{
    background: #fff;
    padding: 55px;
    border-radius: 28px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.05);
}

.donate-mini-title{
    color: #308810;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.donate-details-box h2{
    font-size: 48px;
    font-weight: 700;
    color: #222;
    margin: 18px 0;
}

.donate-details-box p{
    color: #666;
    line-height: 30px;
}


/* =====================================
        ACCOUNT BOX
===================================== */

.donate-account-box{
    margin-top: 40px;
}

.donate-info-item{
    padding: 20px 0;
    border-bottom: 1px solid #e8e8e8;
}

.donate-info-item:last-child{
    border-bottom: none;
}

.donate-info-item h4{
    font-size: 18px;
    font-weight: 600;
    color: #308810;
    margin-bottom: 8px;
}

.donate-info-item p{
    margin-bottom: 0;
    color: #333;
    font-size: 16px;
}


/* =====================================
        RIGHT BOX
===================================== */

.donate-qr-box{
    background: #308810;
    padding: 50px 35px;
    border-radius: 28px;
    text-align: center;
    color: #fff;
}

.scanner-box{
    background: #fff;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 30px;
}

.scanner-box img{
    width: 100%;
    max-width: 320px;
    margin: auto;
    display: block;
}

.donate-qr-box h3{
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
}

.donate-qr-box p{
    color: rgba(255,255,255,0.88);
    line-height: 30px;
}


/* =====================================
        RESPONSIVE
===================================== */

@media(max-width:991px){

    .donate-page-section{
        padding: 80px 0;
    }

    .donate-wrapper{
        grid-template-columns: 1fr;
    }

    .donate-details-box h2{
        font-size: 38px;
    }

}


@media(max-width:767px){

    .donate-page-section{
        padding: 60px 0;
    }

    .donate-details-box,
    .donate-qr-box{
        padding: 40px 25px;
    }

    .donate-details-box h2{
        font-size: 30px;
    }

    .donate-qr-box h3{
        font-size: 28px;
    }

}


@media(max-width:575px){

    .donate-details-box h2{
        font-size: 24px;
    }

    .donate-qr-box h3{
        font-size: 24px;
    }

}