:root {
    --bg-color: #FDF7ED;
    --text-primary: #00473E;
    --text-highlight: #D46C4F;
    --text-secondary: #4A635D;
    --btn-primary-bg: #00473E;
    --btn-secondary-border: #E8DFD3;
    --border-color: #E8DFD3;
}

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

body {
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    line-height: 1.5;
}

a {
    text-decoration: none;
}

.header {

    width: 100%;
    background: #f7f2ea;
    border-bottom: 1px solid #ddd;
}

.container {

    width: 90%;
    max-width: 1280px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 0;
}


/* Logo */

.logo {

    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon-1 img {
    width: 16%;
}
.header .logo-icon {
    width: 42px;
    height: 42px;
    border: 1px solid #00473e;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.header .logo-text h2{
    color: #00473e;
}


.logo-text h2 {

    font-size: 32px;
    font-family: Georgia, serif;
    color: #222;
    font-weight: 500;
}

.logo-text p {

    margin-top: 5px;
    font-size: 11px;
    letter-spacing: 4px;
    color: #444;
}


/* Navigation */

.navbar {

    display: flex;
    gap: 40px;
}

.navbar a {

    color: #444;
    font-size: 16px;
    position: relative;
    padding-bottom: 8px;
}

.navbar a:hover {

    color: #000;
}

.navbar a.active {

    color: #000;
}

.navbar a.active::after {

    content: "";
    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 2px;

    background: #dd8d27;
}


/* Button */

.btn {

    background: #00473e;
    color: #fff;

    padding: 16px 30px;

    border-radius: 35px;

    font-size: 13px;

    letter-spacing: 1px;

    transition: .3s;
}

.btn:hover {

    background: #000;
}


/* Mobile Button */

.menu-btn {

    display: none;
    font-size: 24px;
    cursor: pointer;
}



/* Responsive */

@media(max-width:992px) {

    .header {
        position: relative;
        z-index: 1000;
    }

    .container {
        flex-wrap: nowrap;
    }

    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #f7f2ea;
        width: 100%;
        flex-direction: column;
        padding: 20px 0;
        gap: 18px;
        text-align: center;
        box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

    .navbar.show {
        display: flex;
    }

    .header .btn {

        display: none;
    }

    .menu-btn {

        display: block;
    }

    .logo-text h2 {

        font-size: 26px;
    }

}


@media(max-width:576px) {

    .container {

        width: 92%;
        padding: 15px 0;
    }

    .logo {

        gap: 10px;
    }

    .logo-icon {

        width: 42px;
        height: 42px;

        font-size: 18px;
    }

    .logo-text h2 {

        font-size: 22px;
    }

    .logo-text p {

        font-size: 9px;
        letter-spacing: 3px;
    }

    .menu-btn {

        font-size: 22px;
    }

    .navbar a {

        font-size: 17px;
    }

}

/* footer */

.footer-bottom p a{
    color: #fff;
}
.footer {

    background: #045a58;
    color: #fff;

}

.container {

    width: 90%;
    max-width: 1300px;
    margin: auto;

}

/* Top */

.footer>.container {

    display: flex;
    justify-content: space-between;
    gap: 80px;

    padding: 70px 0;

}

.footer-about {

    flex: 1.8;

}

.footer-box {

    flex: 1;

}

.footer-box h5 {
    color: var(--text-highlight);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-box ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-box ul li a, 
.footer-box ul li span {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.footer-box ul li a:hover {
    color: #d46c4f;
}

.footer-box ul li svg {
    color: #d46c4f; /* Setting icon color to orange/yellow */
    flex-shrink: 0;
    margin-top: 3px;
}

/* Logo */

.footer-logo {

    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 35px;

}

.logo-icon {

    width: 42px;
    height: 42px;

    border: 1px solid rgba(255, 255, 255, .5);
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-size: 18px;
}

.logo-text h2 {

    font-family: 'Playfair Display', serif;
    font-size: 36px;
    color: #fff;
    margin-bottom: 5px;

}

.logo-text span {

    font-size: 12px;
    letter-spacing: 5px;
    color: #d9d1b7;

}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.banner-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 60px;
}

.banner-content {
    flex: 1;
    max-width: 580px;
    padding-top: 20px;
}

.banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 75px;
    line-height: 90px;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--text-primary);
    letter-spacing: -1px;
}

.highlight {
    color: var(--text-highlight);
}

.banner-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 45px;
    line-height: 1.6;
}

.banner-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.btn {
    text-decoration: none;
    padding: 8px 32px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background-color: var(--btn-primary-bg);
    color: #fff;
    border: 2px solid var(--btn-primary-bg);
}

.btn-primary:hover {
    background-color: #00362f;
    border-color: #00362f;
}

.btn-primary .arrow {
    font-size: 1.2em;
    font-weight: 400;
}

.btn-secondary {
    background-color: transparent;
    color: #000;
    border: 1px solid #D9CFC0;
}

.btn-secondary:hover {
    border-color: #000;
    color: #fff;
}

.banner-stats {
    display: flex;
    gap: 60px;
    border-top: 1px solid var(--border-color);
    padding-top: 35px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
  
    font-size: 3rem;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.banner-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 30px;
    padding-left: 20px;
}

/* .image-background {
    position: absolute;
    height: 81%;
    background-color: #E6B690;
    border-radius: 15px;
    width: 100%;
    
    z-index: 1;
} */

.main-image {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0px;
    display: block;
}

.impact-card {
    position: absolute;
    bottom: 0px;
    left: -40px;
    background-color: #FDF7ED;
    padding: 25px 35px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    z-index: 3;
    max-width: 300px;
}

.impact-label {
    display: block;
    color: var(--text-highlight);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.impact-text {
    font-family: 'Playfair Display', serif;
    color: var(--text-primary);
    font-size: 1.4rem;
    line-height: 1.35;
    font-weight: 500;
}

@media (max-width: 1100px) {
    .banner-title {
        font-size: 4rem;
    }
    .banner-container {
        padding: 60px 30px;
        gap: 40px;
    }
    .banner-stats {
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .banner-container {
        flex-direction: column;
    }
    .banner-content {
        max-width: 100%;
    }
    .banner-image-wrapper {
        margin-top: 50px;
        justify-content: center;
        padding-left: 0;
    }
    .image-background {
        right: 0;
        bottom: -20px;
    }
    .impact-card {
        left: 20px;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 3rem;
    }
    .banner-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    .stat-number {
        font-size: 2.5rem;
    }
    .impact-card {
        padding: 20px;
        max-width: 250px;
    }
    .impact-text {
        font-size: 1.2rem;
    }
}
/* 2nd section */


.container-1{
    width:92%;
    max-width:1280px;
    margin:auto;
}

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

/*======================
TOP
======================*/

.top-content{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:60px;
    margin-bottom:50px;
}

.left{
    width:60%;
}

.right{
    width:35%;
}

.sub-title{
    color:#d46d3a;
    font-size:13px;
    letter-spacing:4px;
    text-transform:uppercase;
    display:block;
    margin-bottom:18px;
    font-weight:600;
}

.left h2{
    font-family:'DM Serif Display',serif;
    font-size:55px;
    font-weight:400;
    line-height:1.12;
    color:#024b59;
}

.right p{
    font-size:17px;
    line-height:1.7;
    color:#426670;
    margin-top:28px;
}

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

.program-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:18px;
}

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

.program-card{
    background:#fffdfa;
    border:1px solid #d9ccb6;
    border-radius:20px;
    padding:26px;
    transition:.35s;
    min-height:250px;
}

.program-card:hover{
    border:2px solid #d46c4f;
}

.program-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.icon{
    width:48px;
    height:48px;
    border-radius:12px;
    background:#f2e7d2;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.icon i{
    font-size:20px;
    color:#03596b;
}

.icon:hover{
    background:#000;
}

.active-icon i{
    color:#000;
}

.category{
    color:#d16b3b;
    font-size:13px;
    font-weight:600;
    letter-spacing:2px;
    display:block;
    margin-bottom:10px;
}

.program-card h3{
    font-family:'DM Serif Display',serif;
    font-size:25px;
    line-height: 27px;
    font-weight:400;
    color:#0b4c5d;
    margin-bottom:15px;
}

.program-card p{
    color:#4b6570;
    line-height:1.7;
    font-size:17px;
}

/*======================
TABLET
======================*/

@media(max-width:991px){

.top-content{
    flex-direction:column;
    gap:25px;
}

.left,
.right{
    width:100%;
}

.left h2{
    font-size:46px;
}

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

}

/*======================
MOBILE
======================*/

@media(max-width:767px){

.program-section{
    padding:50px 0;
}

.left h2{
    font-size:36px;
}

.right p{
    margin-top:0;
    font-size:16px;
}

.program-grid{
    grid-template-columns:1fr;
}

.program-card{
    padding:22px;
}

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

.program-card p{
    font-size:16px;
}

}
/* 3th section */


/*==============================*/

.impact-area{
    width:100%;
    background:#045a58;
    padding:80px 0;
}

.impact-wrapper{
    width:92%;
    max-width:1280px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
}

/*==============================*/

.impact-content{
    width:48%;
}

.impact-small-title{
    display:block;
    color:#d46c4f;
    font-size:14px;
    font-weight:600;
    letter-spacing:4px;
    margin-bottom:18px;
}

.impact-main-title{
    font-family:'DM Serif Display',serif;
    font-size:62px;
    font-weight:400;
    line-height:1.05;
    color:#fff3e6;
    margin-bottom:22px;
}

.impact-description{
    color:#d8ebe7;
    font-size:16px;
    line-height:1.6;
    max-width:520px;
    margin-bottom:40px;
}

.impact-btn{
    display:inline-flex;
    align-items:center;
    gap:12px;
    background:#fff;
    color:#111;
    text-decoration:none;
    padding: 10px 23px;
    border-radius:50px;
    font-size:18px;
    font-weight:500;
    transition:.4s;
}

.impact-btn:hover{
    background:#000;
    color: #fff;
    transform:translateY(-3px);
}

/*==============================*/

.impact-box-area{

    width:52%;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;
}

.impact-box{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.12);

    border-radius:18px;

    padding:35px;

    min-height:135px;

    transition:.35s;
}

.impact-box:hover{

    transform:translateY(-6px);

    border-color:#d46c4f;

}

.impact-box h3{

    font-family:'DM Serif Display',serif;

    color:#d46c4f;

    font-size:52px;

    font-weight:400;


}

.impact-box p{

    color:#e5f1ef;

    font-size:17px;

    line-height:1.6;
}

/*==============================*/

@media(max-width:991px){

.impact-wrapper{

    flex-direction:column;

}

.impact-content,

.impact-box-area{

    width:100%;
}

.impact-main-title{

    font-size:48px;
}

}

/*==============================*/

@media(max-width:768px){

.impact-area{

    padding:60px 0;
}

.impact-main-title{

    font-size:36px;
}

.impact-description{

    font-size:16px;
}

.impact-box-area{

    grid-template-columns:1fr;
}

.impact-box{

    padding:28px;
}

.impact-box h3{

    font-size:42px;
}

.impact-btn{

    padding:15px 26px;

    font-size:16px;
}

}
/* 4th section */


img{

    width:100%;

    display:block;
}

/*=============================*/

.field-gallery-sec{

    padding:80px 0;
}

.field-gallery-wrap{

    width:92%;

    max-width:1280px;

    margin:auto;
}

/*=============================*/

.field-gallery-top{

    display:flex;

    justify-content:space-between;

    align-items:flex-start;

    margin-bottom:45px;
}

.field-gallery-heading span{

    display:block;

    color:#d86b39;

    letter-spacing:5px;

    font-size:14px;

    font-weight:600;

    margin-bottom:15px;
}

.field-gallery-heading h2{

    font-family:'DM Serif Display',serif;

    font-size:55px;

    font-weight:400;

    color:#014d59;

    line-height:1.05;
}

.field-gallery-link{

    text-decoration:none;

    color:#014d59;

    font-size:16px;

    font-weight:500;

    margin-top:32px;

    transition:.3s;
}

.field-gallery-link:hover{

    color:#d86b39;
}

/*=============================*/

.field-gallery-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:22px;
}

.field-gallery-item{
    cursor:pointer;
}

.gallery-img {
    overflow:hidden;
    border-radius:20px;
    height:320px;
    margin-bottom: 25px;
}

.gallery-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.field-gallery-item:hover .gallery-img img{
    transform:scale(1.08);
}

.gallery-cat {
    display: block;
    color: #d86b39;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.gallery-text h4 {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: #014d59;
    line-height: 1.4;
}

/*=============================*/

@media(max-width:991px){

.field-gallery-top{

    flex-direction:column;

    gap:20px;
}

.field-gallery-heading h2{

    font-size:48px;
}

.field-gallery-link{

    margin-top:0;
}

.field-gallery-grid{

    grid-template-columns:repeat(2,1fr);
}

.field-gallery-item:last-child{

    grid-column:span 2;
}

}

/*=============================*/

@media(max-width:767px){

.field-gallery-sec{

    padding:60px 0;
}

.field-gallery-heading h2{

    font-size:36px;
}

.field-gallery-grid{

    grid-template-columns:1fr;
}

.gallery-img {
    height:250px;
}

.field-gallery-item:last-child{

    grid-column:auto;
}

.field-gallery-link{

    font-size:18px;
}

}
/* 5th section */


.donation-cta-section{

    padding:35px;
}

.donation-cta-wrapper{

    max-width:1240px;

    margin:auto;

    background:#ddd;

    border-radius:22px;

    padding:65px 65px 65px 65px;

    min-height:420px;

    display:flex;

    flex-direction:column;

    justify-content:center;
}

/*========================*/

.donation-small-heading{

    color:#a34d12;

    font-size:15px;

    letter-spacing:5px;

    font-weight:600;

    text-transform:uppercase;

    margin-bottom:20px;
}

.donation-main-heading{

    max-width:720px;

    font-family:'DM Serif Display',serif;

    color:#004d5b;

    font-size:50px;

    font-weight:400;

    line-height:1.08;

    margin-bottom:26px;
}

.donation-text{

    max-width:650px;

    color:#074c58;

    font-size:18px;

    line-height:1.7;

    margin-bottom:40px;
}

/*========================*/

.donation-button-group{

    display:flex;

    align-items:center;

    gap:18px;

    flex-wrap:wrap;
}

.donation-btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    background:#014d59;

    color:#fff;

    padding:12px 34px;

    border-radius:50px;

    font-size:18px;

    font-weight:600;

    transition:.35s;
}

.donation-btn-primary:hover{

    background:#013943;

    transform:translateY(-4px);
}

.donation-btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    border:1.5px solid rgba(0,77,89,.45);

    color:#014d59;

    padding:12px 34px;

    border-radius:50px;

    font-size:18px;

    font-weight:500;

    transition:.35s;
}

.donation-btn-outline:hover{

    background:#014d59;

    color:#fff;
}

/*========================*/

@media(max-width:991px){

.donation-cta-wrapper{

    padding:55px 40px;
}

.donation-main-heading{

    font-size:50px;
}

}

/*========================*/

@media(max-width:767px){

.donation-cta-section{

    padding:20px;
}

.donation-cta-wrapper{

    padding:40px 25px;

    min-height:auto;
}

.donation-main-heading{

    font-size:36px;
}

.donation-text{

    font-size:16px;
}

.donation-button-group{

    flex-direction:column;

    align-items:flex-start;
}

.donation-btn-primary,

.donation-btn-outline{

    width:100%;

    justify-content:center;
}

}
/* about */
.mainbanner{
    background-image: url(../img/WhatsApp\ Image\ 2026-07-09\ at\ 6.48.18\ PM.jpeg);
    background-size: cover;
    background-position: center;
    height: 60vh;
    position: relative;
}

.container {
    position: relative;
    z-index: 2;
}

.bannerbox {
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bannerbox h1 {
    color: #fff;
    font-size: 60px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}
.mainbanner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0, 0, 0, 0.65),
        rgba(0, 0, 0, 0.45)
    );
    z-index: 1;
}
/* 2section */
.history-section{
    padding:100px 0;
    background:#f8fafc;
}

.history-section .container-about{
    max-width:1200px;
    width:90%;
    margin:auto;
}

.history-heading{
    text-align:center;
    margin-bottom:60px;
}

.history-subtitle{
    display:inline-block;
    color: #d46c4f;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.history-heading h2{
    font-size:42px;
    color:#1d2939;
    font-weight:700;
    margin-bottom:10px;
}

.history-title{
    font-size:24px;
    color:#d46c4f;
    font-weight:600;
}

.history-content{
    background:#fff;
    padding:50px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-left:6px solid #d46c4f;
}

.history-content p{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
    text-align:justify;
}

.history-content p:last-child{
    margin-bottom:0;
}

.history-content strong{
    color:#1d2939;
}

@media(max-width:991px){

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

.history-content{
    padding:35px;
}

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

}

@media(max-width:767px){

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

.history-content{
    padding:25px;
}

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

.history-title{
    font-size:20px;
}

.history-content p{
    font-size:16px;
    line-height:1.8;
}

}
/* 3section */
.activities-section{
    padding:100px 0;
    background:#f4f8f5;
}

.activities-section .container{
    width:90%;
    max-width:1320px;
    margin:auto;
}

.activities-heading{
    text-align:center;
    margin-bottom:60px;
}

.activities-heading span{
    display:inline-block;
    color: #d46c4f;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.activities-heading h2{
    font-size:42px;
    color:#1d2939;
    margin-bottom:15px;
}

.activities-heading p{
    color:#666;
    font-size:18px;
}

.activities-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.activity-card{
    position:relative;
    background:#fff;
    padding:35px;
    border-radius:20px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    border-top:5px solid #d46c4f;
}

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

.activity-number{
    position:absolute;
    top:25px;
    right:25px;
    width:60px;
    height:60px;
    background:#045a58;
    color:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    font-weight:700;
}

.activity-card h3{
    font-size:24px;
    color:#1d2939;
    line-height:1.4;
    margin-bottom:20px;
    padding-right:70px;
}

.activity-card p{
    color:#666;
    line-height:1.9;
    font-size:16px;
    text-align:justify;
}

@media(max-width:991px){

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

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

}

@media(max-width:767px){

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

.activities-grid{
    grid-template-columns:1fr;
}

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

.activity-card h3{
    font-size:21px;
    padding-right:60px;
}

.activity-number{
    width:50px;
    height:50px;
    font-size:18px;
}

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

.activities-heading p{
    font-size:16px;
}

}
/* 4section */
.team-section{
    padding:100px 0;
    background:#f8fafc;
}

.team-section .container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.team-heading{
    text-align:center;
    margin-bottom:60px;
}

.team-heading .sub-title{
    color:#d46c4f;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.team-heading h2{
    font-size:42px;
    margin:15px 0;
    color:#1d2939;
}

.team-heading p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

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

.team-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.4s;
}

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

.team-image{
    overflow:hidden;
}

.team-image img{
    width:100%;
    height:330px;
    object-fit:cover;
    transition:.5s;
}

.team-card:hover img{
    transform:scale(1.08);
}

.team-content{
    padding:25px;
    text-align:center;
}

.team-content h3{
    font-size:24px;
    color:#1d2939;
    margin-bottom:8px;
}

.team-content span{
    color:#d46c4f;
    font-weight:600;
    display:block;
    margin-bottom:20px;
}

.team-social{
    display:flex;
    justify-content:center;
    gap:12px;
}

.team-social a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#eef7f1;
    color:#045a58;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    transition:.3s;
}

.team-social a:hover{
    background:#045a58;
    color:#fff;
}

@media(max-width:991px){

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

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

}

@media(max-width:767px){

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

.team-grid{
    grid-template-columns:1fr;
}

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

.team-image img{
    height:300px;
}

}
/* contact us */
.contact-section{
    padding:100px 0;
    background:#f7f9fc;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.contact-heading{
    text-align:center;
    margin-bottom:60px;
}

.contact-heading span{
    color:#045a58;
    text-transform:uppercase;
    font-weight:700;
    letter-spacing:2px;
}

.contact-heading h2{
    font-size:42px;
    color:#1d2939;
    margin:15px 0;
}

.contact-heading p{
    max-width:650px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.contact-wrapper{
    display:grid;
    grid-template-columns:380px 1fr;
    gap:40px;
}

.contact-info{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.info-box{
    background:#fff;
    padding:25px;
    display:flex;
    gap:18px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.4s;
}

.info-box:hover{
    transform:translateY(-6px);
}

.icon{
    width:65px;
    height:65px;
    background:#00473e;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}
.icon i{
    color: #fff;
}

.info-box h3{
    margin-bottom:8px;
    color:#1d2939;
}

.info-box p{
    color:#666;
    line-height:1.7;
}

.contact-form{
    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:20px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#00473e;
}

.contact-form textarea{
    height:180px;
    resize:none;
    margin-bottom:20px;
}

.contact-form button{
    background:#00473e;
    color:#fff;
    border:none;
    padding:16px 40px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
    transition:.3s;
}

.contact-form button:hover{
    background:#00473e;
}

.contact-map{
    width:100%;
    height:500px;
}

.contact-map iframe{
    width:100%;
    height:100%;
    border:0;
}

@media(max-width:991px){

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

}

@media(max-width:768px){

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

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

.form-row{
    grid-template-columns:1fr;
}

.contact-form{
    padding:25px;
}

.contact-map{
    height:350px;
}

}
@media(max-width: 600px){
.logo-text h2{
    font-size: 25px;
}
.header .logo-icon {
    width: 30px;
    height: 30px;
}
.btn{
   padding: 10px 25px;
}
.banner-stats {
   flex-wrap: wrap;
   gap: 17px;
}
.footer .container{
    display: block;
    padding-bottom: 0px;
}
.footer-box{
    margin-top: 25px;
}
.footer{
    padding-bottom: 50px;
}
.bottom-content p{
    margin-bottom: 10px;
}
}
/* home */
.achievement-section{
    padding:100px 0;
    background:#f5f8f7;
}

.achievement-section .container{
    width:90%;
    max-width:1320px;
    margin:auto;
}

.achievement-heading{
    text-align:center;
    margin-bottom:70px;
}

.achievement-heading span{
    display:inline-block;
    color:#d46c4f;
    text-transform:uppercase;
    letter-spacing:2px;
    font-weight:700;
    margin-bottom:15px;
}

.achievement-heading h2{
    font-size:42px;
    color:#1b2939;
    margin-bottom:15px;
}

.achievement-heading p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.achievement-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.achievement-card{
    background:#fff;
    border-radius:20px;
    padding:35px;
    position:relative;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.achievement-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:6px;
    height:100%;
    background:#d46c4f;
}

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

.achievement-count{
    position:absolute;
    top:25px;
    right:25px;
    font-size:55px;
    font-weight:800;
    color:#e9f4ed;
    line-height:1;
}

.achievement-content h3{
    font-size:25px;
    color:#1b2939;
    margin-bottom:18px;
    padding-right:70px;
}

.achievement-content p{
    color:#666;
    line-height:1.9;
    text-align:justify;
}

.achievement-content ul{
    margin-top:15px;
    padding-left:22px;
}

.achievement-content li{
    margin-bottom:12px;
    color:#666;
    line-height:1.8;
}

@media(max-width:992px){

.achievement-grid{
    grid-template-columns:1fr;
}

}

@media(max-width:768px){

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

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

.achievement-card{
    padding:28px;
}

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

.achievement-count{
    font-size:40px;
}

}
/* 2 */
.internship-section{
    padding:100px 0;
    background:#f6faf8;
}

.container{
    width:90%;
    max-width:1280px;
    margin:auto;
}

.intern-heading{
    text-align:center;
    margin-bottom:60px;
}

.intern-heading span{
    display:inline-block;
    color:#d46c4f;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.intern-heading h2{
    font-size:46px;
    margin:15px 0;
    color:#1c2938;
}

.intern-heading h4{
    color: #d46c4f;
    margin-bottom:12px;
}

.intern-heading p{
    color:#666;
}

.intro-card{
    background:#fff;
    padding:45px;
    border-radius:18px;
    box-shadow:0 20px 45px rgba(0,0,0,.08);
    margin-bottom:60px;
}

.intro-card p{
    color:#555;
    line-height:1.8;
    font-size:16px;
    text-align:justify;
}

.responsibility-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    margin-bottom:60px;
}

.responsibility-grid .card{
    background:#fff;
    padding:30px;
    border-radius:18px;
    border-top:5px solid #d46c4f;
    transition:.4s;
}

.responsibility-grid .card h4{
    margin-bottom: 12px;
    color: #014d59;
    font-size: 20px;
}

.responsibility-grid .card p{
    color: #666;
    line-height: 1.6;
}

.responsibility-grid .card:hover{
    transform:translateY(-8px);
}

.two-column{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:35px;
    margin-bottom:60px;
}

.eligibility-card,
.candidate-card{
    background:#fff;
    padding:40px;
    border-radius:18px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.eligibility-card h3,
.candidate-card h3{
    margin-bottom:25px;
    color:#014d59;
}

.eligibility-card ul,
.candidate-card ul{
    padding-left:22px;
}

.eligibility-card li,
.candidate-card li{
    margin-bottom:14px;
    line-height:1.8;
}

.intern-work{
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 20px 50px rgba(0,0,0,.08);
}

.intern-work h3{
    margin-bottom:30px;
    color:#014d59;
}

.intern-work ul{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    list-style:none;
    padding:0;
}

.intern-work li{
    background:#f4faf7;
    padding:18px 20px;
    border-left:4px solid #d46c4f;
    border-radius:10px;
}

.intern-footer{
    margin-top:70px;
    background: #045a58;
    color:#fff;
    padding:70px;
    border-radius:25px;
    text-align:center;
}

.intern-footer h2{
    font-size:40px;
    line-height:1.4;
}

@media(max-width:992px){

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

.two-column{
grid-template-columns:1fr;
}

.intern-work ul{
grid-template-columns:1fr;
}

}

@media(max-width:768px){

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

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

.responsibility-grid{
grid-template-columns:1fr;
}

.intro-card,
.eligibility-card,
.candidate-card,
.intern-work{
padding:25px;
}

.intern-footer{
padding:45px 25px;
}

.intern-footer h2{
font-size:28px;
}

}

/* Awareness Section */
.awareness-section {
    padding: 100px 0;
    background: #fdfaf6;
}

.awareness-heading {
    text-align: center;
    margin-bottom: 60px;
}

.awareness-heading span {
    display: inline-block;
    color: #d46c4f;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.awareness-heading h2 {
    font-size: 42px;
    color: #1d2939;
    margin-bottom: 15px;
}

.awareness-heading p {
    color: #666;
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

.awareness-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.awareness-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,.06);
    border-left: 6px solid #d46c4f;
    transition: .4s;
}

.awareness-card.full-width {
    grid-column: span 2;
}

.awareness-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,.12);
}

.awareness-card h3 {
    font-size: 28px;
    color: #1d2939;
    margin-bottom: 20px;
    font-family: 'DM Serif Display', serif;
}

.awareness-card p {
    color: #555;
    line-height: 1.8;
    font-size: 16px;
    margin-bottom: 15px;
    text-align: justify;
}

.awareness-card h4 {
    font-size: 18px;
    color: #045a58;
    margin-bottom: 15px;
    margin-top: 20px;
}

.awareness-card ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.awareness-card ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 16px;
}

.awareness-highlight-box {
    background: #f4f8f5;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e1eee7;
    margin-top: 20px;
}

.awareness-highlight-box p {
    margin-bottom: 0;
    color: #045a58;
    font-weight: 500;
}

@media(max-width: 991px) {
    .awareness-grid {
        grid-template-columns: 1fr;
    }
    
    .awareness-card.full-width {
        grid-column: span 1;
    }

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

@media(max-width: 767px) {
    .awareness-section {
        padding: 60px 0;
    }
    
    .awareness-heading h2 {
        font-size: 28px;
    }
    
    .awareness-card {
        padding: 25px;
    }
    
    .awareness-card h3 {
        font-size: 22px;
    }
}
/* Gallery */
.gallery-section{
    padding:100px 0;
    background:#f6f8f7;
}

.gallery-section .container{
    width:90%;
    max-width:1300px;
    margin:auto;
}

.gallery-heading{
    text-align:center;
    margin-bottom:60px;
}

.gallery-heading span{
    color:#198754;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
}

.gallery-heading h2{
    font-size:46px;
    color:#222;
    margin:18px 0;
}

.gallery-heading p{
    max-width:720px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.gallery-filter{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:50px;
}

.gallery-filter button{
    padding:12px 28px;
    border:none;
    border-radius:40px;
    background:#fff;
    cursor:pointer;
    font-weight:600;
    transition:.4s;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.gallery-filter button.active,
.gallery-filter button:hover{

    background:#198754;
    color:#fff;

}

.gallery-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:260px;
    gap:20px;

}

.gallery-item{

    position:relative;
    overflow:hidden;
    border-radius:20px;

}

.gallery-item img{

    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;

}

.gallery-item:hover img{

    transform:scale(1.12);

}

.overlay{

    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:linear-gradient(to top,rgba(0,0,0,.75),transparent);
    display:flex;
    align-items:flex-end;
    padding:30px;
    opacity:0;
    transition:.5s;

}

.gallery-item:hover .overlay{

    opacity:1;

}

.overlay h3{

    color:#fff;
    font-size:22px;

}

.large{

    grid-column:span 2;

}

.tall{

    grid-row:span 2;

}

.wide{

    grid-column:span 2;

}

@media(max-width:992px){

.gallery-grid{

grid-template-columns:repeat(2,1fr);

}

.large,
.wide{

grid-column:span 1;

}

.tall{

grid-row:span 1;

}

}

@media(max-width:768px){

.gallery-section{

padding:70px 0;

}

.gallery-heading h2{

font-size:32px;

}

.gallery-grid{

grid-template-columns:1fr;

grid-auto-rows:280px;

}

}
/* blog page */



/* Banner */

/* .blog-banner{

background:url(images/blog-banner.jpg) center/cover;

height:420px;

position:relative;

display:flex;

align-items:center;

}

.banner-overlay{

position:absolute;

inset:0;

background:rgba(0,0,0,.6);

}

.banner-content{

position:relative;

color:#fff;

max-width:700px;

z-index:2;

}

.banner-content span{

background:#0d6efd;

padding:8px 18px;

border-radius:30px;

font-size:14px;

font-weight:600;

display:inline-block;

margin-bottom:20px;

}

.banner-content h1{

font-size:55px;

font-weight:700;

margin-bottom:20px;

}

.banner-content p{

font-size:17px;

line-height:30px;

opacity:.9;

} */



/* Filter */

.blog-filter{

padding:40px 0;

background:#fff;

}

.filter-area{

display:flex;

gap:20px;

flex-wrap:wrap;

justify-content:center;

}

.filter-area input,

.filter-area select{

padding:15px;

width:280px;

border:1px solid #ddd;

border-radius:8px;

outline:none;

font-size:15px;

}

.filter-area button{

padding:15px 40px;

background: #00473e;

color:#fff;

border:none;

border-radius:8px;

cursor:pointer;

font-weight:600;

transition:.3s;

}

.filter-area button:hover{

background:#003fa5;

}



/* Blog */

.blog-section{

padding:80px 0;

}

.blog-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.blog-card{

background:#fff;

border-radius:15px;

overflow:hidden;

transition:.4s;

box-shadow:0 8px 25px rgba(0,0,0,.08);

}

.blog-card:hover{

transform:translateY(-10px);

box-shadow:0 15px 40px rgba(0,0,0,.15);

}

.blog-img{

position:relative;

overflow:hidden;

}

.blog-img img{

width:100%;

height:240px;

object-fit:cover;

transition:.5s;

display:block;

}

.blog-card:hover img{

transform:scale(1.08);

}

.category{

position:absolute;

left:20px;

top:20px;

background: #00473e;

color:#fff;

padding:8px 18px;

font-size:13px;

border-radius:30px;

font-weight:600;

}

.blog-content{

padding:25px;

}

.blog-meta{

display:flex;

justify-content:space-between;

font-size:14px;

color:#777;

margin-bottom:18px;

}

.blog-content h3{
font-size: 20px;
margin-bottom: 15px;
line-height: 27px;
}

.blog-content p{

color:#666;

line-height:28px;

margin-bottom:20px;

}

.blog-content a{

display:inline-block;

text-decoration:none;

color: #00473e;

font-weight:600;

transition:.3s;

}

.blog-content a:hover{

padding-left:10px;

}



/* Responsive */

@media(max-width:992px){

.blog-grid{

grid-template-columns:repeat(2,1fr);

}

.banner-content h1{

font-size:42px;

}

}

@media(max-width:768px){

.blog-grid{

grid-template-columns:1fr;

}

.filter-area{

flex-direction:column;

}

.filter-area input,
.filter-area select,
.filter-area button{

width:100%;

}

.banner-content h1{

font-size:34px;

}

.banner-content p{

font-size:15px;

line-height:26px;

}

.blog-banner{

height:320px;

}

}
