/* ================= NAVBAR ================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Playfair Display', serif
}


html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
     background:#f2f2f2;
}




/* ===========================
        NAVBAR
=========================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:70px;
    padding:0 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:#ffffff;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
    z-index:9999;
}

.logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.logo-img{
    width:65px;
    height:65px;
    object-fit:contain;
}

.logo h2{
    color:#003b35;
    font-size:17px;
    font-weight:700;
}

.logo span{
    color:#f2c94c;
}

nav ul{
    display:flex;
    list-style:none;
    gap:40px;
}

nav ul li{
    position:relative;
}

nav ul li a{
    text-decoration:none;
    color:#003b35;
    font-size:16px;
    font-weight:600;
    transition:.3s;
}

nav ul li a:hover,
nav ul li a.active{
    color:#f2c94c;
}

.donat-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    background:#f2c94c;
    color:#003b35;
    text-decoration:none;
    padding:14px 28px;
    border-radius:8px;
    font-weight:700;
    transition:.3s;
}

.donat-btn:hover{
    background:#ffd84c;
}

.menu-toggle{
    display:none;
}


.logo a{
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
}

/* ===========================
      DROPDOWN
=========================== */


/* Dropdown Menu */
.dropdown-menu{
    position:absolute;
    top:58px;
    left:10%;
    transform:translateX(-50%) translateY(20px);
    background:#fff;
    border-radius:8px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    width:220px;
    padding:5px 0;
    display:block;
    opacity:0;
    visibility:hidden;
    transition:.3s ease;
    z-index:999;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateX(-50%) translateY(0);
}

/* Remove all extra spacing */
.dropdown-menu li{
    list-style:none;
    margin:0 !important;
    padding:0 !important;
    border-bottom:1px solid #eee;
}

.dropdown-menu li:last-child{
    border-bottom:none;
}

.dropdown-menu li a{
    display:block;
    padding:10px 15px !important;
    margin:0 !important;
    line-height:20px !important;
    font-size:15px;
    color:#003b35;
    text-decoration:none;
    white-space:nowrap;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active{
    background:#f2c94c;
    color:#fff;
}


/* ===========================
        TABLET
=========================== */

@media(max-width:991px){

.navbar{

padding:0 20px;

}

nav ul{

gap:25px;

}

.donat-btn{

padding:12px 20px;

font-size:14px;

}

}

/* ===========================
        MOBILE
=========================== */

@media(max-width:768px){

.navbar{

height:80px;

padding:0 18px;

}

.logo-img{

width:50px;

height:50px;

}

.logo h2{

font-size:15px;

}

.menu-toggle{
display:flex;
width:50px;
height:50px;
background:#f2c94c;
align-items:center;
justify-content:center;
border-radius:8px;
cursor:pointer;
color: black;

}

#menuIcon{

font-size:34px;
color:#003b35;

}

nav .donat-btn{
    display:flex;
    width:calc(100% - 40px);
    margin:20px;
    justify-content:center;
    padding:15px;
    border-radius:8px;
    font-size:16px;
}
nav{

position:fixed;
top:80px;
left:0;
width:100%;
background:#fff;
transform:translateY(-120%);
transition:.35s;
color: black;

}

nav.active{

transform:translateY(0);

}

nav ul{
flex-direction:column;
gap:0;

}

nav ul li{

border-bottom:1px solid #eee;

}

nav ul li a{
display:block;
padding:18px 25px;

color:#003b35;

}

/* ==========================
MOBILE DROPDOWN
========================== */

/* Mobile Dropdown */

.dropdown{
    width:100%;
}

.dropdown > a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    /* width:100%; */
    font-size: 16px;
}

.dropdown-menu{
    position:static !important;
    left:0 !important;
    top:0 !important;
    transform:none !important;

    display:none;
    width:100%;
    margin:0;
    padding:0;
    background:#f8f8f8;
    box-shadow:none;
    border-radius:0;
    opacity:1;
    visibility:visible;
}

.dropdown.active .dropdown-menu{
    display:block;
}

.dropdown-menu li{
    display:block;
    width:100%;
    border:none;
}

.dropdown-menu li a{
    display:block;
    width:100%;
    padding:2px 5px;
    background:#f8f8f8;
    color:#003b35;
    border-bottom:1px solid #ddd;
    font-size: 15px;
}

.dropdown-menu li a:hover,
.dropdown-menu li a.active{
    background:#f2c94c;
    color:#003b35;
}

}

/* whatshapp logo css */

/* WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: #fff;
  font-size: 22px;
  padding: 12px 15px;
  border-radius: 50%;
  z-index: 1000;
}

/* ================= FLOAT BUTTONS ================= */
.whatsapp-float,
.call-float {
  position: fixed;
  right: 20px;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.whatsapp-float {
  width: 40px;
  height: 40px;
  bottom: 20px;
  background: #25d366;
  color: #fff;
  font-size: 28px;
}

.call-float {
  width: 40px;
  height: 40px;
  top: 180px;
  background: #0caf1f;
  color: #f9f7f7;
  font-size: 16px;
}




.footer-contact-link{
    color:#eee;
    text-decoration:none;
    transition:.3s;
}

.footer-contact-link:hover{
    color:#f2c94c;
    text-decoration:underline;
}

.contact-icon .fa-whatsapp{
    color:#013b35;
}


/* this is footer css  */

/*================ FOOTER =================*/





.new-footer{
    background:#013b35;
    color:#fff;
    padding:70px 20px 30px;
    position:relative;
    overflow:hidden;

    background-image:
    linear-gradient(
        45deg,
        rgba(255,255,255,.03) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255,255,255,.03) 50%,
        rgba(255,255,255,.03) 75%,
        transparent 75%
    );

    background-size:60px 60px;
}

/* TOP */



.new-footer-top{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;
    margin-bottom:1px;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:25px;
}

.footer-logo img{
    width:70px;
}

.footer-logo h2{
    font-size:20px;
    color:#fff;
}

.new-footer-about p{
    color:#eee;
    font-size:16px;
    line-height:2;
    max-width:450px;
    text-align:left;
}

.new-footer h3{
    font-size:20px;
    margin-bottom:25px;
}

.new-footer-links ul{
    list-style:none;
}

.new-footer-links li{
    margin-bottom:18px;
}

.new-footer-links a{
    color:#fff;
    text-decoration:none;
    transition:.3s;
    font-size:15px;
}

.new-footer-links a:hover{
    color:#f2c94c;
    padding-left:8px;
}

.new-footer-contact p{
    display:flex;
    gap:12px;
    line-height:1.8;
    font-size:16px;
    margin-bottom:30px;
}

.new-footer-contact i{
    color:#f2c94c;
}

.new-footer-contact h4{
    margin-bottom:20px;
    font-size:22px;
}

.footer-social{
    display:flex;
    gap:15px;
}

.footer-social a{
    width:50px;
    height:50px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-decoration:none;
    transition:.3s;
}

.footer-social a:hover{
    background:#f2c94c;
    color:#013b35;
}

/* NEWSLETTER */

.footer-newsletter{
    border-top:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);

    padding:10px 0;
    margin:16px 0;

    display:flex;
    gap:0;
}

.footer-newsletter input{
    flex:1;
    height:65px;
    background:#0c544c;
    border:none;
    padding:0 25px;
    color:#fff;
    font-size:16px;
    border-radius:10px 0 0 10px;
}

.footer-newsletter input::placeholder{
    color:#ddd;
}

.footer-newsletter button{
    width:220px;
    border:none;
    background:#f2c94c;
    color:#013b35;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    border-radius:0 10px 10px 0;
}

/* CONTACT */

.footer-contact-row{
    display:flex;
    justify-content:flex-end;
    gap:80px;
    margin-bottom:50px;
}

.contact-box{
    display:flex;
    align-items:center;
    gap:20px;
}

.contact-icon{
    width:50px;
    height:50px;
    background:#f2c94c;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#013b35;
    font-size:28px;
}

.contact-box h4{
    font-size:15px;
    margin-bottom:5px;
}

.contact-box p{
    font-size:14px;
    color:#eee;
}


/* COPYRIGHT */

.footer-copy{
    text-align:center;
    padding-top:1px;
    border-top:1px solid rgba(255,255,255,.1);
    color:#ddd;
    font-size:15px;
}


/* MIDDLE SECTION */

.footer-middle{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    border-top:1px solid rgba(255,255,255,.1);
    border-bottom:1px solid rgba(255,255,255,.1);
    padding:4px 0;
    margin:10px 0;
}

/* NEWSLETTER LEFT */

.footer-newsletter{
    width:40%;
    display:flex;
}

.footer-newsletter input{
    flex:1;
    height:50px;
    background:#0c544c;
    border:none;
    padding:0 25px;
    color:#fff;
    font-size:16px;
    border-radius:10px 0 0 10px;
}

.footer-newsletter button{
    width:200px;
    background:#f2c94c;
    border:none;
    color:#013b35;
    font-size:18px;
    font-weight:700;
    border-radius:0 10px 10px 0;
    cursor:pointer;
}

/* CONTACT RIGHT */

.footer-contact-row{
    width:55%;
    display:flex;
    justify-content:flex-end;
    gap:50px;
}

.contact-box{
    display:flex;
    align-items:center;
    gap:18px;
}

.contact-icon{
    width:50px;
    height:50px;
    background:#f2c94c;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#013b35;
    font-size:28px;
}

.contact-box h4{
    font-size:15px;
    margin-bottom:8px;
}

.contact-box p{
    font-size:18px;
    color:#eee;
}

/*================ RESPONSIVE =================*/

@media(max-width:991px){

    .new-footer-top{
        grid-template-columns:1fr 1fr;
    }

    .footer-contact-row{
        justify-content:flex-start;
        flex-direction:column;
        gap:30px;
    }


     .footer-middle{
        flex-direction:column;
        align-items:flex-start;
    }

    .footer-newsletter,
    .footer-contact-row{
        width:100%;
    }

    .footer-contact-row{
        justify-content:flex-start;
        flex-direction:column;
        gap:30px;
    }
}

@media(max-width:768px){

    .new-footer-top{
        grid-template-columns:1fr;
        gap:40px;
    }

    .new-footer h3{
        font-size:26px;
    }

    .footer-newsletter{
        flex-direction:column;
        gap:15px;
    }

    .footer-newsletter input,
    .footer-newsletter button{
        width:100%;
        border-radius:10px;
    }

    .contact-box h4{
        font-size:22px;
    }

    .contact-box p{
        font-size:16px;
    }

    .footer-logo h2{
        font-size:18px;
    }

      .footer-newsletter{
        flex-direction:column;
        gap:15px;
    }

    .footer-newsletter input,
    .footer-newsletter button{
        width:100%;
        border-radius:10px;
    }
}


/* this is index css */

/* HERO */

/*================ HERO =================*/

.hero{
    position:relative;
    width:100%;
    height:115vh;
    overflow:hidden;
    margin-top:70px;
    padding-top: 20px;
}

/*================ SWIPER =================*/

.heroSwiper{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;
}

.heroSwiper .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/*================ OVERLAY =================*/

.overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,55,45,.85) 0%,
        rgba(0,55,45,.65) 35%,
        rgba(0,55,45,.25) 60%,
        transparent 100%
    );
    z-index:2;
}

/*================ CONTAINER =================*/

.hero-container{
    position:relative;
    z-index:5;
    max-width:1200px;
    width:100%;
    height:100%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:0 20px;
}

/*================ LEFT =================*/

.hero-content{
    width:55%;
    color:#fff;
}

.hero-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(10px);
    padding:10px 22px;
    border-radius:40px;
    margin-bottom:25px;
}

.hero-tag i{
    color:#f2c94c;
}

.hero-content h1{
    font-size:60px;
    line-height:1.15;
    font-weight:800;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#f2c94c;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#eee;
    margin-bottom:40px;
}

/*================ BUTTON =================*/

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.hero-btn{
    display:flex;
    align-items:center;
    gap:15px;
    padding:10px 28px;
    background:#f2c94c;
    color:#003b35;
    text-decoration:none;
    border-radius:10px;
    font-weight:700;
    transition:.35s;
}

.hero-btn:hover{
    background:#fff;
    transform:translateY(-5px);
}

.hero-btn i{
    width:30px;
    height:30px;
    border-radius:50%;
    background:#003b35;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
}

.hero-btn2{
    padding:15px 28px;
    border:2px solid #fff;
    border-radius:10px;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    transition:.35s;
}

.hero-btn2:hover{
    background:#fff;
    color:#003b35;
}

/*================ RIGHT =================*/

.hero-right{
    width:35%;
    display:flex;
    justify-content:flex-end;
}

.volunteer-card{
    width:320px;
    background:rgba(255,255,255,.15);
    backdrop-filter:blur(15px);
    border:1px solid rgba(255,255,255,.2);
    border-radius:20px;
    padding:35px;
    color:#fff;
}

.volunteer-card h2{
    font-size:60px;
    color:#f2c94c;
}

.volunteer-card h4{
    font-size:24px;
    margin:10px 0;
}

.volunteer-card p{
    line-height:1.8;
}

.volunteer-card hr{
    border:none;
    height:1px;
    background:rgba(255,255,255,.2);
    margin:25px 0;
}

/*================ STRIP =================*/

.hero-strip{
    background:#f2c94c;
    overflow:hidden;
    padding:14px 0;
}

.hero-strip-content{
    display:flex;
    gap:60px;
    width:max-content;
    animation:marquee 18s linear infinite;
}

.hero-strip-content span{
    font-size:20px;
    font-weight:700;
    color:#003b35;
}

@keyframes marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}




.swiper-button-next,
.swiper-button-prev{

    color:#fff;

    width:50px;
    height:50px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    border-radius:50%;
}

.swiper-button-next::after,
.swiper-button-prev::after{

    font-size:20px;

    font-weight:bold;

}

.swiper-pagination-bullet{

    background:#fff;

    opacity:.6;

}

.swiper-pagination-bullet-active{

    background:#f2c94c;

    opacity:1;

}

/*============== Tablet ==============*/

@media(max-width:991px){

.hero{

height:auto;

min-height:100vh;

}

.hero-container{

flex-direction:column;

justify-content:center;

padding:36px 15px 80px;

text-align:justify;

}

.hero-content{

width:100%;

}

.hero-content h1{

font-size:31px;

}

.hero-content p{

font-size:13px;

}

.hero-buttons{

justify-content:center;

}

.hero-right{

width:100%;

margin-top:40px;

justify-content:center;

}

.volunteer-card{

width:350px;

}

}


/*============== Mobile ==============*/

@media(max-width:768px){

.hero{

margin-top:70px;

}

.hero-content h1{

font-size:31px;

line-height:1.3;

}

.hero-content p{

font-size:13px;

}

.hero-tag{

font-size:13px;

}

.hero-buttons{

flex-direction:column;

}

.hero-btn,
.hero-btn2{

width:100%;

justify-content:center;

}
.volunteer-card p{
    line-height:1.8;
    font-size: 15px;
}

.volunteer-card{

width:100%;

padding:25px;

}

.volunteer-card h2{

font-size:45px;

}

.hero-strip-content span{

font-size:16px;

}

.swiper-button-next,
.swiper-button-prev{

display:none;

}

}


/* index two section  */


/* INDEX TWO SECTION */

.indextwo-section{
    padding:120px 80px;
    display:flex;
    gap:80px;
    background:#f8f8f8;
}

.indextwo-left,
.indextwo-right{
    flex:1;
    position:relative;
}

.indextwo-img-big{
    width:430px;
    height:600px;
    object-fit:cover;
    border-radius:220px;
}

.indextwo-img-small{
    position:absolute;
    width:380px;
    height:380px;
    object-fit:cover;
    border-radius:50%;
    left:30px;
    bottom:-12px;
    border:8px solid #fff;
}

.indextwo-experience{
    position:absolute;
    left:250px;
    bottom:90px;
    background:#f2c94c;
    padding:7px 30px;
    border-radius:15px;
    text-align:center;
    z-index:10;
}

.indextwo-experience h2{
    font-size:33px;
    color:#003b35;
}

.indextwo-experience p{
    font-size:16px;
    color:#003b35;
    line-height:1.4;
}

.indextwo-right h2{
    font-size:35px;
    line-height:1.1;
    color:#003b35;
    margin-bottom:30px;
}

.indextwo-desc{
    font-size:16px;
    line-height:1.8;
    color:#111111;
    margin-bottom:50px;
}

.indextwo-card{
    background:#fff;
    border-radius:25px;
    padding:35px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    margin-bottom:50px;
}

.indextwo-content{
    flex:1;
}

.indextwo-icon{
    width:70px;
    height:70px;
    background:#f2c94c;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-bottom:25px;
}

.indextwo-icon i{
    font-size:28px;
    color:#003b35;
}

.indextwo-content h3{
    font-size:38px;
    color:#003b35;
    margin-bottom:25px;
}

.indextwo-content hr{
    border:1px solid #eee;
    margin-bottom:25px;
}

.indextwo-content p{
    font-size:20px;
    line-height:1.8;
    color:#555;
}

.indextwo-content p i{
    color:#f2c94c;
    margin-right:10px;
}

.indextwo-card img{
    width:300px;
    height:250px;
    object-fit:cover;
    border-radius:20px;
}

.indextwo-buttons{
    display:flex;
    align-items:center;
    gap:25px;
}

.indextwo-btn{
    background:#f2c94c;
    color:#003b35;
    padding:18px 35px;
    border-radius:10px;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
}

.indextwo-video{
    width:70px;
    height:70px;
    background:#f2c94c;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#003b35;
    text-decoration:none;
    font-size:24px;
}

.indextwo-buttons span{

    font-size:16px;
    font-weight:600;
    color:#003b35;
}




/* ===========================
   TABLET RESPONSIVE
=========================== */

@media (max-width:991px){



/* INDEX TWO */

.indextwo-section{
    flex-direction:column;
    padding:80px 30px;
    gap:60px;
}

.indextwo-left{
    display:flex;
    justify-content:center;
}

.indextwo-img-big{
    width:380px;
    height:520px;
}

.indextwo-img-small{
    width:260px;
    height:260px;
    left:20px;
    bottom:0;
}

.indextwo-experience{
    left:180px;
    bottom:60px;
}

.indextwo-right h2{
    font-size:32px;
}

.indextwo-card{
    flex-direction:column;
    text-align:center;
}

.indextwo-card img{
    width:100%;
    height:260px;
}

.indextwo-buttons{
    justify-content:center;
}

}


/* ===========================
   MOBILE RESPONSIVE
=========================== */

@media (max-width:768px){

/* ================= INDEX TWO ================= */

.indextwo-section{
    padding:60px 20px;
    flex-direction:column;
    gap:50px;
}

.indextwo-left{
    display:flex;
    justify-content:center;
}

.indextwo-img-big{
    width:100%;
    max-width:320px;
    height:420px;
}

.indextwo-img-small{
    width:180px;
    height:180px;
    left:0;
    bottom:-10px;
    border-width:5px;
}

.indextwo-experience{
    left:50%;
    transform:translateX(-50%);
    bottom:20px;
    padding:8px 20px;
}

.indextwo-experience h2{
    font-size:24px;
}

.indextwo-experience p{
    font-size:14px;
}

.indextwo-right h2{
    font-size:28px;
    text-align:justify;
}

.indextwo-desc{
    font-size:15px;
    text-align:justify;
    margin-bottom:35px;
}

.indextwo-card{
    flex-direction:column;
    text-align:center;
    padding:25px;
    gap:25px;
}

.indextwo-content h3{
    font-size:28px;
}

.indextwo-content p{
    font-size:16px;
}

.indextwo-card img{
    width:100%;
    height:220px;
}

.indextwo-buttons{
    flex-direction:column;
    gap:20px;
}

.indextwo-btn{
    width:100%;
    text-align:center;
    padding:15px;
    font-size:16px;
}

.indextwo-video{
    width:60px;
    height:60px;
    font-size:20px;
}

.indextwo-buttons span{
    font-size:15px;
    text-align:center;
}

}







/* index three section  */



/* =========================
   INDEX THREE SECTION
========================= */

.indexthree-section{
    padding:5px 20px;
    background:#f8f8f8;
}

.indexthree-heading{
    text-align:center;
    margin-bottom:70px;
}

.indexthree-heading span{
    display:inline-block;
    color:#f2c94c;
    font-size:18px;
    font-weight:700;
    margin-bottom:15px;
}

.indexthree-heading h2{
    font-size:30px;
    color:#003b35;
    margin-bottom:20px;
}

.indexthree-heading p{
    max-width:850px;
    margin:auto;
    color:#0a0a0a;
    font-size:16px;
    line-height:1.8;
}

/* GRID */

.indexthree-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* CARD */

.indexthree-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    transition:0.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.indexthree-card:hover{
    transform:translateY(-12px);
}

/* CONTENT */

.indexthree-content{
    padding:20px;
}

.indexthree-icon{
    width:70px;
    height:70px;
    background:#f2c94c;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:30px;
}

.indexthree-icon i{
    font-size:28px;
    color:#003b35;
}

.indexthree-content h3 {
    font-size: 21px;
    color: #003b35;
    margin-bottom: 15px;
}

.indexthree-content p {
    font-size: 15px;
    color: #121111;
    line-height: 1.8;
    margin-bottom: 6px;
}

.indexthree-content a{
    text-decoration:none;
    color:#003b35;
    font-size:16px;
    font-weight:700;
}

.indexthree-content a i{
    margin-left:8px;
}

/* IMAGE */

.indexthree-image img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}



/* index  four section  */
/* ===========================
   INDEX FOUR SECTION
=========================== */

.indexfour-section{
    padding:56px 20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    background:#f8f8f8;
    overflow:hidden;
}

/* LEFT SIDE */

.indexfour-tag{
    display:inline-block;
    padding:12px 30px;
    border:1px solid #ddd;
    border-radius:50px;
    color:#003b35;
    font-size:18px;
    font-weight:600;
    margin-bottom:30px;
    background:#fff;
}

.indexfour-left h2{
    font-size:30px;
    line-height:1.1;
    color:#003b35;
    margin-bottom:30px;
}

.indexfour-desc{
       font-size: 15px;
    color: #0e0e0e;
    line-height: 1.8;
    margin-bottom: 30px;

}

.indexfour-box{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
    margin-bottom:40px;
}

.indexfour-box hr{
    border:none;
    border-top:1px solid #eee;
    margin:20px 0;
}

.indexfour-item{
    display:flex;
    align-items:center;
    gap:25px;
}

/* ICON HOVER EFFECT */

.indexfour-icon{
    width:65px;
    height:65px;
    background:#f2c94c;
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    transition:.4s;
}

.indexfour-icon i{
    font-size:26px;
    color:#003b35;
    transition:.4s;
}

.indexfour-item:hover .indexfour-icon{
    transform:rotate(12deg) scale(1.1);
    background:#003b35;
}

.indexfour-item:hover .indexfour-icon i{
    color:#f2c94c;
}

.indexfour-item p{
    font-size:15px;
    color:#060606;
    line-height:1.7;
}

/* BUTTON */

.indexfour-btn{
    display:inline-flex;
    align-items:center;
    gap:15px;
    background:#f2c94c;
    color:#003b35;
    text-decoration:none;
    padding:12px 60px;
    border-radius:12px;
    font-size:15px;
    font-weight:700;
    transition:.3s;
}

.indexfour-btn:hover{
    transform:translateY(-5px);
}

.indexfour-btn i{
    transition:.3s;
}

.indexfour-btn:hover i{
    transform:rotate(-45deg);
}

/* RIGHT SIDE */

.indexfour-right{
    position:relative;
}

/* BIG IMAGE */

.indexfour-main-img{
    width:100%;
    height:720px;
    object-fit:cover;
    border-radius:25px;
}

/* SMALL IMAGE */

.indexfour-small-img{
    position:absolute;
    width:380px;
    left:-80px;
    bottom:-40px;
    border-radius:25px;
    border:10px solid #fff;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* CALL BOX */

.indexfour-call-box{
    position:absolute;
    top:70px;
    right:-23px;

    background:#fff;
    padding:7PX 25px;

    border-radius:20px;

    display:flex;
    align-items:center;
    gap:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    animation:callFloat 3s ease-in-out infinite;
}

@keyframes callFloat{

    0%{
        transform:translateX(0);
    }

    50%{
        transform:translateX(-25px);
    }

    100%{
        transform:translateX(0);
    }

}

.call-icon{
    width:40px;
    height:40px;
    background:#f2c94c;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;
}

.call-icon i{
    font-size:15px;
    color:#003b35;
}

.indexfour-call-box h3{
    font-size:16px;
    color:#003b35;
    margin-bottom:8px;
}

.indexfour-call-box p{
    font-size:15px;
    color:#060606;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .indexfour-section{
        grid-template-columns:1fr;
    }

    .indexfour-left h2{
        font-size:55px;
    }

    .indexfour-main-img{
        height:600px;
    }

    .indexfour-small-img{
        width:300px;
        left:20px;
    }

    .indexfour-call-box{
        right:20px;
    }
}

@media(max-width:768px){

    .indexfour-section{
        padding:80px 25px;
    }

    .indexfour-left h2{
        font-size:42px;
    }

    .indexfour-desc,
    .indexfour-item p{
        font-size:18px;
    }

    .indexfour-main-img{
        height:450px;
    }

    .indexfour-small-img{
        position:static;
        width:100%;
        margin-top:20px;
        border:0;
    }

    .indexfour-call-box{
        position:static;
        margin-top:20px;
        animation:none;
    }
}



/* this is index five section  */


/* ================= INDEX FIVE ================= */

.indexfive{
    background:#04382f;
    padding:80px 20px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

/* zig-zag background */

.indexfive::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(
        135deg,
        rgba(255,255,255,.04) 25%,
        transparent 25%
    );

    background-size:40px 40px;
    opacity:.4;
}

.indexfive>*{
    position:relative;
    z-index:2;
}

.indexfive-top{
    display:flex;
    justify-content:space-between;
    gap:120px;
    margin-bottom: 80px;
}

.indexfive-left{
    width:55%;
}

.indexfive-right{
    width:35%;
}

.indexfive-badge{
    display:inline-block;
    border:1px solid rgba(255,255,255,.2);
    padding:12px 25px;
    border-radius:40px;
    margin-bottom:30px;
    font-size:18px;
}

.indexfive h2{
    font-size:30px;
    line-height:1.1;
}

.indexfive-right p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:10px;
}
.indexfive-btn {
    background: #f2c94c;
    color: #003b35;
    text-decoration: none;
    padding: 16px 53px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 700;
    display: inline-flex;
    gap: 15px;
    align-items: center;
    transition: .4s;
}

.indexfive-btn:hover{
    transform:translateY(-6px);
}

/* GRID */

.indexfive-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:35px;
}

/* CARDS */

.indexfive-card{
    background:rgba(255,255,255,.08);
    padding:45px;
    border-radius:25px;
    backdrop-filter:blur(10px);
    transition:.4s;
}

.indexfive-card:hover{
    transform:translateY(-10px);
}

.indexfive-card h3{
    font-size:30px;
    margin-bottom:25px;
}

.indexfive-card h3 span{
    color:#f2c94c;
}

.indexfive-icon {
    width: 70px;
    height: 70px;
    background: #f2c94c;
    color: #003b35;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    margin-bottom: 30px;
}

.indexfive-card h4{
    font-size:20px;
    margin-bottom:25px;
}

.indexfive-card p{
    font-size:15px;
    line-height:1.8;
    color:#ddd;
}

/* CENTER IMAGE */

.indexfive-image img{
    width:100%;
    height:100%;
    min-height:500px;
    object-fit:cover;
    border-radius:25px;
    transition:.5s;
}

.indexfive-image:hover img{
    transform:scale(1.05);
}

/* AVATARS */

.indexfive-avatars{
    display:flex;
    margin-bottom:30px;
}

.indexfive-avatars img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #04382f;
    margin-left:-20px;
}

.indexfive-avatars img:first-child{
    margin-left:0;
}

.indexfive-card ul{
    list-style:none;
    margin-top:30px;
}

.indexfive-card li{
    margin-bottom:18px;
    font-size:15px;
    display:flex;
    gap:15px;
    align-items:center;
}

.indexfive-card li i{
    color:#f2c94c;
}






/* ===================================
   TABLET RESPONSIVE
=================================== */

@media (max-width:991px){

/* INDEX 3 */

.indexthree-grid{
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

/* INDEX 4 */

.indexfour-section{
    grid-template-columns:1fr;
    gap:50px;
}

.indexfour-right{
    order:-1;
}

.indexfour-main-img{
    height:550px;
}

.indexfour-small-img{
    width:280px;
    left:20px;
    bottom:20px;
}

.indexfour-call-box{
    right:20px;
}

/* INDEX 5 */

.indexfive-top{
    flex-direction:column;
    gap:35px;
    margin-bottom:50px;
}

.indexfive-left,
.indexfive-right{
    width:100%;
}

.indexfive-grid{
    grid-template-columns:1fr 1fr;
    gap:25px;
}

.indexfive-image{
    grid-column:span 2;
}

}


/* ===================================
   MOBILE RESPONSIVE
=================================== */

@media (max-width:768px){

/* ================= INDEX THREE ================= */

.indexthree-section{
    padding:60px 20px;
}

.indexthree-heading{
    margin-bottom:40px;
}

.indexthree-heading span{
    font-size:15px;
}

.indexthree-heading h2{
    font-size:28px;
}

.indexthree-heading p{
    font-size:15px;
}

.indexthree-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.indexthree-content{
    padding:20px;
}

.indexthree-icon{
    width:60px;
    height:60px;
}

.indexthree-icon i{
    font-size:24px;
}

.indexthree-content h3{
    font-size:22px;
}

.indexthree-content p{
    font-size:15px;
}

.indexthree-image img{
    height:220px;
}

/* ================= INDEX FOUR ================= */

.indexfour-section{
    grid-template-columns:1fr;
    gap:40px;
    padding:60px 20px;
}

.indexfour-right{
    order:-1;
}

.indexfour-tag{
    font-size:15px;
    padding:10px 20px;
}

.indexfour-left h2{
    font-size:28px;
}

.indexfour-desc{
    font-size:15px;
}

.indexfour-box{
    padding:25px;
}

.indexfour-item{
    align-items:flex-start;
    gap:18px;
}

.indexfour-icon{
    width:55px;
    height:55px;
}

.indexfour-icon i{
    font-size:22px;
}

.indexfour-item p{
    font-size:15px;
}

.indexfour-btn{
    width:100%;
    justify-content:center;
    padding:14px;
}

.indexfour-main-img{
    width:100%;
    height:350px;
}

.indexfour-small-img{
    position:static;
    width:100%;
    margin-top:20px;
    border:0;
    box-shadow:none;
}

.indexfour-call-box{
    position:static;
    margin-top:20px;
    animation:none;
    justify-content:center;
}

/* ================= INDEX FIVE ================= */

.indexfive{
    padding:60px 20px;
}

.indexfive-top{
    flex-direction:column;
    gap:30px;
    margin-bottom:40px;
}

.indexfive-left,
.indexfive-right{
    width:100%;
}

.indexfive-badge{
    font-size:15px;
    padding:10px 20px;
}

.indexfive h2{
    font-size:28px;
}

.indexfive-right p{
    font-size:15px;
}

.indexfive-btn{
    width:100%;
    justify-content:center;
    padding:14px;
}

.indexfive-grid{
    grid-template-columns:1fr;
    gap:25px;
}

.indexfive-card{
    padding:25px;
}

.indexfive-icon{
    width:60px;
    height:60px;
    font-size:28px;
}

.indexfive-card h3{
    font-size:24px;
}

.indexfive-card h4{
    font-size:18px;
}

.indexfive-card p{
    font-size:15px;
}

.indexfive-image img{
    min-height:auto;
    height:300px;
}

.indexfive-avatars{
    justify-content:center;
}

.indexfive-avatars img{
    width:60px;
    height:60px;
}

.indexfive-card li{
    font-size:15px;
}

}




/* this is a index six section  */


/* ================= INDEX SIX ================= */

.indexsix{
    padding:30px 8px;
    background:#f7f7f7;
}

/* TOP */

.indexsix-top{
    text-align:center;
    max-width:900px;
    margin:auto;
}

.indexsix-tag{
    color:#f2c94c;
    font-size:18px;
    font-weight:700;
    text-transform:uppercase;
}

.indexsix-top h2{
    font-size:25px;
    color:#003b35;
    margin:20px 0;
    font-weight:800;
}

.indexsix-top p{
    font-size:16px;
    line-height:1.8;
    color:#050505;
}

/* GRID */

.indexsix-grid{
    margin-top:70px;

    display:grid;
    grid-template-columns:repeat(3,1fr);

    gap:30px;

    padding:0 2px;
}

/* CARD */

.indexsix-card{
    position:relative;
    height:540px;
    overflow:hidden;
    border-radius:20px;
    cursor:pointer;
}

.indexsix-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.indexsix-card:hover img{
    transform:scale(1.08);
}

/* GLASS CONTENT */

.indexsix-overlay{
    position:absolute;
    left:15px;
    right:15px;
    bottom:15px;
    background:rgba(0,0,0,.25);
    backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,.15);
    padding:5px;
    border-radius:20px;
    text-align:center;
}

.indexsix-overlay span{
    display:inline-block;
    border:1px solid rgba(255,255,255,.35);
    padding:10px 58px;
    border-radius:40px;
    color:#fff;
    font-size:16px;
    margin-bottom:9px;
}

.indexsix-overlay h3{
    color:#fff;
    font-size:12px;
    line-height:1.3;
}

/* BOTTOM */

.indexsix-bottom{
    margin-top:10px;
    background:#fff;
    border-radius:25px;
    padding:11px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;

    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.price{
    font-size:23px;
    font-weight:800;
    color:#f2c94c;
}

.indexsix-help h3{
    font-size:15px;
    color:#003b35;
    margin:20px 0;
    max-width:700px;
}

.indexsix-help a{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#f2c94c;
    color:#003b35;
    padding:11px 33px;
    border-radius:12px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;
}

.indexsix-help a:hover{
    transform:translateY(-4px);
}

/* REVIEW */

.indexsix-review{
    text-align:center;
}

.indexsix-review h2{
    font-size:35px;
    color:#003b35;
}

.indexsix-review p{
    color:#f2c94c;
    font-size:23px;
    letter-spacing:4px;
}

.indexsix-review span{
    color:#666;
    font-size:16px;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .indexsix-grid{
        grid-template-columns:1fr;
    }

    .indexsix-bottom{
        flex-direction:column;
        gap:40px;
        text-align:center;
    }

}

@media(max-width:768px){

    .indexsix{
        padding:80px 10px;
    }

    .indexsix-top h2{
        font-size:50px;
    }

    .indexsix-overlay h3{
        font-size:28px;
    }

}


/* this is a index seven section  */

/* ================= INDEX SEVEN ================= */

.indexseven{
    padding:5px 8px;      /* left-right only 2px */
    display:flex;
    gap:50px;
    background:#f7f7f7;
}

/* LEFT IMAGE */

.indexseven-left{
    width:50%;
    height:900px;
    overflow:hidden;
}

.indexseven-left img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

/* RIGHT CONTENT */

.indexseven-right{
    width:50%;
    padding:75px 30px;
}

.indexseven-tag{
    display:inline-block;
    border:1px solid #ddd;
    padding:6px 18px;
    border-radius:30px;
    font-size:13px;
    color:#003b35;
    margin-bottom:20px;
}

.indexseven-right h2{
    font-size:23px;   /* chhota font */
    color:#003b35;
    line-height:1.15;
    margin-bottom:20px;
}

.indexseven-text{
    font-size:13px;
    color:#0b0b0b;
    line-height:1.8;
    margin-bottom:35px;
}

/* GRID */

.indexseven-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

/* BOX */

.indexseven-box{
    background:#fff;
    padding:28px;
    transition:.4s;
}

.indexseven-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.indexseven-icon{
    width:50px;
    height:50px;
    background:#003b35;
    color:#fff;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:18px;
    margin-bottom:20px;
}

.indexseven-icon.yellow{
    background:#f2c94c;
    color:#003b35;
}

.indexseven-box h3{
    font-size:18px;   /* smaller heading */
    color:#003b35;
    margin-bottom:15px;
}

.indexseven-box hr{
    border:none;
    border-top:1px solid #ddd;
    margin-bottom:15px;
}

.indexseven-box p{
    font-size:14px;
    color:#666;
    line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:991px){

    .indexseven{
        flex-direction:column;
    }

    .indexseven-left,
    .indexseven-right{
        width:100%;
    }

    .indexseven-grid{
        grid-template-columns:1fr;
    }

    .indexseven-right h2{
        font-size:40px;
    }

}







/* ====================================
   TABLET RESPONSIVE
==================================== */

@media (max-width:991px){

/* INDEX SIX */

.indexsix{
    padding:60px 20px;
}

.indexsix-grid{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.indexsix-card{
    height:420px;
}

.indexsix-bottom{
    flex-direction:column;
    align-items:center;
    text-align:center;
    gap:25px;
}

.indexsix-help h3{
    margin:10px 0 20px;
}

/* INDEX SEVEN */

.indexseven{
    flex-direction:column;
    gap:40px;
}

.indexseven-left,
.indexseven-right{
    width:100%;
}

.indexseven-left{
    height:500px;
}

.indexseven-left img{
    object-fit:cover;
}

.indexseven-right{
    padding:20px 10px;
}

.indexseven-grid{
    grid-template-columns:1fr 1fr;
    gap:20px;
}

}


/* ====================================
   MOBILE RESPONSIVE
==================================== */

@media (max-width:768px){

/* INDEX SIX */

.indexsix{
    padding:50px 15px;
}

.indexsix-tag{
    font-size:15px;
}

.indexsix-top h2{
    font-size:28px;
    line-height:1.3;
}

.indexsix-top p{
    font-size:15px;
}

.indexsix-grid{
    grid-template-columns:1fr;
    gap:20px;
    margin-top:40px;
}

.indexsix-card{
    height:350px;
}

.indexsix-overlay{
    left:10px;
    right:10px;
    bottom:10px;
    padding:12px;
}

.indexsix-overlay span{
    font-size:13px;
    padding:8px 18px;
    margin-bottom:10px;
}

.indexsix-overlay h3{
    font-size:18px;
}

.indexsix-bottom{
    flex-direction:column;
    text-align:center;
    gap:20px;
    padding:20px;
}

.price{
    font-size:26px;
}

.indexsix-help h3{
    font-size:15px;
    margin:10px 0 20px;
}

.indexsix-help a{
    width:100%;
    justify-content:center;
}

.indexsix-review h2{
    font-size:28px;
}

.indexsix-review p{
    font-size:18px;
}

.indexsix-review span{
    font-size:14px;
}

/* INDEX SEVEN */

.indexseven{
    flex-direction:column;
    padding:50px 15px;
    gap:35px;
}

.indexseven-left,
.indexseven-right{
    width:100%;
}

.indexseven-left{
    height:320px;
}

.indexseven-left img{
    object-fit:cover;
}

.indexseven-right{
    padding:0;
}

.indexseven-tag{
    font-size:12px;
}

.indexseven-right h2{
    font-size:28px;
    line-height:1.3;
}

.indexseven-text{
    font-size:15px;
    margin-bottom:25px;
}

.indexseven-grid{
    grid-template-columns:1fr;
    gap:20px;
}

.indexseven-box{
    padding:20px;
}

.indexseven-icon{
    width:45px;
    height:45px;
    font-size:16px;
}

.indexseven-box h3{
    font-size:18px;
}

.indexseven-box p{
    font-size:14px;
}

}




/* this is a indexeight section  */


/* ================= INDEX EIGHT ================= */

.index-eight{
    padding:26px 20px;
    margin:0 2px;
    background:#f8f8f8;
}

.section-top{
    display:flex;
    justify-content:space-between;
    gap:50px;
    margin-bottom:40px;
}

.left-content{
    width:55%;
}

.right-content{
    width:35%;
}

.tag{
    display:inline-block;
    padding:6px 14px;
    border:1px solid #ddd;
    border-radius:30px;
    font-size:12px;      /* chhota font */
    color:#666;
    margin-bottom:15px;
}

.left-content h2{
    font-size:30px;      /* chhota kiya */
    line-height:1.2;
    color:#0b4735;
    font-weight:700;
}

.right-content p{
    font-size:15px;      /* chhota font */
    line-height:28px;
    color:#555;
    margin-bottom:25px;
}

.learn-btn{
    display:inline-block;
    background:#f4c430;
    color:#000;
    padding:12px 28px;
    border-radius:6px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.learn-btn:hover{
    background:#0b4735;
    color:#fff;
}

.work-boxes{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.work-card{
    background:#fff;
    padding:40px 25px 110px;
    text-align:center;
    border-radius:12px;
    position:relative;
    overflow:hidden;
    transition:.4s;
}

.number{
    position:absolute;
    bottom:-55px;          /* aadha hi dikhega */
    left:50%;
    transform:translateX(-50%);
    font-size:120px;
    font-weight:700;
    color:#f2f2f2;
    line-height:1;
    transition:0.5s ease;
    pointer-events:none;
}

/* Hover par number upar aayega */
.work-card:hover .number{
    bottom:10px;           /* poora visible ho jayega */
}

.work-card:hover h3{
    color:#f4c430;
}


.work-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,0.12);
}

.work-card:hover h3{
    color:#f4c430;
}

.work-card:hover .icon-box{
    transform:rotate(360deg);
}

.work-card:hover .icon-box{
    transform:rotate(360deg);
}

.icon-box{
    width:90px;
    height:90px;
    background:#f4c430;
    border-radius:50%;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#0b4735;
    transition:0.8s;
}

.work-card h3{
    font-size:20px;     /* chhota font */
    color:#0b4735;
    margin-bottom:15px;
    transition:.3s;
}

.work-card p{
    font-size:15px;     /* chhota font */
    color:#666;
    line-height:24px;
}

.number{
    position:absolute;
    bottom:-20px;
    left:50%;
    transform:translateX(-50%);
    font-size:110px;
    font-weight:700;
    color:#f2f2f2;
    z-index:0;
}

/* Responsive */

@media(max-width:992px){

    .section-top{
        flex-direction:column;
    }

    .left-content,
    .right-content{
        width:100%;
    }

    .work-boxes{
        grid-template-columns:1fr;
    }

    .left-content h2{
        font-size:32px;
    }
}



/* index nine section  */


/*================ INDEX NINE ================*/

.index-nine{
    padding:28px 2px;
    margin:0 2px;
    display:flex;
    gap:60px;
    background:#033b31;
    background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size:40px 40px;
}

/* LEFT SIDE */

.index-nine-left{
    width:45%;
    position:relative;
    min-height:650px;
}

.img-box{
    overflow:hidden;
    border-radius:20px;
}

.img-box img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.img-box:hover img{
    transform:scale(1.08);
}

.img1{
    width:55%;
    height:360px;
}

.img2{
    width:65%;
    height:420px;
    position:absolute;
    right:0;
    bottom:0;
    border:8px solid #033b31;
}

/* SMALL CARDS */

.small-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.top-card{
    position:absolute;
    top:20px;
    left:20px;
    width:170px;
}

.top-card h3,
.bottom-card h3{
    font-size:20px;
    color:#033b31;
    margin-bottom:5px;
}

.top-card p,
.bottom-card p{
    font-size:14px;
    color:#666;
}

.bottom-card{
    position:absolute;
    left:26;
    bottom:40px;
    display:flex;
    align-items:center;
    gap:15px;
    width:260px;
    height: 60px;
}


.icon{
    width:40px;
    height:40px;
    background:#f4c542;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:15px;
    color:#033b31;
}

/* RIGHT SIDE */

.index-nine-right{
    width:55%;
    color:#fff;
}

.section-tag{
    display:inline-block;
    border:1px solid rgba(255,255,255,.2);
    padding:8px 18px;
    border-radius:30px;
    font-size:12px;   /* chhota font */
    margin-bottom:20px;
}

.index-nine-right h2{
    font-size:40px;
    line-height:1.15;
    margin-bottom:25px;
    font-weight:700;
}

.main-text{
    font-size:15px;    /* chhota font */
    line-height:30px;
    color:#ddd;
    margin-bottom:35px;
}

/* TABS */

.tab-buttons{
    display:flex;
    gap:15px;
    margin-bottom:40px;
}

.tab-buttons a{
    text-decoration:none;
    color:#fff;
    background:rgba(255,255,255,.1);
    padding:14px 30px;
    border-radius:40px;
    font-size:14px;   /* chhota font */
    transition:.4s;
}

.tab-buttons a:hover,
.tab-buttons .active{
    background:#f4c542;
    color:#000;
}

/* FEATURE BOX */

.feature-box{
    display:flex;
    gap:20px;
    border-top:1px solid rgba(255,255,255,.15);
    padding-top:30px;
    margin-bottom:40px;
}

.feature-icon{
    min-width:65px;
    height:65px;
    background:#f4c542;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#033b31;
    font-size:24px;
}

.feature-box h3{
    font-size:18px;   /* chhota */
    margin-bottom:10px;
}

.feature-box p{
    font-size:14px;   /* chhota */
    line-height:28px;
    color:#ddd;
}

/* BUTTON */

.contact-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    background:#f4c542;
    color:#000;
    padding:15px 30px;
    border-radius:8px;
    font-size:15px;
    font-weight:600;
    transition:.4s;
}

.contact-btn:hover{
    transform:translateY(-5px);
    background:#fff;
}





/*====================================
        TABLET RESPONSIVE
====================================*/

@media (max-width:991px){

/* INDEX EIGHT */

.section-top{
    flex-direction:column;
    gap:30px;
}

.left-content,
.right-content{
    width:100%;
}

.work-boxes{
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

/* INDEX NINE */

.index-nine{
    flex-direction:column;
    gap:50px;
    padding:60px 20px;
}

.index-nine-left,
.index-nine-right{
    width:100%;
}

.index-nine-left{
    min-height:600px;
}

.index-nine-right h2{
    font-size:34px;
}

.tab-buttons{
    flex-wrap:wrap;
}

}


/*====================================
        MOBILE RESPONSIVE
====================================*/

@media (max-width:768px){

/*================ INDEX EIGHT ================*/

.index-eight{
    padding:50px 15px;
}

.section-top{
    flex-direction:column;
    gap:25px;
    margin-bottom:35px;
}

.left-content,
.right-content{
    width:100%;
}

.tag{
    font-size:13px;
}

.left-content h2{
    font-size:28px;
    line-height:1.3;
}

.right-content p{
    font-size:15px;
    line-height:26px;
}

.learn-btn{
    width:100%;
    text-align:center;
    padding:14px;
}

.work-boxes{
    grid-template-columns:1fr;
    gap:20px;
}

.work-card{
    padding:30px 20px 90px;
}

.icon-box{
    width:70px;
    height:70px;
    font-size:24px;
}

.work-card h3{
    font-size:20px;
}

.work-card p{
    font-size:14px;
}

.number{
    font-size:80px;
    bottom:-10px;
}

/*================ INDEX NINE ================*/

.index-nine{
    flex-direction:column;
    gap:40px;
    padding:50px 15px;
}

.index-nine-left,
.index-nine-right{
    width:100%;
}

.index-nine-left{
    min-height:auto;
}

/* Images */

.img1{
    width:100%;
    height:260px;
}

.img2{
    position:static;
    width:100%;
    height:260px;
    margin-top:20px;
    border:none;
}

/* Floating Cards */

.top-card,
.bottom-card{
    position:static;
    width:100%;
    margin-top:20px;
}

.bottom-card{
    height:auto;
}

/* Right Content */

.section-tag{
    font-size:12px;
}

.index-nine-right h2{
    font-size:28px;
    line-height:1.3;
}

.main-text{
    font-size:15px;
    line-height:28px;
}

/* Tabs */

.tab-buttons{
    flex-direction:column;
    gap:15px;
}

.tab-buttons a{
    width:100%;
    text-align:center;
    padding:12px;
}

/* Feature */

.feature-box{
    flex-direction:column;
    align-items:flex-start;
    gap:15px;
}

.feature-icon{
    width:55px;
    height:55px;
    min-width:55px;
    font-size:20px;
}

.feature-box h3{
    font-size:18px;
}

.feature-box p{
    font-size:14px;
    line-height:24px;
}

/* Button */

.contact-btn{
    width:100%;
    justify-content:center;
    padding:14px;
}

}

/* this is a ten section  */


/*================ INDEX TEN =================*/

.index-ten{
    margin:0;
    padding:50px 0;
    background:#f8f8f8;
    overflow:hidden;
}

.testimonial-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.testimonial-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid #ddd;
    border-radius:30px;
    font-size:12px;
    margin-bottom:20px;
}

.testimonial-heading h2{
    font-size:40px;
    color:#033b31;
    margin-bottom:20px;
}

.testimonial-heading p{
    font-size:16px;
    line-height:28px;
    color:#666;
}

.testimonial-slider{
    width:100%;
    overflow:hidden;
}

.testimonial-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:testimonialScroll 40s linear infinite;
}

.testimonial-slider:hover .testimonial-track{
    animation-play-state:paused;
}

.testimonial-card{
    width:360px;
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    border:1px solid #eee;
    transition:.4s;
}

.testimonial-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,.1);
}

.stars{
    color:#f4c542;
    font-size:18px;
    margin-bottom:20px;
}

.testimonial-card p{
    font-size:20px;
    line-height:32px;
      color:#033b31;
    min-height:180px;
}

.testimonial-user{
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid #eee;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.testimonial-user h4{
    font-size:18px;
    margin-bottom:5px;
    color:#033b31;
}

.testimonial-user span{
    font-size:14px;
    color:#777;
}

.quote-icon{
    width:55px;
    height:55px;
    background:#f4c542;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#033b31;
    font-size:22px;
    transition:.5s;
}

.testimonial-card:hover .quote-icon{
    transform:rotate(360deg);
}

@keyframes testimonialScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

@media(max-width:768px){

    .testimonial-heading h2{
        font-size:36px;
    }

    .testimonial-card{
        width:300px;
    }

}




/*================ INDEX ELEVEN =================*/

.index-eleven{
    margin:0 2px;
    padding:30px 0;
    display:flex;
    gap:50px;
    align-items:center;
}

/*================ LEFT SIDE =================*/

.donation-area{
    width:50%;
    min-height:700px;

    /* IMAGE PATH */
    background:url("../images/ngoimg16.jpeg") center center/cover no-repeat;

    border-radius:20px;
    padding:40px;
    position:relative;
    overflow:hidden;

    display:flex;
    align-items:center;
}

/* DARK OVERLAY */

.donation-area::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    border-radius:20px;
}

/* DONATION FORM BOX */

.donation-box{
    position:relative;
    z-index:2;
    width:90%;
    background:#fff;
    padding:35px;
    border-radius:15px;
    box-shadow:0 15px 40px rgba(0,0,0,0.15);
}

.donation-box h3{
    font-size:26px;
    color:#033b31;
    margin-bottom:15px;
}

.donation-box p{
    font-size:15px;
    color:#666;
    line-height:28px;
    margin-bottom:25px;
}

.donation-box label{
    display:block;
    margin-bottom:12px;
    font-size:15px;
    font-weight:600;
}

.currency-box{
    width:90px;
    padding:12px;
    background:#f3f3f3;
    border-radius:8px;
    text-align:center;
    margin-bottom:20px;
    font-weight:600;
}

.amount-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-bottom:20px;
}

.amount-grid button{
    padding:15px;
    border:none;
    border-radius:8px;
    background:#f3f3f3;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.amount-grid button:hover,
.amount-grid .active{
    background:#f4c542;
}

.donation-box input{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:8px;
    margin-bottom:20px;
    font-size:15px;
}

.donate-btn{
    width:100%;
    display:block;
    text-align:center;

    padding:18px;
    background:#f4c542;
    color:#000;

    border:none;
    border-radius:8px;

    font-size:18px;
    font-weight:600;
    text-decoration:none;

    transition:0.3s;
}

.donate-btn:hover{
    background:#033b31;
    color:#fff;
}

.secure-text{
    margin-top:15px;
    text-align:center;
    color:#666;
    font-size:14px;
}

/*================ RIGHT SIDE =================*/

.volunteer-content{
    width:50%;
}

.section-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid #ddd;
    border-radius:30px;
    font-size:12px;
    margin-bottom:20px;
}

.volunteer-content h2{
    font-size:65px;
    line-height:1.1;
    color:#033b31;
    margin-bottom:25px;
}

.volunteer-content p{
    font-size:17px;
    line-height:30px;
    color:#555;
    margin-bottom:20px;
}

.volunteer-content ul{
    list-style:none;
    padding:0;
    margin:30px 0;
}

.volunteer-content ul li{
    margin-bottom:15px;
    font-size:15px;
}

.volunteer-content ul li i{
    color:#f4c542;
    margin-right:10px;
}

.volunteer-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:16px 30px;
    background:#f4c542;

    color:#000;
    text-decoration:none;
    border-radius:8px;

    transition:0.3s;
}

.volunteer-btn:hover{
    background:#033b31;
    color:#fff;
}




/*=========================================
          TABLET RESPONSIVE
=========================================*/

@media (max-width:991px){

/* INDEX TEN */

.index-ten{
    padding:60px 20px;
}

.testimonial-heading{
    margin-bottom:40px;
}

.testimonial-heading h2{
    font-size:34px;
}

.testimonial-card{
    width:320px;
}

.testimonial-card p{
    font-size:16px;
    line-height:28px;
    min-height:auto;
}

/* INDEX ELEVEN */

.index-eleven{
    flex-direction:column;
    gap:40px;
    padding:60px 20px;
}

.donation-area,
.volunteer-content{
    width:100%;
}

.donation-area{
    min-height:600px;
}

.volunteer-content h2{
    font-size:38px;
}

.amount-grid{
    grid-template-columns:repeat(2,1fr);
}

}


/*=========================================
          MOBILE RESPONSIVE
=========================================*/

@media (max-width:768px){

/*================ INDEX TEN ================*/

.index-ten{
    padding:50px 15px;
}

.testimonial-heading{
    margin-bottom:35px;
}

.testimonial-tag{
    font-size:12px;
}

.testimonial-heading h2{
    font-size:28px;
    line-height:1.3;
}

.testimonial-heading p{
    font-size:15px;
    line-height:26px;
}

.testimonial-track{
    gap:15px;
}

.testimonial-card{
    width:280px;
    padding:25px 18px;
}

.stars{
    font-size:16px;
}

.testimonial-card p{
    font-size:15px;
    line-height:26px;
    min-height:auto;
}

.testimonial-user h4{
    font-size:16px;
}

.testimonial-user span{
    font-size:13px;
}

.quote-icon{
    width:45px;
    height:45px;
    font-size:18px;
}

/*================ INDEX ELEVEN ================*/

.index-eleven{
    flex-direction:column;
    gap:35px;
    padding:50px 15px;
}

.donation-area,
.volunteer-content{
    width:100%;
}

.donation-area{
    min-height:auto;
    padding:20px;
}

.donation-box{
    width:100%;
    padding:25px 18px;
}

.donation-box h3{
    font-size:22px;
}

.donation-box p{
    font-size:14px;
    line-height:24px;
}

.currency-box{
    width:80px;
    font-size:14px;
}

.amount-grid{
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.amount-grid button{
    padding:12px;
    font-size:15px;
}

.donation-box input{
    padding:14px;
    font-size:14px;
}

.donate-btn{
    padding:15px;
    font-size:16px;
}

.secure-text{
    font-size:13px;
}

.section-tag{
    font-size:12px;
}

.volunteer-content h2{
    font-size:28px;
    line-height:1.3;
}

.volunteer-content p{
    font-size:15px;
    line-height:26px;
}

.volunteer-content ul{
    margin:20px 0;
}

.volunteer-content ul li{
    font-size:14px;
    line-height:24px;
}

.volunteer-btn{
    width:100%;
    justify-content:center;
    padding:14px;
}

}




/*================ INDEX TWELVE =================*/




.index-twelve{
    margin:0;
    padding:80px 0;
    background:#f8f8f8;
    overflow:hidden;
}

.blog-heading{
    text-align:center;
    max-width:750px;
    margin:0 auto 60px;
}

.blog-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid #ddd;
    border-radius:30px;
    font-size:12px;
    margin-bottom:20px;
}

.blog-heading h2{
    font-size:52px;
    color:#033b31;
    margin-bottom:20px;
}

.blog-heading p{
    font-size:14px;
    line-height:28px;
    color:#666;
}

.blog-slider{
    width:100%;
    overflow:hidden;
}

.blog-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:blogScroll 35s linear infinite;
}

.blog-slider:hover .blog-track{
    animation-play-state:paused;
}

.blog-card{
    width:380px;
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.blog-content{
    padding:25px;
}

.blog-content span{
    display:inline-block;
    background:#f4c542;
    color:#000;
    padding:6px 14px;
    border-radius:20px;
    font-size:12px;
    margin-bottom:15px;
}

.blog-content h3{
    font-size:20px;
    line-height:30px;
    color:#033b31;
    margin-bottom:20px;
}

.blog-content a{
    text-decoration:none;
    color:#033b31;
    font-weight:600;
    transition:.3s;
}

.blog-content a:hover{
    color:#f4c542;
}

@keyframes blogScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}


.blog-details{
    padding:2px 2px;
    background:#f8f8f8;
}

.blog-container {
    width: 100%;
    margin: auto;

    background: url('../images/ngoimg40.jpeg') center center/cover no-repeat;

    padding: 50px;
    padding-top: 125px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    position: relative;
    overflow: hidden;
}

.blog-container::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,0.85);
    z-index:0;
}

.blog-container > *{
    position:relative;
    z-index:1;
}

.blog-category{
    display:inline-block;
    background:#f4c542;
    color:#000;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
}

.blog-container h1{
    font-size:48px;
    color:#033b31;
    margin-bottom:25px;
    line-height:1.2;
}

.blog-container h2{
    font-size:30px;
    color:#033b31;
    margin:40px 0 20px;
}

.blog-container p{
    font-size:17px;
    line-height:34px;
    color:#555;
    margin-bottom:20px;
    text-align:justify;
}

.blog-image{
    margin:40px 0;
}

.blog-image img{
    width:100%;
    height:500px;
    object-fit:cover;
    border-radius:20px;
}

.blog-container blockquote{
    margin:40px 0;
    padding:30px;
    background:#fff8df;
    border-left:6px solid #f4c542;
    font-size:22px;
    font-style:italic;
    color:#033b31;
    line-height:1.6;
}




/*=====================================
        TABLET RESPONSIVE
=====================================*/

@media (max-width:991px){

/* INDEX TWELVE */

.index-twelve{
    padding:60px 20px;
}

.blog-heading{
    margin-bottom:45px;
}

.blog-heading h2{
    font-size:38px;
}

.blog-track{
    gap:20px;
}

.blog-card{
    width:320px;
}

/* BLOG DETAILS */

.blog-details{
    padding:31px 5px 5px 5px ;
}

.blog-container{
    padding:40px 30px;
    padding-top:80px;
}

.blog-container h1{
    font-size:38px;
}

.blog-container h2{
    font-size:28px;
}

.blog-image img{
    height:400px;
}

.blog-container p{
    font-size:16px;
    line-height:30px;
}

.blog-container blockquote{
    font-size:20px;
    padding:25px;
}

}


/*=====================================
        MOBILE RESPONSIVE
=====================================*/

@media (max-width:768px){

/* INDEX TWELVE */

.index-twelve{
    padding:50px 15px;
}

.blog-heading{
    margin-bottom:35px;
}

.blog-tag{
    font-size:12px;
}

.blog-heading h2{
    font-size:28px;
    line-height:1.3;
}

.blog-heading p{
    font-size:15px;
    line-height:26px;
}

.blog-track{
    gap:15px;
}

.blog-card{
    width:280px;
}

.blog-card img{
    height:190px;
}

.blog-content{
    padding:18px;
}

.blog-content span{
    font-size:11px;
}

.blog-content h3{
    font-size:18px;
    line-height:28px;
}

/* BLOG DETAILS */

.blog-details{
    padding:31px 5px 5px 5px ;
}

.blog-container{
    padding:25px 18px;
    padding-top:60px;
    border-radius:15px;
}

.blog-category{
    font-size:12px;
    padding:7px 15px;
}

.blog-container h1{
    font-size:28px;
    line-height:1.3;
}

.blog-container h2{
    font-size:22px;
    margin:25px 0 15px;
}

.blog-container p{
    font-size:15px;
    line-height:28px;
    text-align:left;
}

.blog-image{
    margin:25px 0;
}

.blog-image img{
    height:220px;
    border-radius:12px;
}

.blog-container blockquote{
    padding:20px;
    font-size:17px;
    line-height:28px;
    margin:25px 0;
}

}








/*================ ABOUT section one =================*/

.about-hero{
    height:100vh;
    background:url('../images/ngoimg36.jpeg') center center/cover no-repeat;
    position:relative;
    overflow:hidden;
    margin-top: 50px;
    
}

/* Dark Overlay */
.about-hero .overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,55,45,0.90) 0%,
        rgba(0,55,45,0.70) 40%,
        rgba(0,55,45,0.30) 70%,
        transparent 100%
    );
    margin-top: 20px;
}

/* Center Content */
.about-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    padding:0 80px;
}

.about-content h1{
    font-size:40px;
    color:#fff;
    font-weight:800;
    margin:0;
    position:relative;
}

.about-content h1::after{
    content:"";
    width:120px;
    height:5px;
    background:#f2c94c;
    position:absolute;
    left:0;
    bottom:-20px;
    border-radius:10px;
}

/* Bottom Yellow Strip */
.about-strip{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:#f2c94c;
    overflow:hidden;
    padding:12px 0;
    z-index:3;
}

.about-strip-content{
    display:flex;
    gap:70px;
    width:max-content;
    animation:marquee 18s linear infinite;
}

.about-strip-content span{
    white-space:nowrap;
    color:#003b35;
    font-size:20px;
    font-weight:700;
}

@keyframes marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Responsive */
@media(max-width:768px){

       .about-hero {
        height: 100vh;
        margin-top: 77px;
    }
    .about-content{
        padding:0 25px;
    }

    .about-content h1{
        font-size:55px;
    }

    .about-content h1::after{
        width:80px;
    }

    .about-strip-content span{
        font-size:16px;
    }
}

/* about two section  */


/*================ ABOUT TWO : SESSION =================*/

.aboutwo-section{
    padding:60px 20px;
    display:flex;
    gap:60px;
    align-items:center;
}

.aboutwo-left{
    width:50%;
}

.aboutwo-tag{
    display:inline-block;
    padding:10px 25px;
    border:1px solid #ddd;
    border-radius:50px;
    color:#033b31;
    font-size:14px;
    font-weight:600;
    background:#fff;
}

.aboutwo-left h2{
    font-size:42px;
    color:#033b31;
    margin:20px 0;
    line-height:1.2;
}

.aboutwo-left p{
    color:#444;
    line-height:30px;
    margin-bottom:18px;
    font-size:15px;
}

.aboutwo-right{
    width:50%;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:20px;
}

.aboutwo-card{
    background:#fff8e8;
    padding:35px 20px;
    text-align:center;
    border-radius:20px;
    transition:.4s;
}

.aboutwo-card:hover{
    transform:translateY(-10px);
}

.aboutwo-card i{
    font-size:38px;
    color:#f4c542;
    margin-bottom:20px;
}

.aboutwo-card h4{
    color:#033b31;
    font-size:18px;
}


/* Responsive */

@media(max-width:991px){

    .aboutwo-section{
        flex-direction:column;
    }

    .aboutwo-left,
    .aboutwo-right{
        width:100%;
    }

}

@media(max-width:768px){

    .aboutwo-right{
        grid-template-columns:1fr;
    }

    .aboutwo-left h2{
        font-size:32px;
    }

}


/* ************ ABOUT THREE SECTIONN   ************ */


/*================ ABOUT THREE : IMPACT =================*/

.abtthree-section{
    padding:70px 20px;
    background:#033b31;
}

.abtthree-heading{
    text-align:center;
    max-width:700px;
    margin:auto;
}

.abtthree-tag{
    display:inline-block;
    padding:10px 25px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50px;
    color:#fff;
    margin-bottom:20px;
    font-size:14px;
}

.abtthree-heading h2{
    font-size:42px;
    color:#fff;
    margin-bottom:20px;
}

.abtthree-heading p{
    color:#ddd;
    line-height:30px;
    font-size:15px;
}

.abtthree-grid{
    margin-top:50px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.abtthree-box{
    background:rgba(255,255,255,.08);
    padding:40px 20px;
    text-align:center;
    border-radius:20px;
    transition:.4s;
}

.abtthree-box:hover{
    transform:translateY(-10px);
}

.abtthree-box h3{
    font-size:50px;
    color:#f4c542;
    margin-bottom:10px;
}

.abtthree-box p{
    color:#fff;
    font-size:16px;
}


/* Responsive */

@media(max-width:991px){

    .abtthree-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .abtthree-grid{
        grid-template-columns:1fr;
    }

    .abtthree-heading h2{
        font-size:32px;
    }

}



/*================ ABOUT FOUR : SECTION  =================*/

.abtfour-section{
    padding:80px 20px;
    background:#fff;
}

.abtfour-heading{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.abtfour-tag{
    display:inline-block;
    padding:10px 25px;
    border:1px solid #ddd;
    border-radius:50px;
    color:#033b31;
    font-size:14px;
    margin-bottom:20px;
}

.abtfour-heading h2{
    font-size:42px;
    color:#033b31;
    margin-bottom:20px;
}

.abtfour-heading p{
    color:#666;
    line-height:30px;
    font-size:15px;
}

.abtfour-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.abtfour-card{
    background:#fff;
    padding:40px 30px;
    border-radius:20px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.abtfour-card:hover{
    transform:translateY(-10px);
}

.abtfour-card i{
    font-size:42px;
    color:#f4c542;
    margin-bottom:20px;
}

.abtfour-card h3{
    color:#033b31;
    margin-bottom:15px;
    font-size:22px;
}

.abtfour-card p{
    color:#666;
    line-height:28px;
    font-size:15px;
}


/* Responsive */

@media(max-width:991px){

    .abtfour-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .abtfour-grid{
        grid-template-columns:1fr;
    }

    .abtfour-heading h2{
        font-size:32px;
    }

}



/*================ ABOUT FOUR : SECTION =================*/

.abtfour-section{
    padding:80px 20px;
    background:#f8f8f8;
}

.abtfour-heading{
    text-align:center;
    max-width:700px;
    margin:auto;
    margin-bottom:60px;
}

.abtfour-tag{
    display:inline-block;
    padding:10px 25px;
    border:1px solid #ddd;
    border-radius:50px;
    color:#033b31;
    font-size:14px;
    margin-bottom:20px;
    background:#fff;
}

.abtfour-heading h2{
    font-size:40px;
    color:#033b31;
    margin-bottom:20px;
}

.abtfour-heading p{
    color:#666;
    line-height:28px;
    font-size:15px;
}

.abtfour-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.abtfour-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.abtfour-card:hover{
    transform:translateY(-10px);
}

.abtfour-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.abtfour-content{
    padding:30px 25px;
    text-align:center;
}

.abtfour-content i{
    font-size:36px;
    color:#f4c542;
    margin-bottom:18px;
}

.abtfour-content h3{
    color:#033b31;
    margin-bottom:15px;
    font-size:22px;
}

.abtfour-content p{
    color:#666;
    line-height:28px;
    font-size:15px;
}


/* Responsive */

@media(max-width:991px){

    .abtfour-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .abtfour-grid{
        grid-template-columns:1fr;
    }

    .abtfour-heading h2{
        font-size:32px;
    }

    .abtfour-card img{
        height:220px;
    }

}












/*================ ABOUT FIVE =================*/

.abtfive-section{
    padding:80px 20px;
    background:#033b31;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
}

/* LEFT */

.abtfive-left{
    position:relative;
}

.abtfive-top-card{
    width:220px;
    background:#fff;
    padding:25px;
    border-radius:20px;
    position:absolute;
    top:0;
    left:0;
    z-index:5;
}

.abtfive-top-card h3{
    color:#033b31;
    font-size:16px;
    line-height:1.2;
    margin-bottom:20px;
}

.abtfive-users{
    display:flex;
}

.abtfive-users img{
    width:45px;
    height:45px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #fff;
    margin-left:-10px;
}

.abtfive-users img:first-child{
    margin-left:0;
}

.abtfive-gallery{
    padding-top:40px;
    display:flex;
    gap:20px;
}

.abtfive-img-one{
    width:45%;
    height:500px;
    object-fit:cover;
    border-radius:20px;
    margin-top:180px;
}

.abtfive-img-two{
    width:55%;
    height:700px;
    object-fit:cover;
    border-radius:20px;
}

.abtfive-bottom-card{
    width:300px;
    background:#fff;
    padding:25px;
    border-radius:20px;

    display:flex;
    align-items:center;
    gap:20px;

    margin-top:-80px;
    position:relative;
    z-index:5;
}

.abtfive-bottom-card i{
    width:60px;
    height:60px;
    background:#f2c94c;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    color:#033b31;
    font-size:24px;
}

.abtfive-bottom-card h4{
    font-size:32px;
    color:#033b31;
}

.abtfive-bottom-card p{
    color:#666;
}

/* RIGHT */

.abtfive-tag{
    display:inline-block;
    padding:10px 25px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:50px;
    color:#fff;
    margin-bottom:25px;
}

.abtfive-right h2{
    color:#fff;
    font-size:46px;
    line-height:1.1;
    margin-bottom:25px;
}

.abtfive-desc{
    color:#ddd;
    line-height:34px;
    margin-bottom:40px;
}

/* TABS */

.abtfive-tabs{
    display:flex;
    gap:20px;
    margin-bottom:40px;
}

.abtfive-tabs button{
    border:none;
    background:rgba(255,255,255,.1);
    color:#fff;
    padding:18px 35px;
    border-radius:50px;
    cursor:pointer;
    font-size:16px;
}

.abtfive-tabs button.active{
    background:#f2c94c;
    color:#033b31;
    font-weight:700;
}

/* FEATURE */

.abtfive-feature{
    display:flex;
    gap:25px;
    padding:40px 0;
    border-top:1px solid rgba(255,255,255,.15);
    border-bottom:1px solid rgba(255,255,255,.15);
}

.abtfive-feature-icon{
    width:70px;
    height:70px;
    background:#f2c94c;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    flex-shrink:0;
}

.abtfive-feature-icon i{
    color:#033b31;
    font-size:28px;
}

.abtfive-feature h3{
    color:#fff;
    margin-bottom:15px;
    font-size:32px;
}

.abtfive-feature p{
    color:#ddd;
    line-height:32px;
}

/* BUTTON */

.abtfive-btn{
    display:inline-flex;
    align-items:center;
    gap:15px;

    margin-top:40px;

    background:#f2c94c;
    color:#033b31;

    text-decoration:none;

    padding:18px 35px;
    border-radius:12px;

    font-weight:700;
}

/* RESPONSIVE */

@media(max-width:991px){

    .abtfive-section{
        grid-template-columns:1fr;
    }

    .abtfive-right h2{
        font-size:42px;
    }

}

@media(max-width:768px){

    .abtfive-gallery{
        flex-direction:column;
    }

    .abtfive-img-one,
    .abtfive-img-two{
        width:100%;
        height:350px;
        margin:0;
    }

    .abtfive-top-card,
    .abtfive-bottom-card{
        position:static;
        width:100%;
        margin:20px 0;
    }

    .abtfive-tabs{
        flex-direction:column;
    }
}





/* ************  ABOUT SIX SECTION  *********** */


/*================ ABOUT SIX =================*/

.abtsix-section{
    padding:5px 8px;
    display:flex;
    gap:50px;
    background:#f7f7f7;
}

/* LEFT IMAGE */

.abtsix-left{
    width:50%;
    height:900px;
    overflow:hidden;
}

.abtsix-left img{
    width:100%;
    height:100%;
    object-fit:contain;
    display:block;
}

/* RIGHT CONTENT */

.abtsix-right{
    width:50%;
    padding:75px 30px;
}

.abtsix-tag{
    display:inline-block;
    border:1px solid #ddd;
    padding:6px 18px;
    border-radius:30px;
    font-size:13px;
    color:#003b35;
    margin-bottom:20px;
}

.abtsix-right h2{
    font-size:23px;
    color:#003b35;
    line-height:1.15;
    margin-bottom:20px;
}

.abtsix-text{
    font-size:13px;
    color:#0b0b0b;
    line-height:1.8;
    margin-bottom:35px;
}

/* GRID */

.abtsix-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:25px;
}

/* BOX */

.abtsix-box{
    background:#fff;
    padding:28px;
    transition:.4s;
}

.abtsix-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.08);
}

.abtsix-icon{
    width:50px;
    height:50px;
    background:#003b35;
    color:#fff;
    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:18px;
    margin-bottom:20px;
}

.abtsix-icon.yellow{
    background:#f2c94c;
    color:#003b35;
}

.abtsix-box h3{
    font-size:18px;
    color:#003b35;
    margin-bottom:15px;
}

.abtsix-box hr{
    border:none;
    border-top:1px solid #ddd;
    margin-bottom:15px;
}

.abtsix-box p{
    font-size:14px;
    color:#666;
    line-height:1.8;
}

/* RESPONSIVE */

@media(max-width:991px){

    .abtsix-section{
        flex-direction:column;
    }

    .abtsix-left,
    .abtsix-right{
        width:100%;
    }

    .abtsix-grid{
        grid-template-columns:1fr;
    }

    .abtsix-right h2{
        font-size:40px;
    }

}

@media(max-width:768px){

    .abtsix-left{
        height:450px;
    }

    .abtsix-right{
        padding:40px 15px;
    }

    .abtsix-right h2{
        font-size:28px;
    }

}











































/* SERVICES ONE SECTIONN */



/*================ SERVICES ONE SECTION =================*/

.servicesone-section{
    height:100vh;
    background:url('../images/img1.png') center center/cover no-repeat;
    position:relative;
    overflow:hidden;
    margin-top: 70px;
}

/* Dark Overlay */
.servicesone-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,55,45,0.90) 0%,
        rgba(0,55,45,0.70) 40%,
        rgba(0,55,45,0.30) 70%,
        transparent 100%
    );
}

/* Center Content */
.servicesone-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    padding:0 80px;
}

.servicesone-content h1{
    font-size:40px;
    color:#fff;
    font-weight:800;
    margin:0;
    position:relative;
}

.servicesone-content h1::after{
    content:"";
    width:120px;
    height:5px;
    background:#f2c94c;
    position:absolute;
    left:0;
    bottom:-20px;
    border-radius:10px;
}

/* Bottom Yellow Strip */
.servicesone-strip{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:#f2c94c;
    overflow:hidden;
    padding:12px 0;
    z-index:3;
}

.servicesone-strip-content{
    display:flex;
    gap:70px;
    width:max-content;
    animation:servicesone-marquee 18s linear infinite;
}

.servicesone-strip-content span{
    white-space:nowrap;
    color:#003b35;
    font-size:20px;
    font-weight:700;
}

@keyframes servicesone-marquee{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

/* Responsive */
@media(max-width:768px){

    .servicesone-section{
    height:100vh;
    background-position:center;
    background-size:cover;
}

    .servicesone-content{
        padding:0 25px;
    }

    .servicesone-content h1{
        font-size:55px;
    }

    .servicesone-content h1::after{
        width:80px;
    }

    .servicesone-strip-content span{
        font-size:16px;
    }
}





/* ********************  SERVICE SECOND SECTION       ************************ */


/*================ SERVICES TWO =================*/

.servicestwo-section{
    padding:50px 2%;
    background:#f7f7f7;
}




.servicestwo-title span{
    color:#f2c94c;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
}

.servicestwo-title{
    text-align:left;
    margin-bottom:60px;
}

.servicestwo-title h2{
    font-size:28px;
    color:#033b31;
    margin-top:15px;
    max-width:700px;
}

/* GRID */

.servicestwo-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/* CARD */

.servicestwo-card{
    position:relative;
    height:520px;
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    padding:50px;
    cursor:pointer;
}

/* HOVER IMAGE */

.service-bg{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:all .4s ease;
    -webkit-transition:all .4s ease;
}

.service-bg::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(3,59,49,.65);
}

.servicestwo-card:hover .service-bg{
    opacity:1;
}

/* CONTENT */

.service-content{
    position:relative;
    z-index:2;

    height:100%;

    display:flex;
    flex-direction:column;
}

 .service-icon{
    width:50px;
    height:50px;
    border-radius:50%;

    background:#f2c94c;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    color:#033b31;

    margin-bottom:40px;
} 

.service-content h3{
    font-size:20px;
    color:#033b31;
    line-height:1.3;
    margin-bottom:25px;

    transition:.4s;
}

.service-line{
    width:100%;
    height:1px;
    background:#ddd;

    margin-bottom:30px;

    transition:.4s;
}

.service-content p{
    font-size:17px;
    color:#2d2c2c;
    line-height:1.8;
    transition:.4s;
}

.service-content a{
    margin-top:auto;
    text-decoration:none;
    color:#033b31;
    font-size:18px;
    font-weight:700;
    transition:.4s;
}

.service-content a i{
    margin-left:8px;
}

/* HOVER EFFECT */

.servicestwo-card:hover h3,
.servicestwo-card:hover p,
.servicestwo-card:hover a{
    color:#fff;
}

.servicestwo-card:hover .service-line{
    background:rgba(255,255,255,.3);
}

/* RESPONSIVE */

@media(max-width:992px){

    .servicestwo-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .servicestwo-title h2{
        font-size:38px;
    }
}

@media(max-width:768px){

    .servicestwo-section{
        padding:80px 4%;
    }

    .servicestwo-grid{
        grid-template-columns:1fr;
    }

    .servicestwo-card{
        height:450px;
        padding:35px;
    }

    .service-content h3{
        font-size:28px;
    }

    .service-content p{
        font-size:17px;
    }

    .service-content a{
        font-size:20px;
    }
}




/* **************  SERVICES THREE SECTION ********* */



/*================ SERTHREE SECTION =================*/

.serthree-section{
    background:#04382f;
    padding:80px 2%;
    color:#fff;
    position:relative;
    overflow:hidden;
}

/* Zig-zag background */

.serthree-section::before{
    content:"";
    position:absolute;
    inset:0;

    background-image:
    linear-gradient(
        135deg,
        rgba(255,255,255,.04) 25%,
        transparent 25%
    );

    background-size:40px 40px;
    opacity:.4;
}

.serthree-section>*{
    position:relative;
    z-index:2;
}

/* TOP */

.serthree-top{
    display:flex;
    justify-content:space-between;
    gap:100px;
    margin-bottom:80px;
}

.serthree-left{
    width:55%;
}

.serthree-right{
    width:35%;
}

.serthree-badge{
    display:inline-block;
    border:1px solid rgba(255,255,255,.2);
    padding:12px 25px;
    border-radius:40px;
    margin-bottom:30px;
    font-size:18px;
}

.serthree-left h2{
    font-size:40px;
    line-height:1.2;
}

.serthree-right p{
    font-size:17px;
    line-height:1.8;
    margin-bottom:25px;
}

.serthree-btn{
    background:#f2c94c;
    color:#003b35;
    text-decoration:none;
    padding:16px 40px;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    display:inline-flex;
    gap:12px;
    align-items:center;
    transition:.4s;
}

.serthree-btn:hover{
    transform:translateY(-6px);
}

/* GRID */

.serthree-grid{
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:35px;
}

/* CARD */

.serthree-card{
    background:rgba(255,255,255,.08);
    padding:45px;
    border-radius:25px;
    backdrop-filter:blur(10px);
    transition:.4s;
}

.serthree-card:hover{
    transform:translateY(-10px);
}

.serthree-card h3{
    font-size:60px;
    margin-bottom:25px;
}

.serthree-card h3 span:last-child{
    color:#f2c94c;
}

.serthree-icon{
    width:70px;
    height:70px;
    background:#f2c94c;
    color:#003b35;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:35px;
    margin-bottom:30px;
}

.serthree-card h4{
    font-size:24px;
    margin-bottom:20px;
}

.serthree-card p{
    font-size:16px;
    line-height:1.8;
    color:#ddd;
}

/* CENTER IMAGE */

.serthree-image{
    overflow:hidden;
    border-radius:25px;
}

.serthree-image img{
    width:100%;
    height:100%;
    min-height:500px;
    object-fit:cover;
    transition:.5s;
}

.serthree-image:hover img{
    transform:scale(1.05);
}

/* AVATARS */

.serthree-avatars{
    display:flex;
    margin-bottom:30px;
}

.serthree-avatars img{
    width:90px;
    height:90px;
    border-radius:50%;
    object-fit:cover;
    border:4px solid #04382f;
    margin-left:-20px;
}

.serthree-avatars img:first-child{
    margin-left:0;
}

.serthree-card ul{
    list-style:none;
    margin-top:30px;
}

.serthree-card li{
    margin-bottom:18px;
    font-size:16px;
    display:flex;
    gap:15px;
    align-items:center;
}

.serthree-card li i{
    color:#f2c94c;
}

/* RESPONSIVE */

@media(max-width:992px){

    .serthree-top{
        flex-direction:column;
        gap:40px;
    }

    .serthree-left,
    .serthree-right{
        width:100%;
    }

    .serthree-grid{
        grid-template-columns:1fr;
    }
}



/* *************************  SERVICE FOUR SECTION  **************** */



.serfour-section{
    padding:56px 20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    background:#f8f8f8;
    overflow:hidden;
}

/* LEFT SIDE */

.serfour-tag{
    display:inline-block;
    padding:12px 30px;
    border:1px solid #ddd;
    border-radius:50px;
    color:#003b35;
    font-size:18px;
    font-weight:600;
    margin-bottom:30px;
    background:#fff;
}

.serfour-left h2{
    font-size:30px;
    line-height:1.1;
    color:#003b35;
    margin-bottom:30px;
}

.serfour-desc{
    font-size:15px;
    color:#0e0e0e;
    line-height:1.8;
    margin-bottom:30px;
}

.serfour-box{
    background:#fff;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 40px rgba(0,0,0,.05);
    margin-bottom:40px;
}

.serfour-box hr{
    border:none;
    border-top:1px solid #eee;
    margin:20px 0;
}

.serfour-item{
    display:flex;
    align-items:center;
    gap:25px;
}

/* ICON HOVER EFFECT */

.serfour-icon{
    width:65px;
    height:65px;
    background:#f2c94c;
    border-radius:12px;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    transition:.4s;
}

.serfour-icon i{
    font-size:26px;
    color:#003b35;
    transition:.4s;
}

.serfour-item:hover .serfour-icon{
    transform:rotate(12deg) scale(1.1);
    background:#003b35;
}

.serfour-item:hover .serfour-icon i{
    color:#f2c94c;
}

.serfour-item p{
    font-size:15px;
    color:#060606;
    line-height:1.7;
}

/* BUTTON */

.serfour-btn{
    display:inline-flex;
    align-items:center;
    gap:15px;
    background:#f2c94c;
    color:#003b35;
    text-decoration:none;
    padding:12px 60px;
    border-radius:12px;
    font-size:15px;
    font-weight:700;
    transition:.3s;
}

.serfour-btn:hover{
    transform:translateY(-5px);
}

.serfour-btn i{
    transition:.3s;
}

.serfour-btn:hover i{
    transform:rotate(-45deg);
}

/* RIGHT SIDE */

.serfour-right{
    position:relative;
}

/* BIG IMAGE */

.serfour-main-img{
    width:100%;
    height:720px;
    object-fit:cover;
    border-radius:25px;
}

/* SMALL IMAGE */

.serfour-small-img{
    position:absolute;
    width:380px;
    left:-80px;
    bottom:-40px;
    border-radius:25px;
    border:10px solid #fff;
    box-shadow:0 20px 40px rgba(0,0,0,.15);
}

/* CALL BOX */

.serfour-call-box{
    position:absolute;
    top:70px;
    right:-23px;
    background:#fff;
    padding:7px 25px;
    border-radius:20px;
    display:flex;
    align-items:center;
    gap:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.12);
    animation:serfourCallFloat 3s ease-in-out infinite;
}

@keyframes serfourCallFloat{

    0%{
        transform:translateX(0);
    }

    50%{
        transform:translateX(-25px);
    }

    100%{
        transform:translateX(0);
    }
}

.serfour-call-icon{
    width:40px;
    height:40px;
    background:#f2c94c;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
}

.serfour-call-icon i{
    font-size:15px;
    color:#003b35;
}

.serfour-call-box h3{
    font-size:16px;
    color:#003b35;
    margin-bottom:8px;
}

.serfour-call-box p{
    font-size:15px;
    color:#060606;
}

/* RESPONSIVE */

@media(max-width:1200px){

    .serfour-section{
        grid-template-columns:1fr;
    }

    .serfour-left h2{
        font-size:55px;
    }

    .serfour-main-img{
        height:600px;
    }

    .serfour-small-img{
        width:300px;
        left:20px;
    }

    .serfour-call-box{
        right:20px;
    }
}

@media(max-width:768px){

    .serfour-section{
        padding:80px 25px;
    }

    .serfour-left h2{
        font-size:42px;
    }

    .serfour-desc,
    .serfour-item p{
        font-size:18px;
    }

    .serfour-main-img{
        height:450px;
    }

    .serfour-small-img{
        position:static;
        width:100%;
        margin-top:20px;
        border:0;
    }

    .serfour-call-box{
        position:static;
        margin-top:20px;
        animation:none;
    }
}




/* ****************   SERVICE FIVE SECTION   ********************* */


.serfive-section{
    padding:02px 20px;
    background:#f7f7f5;
    margin-top: 20px;
}

.serfive-top{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:70px;
    margin-bottom:50px;
}

.serfive-tag{
    display:inline-block;
    padding:10px 25px;
    border:1px solid #ddd;
    border-radius:50px;
    background:#fff;
    color:#003b35;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.serfive-left h2{
    font-size:52px;
    line-height:1.05;
    color:#003b35;
    font-weight:700;
}

.serfive-right p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

.serfive-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#f2c94c;
    color:#003b35;
    text-decoration:none;
    padding:15px 30px;
    border-radius:10px;
    font-size:15px;
    font-weight:700;
    transition:.3s;
}

.serfive-btn:hover{
    transform:translateY(-5px);
}

.serfive-btn:hover i{
    transform:rotate(-45deg);
}

/* GRID */

.serfive-faq-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.serfive-column{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* FAQ ITEM */

.serfive-item{
    background:#efefed;
    border-radius:18px;
    overflow:hidden;
}

.serfive-question{
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.serfive-question span{
    font-size:16px;
    color:#003b35;
    font-weight:500;
    width:85%;
}

.serfive-question i{
    width:42px;
    height:42px;
    background:#f2c94c;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#003b35;
    font-size:15px;
    transition:.3s;
}

.serfive-answer{
    display:none;
    padding:0 25px 22px;
    color:#666;
    font-size:14px;
    line-height:1.8;
}

.serfive-item.active .serfive-answer{
    display:block;
}

.serfive-item.active .serfive-question i{
    transform:rotate(45deg);
}

/* RESPONSIVE */

@media(max-width:991px){

    .serfive-top,
    .serfive-faq-grid{
        grid-template-columns:1fr;
    }

    .serfive-left h2{
        font-size:42px;
    }

}

@media(max-width:768px){

    .serfive-section{
        padding:50px 15px;
    }

    .serfive-left h2{
        font-size:34px;
    }

    .serfive-question span{
        font-size:15px;
    }

}





/* ************  SERVICE SIX SECTION     ****************** */

.sersix-section{
    margin:0;
    padding:50px 0;
    background:#f8f8f8;
    overflow:hidden;
}

.sersix-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.sersix-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid #ddd;
    border-radius:30px;
    font-size:12px;
    margin-bottom:20px;
}

.sersix-heading h2{
    font-size:40px;
    color:#033b31;
    margin-bottom:20px;
}

.sersix-heading p{
    font-size:16px;
    line-height:28px;
    color:#666;
}

.sersix-slider{
    width:100%;
    overflow:hidden;
}

.sersix-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:sersixScroll 40s linear infinite;
}

.sersix-slider:hover .sersix-track{
    animation-play-state:paused;
}

.sersix-card{
    width:360px;
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    border:1px solid #eee;
    transition:.4s;
}

.sersix-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,.1);
}

.sersix-stars{
    color:#f4c542;
    font-size:18px;
    margin-bottom:20px;
}

.sersix-card p{
    font-size:19px;
    line-height:32px;
    color:#033b31;
    min-height:180px;
}

.sersix-user{
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid #eee;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.sersix-user h4{
    font-size:18px;
    margin-bottom:5px;
    color:#033b31;
}

.sersix-user span{
    font-size:14px;
    color:#777;
}

.sersix-quote-icon{
    width:55px;
    height:55px;
    background:#f4c542;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#033b31;
    font-size:22px;
    transition:.5s;
}

.sersix-card:hover .sersix-quote-icon{
    transform:rotate(360deg);
}

@keyframes sersixScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

@media(max-width:768px){

    .sersix-heading h2{
        font-size:36px;
    }

    .sersix-card{
        width:300px;
    }

}





/* ================= ABOUT SEVEN SECTION ================= */

.aboutseven-section{
    padding:02px 20px;
    background:#f7f7f5;
    margin-top:20px;
}

.aboutseven-top{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:70px;
    margin-bottom:50px;
}

.aboutseven-tag{
    display:inline-block;
    padding:10px 25px;
    border:1px solid #ddd;
    border-radius:50px;
    background:#fff;
    color:#003b35;
    font-size:14px;
    font-weight:600;
    margin-bottom:25px;
}

.aboutseven-left h2{
    font-size:45px;
    line-height:1.05;
    color:#003b35;
    font-weight:700;
}

.aboutseven-right p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:30px;
}

.aboutseven-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#f2c94c;
    color:#003b35;
    text-decoration:none;
    padding:15px 30px;
    border-radius:10px;
    font-size:15px;
    font-weight:700;
    transition:.3s;
}

.aboutseven-btn:hover{
    transform:translateY(-5px);
}

.aboutseven-btn:hover i{
    transform:rotate(-45deg);
}

.aboutseven-faq-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:30px;
}

.aboutseven-column{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.aboutseven-item{
    background:#efefed;
    border-radius:18px;
    overflow:hidden;
}

.aboutseven-question{
    padding:22px 25px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.aboutseven-question span{
    font-size:16px;
    color:#003b35;
    font-weight:500;
    width:85%;
}

.aboutseven-question i{
    width:42px;
    height:42px;
    background:#f2c94c;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#003b35;
    font-size:15px;
    transition:.3s;
}

.aboutseven-answer{
    display:none;
    padding:0 25px 22px;
    color:#666;
    font-size:14px;
    line-height:1.8;
}

.aboutseven-item.active .aboutseven-answer{
    display:block;
}

.aboutseven-item.active .aboutseven-question i{
    transform:rotate(45deg);
}

@media(max-width:991px){

    .aboutseven-top,
    .aboutseven-faq-grid{
        grid-template-columns:1fr;
    }

    .aboutseven-left h2{
        font-size:42px;
    }

}

@media(max-width:768px){

    .aboutseven-section{
        padding:50px 15px;
    }

    .aboutseven-left h2{
        font-size:34px;
    }

    .aboutseven-question span{
        font-size:15px;
    }

}


/* ================= ABOUT EIGHT SECTION ================= */

.abouteight-section{
    margin:0;
    padding:50px 0;
    background:#f8f8f8;
    overflow:hidden;
}

.abouteight-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.abouteight-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid #ddd;
    border-radius:30px;
    font-size:12px;
    margin-bottom:20px;
}

.abouteight-heading h2{
    font-size:40px;
    color:#033b31;
    margin-bottom:20px;
}

.abouteight-heading p{
    font-size:16px;
    line-height:28px;
    color:#666;
}

.abouteight-slider{
    width:100%;
    overflow:hidden;
}

.abouteight-track{
    display:flex;
    gap:25px;
    width:max-content;
    animation:abouteightScroll 40s linear infinite;
}

.abouteight-slider:hover .abouteight-track{
    animation-play-state:paused;
}

.abouteight-card{
    width:360px;
    background:#fff;
    padding:35px 25px;
    border-radius:15px;
    border:1px solid #eee;
    transition:.4s;
}

.abouteight-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 30px rgba(0,0,0,.1);
}

.abouteight-stars{
    color:#f4c542;
    font-size:18px;
    margin-bottom:20px;
}

.abouteight-card p{
    font-size:19px;
    line-height:32px;
    color:#033b31;
    min-height:180px;
}

.abouteight-user{
    margin-top:20px;
    padding-top:20px;
    border-top:1px solid #eee;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.abouteight-user h4{
    font-size:18px;
    margin-bottom:5px;
    color:#033b31;
}

.abouteight-user span{
    font-size:14px;
    color:#777;
}

.abouteight-quote-icon{
    width:55px;
    height:55px;
    background:#f4c542;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#033b31;
    font-size:22px;
    transition:.5s;
}

.abouteight-card:hover .abouteight-quote-icon{
    transform:rotate(360deg);
}

@keyframes abouteightScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

@media(max-width:768px){

    .abouteight-heading h2{
        font-size:36px;
    }

    .abouteight-card{
        width:300px;
    }

}



/* ************  BLOG ONE SECION  ************ */


.blogone-section{
    height:100vh;
    background:url('../images/ngoimg16.jpeg') center center/cover no-repeat;
    position:relative;
    overflow:hidden;
    margin-top: 50px;
}

/* Dark Overlay */

.blogone-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,55,45,0.90) 0%,
        rgba(0,55,45,0.70) 40%,
        rgba(0,55,45,0.30) 70%,
        transparent 100%
    );
}

/* Content */

.blogone-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    padding:0 80px;
    max-width:700px;
}

.blogone-content h1{
    font-size:60px;
    color:#fff;
    font-weight:800;
    margin:0;
    position:relative;
}

.blogone-content h1::after{
    content:"";
    width:120px;
    height:5px;
    background:#f2c94c;
    position:absolute;
    left:0;
    bottom:-18px;
    border-radius:10px;
}

.blogone-content p{
    margin-top:45px;
    color:#fff;
    font-size:18px;
    line-height:1.8;
    max-width:620px;
}

/* Bottom Strip */

.blogone-strip{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:#f2c94c;
    overflow:hidden;
    padding:12px 0;
    z-index:3;
}

.blogone-strip-content{
    display:flex;
    gap:70px;
    width:max-content;
    animation:blogmarquee 18s linear infinite;
}

.blogone-strip-content span{
    white-space:nowrap;
    color:#003b35;
    font-size:20px;
    font-weight:700;
}

@keyframes blogmarquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* Responsive */

@media(max-width:768px){

    .blogone-section{
        height:100vh;
    }

    .blogone-content{
        padding:0 25px;
    }

    .blogone-content h1{
        font-size:42px;
    }

    .blogone-content h1::after{
        width:80px;
    }

    .blogone-content p{
        font-size:16px;
        margin-top:35px;
    }

    .blogone-strip-content span{
        font-size:16px;
    }

}



/* **********  BLOG TWO SECTION    ***************8 */

.blogtwo-section{

    width:96%;
    margin:90px auto;
}

.blogtwo-heading{

    text-align:center;
    margin-bottom:60px;
}

.blogtwo-heading span{

    display:inline-block;
    color:#f2c94c;
    font-size:16px;
    font-weight:700;
    margin-bottom:15px;
    text-transform:uppercase;
    letter-spacing:1px;
}

.blogtwo-heading h2{

    font-size:42px;
    color:#222;
    margin-bottom:18px;
}

.blogtwo-heading p{

    width:700px;
    max-width:100%;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:17px;
}

.blogtwo-grid{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.blogtwo-card img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.blogtwo-card{
    position:relative;
    overflow:hidden;
    border-radius:18px;
    height:450px;
}

.blogtwo-card:hover img{

    transform:scale(1.08);
}

.blogtwo-overlay{

    position:absolute;
    inset:0;

    background:linear-gradient(

    transparent 35%,
    rgba(0,45,38,.90) 100%

    );
}

.blogtwo-category{

    position:absolute;
    top:25px;
    left:25px;
    background:rgba(255,255,255,.28);
    backdrop-filter:blur(10px);
    color:#fff;
    padding:12px 22px;
    border-radius:40px;
    font-size:16px;
    font-weight:600;
}

.blogtwo-content{

    position:absolute;
    left:35px;
    right:35px;
    bottom:35px;
}

.blogtwo-content h3{

    color:#fff;
    font-size:16px;
    line-height:1.3;
    margin-bottom:30px;
}

.blogtwo-content a{

    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
}

.blogtwo-content a span{

    margin-left:8px;
    transition:.4s;
}

.blogtwo-card:hover .blogtwo-content a span{
    margin-left:18px;
}
.blogtwo-content p{
    color:#fff;
    font-size:14px;
    line-height:22px;
    margin:10px 0 15px;
}



@media(max-width:991px){
.blogtwo-grid{

grid-template-columns:repeat(2,1fr);

}

.blogtwo-card{

height:550px;

}

.blogtwo-content h3{

font-size:28px;

}

}

@media(max-width:768px){

.blogtwo-grid{

grid-template-columns:1fr;

}

.blogtwo-card{

height:500px;

}

.blogtwo-heading h2{

font-size:32px;

}

.blogtwo-content h3{

font-size:24px;

}

.blogtwo-content a{

font-size:20px;

}

.blogtwo-category{

font-size:14px;
padding:10px 18px;

}

}



/* ************   CONTACT ONE SECTIONN   ******** */

.conone-section{
    height:100vh;
    background:url('../images/conimg.jpg') center center/cover no-repeat;
    position:relative;
    overflow:hidden;
    margin-top: 70px;
}

/* Overlay */

.conone-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,55,45,0.90) 0%,
        rgba(0,55,45,0.70) 40%,
        rgba(0,55,45,0.30) 70%,
        transparent 100%
    );
}

/* Content */

.conone-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    padding:0 80px;
}

.conone-content h1{
    font-size:40px;
    color:#fff;
    font-weight:800;
    margin:0;
    position:relative;
}

.conone-content h1::after{
    content:"";
    width:120px;
    height:5px;
    background:#f2c94c;
    position:absolute;
    left:0;
    bottom:-20px;
    border-radius:10px;
}

/* Bottom Strip */

.conone-strip{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:#f2c94c;
    overflow:hidden;
    padding:12px 0;
    z-index:3;
}

.conone-strip-content{
    display:flex;
    gap:70px;
    width:max-content;
    animation:conmarquee 18s linear infinite;
}

.conone-strip-content span{
    white-space:nowrap;
    color:#003b35;
    font-size:20px;
    font-weight:700;
}

@keyframes conmarquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}

/* Responsive */

@media(max-width:768px){

    .conone-section{
        height:100vh;
    }

    .conone-content{
        padding:0 25px;
    }

    .conone-content h1{
        font-size:55px;
    }

    .conone-content h1::after{
        width:80px;
    }

    .conone-strip-content span{
        font-size:16px;
    }

}





/* ****************CONTANT TWO SECTION     *********** */



.contwo-section{

    width:96%;
    margin:100px auto;
}

.contwo-container{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.contwo-card{

    background:#fff;
    border-radius:20px;
    padding:80px 35px 40px;
    text-align:center;
    position:relative;
    box-shadow:0 10px 35px rgba(0,0,0,.08);
    transition:.4s;
}

.contwo-card:hover{

    transform:translateY(-10px);
}

.contwo-icon{

    position:absolute;
    left:50%;
    top:-45px;
    transform:translateX(-50%);
    width:90px;
    height:90px;
    border-radius:50%;
    background:#f2c94c;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:36px;
    color:#003b35;
    box-shadow:0 8px 20px rgba(0,0,0,.15);
}

.contwo-card h3{

    font-size:25px;
    color:#003b35;
    margin-bottom:20px;
}

.contwo-card p{

    font-size:16px;
    line-height:1.8;
    color:#666;
    margin-bottom:30px;
}

.contwo-line{

    width:100%;
    height:1px;
    background:#ddd;
    margin-bottom:30px;
}

.contwo-card h4{

    font-size:20px;
    color:#003b35;
    line-height:1.5;
    font-weight:700;
}

/* Responsive */

@media(max-width:991px){

.contwo-container{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.contwo-container{

grid-template-columns:1fr;

}

.contwo-card{

padding:70px 25px 35px;

}

.contwo-card h3{

font-size:28px;

}

.contwo-card h4{

font-size:22px;

}

.contwo-card p{

font-size:16px;

}

.contwo-icon{

width:75px;
height:75px;
font-size:28px;

}

}




/* *************  CONTANT THREE SECTION   *********** */


.conthree-section{

    width:96%;
    margin:100px auto;
}

.conthree-container{

    display:grid;
    grid-template-columns:1fr 1fr;
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.conthree-left img{

    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.conthree-right{

    padding:60px;
}

.conthree-tag{

    display:inline-block;
    padding:8px 18px;
    border:1px solid #ddd;
    border-radius:30px;
    color:#003b35;
    font-size:15px;
    margin-bottom:20px;
}

.conthree-right h2{

    font-size:60px;
    color:#003b35;
    margin-bottom:20px;
    line-height:1.2;
}

.conthree-right p{

    font-size:18px;
    color:#666;
    line-height:1.8;
    margin-bottom:35px;
}

.conthree-row{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.conthree-input label{

    display:block;
    margin-bottom:10px;
    font-weight:700;
    color:#003b35;
}

.conthree-input input,
.conthree-input textarea{

    width:100%;
    padding:18px;
    border:none;
    outline:none;
    background:#f5f5f5;
    border-radius:10px;
    font-size:16px;
}

.conthree-input textarea{

    height:170px;
    resize:none;
    margin-bottom:30px;
}

.conthree-right button{

    background:#f2c94c;
    color:#003b35;
    border:none;
    padding:18px 35px;
    font-size:18px;
    font-weight:700;
    border-radius:8px;
    cursor:pointer;
    transition:.3s;
}

.conthree-right button:hover{

    background:#003b35;
    color:#fff;
}

@media(max-width:991px){

.conthree-container{

grid-template-columns:1fr;

}

.conthree-left{

height:500px;

}

.conthree-right{

padding:40px;

}

}

@media(max-width:768px){

.conthree-row{

grid-template-columns:1fr;

}

.conthree-right{

padding:25px;

}

.conthree-right h2{

font-size:38px;

}

}




/* **************  CONTACT FOUR SECTION     *********** */



.confour-section{

    width:96%;
    margin:100px auto;
}

.confour-container{

    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:50px;
    align-items:center;
}

.confour-tag{

    display:inline-block;
    padding:8px 18px;
    border:1px solid #ddd;
    border-radius:30px;
    color:#003b35;
    font-size:15px;
    margin-bottom:20px;
}

.confour-content h2{

    font-size:48px;
    color:#003b35;
    margin-bottom:20px;
}

.confour-content>p{

    color:#666;
    font-size:18px;
    line-height:1.8;
    margin-bottom:40px;
}

.confour-info{

    display:flex;
    flex-direction:column;
    gap:25px;
}

.confour-item{

    display:flex;
    gap:18px;
    align-items:flex-start;
}

.confour-item i{

    width:60px;
    height:60px;
    background:#f2c94c;
    color:#003b35;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

.confour-item h4{

    font-size:22px;
    color:#003b35;
    margin-bottom:6px;
}

.confour-item p{

    color:#666;
    line-height:1.7;
}

.confour-map{

    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.confour-map iframe{

    width:100%;
    height:550px;
    border:none;
}

@media(max-width:991px){

.confour-container{

grid-template-columns:1fr;

}

.confour-map iframe{

height:450px;

}

}

@media(max-width:768px){

.confour-content h2{

font-size:34px;

}

.confour-content>p{

font-size:16px;

}

.confour-map iframe{

height:350px;

}

}




/* ************************   GALLER ONE SECTION   **************************** */


.imgone-section{
    height:100vh;
    background:url('../images/img8.jpg') center center/cover no-repeat;
    position:relative;
    overflow:hidden;
    margin-top: 75px;
}

/* Overlay */

.imgone-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,55,45,0.90) 0%,
        rgba(0,55,45,0.70) 40%,
        rgba(0,55,45,0.30) 70%,
        transparent 100%
    );
}

/* Content */

.imgone-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    padding:0 80px;
}

.imgone-content h1{
    font-size:40px;
    color:#fff;
    font-weight:800;
    margin:0;
    position:relative;
}

.imgone-content h1::after{
    content:"";
    width:120px;
    height:5px;
    background:#f2c94c;
    position:absolute;
    left:0;
    bottom:-20px;
    border-radius:10px;
}

/* Bottom Strip */

.imgone-strip{
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:#f2c94c;
    overflow:hidden;
    padding:12px 0;
    z-index:3;
}

.imgone-strip-content{
    display:flex;
    gap:70px;
    width:max-content;
    animation:imgmarquee 18s linear infinite;
}

.imgone-strip-content span{
    white-space:nowrap;
    color:#003b35;
    font-size:20px;
    font-weight:700;
}

@keyframes imgmarquee{

    from{
        transform:translateX(0);
    }

    to{
        transform:translateX(-50%);
    }

}








/* ===== Image Popup ===== */
/* ===== Image Popup ===== */


#popupImage{
    transition: transform .3s ease;
    cursor: zoom-in;
}

#popupImage:active{
    cursor: grabbing;
}


.image-popup{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:none;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.image-popup.active{
    display:flex;
}
.popup-box{
    position:relative;
    display:inline-block;
}

.popup-close{
    position:absolute;
    top:15px;
    right:15px;
    width:40px;
    height:40px;
    background:#fff;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    font-weight:bold;
    cursor:pointer;
    z-index:99999;   /* Important */
    line-height:1;
    box-shadow:0 4px 15px rgba(0,0,0,.3);
}

.popup-close:hover{
    background:#d4a62a;
    color:#fff;
}

.popup-box img{
    display:block;
    width:700px;
    max-width:90vw;
    max-height:90vh;
    border-radius:10px;
}
/* Responsive */

@media(max-width:768px){

    .imgone-section{
        height:100vh;
    }

    .imgone-content{
        padding:0 25px;
    }

    .imgone-content h1{
        font-size:55px;
    }

    .imgone-content h1::after{
        width:80px;
    }

    .imgone-strip-content span{
        font-size:16px;
    }

}





/* ********************  GALLERY TWO SECTION    ************** */


.imgtwo-section{
    width:96%;
    margin:100px auto;
}

.imgtwo-heading{
    text-align:center;
    margin-bottom:50px;
}

.imgtwo-tag{
    display:inline-block;
    color:#c89b2f;
    font-size:18px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:15px;
}

.imgtwo-heading h2{
    font-size:60px;
    color:#222;
    margin-bottom:20px;
    font-weight:700;
}

.imgtwo-heading h2 span{
    color:#d4a62a;
}

.imgtwo-heading p{
    width:700px;
    max-width:100%;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:1.8;
}

/* Filter */

.imgtwo-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:18px;
    margin-bottom:60px;
}

.imgtwo-filter button{
    border:none;
    background:#fff;
    padding:18px 35px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:.3s;
}

.imgtwo-filter button.active,
.imgtwo-filter button:hover{
    background:#d4a62a;
    color:#fff;
}

/* Gallery */

.imgtwo-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}






/* ===== Gallery Card ===== */

.imgtwo-card{
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.imgtwo-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.imgtwo-card:hover img{
    transform:scale(1.1);
}

.gallery-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:18px;
    background:linear-gradient(to top,
    rgba(0,0,0,.85),
    rgba(0,0,0,.2),
    transparent);

    color:#fff;
    transform:translateY(100%);
    transition:.4s;
}

.imgtwo-card:hover .gallery-overlay{
    transform:translateY(0);
}

.gallery-overlay h3{
    margin:0;
    font-size:20px;
    font-weight:600;
    letter-spacing:.5px;
}

/* Responsive */

@media(max-width:991px){

.imgtwo-grid{
    grid-template-columns:repeat(2,1fr);
}

.imgtwo-heading h2{
    font-size:45px;
}

}

@media(max-width:768px){

.imgtwo-grid{
    grid-template-columns:1fr;
}

.imgtwo-heading h2{
    font-size:35px;
}

.imgtwo-heading p{
    font-size:16px;
}

.imgtwo-filter button{
    padding:14px 22px;
    font-size:16px;
}

.imgtwo-card img{
    height:250px;
}

}




/* ********************  DONATION ONE SECTIONN   ******************8*/


.donone-section{
    height:100vh;
    background:url('../images/img7.jpg') center center/cover no-repeat;
    position:relative;
    overflow:hidden;
}

.donone-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        90deg,
        rgba(0,55,45,.92) 0%,
        rgba(0,55,45,.70) 45%,
        rgba(0,55,45,.25) 80%,
        transparent 100%
    );
}

.donone-content{

    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    padding:0 80px;
}

.donone-content h1{

    color:#fff;
    font-size:45px;
    font-weight:800;
    position:relative;
}

.donone-content h1::after{

    content:"";
    position:absolute;
    left:0;
    bottom:-18px;
    width:130px;
    height:5px;
    background:#f2c94c;
    border-radius:20px;

}

.donone-strip{

    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    background:#f2c94c;
    padding:13px 0;
    overflow:hidden;
}

.donone-strip-content{

    display:flex;
    gap:70px;
    width:max-content;
    animation:donmove 18s linear infinite;

}

.donone-strip-content span{

    color:#003b35;
    font-size:20px;
    font-weight:700;
    white-space:nowrap;

}

@keyframes donmove{

from{

transform:translateX(0);

}

to{

transform:translateX(-50%);

}

}

@media(max-width:768px){

.donone-section{

height:60vh;

}

.donone-content{

padding:0 25px;

}

.donone-content h1{

font-size:45px;

}

}




/* **************    DONATION TWO SECTION     ****************** */


.dontwo-section{

width:96%;
margin:100px auto;

display:grid;
grid-template-columns:1fr 1fr;
gap:70px;
align-items:center;

}

.dontwo-left img{

width:100%;
height:650px;
object-fit:cover;
border-radius:20px;

}

.dontwo-tag{

display:inline-block;
padding:10px 20px;
border-radius:40px;
background:#eef7f3;
color:#00664d;
font-weight:700;
margin-bottom:20px;

}

.dontwo-right h2{

font-size:55px;
color:#003b35;
margin-bottom:25px;
line-height:1.2;

}

.dontwo-right p{

font-size:18px;
line-height:1.9;
color:#666;
margin-bottom:35px;

}

.dontwo-list{

display:grid;
grid-template-columns:1fr 1fr;
gap:18px;
margin-bottom:40px;

}

.dontwo-item{

background:#fff;
padding:18px;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
font-weight:600;
color:#003b35;

}

.dontwo-btn{

display:inline-block;
padding:18px 40px;
background:#f2c94c;
color:#003b35;
text-decoration:none;
font-weight:700;
border-radius:8px;
transition:.4s;

}

.dontwo-btn:hover{

background:#003b35;
color:#fff;

}

@media(max-width:991px){

.dontwo-section{

grid-template-columns:1fr;

}

.dontwo-left img{

height:450px;

}

}

@media(max-width:768px){

.dontwo-right h2{

font-size:38px;

}

.dontwo-list{

grid-template-columns:1fr;

}

}



/* *******************  DONATION THREE SECTION   ***********************  */



.donthree-section{

    width:96%;
    margin:100px auto;

}

.donthree-heading{

    text-align:center;
    margin-bottom:60px;

}

.donthree-heading span{

    color:#c89b2f;
    font-size:18px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;

}

.donthree-heading h2{

    font-size:50px;
    color:#003b35;
    margin:15px 0;

}

.donthree-heading p{

    width:700px;
    max-width:100%;
    margin:auto;
    color:#666;
    line-height:1.8;
    font-size:18px;

}

.donthree-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.donthree-card{

    background:#fff;
    padding:45px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    cursor:pointer;
    transition:.4s;

}

.donthree-card:hover,
.donthree-card.active{

    background:#003b35;
    transform:translateY(-10px);

}

.donthree-card h3{

    font-size:45px;
    color:#f2c94c;
    margin-bottom:15px;

}

.donthree-card h4{

    font-size:24px;
    color:#003b35;
    margin-bottom:15px;

}

.donthree-card p{

    color:#666;
    line-height:1.8;

}

.donthree-card:hover h4,
.donthree-card:hover p,
.donthree-card.active h4,
.donthree-card.active p{

    color:#fff;

}

@media(max-width:991px){

.donthree-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.donthree-grid{

grid-template-columns:1fr;

}

.donthree-heading h2{

font-size:36px;

}

}



/* ************* DONATE FOUR SECTION     ****************** */


.donfour-section{

    width:96%;
    margin:100px auto;

    display:grid;
    grid-template-columns:1.2fr .8fr;

    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,.12);

}

/* LEFT */

.donfour-left{

    background:
    linear-gradient(rgba(0,59,53,.75),rgba(0,59,53,.75)),
    url("../images/donation-bg.jpg");

    background-size:cover;
    background-position:center;

    min-height:600px;

    display:flex;
    align-items:center;

}

.donfour-overlay{

    padding:60px;

}

.donfour-tag{

    color:#f2c94c;
    font-weight:700;
    font-size:18px;

}

.donfour-left h2{

    color:#fff;
    font-size:55px;
    margin:20px 0;

}

.donfour-left p{

    color:#fff;
    line-height:1.8;
    font-size:18px;

}

/* RIGHT */

.donfour-right{

    background:#ffffff;

    padding:50px 40px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;

}

.donfour-right h3{

    font-size:34px;
    color:#003b35;
    margin-bottom:15px;

}

.donfour-right p{

    color:#666;
    line-height:1.7;

}

.donfour-right img{

    width:260px;
    margin:30px 0;
    border-radius:15px;
    padding:10px;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.donfour-right h4{

    color:#003b35;
    margin-bottom:10px;

}

.donfour-upi{

    margin-top:20px;

    background:#f2c94c;

    color:#003b35;

    padding:14px 30px;

    border-radius:40px;

    font-weight:700;

    font-size:18px;

}

/* Responsive */

@media(max-width:991px){

    .donfour-section{

        grid-template-columns:1fr;

    }

    .donfour-left{

        min-height:450px;

    }

}

@media(max-width:768px){

    .donfour-overlay{

        padding:35px;

    }

    .donfour-left h2{

        font-size:38px;

    }

    .donfour-right{

        padding:35px 20px;

    }

    .donfour-right img{

        width:220px;

    }

}





/* ****************  DONATION FIVE SECTION  ****************** */


.donfive-section{

    width:96%;
    margin:100px auto;

}

.donfive-heading{

    text-align:center;
    margin-bottom:60px;

}

.donfive-heading span{

    color:#d4a62a;
    font-weight:700;
    letter-spacing:1px;

}

.donfive-heading h2{

    font-size:48px;
    color:#003b35;
    margin:20px 0;

}

.donfive-heading p{

    width:700px;
    max-width:100%;
    margin:auto;
    color:#666;
    line-height:1.8;

}

.donfive-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.donfive-card{

    background:#fff;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;

}

.donfive-card:hover{

    transform:translateY(-10px);

}

.donfive-icon{

    width:80px;
    height:80px;
    margin:auto;
    background:#f2c94c;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:32px;
    color:#003b35;
    margin-bottom:25px;

}

.donfive-card h3{

    font-size:24px;
    color:#003b35;
    margin-bottom:15px;

}

.donfive-card p{

    color:#666;
    line-height:1.8;

}

@media(max-width:991px){

.donfive-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.donfive-grid{

grid-template-columns:1fr;

}

.donfive-heading h2{

font-size:34px;

}

}





/*==============================
SERVICE DETAILS PAGE
==============================*/

.service-hero{
    height:100vh;
    background:url("../images/ngoimg41.jpeg") center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-top: 60px;
}

.service-overlay{
    position:absolute;
    inset:0;
    /* background:rgba(0,59,53,.72); */
     /* background: linear-gradient(90deg, rgba(0, 55, 45, 0.85) 0%, rgba(0, 55, 45, 0.65)
      20%, rgba(0, 55, 45, 0.30) 35%, transparent 55%); */
         background: linear-gradient(
        90deg,
        rgba(0, 55, 45, 0.85) 0%,
        rgba(0, 55, 45, 0.65) 20%,
        rgba(0, 55, 45, 0.30) 35%,
        transparent 55%
    );
    
}


.service-hero-content{
       position: relative;
    z-index: 2;
    width: 90%;
    padding: 0 10px;
    color: #fff;
}

.service-tag{
    display:inline-block;
    padding:10px 24px;
    border:1px solid rgba(255,255,255,.3);
    border-radius:40px;
    margin-bottom:20px;
    font-size:15px;
}

.service-hero h1{
    font-size:58px;
    margin-bottom:18px;
}

.breadcrumb{
    display:flex;
    justify-content:justify
    ;
    gap:12px;
    flex-wrap:wrap;
}

.breadcrumb a{
    color:#f2c94c;
    text-decoration:none;
}

.breadcrumb span{
    color:#fff;
}

/*============================*/

.service-details-section{
    padding:80px 20px;
    background:#f8f8f8;
}

.service-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:420px 1fr;
    gap:45px;
}

/*============================*/

.service-sidebar{
    position:sticky;
    top:120px;
    align-self:start;
}

.service-sidebar h3{
    font-size:28px;
    color:#003b35;
    margin-bottom:30px;
}

.service-sidebar ul{
    list-style:none;
    padding:0;
}

.service-sidebar li{
    margin-bottom:15px;
}

.service-sidebar li a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 22px;
    background:#fff;
    border-radius:10px;
    color:#003b35;
    text-decoration:none;
    transition:.4s;
}

.service-sidebar li.active a,
.service-sidebar li a:hover{
    background:#f2c94c;
}

.service-contact-box{
    margin-top:40px;
    background:#003b35;
    padding:35px;
    border-radius:18px;
    color:#fff;
}

.service-contact-box h4{
    font-size:28px;
    margin-bottom:20px;
}

.service-contact-box p{
    line-height:1.8;
    margin-bottom:30px;
}

.service-call{
    display:flex;
    gap:20px;
    align-items:center;
    margin-bottom:30px;
}

.call-icon{
    width:65px;
    height:65px;
    background:#f2c94c;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#003b35;
    font-size:22px;
}

.service-contact-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#f2c94c;
    color:#003b35;
    padding:14px 25px;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
}

/*============================*/

.service-contentd{
    background:#fff;
    padding:40px;
    border-radius:20px;
}

.service-main-image{
    width:100%;
    height:520px;
    object-fit:cover;
    border-radius:15px;
    margin-bottom:35px;
}

.service-contentd h2{
    color:#003b35;
    font-size:42px;
    margin-bottom:20px;
}

.service-contentd p{
    font-size:17px;
    color:#555;
    line-height:32px;
    margin-bottom:20px;
}

.service-about-ngo{
    margin-top:40px;
    background:#f9f9f9;
    padding:30px;
    border-left:5px solid #f2c94c;
    border-radius:12px;
}

.service-about-ngo h3{
    color:#003b35;
    margin-bottom:18px;
}

.service-about-ngo p{
    margin-bottom:15px;
}


/*==========================
WHO THIS PROGRAM HELPS
===========================*/

.service-help-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    padding:80px 20px;
    background:#fff;
}

.service-help-left img{
    width:100%;
    border-radius:20px;
    height:550px;
    object-fit:cover;
}

.service-small-title{
    display:inline-block;
    background:#f2c94c;
    color:#003b35;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    margin-bottom:20px;
    font-weight:600;
}

.service-help-right h2{
    font-size:42px;
    color:#003b35;
    margin-bottom:25px;
}

.service-help-right p{
    font-size:17px;
    color:#555;
    line-height:30px;
    margin-bottom:18px;
}

/*==========================
FEATURE SECTION
===========================*/

.service-feature-section{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    padding:60px 20px;
    background:#f8f8f8;
}

.service-feature-card{
    background:#fff;
    padding:40px;
    border-radius:18px;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.service-feature-card:hover{
    transform:translateY(-10px);
}

.feature-icon{
    width:75px;
    height:75px;
    background:#f2c94c;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    color:#003b35;
    margin-bottom:25px;
}

.service-feature-card h3{
    font-size:26px;
    color:#003b35;
    margin-bottom:15px;
}

.service-feature-card p{
    font-size:16px;
    line-height:28px;
    color:#666;
}

/*==========================
WHY IT MATTERS
===========================*/

.service-importance{
    padding:80px 20px;
    text-align:center;
    background:#fff;
}

.service-importance h2{
    font-size:42px;
    color:#003b35;
    margin-bottom:25px;
}

.service-importance p{
    max-width:950px;
    margin:0 auto 20px;
    font-size:17px;
    line-height:30px;
    color:#555;
}

/*==========================
HIGHLIGHTS
===========================*/

.service-highlights{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    padding:70px 20px;
    background:#f8f8f8;
}

.highlight-box{
    background:#fff;
    border-radius:18px;
    padding:35px;
    text-align:center;
    transition:.4s;
}

.highlight-box:hover{
    transform:translateY(-8px);
}

.highlight-box i{
    width:70px;
    height:70px;
    background:#f2c94c;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:28px;
    color:#003b35;
    margin-bottom:20px;
}

.highlight-box h3{
    color:#003b35;
    margin-bottom:15px;
}

.highlight-box p{
    color:#666;
    line-height:28px;
}

/*==========================
BENEFITS
===========================*/

.service-benefits{
    padding:80px 20px;
    background:#fff;
}

.service-benefits h2{
    font-size:38px;
    color:#003b35;
    margin-bottom:35px;
}

.service-benefits ul{
    list-style:none;
    padding:0;
}

.service-benefits li{
    display:flex;
    gap:18px;
    margin-bottom:20px;
    font-size:17px;
    line-height:30px;
}

.service-benefits i{
    color:#f2c94c;
    margin-top:6px;
}

/*==========================
FAQ
===========================*/

.service-faq-section{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    padding:90px 20px;
    background:#f8f8f8;
}

.faq-left h2{
    font-size:40px;
    color:#003b35;
    margin:20px 0;
}

.faq-left p{
    line-height:30px;
    color:#666;
}

.faq-item{
    background:#fff;
    margin-bottom:18px;
    border-radius:12px;
    overflow:hidden;
}

.faq-question{
    padding:22px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.faq-question h3{
    font-size:18px;
    color:#003b35;
}

.faq-answer{
    display:none;
    padding:0 22px 22px;
    line-height:28px;
    color:#666;
}

.faq-item.active .faq-answer{
    display:block;
}

/*==========================
CTA
===========================*/

.service-cta{
    background:#003b35;
    color:#fff;
    text-align:center;
    padding:90px 20px;
}

.service-cta span{
    color:#f2c94c;
    font-size:18px;
}

.service-cta h2{
    font-size:48px;
    margin:25px 0;
}

.service-cta p{
    max-width:850px;
    margin:auto;
    line-height:30px;
}

.service-cta-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:25px;
}

.cta-btn{
    background:#f2c94c;
    color:#003b35;
    padding:16px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
}

.cta-btn.outline{
    background:transparent;
    color:#fff;
    border:2px solid #fff;
}

/*==========================
RESPONSIVE
===========================*/

@media(max-width:991px){

.service-container,
.service-help-section,
.service-faq-section{
grid-template-columns:1fr;
}

.service-feature-section{
grid-template-columns:1fr;
}

.service-highlights{
grid-template-columns:repeat(2,1fr);
}

.service-sidebar{
position:relative;
top:0;
}

.service-main-image{
height:380px;
}

.service-help-left img{
height:380px;
}

}

@media(max-width:768px){

.service-details-section,
.service-help-section,
.service-feature-section,
.service-importance,
.service-highlights,
.service-benefits,
.service-faq-section,
.service-cta{
padding:50px 15px;
}

.service-hero{
height:40vh;
}

.service-hero h1{
font-size:34px;
}

.service-content{
padding:25px;
}

.service-content h2{
font-size:30px;
}

.service-help-right h2,
.service-importance h2,
.faq-left h2,
.service-cta h2{
font-size:30px;
}

.service-highlights{
grid-template-columns:1fr;
}

.service-cta-buttons{
flex-direction:column;
}

.cta-btn{
width:100%;
text-align:center;
}

.service-main-image{
height:260px;
}

.service-help-left img{
height:260px;
}

.faq-question h3{
font-size:16px;
}

}






/* *********** BLOG DETAILS SECTION ************ */


/*==============================
BLOG DETAILS PAGE
==============================*/

.blogdetails{
    background:#f8f8f8;
    padding-bottom:80px;
}

/* HERO */

.blogdetails-hero{
    height:100vh;
    background:url("../images/ngoimg40.jpeg") center center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    margin-top: 50px;
}

.blogdetails-overlay{
    position:absolute;
    inset:0;
      background: linear-gradient(
        90deg,
        rgba(0, 55, 45, 0.85) 0%,
        rgba(0, 55, 45, 0.65) 20%,
        rgba(0, 55, 45, 0.30) 35%,
        transparent 55%
    );
}

.blogdetails-content{
    position:relative;
    z-index:2;
    width:70%;
    padding:0 40px;
    color:#fff;
}

.blogdetails-tag{
    display:inline-block;
    background:#f2c94c;
    color:#003b35;
    padding:10px 25px;
    border-radius:30px;
    font-size:15px;
    font-weight:700;
    margin-bottom:25px;
}

.blogdetails-content h1{
    font-size:35px;
    line-height:1.2;
    margin-bottom:25px;
}

.blogdetails-meta{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
}

.blogdetails-meta span{
    font-size:16px;
}

.blogdetails-meta i{
    color:#f2c94c;
    margin-right:8px;
}

/* MAIN */

.blogdetails-container{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:50px;
    margin-top:70px;
}

/* LEFT */

.blogdetails-left{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.blogdetails-left img{
    width:100%;
    border-radius:15px;
    margin-bottom:30px;
}

.blogdetails-left p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
}

.blogdetails-left h2{
    font-size:32px;
    color:#003b35;
    margin:40px 0 20px;
}

.blogdetails-left ul{
    margin-left:25px;
    margin-bottom:30px;
}

.blogdetails-left li{
    font-size:17px;
    margin-bottom:15px;
    color:#444;
}

.blogdetails-left blockquote{
    background:#fff9e5;
    border-left:6px solid #f2c94c;
    padding:30px;
    font-size:22px;
    line-height:1.7;
    color:#003b35;
    font-style:italic;
    border-radius:10px;
    margin:40px 0;
}

/* RIGHT */

.blogdetails-right{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.blog-widget{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.blog-widget h3{
    font-size:24px;
    color:#003b35;
    margin-bottom:25px;
}

.blog-widget ul{
    list-style:none;
}

.blog-widget li{
    margin-bottom:18px;
}

.blog-widget a{
    text-decoration:none;
    color:#333;
    transition:.3s;
}

.blog-widget a:hover{
    color:white;
    padding-left:8px;
}

.blog-widget p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:25px;
}

.blogdetails-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#f2c94c;
    color:#003b35;
    text-decoration:none;
    padding:15px 30px;
    border-radius:10px;
    font-weight:700;
    transition:.3s;
}

.blogdetails-btn:hover{
    transform:translateY(-5px);
}

/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

    .blogdetails-container{
        grid-template-columns:1fr;
    }

    .blogdetails-content{
        width:100%;
        padding:0 30px;
    }

    .blogdetails-content h1{
        font-size:40px;
    }

}

@media(max-width:768px){

    .blogdetails-hero{
        height:400px;
    }

    .blogdetails-content{
        padding:0 20px;
    }

    .blogdetails-content h1{
        font-size:30px;
    }

    .blogdetails-meta{
        gap:15px;
    }

    .blogdetails-left{
        padding:25px;
    }

    .blogdetails-left h2{
        font-size:24px;
    }

    .blogdetails-left p,
    .blogdetails-left li{
        font-size:15px;
        line-height:1.8;
    }

    .blogdetails-left blockquote{
        font-size:18px;
        padding:20px;
    }

    .blog-widget{
        padding:20px;
    }

}

 


/* ************* BLOG DETAILS TWO SECTIONN   **********8 */


.blogdetails-values{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin:40px 0;
}

.blogdetails-value-box{
    background:#fff8e8;
    padding:30px;
    border-radius:15px;
    text-align:center;
}

.blogdetails-value-box i{
    font-size:40px;
    color:#f2c94c;
    margin-bottom:15px;
}

.blogdetails-value-box h4{
    font-size:22px;
    color:#003b35;
    margin-bottom:15px;
}

.blogdetails-value-box p{
    margin:0;
}

.blogdetails-impact-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    margin:40px 0;
}

.blogdetails-impact-card{
    background:#003b35;
    color:#fff;
    text-align:center;
    padding:35px 20px;
    border-radius:15px;
}

.blogdetails-impact-card h3{
    font-size:40px;
    color:#f2c94c;
    margin-bottom:10px;
}

.blogdetails-impact-card p{
    color:#fff;
    margin:0;
}

.blogdetails-call{
    background:#003b35;
    color:#fff;
    text-align:center;
    padding:50px;
    border-radius:20px;
    margin-top:50px;
}

.blogdetails-call h3{
    font-size:34px;
    margin-bottom:20px;
}

.blogdetails-call p{
    color:#eee;
    margin-bottom:30px;
}

@media(max-width:768px){

    .blogdetails-values{
        grid-template-columns:1fr;
    }

    .blogdetails-impact-grid{
        grid-template-columns:1fr 1fr;
    }

    .blogdetails-call{
        padding:30px 20px;
    }

    .blogdetails-call h3{
        font-size:24px;
    }

}





/*==========================
RELATED BLOG
==========================*/

.blogrelated{
    padding:10px 20px;
    background:#f8f8f8;
}

.blogrelated-heading{
    text-align:center;
    max-width:700px;
    margin:0 auto 60px;
}

.blogrelated-heading span{
    display:inline-block;
    color:#f2c94c;
    font-size:15px;
    font-weight:700;
    margin-bottom:15px;
}

.blogrelated-heading h2{
    font-size:40px;
    color:#003b35;
    margin-bottom:20px;
}

.blogrelated-heading p{
    font-size:16px;
    line-height:30px;
    color:#666;
}

.blogrelated-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.blogrelated-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.blogrelated-card:hover{
    transform:translateY(-10px);
}

.blogrelated-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.blogrelated-content{
    padding:25px;
}

.blogrelated-content span{
    display:inline-block;
    background:#f2c94c;
    color:#003b35;
    padding:8px 18px;
    border-radius:30px;
    font-size:13px;
    margin-bottom:15px;
}

.blogrelated-content h3{
    font-size:22px;
    color:#003b35;
    line-height:1.5;
    margin-bottom:20px;
}

.blogrelated-content a{
    text-decoration:none;
    color:#003b35;
    font-weight:700;
}

.blogrelated-content a i{
    margin-left:8px;
}












/*==========================
DONATION CTA
==========================*/

.blogdonate{
    padding:10px 20px;
    background:white;
    text-align:center;
    color:black;
}

.blogdonate-content{
    max-width:850px;
    margin:auto;
}

.blogdonate-content h2{
    font-size:45px;
    margin-bottom:25px;
}

.blogdonate-content p{
    font-size:18px;
    line-height:32px;
    color:black;
    margin-bottom:40px;
}

.blogdonate-btn{
    display:inline-flex;
    align-items:center;
    gap:15px;
    padding:18px 45px;
    background:#f2c94c;
    color:#003b35;
    text-decoration:none;
    border-radius:10px;
    font-weight:700;
    transition:.4s;
}

.blogdonate-btn:hover{
    transform:translateY(-6px);
}





/*==========================
RESPONSIVE
==========================*/

@media(max-width:991px){

    .blogrelated-grid{
        grid-template-columns:1fr 1fr;
    }

    .blognewsletter{
        flex-direction:column;
        text-align:center;
    }

    .blognewsletter-left,
    .blognewsletter-form{
        width:100%;
    }

}

@media(max-width:768px){

    .blogrelated{
        padding:60px 15px;
    }

    .blogrelated-grid{
        grid-template-columns:1fr;
    }

    .blogrelated-heading h2{
        font-size:28px;
    }

    .blogdonate{
        padding:60px 20px;
    }

    .blogdonate-content h2{
        font-size:30px;
    }

    .blogdonate-content p{
        font-size:15px;
        line-height:28px;
    }

    .blognewsletter{
        padding:60px 15px;
    }

    .blognewsletter-left h2{
        font-size:28px;
    }

    .blognewsletter-form{
        flex-direction:column;
        gap:15px;
    }

    .blognewsletter-form input,
    .blognewsletter-form button{
        width:100%;
        border-radius:8px;
    }

}







/*==================================
TESTIMONIAL HERO ONE SECTION
==================================*/

.testimonialpage-hero{

    position:relative;

    height:100vh;

    display:flex;

    align-items:center;

    background:url("../images/ngoimg61.jpeg") center center/cover no-repeat;

    overflow:hidden;
    margin-top: 60px;

}

.testimonialpage-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
    90deg,
    rgba(0,59,53,.92),
    rgba(0,59,53,.65),
    rgba(0,59,53,.25),
    transparent);

}

.testimonialpage-container{

    position:relative;

    z-index:2;

    width:55%;

    padding-left:80px;

    color:#fff;

}

.testimonialpage-tag{

    display:inline-block;

    padding:10px 24px;

    border-radius:40px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

    font-size:15px;

    margin-bottom:30px;

}

.testimonialpage-container h1{

    font-size:58px;

    line-height:1.15;

    margin-bottom:25px;

    font-weight:800;

}

.testimonialpage-container p{

    font-size:17px;

    line-height:32px;

    color:#f2f2f2;

    max-width:650px;

    margin-bottom:40px;

}

.testimonialpage-breadcrumb{

    display:flex;

    gap:15px;

    align-items:center;

}

.testimonialpage-breadcrumb a{

    color:#fff;

    text-decoration:none;

    transition:.3s;

}

.testimonialpage-breadcrumb a:hover{

    color:#f2c94c;

}

.testimonialpage-breadcrumb span{

    color:#f2c94c;

}

.testimonialpage-breadcrumb .active{

    color:#f2c94c;

}



/*============================
Responsive
============================*/

@media(max-width:991px){

.testimonialpage-container{

    width:100%;

    padding:0 30px;

}

.testimonialpage-container h1{

    font-size:42px;

}

}

@media(max-width:768px){

.testimonialpage-hero{

    height:550px;

}

.testimonialpage-container{

    padding:0 20px;

}

.testimonialpage-tag{

    font-size:13px;
    margin-top: 40px;

}

.testimonialpage-container h1{

    font-size:32px;

}

.testimonialpage-container p{

    font-size:15px;

    line-height:28px;

}

}





/*  */


/*====================================
TESTIMONIAL CARDS TWO SECTION
====================================*/

.testimonialcards{

    padding:90px 20px;

    background:#f8f8f8;

}

.testimonialcards-heading{

    text-align:center;

    max-width:750px;

    margin:auto auto 60px;

}

.testimonialcards-heading span{

    color:#f2c94c;

    font-size:16px;

    font-weight:700;

    letter-spacing:1px;

}

.testimonialcards-heading h2{

    font-size:42px;

    color:#003b35;

    margin:20px 0;

}

.testimonialcards-heading p{

    font-size:16px;

    line-height:30px;

    color:#555;

}

.testimonialcards-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonialcards-card{

    background:#fff;

    padding:35px;

    border-radius:20px;

    transition:.4s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.testimonialcards-card:hover{

    transform:translateY(-12px);

}

.testimonialcards-stars{

    color:#f2c94c;

    margin-bottom:20px;

    font-size:18px;

}

.testimonialcards-card p{

    font-size:16px;

    color:#555;

    line-height:30px;

    margin-bottom:30px;

}

.testimonialcards-user{

    display:flex;

    align-items:center;

    gap:15px;

}

.testimonialcards-user img{

    width:70px;

    height:70px;

    border-radius:50%;

    object-fit:cover;

    border:4px solid #f2c94c;

}

.testimonialcards-user h3{

    color:#003b35;

    font-size:18px;

    margin-bottom:6px;

}

.testimonialcards-user span{

    color:#888;

    font-size:14px;

}
/* ====================================
   TESTIMONIAL SECTION RESPONSIVE
==================================== */

/* Laptop */
@media (max-width:1200px){

.testimonialcards{

    padding:80px 20px;

}

.testimonialcards-grid{

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

}


/* Tablet */
@media (max-width:991px){

.testimonialcards-heading h2{

    font-size:34px;

}

.testimonialcards-heading p{

    font-size:15px;

}

.testimonialcards-grid{

    grid-template-columns:repeat(2,1fr);

}

.testimonialcards-card{

    padding:28px;

}

}


/* Mobile */
@media (max-width:768px){

.testimonialcards{

    padding:60px 15px;

}

.testimonialcards-heading{

    margin-bottom:40px;

}

.testimonialcards-heading span{

    font-size:14px;

}

.testimonialcards-heading h2{

    font-size:28px;

    line-height:1.3;

}

.testimonialcards-heading p{

    font-size:14px;

    line-height:26px;

}

.testimonialcards-grid{

    grid-template-columns:1fr;

    gap:20px;

}

.testimonialcards-card{

    padding:22px;

}

.testimonialcards-card p{

    font-size:14px;

    line-height:25px;

}

.testimonialcards-user img{

    width:60px;

    height:60px;

}

.testimonialcards-user h3{

    font-size:16px;

}

.testimonialcards-user span{

    font-size:13px;

}

}


/* Small Mobile */
@media (max-width:480px){

.testimonialcards{

    padding:50px 12px;

}

.testimonialcards-heading h2{

    font-size:24px;

}

.testimonialcards-heading p{

    font-size:13px;

}

.testimonialcards-card{

    border-radius:15px;

    padding:18px;

}

.testimonialcards-stars{

    font-size:16px;

}

.testimonialcards-card p{

    font-size:13px;

    line-height:24px;

}

.testimonialcards-user{

    gap:12px;

}

.testimonialcards-user img{

    width:55px;

    height:55px;

}

}


/* 360px Mobile */
@media (max-width:360px){

.testimonialcards-heading h2{

    font-size:22px;

}

.testimonialcards-card{

    padding:15px;

}

.testimonialcards-user img{

    width:50px;

    height:50px;

}

.testimonialcards-user h3{

    font-size:15px;

}

}



/*=====================================
VIDEO TESTIMONIAL  THREE SECTION
=====================================*/

.testimonialvideo{

    padding:90px 20px;

    background:#ffffff;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.testimonialvideo-left{

    position:relative;

}

.testimonialvideo-left img{

    width:100%;

    height:650px;

    object-fit:cover;

    border-radius:20px;

}

.testimonialvideo-play{

    position:absolute;

    top:50%;

    left:50%;

    transform:translate(-50%,-50%);

    width:90px;

    height:90px;

    background:#f2c94c;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    color:#003b35;

    font-size:30px;

    transition:.4s;

}

.testimonialvideo-play:hover{

    transform:translate(-50%,-50%) scale(1.1);

}

.testimonialvideo-tag{

    display:inline-block;

    background:#f2c94c;

    color:#003b35;

    padding:10px 24px;

    border-radius:40px;

    font-weight:700;

    margin-bottom:20px;

}

.testimonialvideo-right h2{

    font-size:42px;

    color:#003b35;

    line-height:1.2;

    margin-bottom:25px;

}

.testimonialvideo-right p{

    font-size:16px;

    line-height:30px;

    color:#555;

}

.testimonialvideo-list{

    margin:35px 0;

}

.testimonialvideo-item{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:18px;

}

.testimonialvideo-item i{

    color:#f2c94c;

    font-size:20px;

}

.testimonialvideo-item span{

    font-size:16px;

    color:#333;

}

.testimonialvideo-counter{

    display:flex;

    gap:35px;

    margin:40px 0;

}

.testimonialvideo-counter h3{

    font-size:38px;

    color:#003b35;

}

.testimonialvideo-counter p{

    font-size:15px;

    color:#666;

}

.testimonialvideo-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:#f2c94c;

    color:#003b35;

    padding:16px 32px;

    text-decoration:none;

    border-radius:10px;

    font-weight:700;

    transition:.4s;

}

.testimonialvideo-btn:hover{

    transform:translateY(-5px);

}


/*=============================
Responsive
=============================*/

@media(max-width:1200px){

.testimonialvideo{

grid-template-columns:1fr;

}

}

@media(max-width:991px){

.testimonialvideo{

padding:70px 20px;

}

.testimonialvideo-left img{

height:500px;

}

.testimonialvideo-right h2{

font-size:34px;

}

}

@media(max-width:768px){

.testimonialvideo{

padding:60px 15px;

gap:40px;

}

.testimonialvideo-left img{

height:350px;

}

.testimonialvideo-play{

width:70px;

height:70px;

font-size:22px;

}

.testimonialvideo-right h2{

font-size:28px;

}

.testimonialvideo-right p{

font-size:14px;

line-height:26px;

}

.testimonialvideo-counter{

flex-direction:column;

gap:20px;

}

}

@media(max-width:480px){

.testimonialvideo-right h2{

font-size:24px;

}

.testimonialvideo-item span{

font-size:14px;

}

.testimonialvideo-btn{

width:100%;

justify-content:center;

}

}




/*====================================
SUCCESS STORY  TESTIMONIALS FOUR 
====================================*/

.testimonialstory{

    padding:90px 20px;

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    background:#f8f8f8;

    align-items:center;

}

/* LEFT */

.testimonialstory-left{

    position:relative;

}

.testimonialstory-img1{

    width:430px;

    height:600px;

    object-fit:cover;

    border-radius:25px;

}

.testimonialstory-img2{

    position:absolute;

    width:300px;

    height:300px;

    object-fit:cover;

    border-radius:20px;

    right:20px;

    bottom:-30px;

    border:8px solid #fff;

}

.testimonialstory-box{

    position:absolute;

    left:20px;

    bottom:50px;

    background:#f2c94c;

    padding:20px 35px;

    border-radius:15px;

    text-align:center;

}

.testimonialstory-box h2{

    font-size:40px;

    color:#003b35;

}

.testimonialstory-box p{

    color:#003b35;

}

/* RIGHT */

.testimonialstory-tag{

    display:inline-block;

    padding:10px 24px;

    background:#003b35;

    color:#fff;

    border-radius:40px;

    margin-bottom:20px;

}

.testimonialstory-right h2{

    font-size:45px;

    color:#003b35;

    line-height:1.2;

    margin-bottom:25px;

}

.testimonialstory-right p{

    font-size:16px;

    line-height:30px;

    color:#555;

    margin-bottom:20px;

}

/* Timeline */

.testimonialstory-timeline{

    margin:40px 0;

}

.testimonialstory-item{

    display:flex;

    gap:20px;

    margin-bottom:30px;

}

.circle{

    width:18px;

    height:18px;

    border-radius:50%;

    background:#f2c94c;

    margin-top:8px;

    flex-shrink:0;

}

.testimonialstory-item h3{

    color:#003b35;

    margin-bottom:8px;

}

.testimonialstory-item p{

    margin:0;

}

.testimonialstory-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    background:#f2c94c;

    color:#003b35;

    text-decoration:none;

    padding:16px 30px;

    border-radius:10px;

    font-weight:700;

    transition:.4s;

}

.testimonialstory-btn:hover{

    transform:translateY(-5px);

}


/*==================================
Responsive
==================================*/

@media(max-width:1200px){

.testimonialstory{

grid-template-columns:1fr;

}

}

@media(max-width:991px){

.testimonialstory{

padding:70px 20px;

}

.testimonialstory-left{

text-align:center;

}

.testimonialstory-img2{

right:40px;

}

}

@media(max-width:768px){

.testimonialstory{

padding:60px 15px;

gap:40px;

}

.testimonialstory-img1{

width:100%;

height:420px;

}

.testimonialstory-img2{

position:static;

width:100%;

height:260px;

margin-top:20px;

border:none;

}

.testimonialstory-box{

position:static;

margin-top:20px;

display:inline-block;

}

.testimonialstory-right h2{

font-size:30px;

}

.testimonialstory-right p{

font-size:14px;

line-height:26px;

}

}

@media(max-width:480px){

.testimonialstory-right h2{

font-size:25px;

}

.testimonialstory-btn{

width:100%;

justify-content:center;

}

}




/*=========================
TESTIMONIAL CTA FIVE SECTION 
=========================*/

.testimonialcta{
    padding:90px 20px;
    background:#033b31;
    color:#fff;
    text-align:center;
}

.testimonialcta-content{
    max-width:900px;
    margin:auto;
}

.testimonialcta-tag{
    display:inline-block;
    padding:8px 22px;
    border:1px solid rgba(255,255,255,.2);
    border-radius:40px;
    margin-bottom:25px;
    font-size:14px;
}

.testimonialcta h2{
    font-size:46px;
    line-height:1.2;
    margin-bottom:25px;
}

.testimonialcta p{
    font-size:16px;
    line-height:32px;
    color:#ddd;
    margin-bottom:40px;
}

.testimonialcta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.testimonialcta-btn,
.testimonialcta-btn2{

    padding:16px 20px;
    border-radius:8px;
    text-decoration:none;
    font-weight:700;
    transition:.4s;

}

.testimonialcta-btn{

    background:#f4c542;
    color:#033b31;

}

.testimonialcta-btn2{

    border:2px solid #fff;
    color:#fff;

}

.testimonialcta-btn:hover{

    transform:translateY(-5px);

}

.testimonialcta-btn2:hover{

    background:#fff;
    color:#033b31;

}


/*=========================
REVIEW SLIDER
=========================*/

.reviewslider{

    background:#f4c542;
    overflow:hidden;
    padding:16px 0;

}

.reviewslider-track{

    display:flex;
    width:max-content;
    gap:70px;

    animation:reviewmove 25s linear infinite;

}

.review-item{

    font-size:18px;
    font-weight:700;
    color:#033b31;
    white-space:nowrap;

}

.reviewslider:hover .reviewslider-track{

    animation-play-state:paused;

}

@keyframes reviewmove{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}


/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.testimonialcta h2{

    font-size:36px;

}

.testimonialcta p{

    font-size:16px;
    line-height:28px;

}

.review-item{

    font-size:18px;

}

}

@media(max-width:768px){

.testimonialcta{

    padding:70px 15px;

}

.testimonialcta h2{

    font-size:28px;

}

.testimonialcta p{

    font-size:15px;
    line-height:26px;

}

.testimonialcta-buttons{

    flex-direction:column;

}

.testimonialcta-btn,
.testimonialcta-btn2{

    width:100%;

}

.reviewslider{

    padding:16px 0;

}

.reviewslider-track{

    gap:40px;

}

.review-item{

    font-size:16px;

}

}






/*==================================
PROGRAM HERO  ONE SECTION 
==================================*/

.programhero{
    position:relative;
   height:100vh;
    background:url("../images/img6.jpg") center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    overflow:hidden;
    margin-top: 60px;

}

.programhero-overlay{
    position:absolute;
    inset:0;
    /* background:rgba(0,0,0,.55); */
        background: linear-gradient(90deg, rgba(0, 55, 45, 0.85) 0%, rgba(0, 55, 45, 0.65) 20%, rgba(0, 55, 45, 0.30) 35%, transparent 55%);


}

.programhero-content{
    position:relative;
    z-index:2;
    width:100%;
    max-width:1200px;
    text-align:justify;
    color:#fff;

}

.programhero-tag{
    display:inline-block;
    padding:10px 25px;
    border:1px solid rgba(255,255,255,.3);
    border-radius:40px;
    margin-bottom:25px;
    font-size:15px;

}

.programhero h1{
 font-size:40px;
line-height:1.15;
margin-bottom:25px;
text-align: justify;

}
.programhero p{
    margin:auto;
    font-size:18px;
    line-height:32px;
    text-align: justify ;
}

.programhero-breadcrumb{

    margin-top:35px;

}

.programhero-breadcrumb a{

    color:#f4c542;

    text-decoration:none;

}

.programhero-breadcrumb span{

    color:#fff;

}

.programhero-breadcrumb i{

    margin:0 10px;

}




.programintro{

    padding:50px 20px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:70px;

    background:#f8f8f8;

}

.programintro-left{

    width:55%;

}

.programintro-right{

    width:45%;

    position:relative;

}

.programintro-right img{

    width:100%;

    border-radius:20px;

    display:block;

}

.programintro-subtitle{

    display:inline-block;

    padding:8px 20px;

    border:1px solid #ddd;

    border-radius:40px;

    margin-bottom:25px;

    color:#033b31;


}

.programintro h2{

    font-size:42px;

    color:#033b31;

    line-height:1.2;

    margin-bottom:25px;

}

.programintro p{

    font-size:17px;

    line-height:30px;

    color:#555;

    margin-bottom:20px;

}

.programintro-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    margin-top:20px;

    padding:15px 30px;

    background:#f4c542;

    color:#033b31;

    text-decoration:none;

    border-radius:8px;

    font-weight:700;

    transition:.4s;

}

.programintro-btn:hover{

    transform:translateY(-5px);

}

.programintro-box{

    position:absolute;

    right:-20px;

    bottom:40px;

    background:#fff;

    padding:25px;

    border-radius:15px;

    box-shadow:0 10px 30px rgba(0,0,0,.12);

    text-align:center;

}

.programintro-box h3{

    font-size:42px;

    color:#f4c542;

}

.programintro-box p{

    font-size:15px;

    color:#555;

}


/*==================================
RESPONSIVE
==================================*/

@media(max-width:991px){

.programhero{

    height:90vh;

}

.programhero h1{

    font-size:42px;

}

.programhero p{

    font-size:16px;

    line-height:28px;

}

.programintro{

    flex-direction:column;

}

.programintro-left,
.programintro-right{

    width:100%;

}

.programintro h2{

    font-size:34px;

}

.programintro-box{

    right:20px;

}

}

@media(max-width:768px){

.programhero{

    height:100vh;
    padding:0 15px;

}

.programhero h1{

    font-size:30px;

}

.programhero p{

    font-size:15px;

    line-height:26px;

}

.programhero-tag{

    font-size:13px;

}

.programintro{

    padding:60px 15px;

}

.programintro h2{

    font-size:28px;

}

.programintro p{

    font-size:15px;

    line-height:28px;

}

.programintro-btn{

    width:100%;
    justify-content:center;

}

.programintro-box{

    position:static;
    margin-top:20px;

}

}



/*  */




/*==============================
  PROGRAM GRID TWO SECTIONS
==============================*/

.programgrid{

    padding:20px 20px;
    background:#ffffff;

}

.programgrid-heading{

    /* max-width:800px; */
    margin:auto;
    text-align:center;
    margin-bottom:60px;
    text-align: justify;

}

.programgrid-tag{

    display:inline-block;
    padding:8px 20px;
    border:1px solid #ddd;
    border-radius:40px;
    color:#033b31;
    margin-bottom:20px;

}

.programgrid-heading h2{

    font-size:42px;
    color:#033b31;
    margin-bottom:20px;

}

.programgrid-heading p{

    font-size:16px;
    color:#666;
    line-height:30px;

}

.programgrid-wrapper{

    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;

}

.programcard{

    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;

}

.programcard:hover{

    transform:translateY(-10px);

}

.programcard img{

    width:100%;
    height:250px;
    object-fit:cover;

}

.programcard-content{

    padding:30px;

}

.programcard-icon{

    width:70px;
    height:70px;
    background:#f4c542;
    color:#033b31;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:28px;
    margin-bottom:25px;

}

.programcard h3{

    font-size:24px;
    color:#033b31;
    margin-bottom:15px;

}

.programcard p{

    font-size:15px;
    line-height:28px;
    color:#666;
    margin-bottom:25px;

}

.programcard a{

    text-decoration:none;
    color:#033b31;
    font-weight:700;

}

.programcard a i{

    margin-left:8px;

}


/*==============================
RESPONSIVE
==============================*/

@media(max-width:991px){

.programgrid-wrapper{

    grid-template-columns:repeat(2,1fr);

}

.programgrid-heading h2{

    font-size:34px;

}

}

@media(max-width:768px){

.programgrid{

    padding:60px 15px;

}

.programgrid-wrapper{

    grid-template-columns:1fr;

}

.programgrid-heading h2{

    font-size:28px;

}

.programgrid-heading p{

    font-size:15px;
    line-height:26px;

}

.programcard img{

    height:220px;

}

.programcard-content{

    padding:25px;

}

.programcard h3{

    font-size:22px;

}

}



/*  */



/*=========================
FEATURED PROGRAM TWO SECTION
=========================*/

.programfeature{

    padding:20px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:70px;
    background:#f8f8f8;

}

.programfeature-left{
    width:45%;
    position:relative;

}

.programfeature-left img{
    width:100%;
    border-radius:20px;
    display:block;

}

.programfeature-card{
    position:absolute;
    left:30px;
    bottom:30px;
    background:#fff;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 30px rgba(0,0,0,.12);

}

.programfeature-card h3{
    color:#f4c542;
    font-size:32px;
    margin-bottom:10px;
}

.programfeature-card p{
    color:#555;
    line-height:26px;

}

.programfeature-right{
   width:55%;

}

.programfeature-tag{
    display:inline-block;
    padding:8px 20px;

    border:1px solid #ddd;

    border-radius:40px;

    color:#033b31;

    margin-bottom:25px;

}

.programfeature-right h2{

    font-size:42px;

    color:#033b31;

    margin-bottom:25px;

    line-height:1.2;

}

.programfeature-right p{

    color:#666;

    line-height:30px;

    margin-bottom:20px;

}

/* Progress */

.progress-item{

    margin-top:25px;

}

.progress-head{

    display:flex;

    justify-content:space-between;

    margin-bottom:10px;

    font-weight:600;

}

.progress-bar{

    height:10px;

    background:#ddd;

    border-radius:50px;

    overflow:hidden;

}

.progress-fill{

    height:100%;

    background:#f4c542;

    border-radius:50px;

}

.fill1{

    width:95%;

}

.fill2{

    width:90%;

}

.fill3{

    width:98%;

}

/* Statistics */

.programfeature-stats{

    display:flex;

    gap:40px;

    margin:40px 0;

}

.programfeature-stats h3{

    font-size:34px;

    color:#033b31;

}

.programfeature-stats p{

    margin:0;

}

.programfeature-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    background:#f4c542;

    color:#033b31;

    padding:16px 30px;

    border-radius:8px;

    text-decoration:none;

    font-weight:700;

    transition:.4s;

}

.programfeature-btn:hover{

    transform:translateY(-5px);

}




/*=========================
RESPONSIVE
=========================*/

@media(max-width:991px){

.programfeature{

    flex-direction:column;

}

.programfeature-left,

.programfeature-right{

    width:100%;

}

.programfeature-right h2{

    font-size:34px;

}

}

@media(max-width:768px){

.programfeature{

    padding:60px 15px;

}

.programfeature-right h2{

    font-size:28px;

}

.programfeature-right p{

    font-size:15px;

    line-height:28px;

}

.programfeature-card{

    position:static;

    margin-top:20px;

}

.programfeature-stats{

    flex-direction:column;

    gap:20px;

}

.programfeature-btn{

    width:100%;

    justify-content:center;

}

}



/*  */


/*=========================
PROGRAM FAQ
=========================*/

.programfaq{
    padding:80px 20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    background:#f8f8f8;
}

.programfaq-tag{
    display:inline-block;
    padding:8px 20px;
    border:1px solid #ddd;
    border-radius:30px;
    margin-bottom:20px;
    color:#003b35;
}

.programfaq-left h2{
    font-size:40px;
    color:#003b35;
    margin-bottom:20px;
}

.programfaq-left p{
    line-height:30px;
    color:#555;
    margin-bottom:30px;
}

.programfaq-btn{
    display:inline-block;
    padding:15px 35px;
    background:#f2c94c;
    color:#003b35;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;
}

.faq-item{
    background:#fff;
    margin-bottom:20px;
    border-radius:12px;
    overflow:hidden;
}

.faq-question{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px;
    cursor:pointer;
}

.faq-question h3{
    font-size:18px;
    color:#003b35;
}

.faq-answer{
    display:none;
    padding:0 20px 20px;
    color:#555;
    line-height:28px;
}

.faq-item.active .faq-answer{
    display:block;
}


/*=========================
CTA
=========================*/

.programcta{

    position:relative;

    padding:120px 20px;

    background:url("../images/ngoimg16.jpeg") center/cover;

    text-align:center;

    overflow:hidden;

}

.programcta-overlay{

    position:absolute;
    inset:0;
    background:rgba(0,55,45,.75);

}

.programcta-content{

    position:relative;
    z-index:2;
    max-width:800px;
    margin:auto;
    color:#fff;

}

.programcta-content span{

    color:#f2c94c;
    font-size:18px;

}

.programcta-content h2{

    font-size:48px;
    margin:20px 0;

}

.programcta-content p{

    line-height:32px;
    margin-bottom:40px;

}

.programcta-buttons{

    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;

}

.programcta-btn,
.programcta-btn-outline{

    padding:15px 35px;
    text-decoration:none;
    border-radius:8px;
    font-weight:700;

}

.programcta-btn{

    background:#f2c94c;
    color:#003b35;

}

.programcta-btn-outline{

    border:2px solid #fff;
    color:#fff;

}


/*=========================
STATISTICS
=========================*/

.programstats{

    padding:80px 20px;

    display:grid;
    grid-template-columns:repeat(4,1fr);

    gap:25px;

    background:#fff;

}

.programstats-box{

    text-align:center;

    padding:40px 20px;

    border-radius:15px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.programstats-box h2{

    font-size:50px;

    color:#f2c94c;

    margin-bottom:15px;

}

.programstats-box p{

    color:#555;
    font-size:18px;

}


/*=========================
Responsive
=========================*/

@media(max-width:991px){

.programfaq{

grid-template-columns:1fr;

}

.programstats{

grid-template-columns:repeat(2,1fr);

}

.programcta-content h2{

font-size:36px;

}

}

@media(max-width:768px){

.programstats{

grid-template-columns:1fr;

}

.programcta{

padding:80px 15px;

}

.programcta-content h2{

font-size:28px;

}

.programfaq-left h2{

font-size:28px;

}

.faq-question h3{

font-size:16px;

}

}




/*  */


/*==============================
PROGRAM-DETAILS HERO
==============================*/

.programdetails-hero{

    position:relative;

    padding:180px 20px 120px;

    background:url("../images/ngoimg18.jpeg") center/cover;

}

.programdetails-overlay{

    position:absolute;
    inset:0;
    background:rgba(0,55,45,.75);

}

.programdetails-container{

    position:relative;

    z-index:2;

    display:grid;

    grid-template-columns:2fr 1fr;

    gap:60px;

    align-items:center;

}

.programdetails-left h1{

    font-size:55px;

    color:#fff;

    margin:20px 0;

}

.programdetails-left p{

    color:#fff;

    font-size:18px;

    line-height:32px;

    margin-bottom:30px;

}

.programdetails-tag{

    display:inline-block;

    padding:10px 25px;

    border-radius:40px;

    background:#f2c94c;

    color:#003b35;

    font-weight:700;

}

.programdetails-breadcrumb{

    display:flex;

    align-items:center;

    gap:12px;

    color:#fff;

    flex-wrap:wrap;

}

.programdetails-breadcrumb a{

    color:#fff;

    text-decoration:none;

}

.programdetails-breadcrumb span{

    color:#f2c94c;

}

/*====================*/

.programdetails-card{

    background:#fff;

    padding:40px;

    border-radius:20px;

}

.programdetails-card h3{

    color:#003b35;

    margin-bottom:25px;

}

.programdetails-card ul{

    list-style:none;

    padding:0;

}

.programdetails-card li{

    display:flex;

    justify-content:space-between;

    margin-bottom:20px;

    border-bottom:1px solid #eee;

    padding-bottom:15px;

}

.programdetails-btn{

    display:block;

    margin-top:30px;

    text-align:center;

    background:#f2c94c;

    color:#003b35;

    text-decoration:none;

    padding:16px;

    border-radius:8px;

    font-weight:700;

}

/*==============================
INTRO
==============================*/

/*==========================
 PROGRAM DETAILS INTRO
==========================*/

.programdetails-intro{
    padding:80px 20px;
    display:flex;
    gap:60px;
    align-items:center;
    background:#fff;
}

.programdetails-intro-left{
    width:50%;
}

.programdetails-intro-left img{
    width:100%;
    border-radius:20px;
    display:block;
    object-fit:cover;
}

.programdetails-intro-right{
    width:50%;
}

.programdetails-intro-right span{
    display:inline-block;
    padding:8px 20px;
    border:1px solid #ddd;
    border-radius:30px;
    color:#003b35;
    font-size:14px;
    margin-bottom:20px;
}

.programdetails-intro-right h2{
    font-size:42px;
    color:#003b35;
    line-height:1.2;
    margin-bottom:25px;
}

.programdetails-intro-right p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}

/* Responsive */

@media(max-width:991px){

    .programdetails-intro{
        flex-direction:column;
        padding:60px 15px;
    }

    .programdetails-intro-left,
    .programdetails-intro-right{
        width:100%;
    }

    .programdetails-intro-right h2{
        font-size:30px;
    }

    .programdetails-intro-right p{
        font-size:15px;
    }
}



/* ******RESPONSIVE ******* */



/* *********  PROGRAMS-DETAILS TWO SECTION ************* */
/*==========================
OBJECTIVES
==========================*/

.programobjective{

padding:90px 20px;

background:#f8f8f8;

}

.programobjective-heading{

text-align:center;

max-width:800px;

margin:auto auto 60px;

}

.programobjective-heading span{

color:#f2c94c;

font-weight:700;

}

.programobjective-heading h2{

font-size:40px;

color:#003b35;

margin:15px 0;

}

.programobjective-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.programobjective-card{

background:#fff;

padding:40px 30px;

border-radius:20px;

text-align:center;

transition:.4s;

}

.programobjective-card:hover{

transform:translateY(-10px);

}

.programobjective-icon{

width:80px;

height:80px;

background:#f2c94c;

border-radius:50%;

display:flex;

justify-content:center;

align-items:center;

margin:auto auto 25px;

font-size:35px;

color:#003b35;

}

.programobjective-card h3{

margin-bottom:20px;

color:#003b35;

}

.programobjective-card p{

line-height:28px;

color:#666;

}

/*==========================*/

.programactivities{

padding:90px 20px;

display:grid;

grid-template-columns:1fr 1fr;

gap:60px;

align-items:center;

}

.programactivities-right img{

width:100%;

border-radius:20px;

}

.programactivities-left span{

color:#f2c94c;

font-weight:700;

}

.programactivities-left h2{

font-size:42px;

margin:20px 0;

color:#003b35;

}

.programactivities-left p{

line-height:30px;

margin-bottom:25px;

color:#555;

}

.programactivities-left ul{

list-style:none;

padding:0;

}

.programactivities-left li{

margin-bottom:18px;

font-size:17px;

}

.programactivities-left i{

color:#f2c94c;

margin-right:10px;

}

/*==========================*/

.programwhy{
padding:90px 20px;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
width: 100%;
background:#f8f8f8;

}

.programwhy img{
width:100%;
border-radius:20px;
}

.programwhy-content span{
color:#f2c94c;
font-weight:700;
}

.programwhy-content h2{

font-size:40px;

margin:20px 0;

color:#003b35;

}

.programwhy-content p{

line-height:30px;

color:#555;

margin-bottom:30px;

}

.programwhy-box{

display:flex;


gap:25px;

flex-wrap:wrap;

}

.programwhy-box div{

background:#fff;

padding:25px;

border-radius:15px;

flex:1;

text-align:center;

}

.programwhy-box h3{

font-size:35px;

color:#f2c94c;

margin-bottom:10px;

}


/* RESPONSIVE  */



@media(max-width:991px){

.programobjective-grid{

grid-template-columns:repeat(2,1fr);

}

.programactivities{

grid-template-columns:1fr;

}

.programwhy{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.programobjective{

padding:60px 15px;

}

.programobjective-grid{

grid-template-columns:1fr;

}

.programobjective-heading h2{

font-size:28px;

}

.programactivities{

padding:60px 15px;

gap:30px;

}

.programactivities-left h2{

font-size:28px;

}

.programwhy{

padding:60px 15px;

gap:30px;

}

.programwhy-content h2{

font-size:28px;

}

.programwhy-box{

flex-direction:column;

}

}





/*  */





/*=========================
TIMELINE
=========================*/

.programtimeline{

padding:50px 20px;
width: 100%;
background:#fff;

}

.programtimeline-heading{

text-align:center;

margin-bottom:60px;

}

.programtimeline-heading span{

color:#f2c94c;

font-weight:700;

}

.programtimeline-heading h2{

font-size:40px;

color:#003b35;

margin-top:15px;

}

.programtimeline-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.programtimeline-item{

background:#f8f8f8;

padding:35px;

border-radius:20px;

text-align:center;

transition:.4s;

}

.programtimeline-item:hover{

transform:translateY(-10px);

}

.programtimeline-number{

width:70px;

height:70px;

background:#f2c94c;

border-radius:50%;

margin:auto;

display:flex;

justify-content:center;

align-items:center;

font-size:24px;

font-weight:bold;

color:#003b35;

margin-bottom:20px;

}

/*=========================*/

.programgallery{

padding:90px 20px;

background:#f8f8f8;

}

.programgallery-heading{

text-align:center;

margin-bottom:50px;

}

.programgallery-heading span{

color:#f2c94c;

font-weight:700;

}

.programgallery-heading h2{

font-size:40px;

margin-top:15px;

color:#003b35;

}

.programgallery-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:20px;

}

.programgallery-grid img{

width:100%;

height:280px;

object-fit:cover;

border-radius:15px;

transition:.5s;

}

.programgallery-grid img:hover{

transform:scale(1.05);

}

/*=========================*/

.programcta{

position:relative;

padding:120px 20px;

background:url("../images/ngoimg16.jpeg") center/cover;

text-align:center;

}

.programcta-overlay{

position:absolute;

inset:0;

background:rgba(0,55,45,.75);

}

.programcta-content{

position:relative;

z-index:2;

max-width:800px;

margin:auto;

color:#fff;

}

.programcta-content h2{

font-size:48px;

margin:20px 0;

}

.programcta-buttons{

display:flex;

justify-content:center;

gap:20px;

margin-top:35px;

flex-wrap:wrap;

}

.programcta-btn,
.programcta-btn2{

padding:16px 35px;

text-decoration:none;

border-radius:8px;

font-weight:700;

}

.programcta-btn{

background:#f2c94c;

color:#003b35;

}

.programcta-btn2{

border:2px solid #fff;

color:#fff;

}

/*=========================*/

.relatedprogram{

padding:90px 20px;

background:#fff;

}

.relatedprogram-heading{

text-align:center;

margin-bottom:50px;

}

.relatedprogram-heading span{

color:#f2c94c;

font-weight:700;

}

.relatedprogram-heading h2{

font-size:40px;

color:#003b35;

margin-top:15px;

}

.relatedprogram-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.relatedprogram-card{

background:#f8f8f8;

padding:40px;

border-radius:20px;

text-align:center;

transition:.4s;

}

.relatedprogram-card:hover{

transform:translateY(-10px);

}

.relatedprogram-card i{

font-size:45px;

color:#f2c94c;

margin-bottom:25px;

}




/* RESPONSIVE  */


@media(max-width:991px){

.programtimeline-grid{

grid-template-columns:repeat(2,1fr);

}

.programgallery-grid{

grid-template-columns:repeat(2,1fr);

}

.relatedprogram-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.programtimeline{

padding:60px 15px;

}

.programtimeline-grid{

grid-template-columns:1fr;

}

.programgallery{

padding:60px 15px;

}

.programgallery-grid{

grid-template-columns:1fr;

}

.programgallery-grid img{

height:230px;

}

.programcta{

padding:80px 15px;

}

.programcta-content h2{

font-size:28px;

}

.relatedprogram{

padding:60px 15px;

}

.relatedprogram-heading h2{

font-size:28px;

}

}





/*=========================================
      TESTIMONIAL DETAILS HERO
=========================================*/





.testimonialdetails-hero{
    position:relative;
    height:600px;
    background:url("../images/ngoimg48.jpeg") center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    overflow:hidden;
}

.testimonialdetails-overlay{
    position:absolute;
    inset:0;
     background: linear-gradient(
        90deg,
        rgba(0, 55, 45, 0.85) 0%,
        rgba(0, 55, 45, 0.65) 20%,
        rgba(0, 55, 45, 0.30) 35%,
        transparent 55%
    );


}

.testimonialdetails-content{
    position: relative;
    z-index: 10;
    width: 55%;
    padding: 106px 25px 120px;
    color: #fff;

}

.testimonialdetails-tag{
    display:inline-block;
    padding:10px 28px;
    border-radius:40px;
    background:#f2c94c;
    color:#003b35;
    font-size:15px;
    font-weight:700;
    margin-bottom:25px;
}

.testimonialdetails-title{
    font-size:30px;
    color:#fff;
    line-height:1.2;
    margin-bottom:30px;
}

.testimonialdetails-meta{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
}

.testimonialdetails-meta span{
    color:#fff;
    font-size:16px;
}

.testimonialdetails-meta i{
    color:#f2c94c;
    margin-right:8px;
}


/*=========================================
      INTRO SECTION
=========================================*/

.testimonialdetails-intro{
    padding:90px 20px;
    display:flex;
    gap:60px;
    align-items:center;
    background:#f8f8f8;
}

.testimonialdetails-intro-left{
    width:45%;
    position:relative;
}

.testimonialdetails-intro-left img{
    width:100%;
    border-radius:20px;
    display:block;
}

.testimonialdetails-profilebox{
    position:absolute;
    bottom:25px;
    left:25px;
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.testimonialdetails-profilebox h3{
    font-size:24px;
    color:#003b35;
    margin-bottom:8px;
}

.testimonialdetails-profilebox span{
    color:#666;
    display:block;
    margin-bottom:15px;
}

.testimonialdetails-stars{
    color:#f2c94c;
    font-size:18px;
}

.testimonialdetails-intro-right{
    width:55%;
}

.testimonialdetails-smalltitle{
    display:inline-block;
    padding:8px 20px;
    border:1px solid #ddd;
    border-radius:40px;
    color:#003b35;
    font-size:14px;
    margin-bottom:20px;
}

.testimonialdetails-intro-right h2{
    font-size:42px;
    color:#003b35;
    line-height:1.2;
    margin-bottom:25px;
}

.testimonialdetails-intro-right p{
    font-size:16px;
    line-height:1.9;
    color:#555;
    margin-bottom:20px;
}


/*=========================================
      STORY SECTION
=========================================*/

.testimonialdetails-storysection{
    padding:90px 20px;
    background:#fff;
}

.testimonialdetails-storyheading{
    text-align:center;
    margin-bottom:50px;
}

.testimonialdetails-storyheading span{
    color:#f2c94c;
    font-size:16px;
    font-weight:700;
}

.testimonialdetails-storyheading h2{
    font-size:40px;
    color:#003b35;
    margin-top:15px;
}

.testimonialdetails-storycontent{
    max-width:1000px;
    margin:auto;
}

.testimonialdetails-storycontent p{
    font-size:17px;
    color:#555;
    line-height:1.9;
    margin-bottom:25px;
    text-align:justify;
}

.testimonialdetails-storycontent blockquote{
    background:#f2c94c;
    color:#003b35;
    padding:35px;
    border-left:6px solid #003b35;
    font-size:22px;
    font-style:italic;
    border-radius:10px;
    margin:40px 0;
}


/*=========================================
      ACHIEVEMENT SECTION
=========================================*/

.testimonialdetails-achievement{
    padding:80px 20px;
    background:#f8f8f8;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.testimonialdetails-achievement-card{
    background:#fff;
    padding:40px 30px;
    text-align:center;
    border-radius:18px;
    transition:.4s;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

.testimonialdetails-achievement-card:hover{
    transform:translateY(-10px);
}

.testimonialdetails-achievement-card i{
    width:80px;
    height:80px;
    background:#f2c94c;
    color:#003b35;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    margin:auto;
    font-size:32px;
    margin-bottom:25px;
}

.testimonialdetails-achievement-card h3{
    font-size:22px;
    color:#003b35;
    margin-bottom:15px;
}

.testimonialdetails-achievement-card p{
    color:#666;
    line-height:1.8;
    font-size:15px;
}


/*=========================================
      RESPONSIVE
=========================================*/

@media(max-width:991px){

.testimonialdetails-title{
    font-size:40px;
}

.testimonialdetails-intro{
    flex-direction:column;
}

.testimonialdetails-intro-left,
.testimonialdetails-intro-right{
    width:100%;
}

.testimonialdetails-achievement{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.testimonialdetails-hero{
    height:450px;
}

.testimonialdetails-title{
    font-size:30px;
}

.testimonialdetails-meta{
    gap:15px;
}

.testimonialdetails-meta span{
    font-size:14px;
}

.testimonialdetails-intro{
    padding:60px 15px;
}

.testimonialdetails-profilebox{
    position:static;
    margin-top:20px;
}

.testimonialdetails-intro-right h2{
    font-size:28px;
}

.testimonialdetails-storyheading h2{
    font-size:28px;
}

.testimonialdetails-storycontent blockquote{
    font-size:18px;
    padding:25px;
}

.testimonialdetails-achievement{
    grid-template-columns:1fr;
}

}




/* ***********  TESTMONIALS-DETAILS TWO SECTION ******** */




/*======================================
      IMPACT
======================================*/

.testimonialdetails-impact{

    padding:90px 20px;
    background:#fff;

}

.testimonialdetails-impact-heading{

    text-align:center;
    margin-bottom:60px;

}

.testimonialdetails-impact-heading span{

    color:#f2c94c;
    font-weight:700;

}

.testimonialdetails-impact-heading h2{

    font-size:42px;
    color:#003b35;
    margin-top:15px;

}

.testimonialdetails-impact-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.testimonialdetails-impact-card{

    background:#003b35;
    color:#fff;
    padding:50px 30px;
    text-align:center;
    border-radius:20px;
    transition:.4s;

}

.testimonialdetails-impact-card:hover{

    transform:translateY(-10px);

}

.testimonialdetails-impact-card h3{

    font-size:48px;
    color:#f2c94c;
    margin-bottom:15px;

}

.testimonialdetails-impact-card p{

    font-size:17px;

}


/*======================================
      BEFORE AFTER
======================================*/

.testimonialdetails-beforeafter{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;

    padding:90px 20px;

    background:#f8f8f8;

}

.testimonialdetails-before,
.testimonialdetails-after{

    background:#fff;

    padding:45px;

    border-radius:20px;

}

.testimonialdetails-before h2,
.testimonialdetails-after h2{

    color:#003b35;
    margin-bottom:20px;

}

.testimonialdetails-before p,
.testimonialdetails-after p{

    color:#666;
    line-height:1.9;

}

.testimonialdetails-before ul,
.testimonialdetails-after ul{

    list-style:none;
    margin-top:25px;

}

.testimonialdetails-before li,
.testimonialdetails-after li{

    margin-bottom:18px;
    font-size:16px;

}

.testimonialdetails-before i{

    color:#e74c3c;
    margin-right:10px;

}

.testimonialdetails-after i{

    color:#27ae60;
    margin-right:10px;

}


/*======================================
      GALLERY
======================================*/

.testimonialdetails-gallery{

    padding:90px 20px;

}

.testimonialdetails-gallery-heading{

    text-align:center;
    margin-bottom:50px;

}

.testimonialdetails-gallery-heading span{

    color:#f2c94c;

}

.testimonialdetails-gallery-heading h2{

    font-size:40px;
    color:#003b35;

}

.testimonialdetails-gallery-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.testimonialdetails-gallery-grid img{

    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;

}

.testimonialdetails-gallery-grid img:hover{

    transform:scale(1.05);

}


/*======================================
      VIDEO
======================================*/

.testimonialdetails-video{

    position:relative;
    height:600px;

    background:url("../images/ngoimg16.jpeg") center center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

}

.testimonialdetails-video-overlay{

    position:absolute;
    inset:0;

    background:rgba(0,55,45,.70);

}

.testimonialdetails-video-content{

    position:relative;
    text-align:center;

}

.testimonialdetails-video-content span{

    color:#f2c94c;
    font-size:18px;

}

.testimonialdetails-video-content h2{

    color:#fff;
    font-size:50px;

    margin:25px 0;

}

.testimonialdetails-video-content a{

    width:90px;
    height:90px;

    background:#f2c94c;

    color:#003b35;

    display:inline-flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    font-size:30px;

    text-decoration:none;

}


/*======================================
      RESPONSIVE
======================================*/

@media(max-width:991px){

.testimonialdetails-impact-grid{

grid-template-columns:repeat(2,1fr);

}

.testimonialdetails-beforeafter{

grid-template-columns:1fr;

}

.testimonialdetails-gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.testimonialdetails-impact-heading h2{

font-size:30px;

}

.testimonialdetails-impact-grid{

grid-template-columns:1fr;

}

.testimonialdetails-gallery-grid{

grid-template-columns:1fr;

}

.testimonialdetails-video{

height:400px;

}

.testimonialdetails-video-content h2{

font-size:28px;

}

}


/* ************  TESTMONIALS-DERAILS THERR SECTIONN   ************** */

/*======================================
      IMPACT
======================================*/

.testimonialdetails-impact{

    padding:90px 20px;
    background:#fff;

}

.testimonialdetails-impact-heading{

    text-align:center;
    margin-bottom:60px;

}

.testimonialdetails-impact-heading span{

    color:#f2c94c;
    font-weight:700;

}

.testimonialdetails-impact-heading h2{

    font-size:42px;
    color:#003b35;
    margin-top:15px;

}

.testimonialdetails-impact-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.testimonialdetails-impact-card{

    background:#003b35;
    color:#fff;
    padding:50px 30px;
    text-align:center;
    border-radius:20px;
    transition:.4s;

}

.testimonialdetails-impact-card:hover{

    transform:translateY(-10px);

}

.testimonialdetails-impact-card h3{

    font-size:48px;
    color:#f2c94c;
    margin-bottom:15px;

}

.testimonialdetails-impact-card p{

    font-size:17px;

}


/*======================================
      BEFORE AFTER
======================================*/

.testimonialdetails-beforeafter{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;

    padding:90px 20px;

    background:#f8f8f8;

}

.testimonialdetails-before,
.testimonialdetails-after{

    background:#fff;

    padding:45px;

    border-radius:20px;

}

.testimonialdetails-before h2,
.testimonialdetails-after h2{

    color:#003b35;
    margin-bottom:20px;

}

.testimonialdetails-before p,
.testimonialdetails-after p{

    color:#666;
    line-height:1.9;

}

.testimonialdetails-before ul,
.testimonialdetails-after ul{

    list-style:none;
    margin-top:25px;

}

.testimonialdetails-before li,
.testimonialdetails-after li{

    margin-bottom:18px;
    font-size:16px;

}

.testimonialdetails-before i{

    color:#e74c3c;
    margin-right:10px;

}

.testimonialdetails-after i{

    color:#27ae60;
    margin-right:10px;

}


/*======================================
      GALLERY
======================================*/

.testimonialdetails-gallery{

    padding:90px 20px;

}

.testimonialdetails-gallery-heading{

    text-align:center;
    margin-bottom:50px;

}

.testimonialdetails-gallery-heading span{

    color:#f2c94c;

}

.testimonialdetails-gallery-heading h2{

    font-size:40px;
    color:#003b35;

}

.testimonialdetails-gallery-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;

}

.testimonialdetails-gallery-grid img{

    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:20px;
    transition:.4s;

}

.testimonialdetails-gallery-grid img:hover{

    transform:scale(1.05);

}


/*======================================
      VIDEO
======================================*/

.testimonialdetails-video{

    position:relative;
    height:600px;

    background:url("../images/ngoimg16.jpeg") center center/cover no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;

}

.testimonialdetails-video-overlay{

    position:absolute;
    inset:0;

    background:rgba(0,55,45,.70);

}

.testimonialdetails-video-content{

    position:relative;
    text-align:center;

}

.testimonialdetails-video-content span{

    color:#f2c94c;
    font-size:18px;

}

.testimonialdetails-video-content h2{

    color:#fff;
    font-size:50px;

    margin:25px 0;

}

.testimonialdetails-video-content a{

    width:90px;
    height:90px;

    background:#f2c94c;

    color:#003b35;

    display:inline-flex;
    justify-content:center;
    align-items:center;

    border-radius:50%;

    font-size:30px;

    text-decoration:none;

}


/*======================================
      RESPONSIVE
======================================*/

@media(max-width:991px){

.testimonialdetails-impact-grid{

grid-template-columns:repeat(2,1fr);

}

.testimonialdetails-beforeafter{

grid-template-columns:1fr;

}

.testimonialdetails-gallery-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.testimonialdetails-impact-heading h2{

font-size:30px;

}

.testimonialdetails-impact-grid{

grid-template-columns:1fr;

}

.testimonialdetails-gallery-grid{

grid-template-columns:1fr;

}

.testimonialdetails-video{

height:400px;

}

.testimonialdetails-video-content h2{

font-size:28px;

}

}




/* **************  TESTMONIAL-DETAILS FOUR SECTION   ************** */


/* TRUST */

.testimonialdetails-trust{
    padding:90px 20px;
    background:#fff;
}

.testimonialdetails-trust-heading{
    text-align:center;
    margin-bottom:60px;
}

.testimonialdetails-trust-heading span{
    color:#f2c94c;
    font-weight:700;
}

.testimonialdetails-trust-heading h2{
    font-size:40px;
    color:#003b35;
}

.testimonialdetails-trust-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonialdetails-trust-card{
    background:#f8f8f8;
    padding:40px;
    border-radius:20px;
    text-align:center;
    transition:.4s;
}

.testimonialdetails-trust-card:hover{
    transform:translateY(-10px);
}

.testimonialdetails-trust-card i{
    font-size:42px;
    color:#f2c94c;
    margin-bottom:20px;
}

.testimonialdetails-trust-card h3{
    color:#003b35;
    margin-bottom:15px;
}

.testimonialdetails-trust-card p{
    color:#666;
    line-height:1.8;
}

/* RELATED */

.testimonialdetails-related{
    padding:90px 20px;
    background:#f8f8f8;
}

.testimonialdetails-related-heading{
    text-align:center;
    margin-bottom:50px;
}

.testimonialdetails-related-heading h2{
    font-size:40px;
    color:#003b35;
}

.testimonialdetails-related-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonialdetails-related-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.4s;
}

.testimonialdetails-related-card:hover{
    transform:translateY(-8px);
}

.testimonialdetails-related-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

.testimonialdetails-related-card h3{
    padding:20px 20px 10px;
    color:#003b35;
}

.testimonialdetails-related-card p{
    padding:0 20px;
    color:#666;
}

.testimonialdetails-related-card a{
    display:inline-block;
    margin:20px;
    color:#003b35;
    font-weight:700;
    text-decoration:none;
}

/* CTA */

.testimonialdetails-cta{
    padding:100px 20px;
    text-align:center;
    background:#003b35;
    color:#fff;
}

.testimonialdetails-cta h2{
    font-size:46px;
    margin-bottom:20px;
}

.testimonialdetails-cta p{
    font-size:18px;
    margin-bottom:30px;
}

.testimonialdetails-cta a{
    display:inline-block;
    background:#f2c94c;
    color:#003b35;
    padding:16px 35px;
    border-radius:10px;
    text-decoration:none;
    font-weight:700;
}

/* FAQ */

.testimonialdetails-faq{
    padding:90px 20px;
    background:#fff;
}

.testimonialdetails-faq-heading{
    text-align:center;
    margin-bottom:50px;
}

.testimonialdetails-faq-heading h2{
    color:#003b35;
    font-size:40px;
}

.testimonialdetails-faq-item{
    max-width:900px;
    margin:20px auto;
    border:1px solid #ddd;
    border-radius:10px;
}

.testimonialdetails-faq-question{
    padding:22px;
    display:flex;
    justify-content:space-between;
    cursor:pointer;
    font-weight:700;
}

.testimonialdetails-faq-answer{
    display:none;
    padding:0 22px 22px;
    color:#666;
    line-height:1.8;
}

.testimonialdetails-faq-item.active .testimonialdetails-faq-answer{
    display:block;
}

.testimonialdetails-faq-item.active i{
    transform:rotate(45deg);
}

/* Responsive */

@media(max-width:991px){

.testimonialdetails-trust-grid,
.testimonialdetails-related-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.testimonialdetails-trust-grid,
.testimonialdetails-related-grid{
grid-template-columns:1fr;
}

.testimonialdetails-cta h2{
font-size:30px;
}

.testimonialdetails-faq-heading h2{
font-size:28px;
}

}