

.front {
    position: relative;
}

.front img {
    width: 100%;
    height: 200px;
}

.fronttext {
    position: absolute;
    top: 0px;
    left: 0px;
    color: white;
    font-size: 30px;
    background-color: rgba(75, 2, 2, 0.43);
    width: 100%;
    height: 200px;
}

.fronttext h1 {
    padding-left: 30px;
    padding-top: 50px;
}

.ourimg img {
    width: 600px;
    height: 380px;
    border-radius: 20px;
}

.ourimg {
    padding-top: 50px;
    padding-left: 50px;

}

.ourstory {
    display: grid;
    grid-template-columns: 700px 750px;

}

.ourtext {
    padding-top: 50px;

}

.ourtext p {
    text-align: justify;
}

.ourtext h1 {
    color: #f5a623;
}


/* media here about header */

@media (max-width: 768px) {

    .front img {
        height: 200px;
    }

    .fronttext {
        height: 200px;
        font-size: 20px;
    }

    .fronttext h1 {
        padding-left: 20px;
        padding-top: 70px;
        font-size: 32px;
    }

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

    .ourimg {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 30px;
    }

    .ourimg img {
        width: 100%;
        height: auto;
    }

    .ourtext {
        padding: 20px 15px;
    }

    .ourtext h1 {
        font-size: 32px;
    }

    .ourtext p {
        text-align: justify;
        font-size: 16px;
        line-height: 1.6;
    }
}

/* media close header */

.about-section {
    width: 80%;
    margin: 50px 50px;
}

.box {
    margin-bottom: 60px;
}

.box h2 {
    font-size: 32px;
    font-weight: bold;
    color: #4b2c20;
    margin-bottom: 15px;
}

.box p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;

}

.about-section h2 {
    color: #f5a623;
}

/* media box our mission  */
/* Tablet */
@media (max-width: 768px) {

    .about-section {
        width: 90%;
    }

    .box h2 {
        font-size: 26px;
    }

    .box h2::after {
        width: 80px;
    }

    .box p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 480px) {

    .about-section {
        width: 95%;
        margin: 30px auto;
    }

    .box {
        margin-bottom: 40px;
    }

    .box h2 {
        font-size: 22px;
        padding-right: 10px;

    }

    .box h2::after {
        width: 50px;
    }

    .box p {
        font-size: 14px;
        line-height: 1.6;
        text-align: justify;
    }
}

/* media close  our mission  */
.core-values {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    text-align: center;
}

.core-values h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.values-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    border: 1px solid #eee;
    padding: 30px 20px;
    background: #fff;
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.icon {
    font-size: 45px;
    margin-bottom: 15px;
	justify-content:center;
    align-items:center;
}

.value-card h3 {
    font-size: 20px;
    color: #222;
}

/* media start here core values  */
/* Tablet */
@media (max-width: 768px) {

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

    .core-values h2 {
        font-size: 30px;
    }

    .icon {
        font-size: 40px;
		justify-content:center;
    align-items:center;
    }
}

/* Mobile */
@media (max-width: 480px) {

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

    .core-values {
        width: 95%;
    }

    .core-values h2 {
        font-size: 24px;
    }

    .value-card {
        padding: 25px 15px;
    }

    .value-card h3 {
        font-size: 18px;
    }
}

/* media close here value */
.team-section {
    width: 90%;
    max-width: 1200px;
    margin: 80px auto;
    text-align: center;
}

.team-section h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 40px;
}

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

.team-card {
    background: #fff;
}

.team-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 4px;
}

.team-card h3 {
    margin-top: 15px;
    font-size: 20px;
    color: #222;
}

.team-card p {
    font-size: 16px;
    color: #777;
    margin-top: 5px;
}

/* media start here team */
/* Tablet */
@media(max-width:768px) {

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

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

    .team-card img {
        height: 220px;
    }
}

/* Mobile */
@media(max-width:480px) {

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

    .team-section {
        width: 95%;
    }

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

    .team-card img {
        height: 280px;
    }

    .team-card h3 {
        font-size: 18px;
    }

    .team-card p {
        font-size: 14px;
    }
}

/* team media end */

.cta-section {
    background: #6a3a08;
    padding: 35px 40px;
    position: relative;
    margin-top: 60px;
}

.cta-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cta-text h2 {
    color: #fff;
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-text p {
    color: #f5f5f5;
    font-size: 16px;
}

.cta-btn {
    background: #f7b84b;
    color: #000;
    text-decoration: none;
    padding: 14px 30px;
    font-weight: 600;
    border-radius: 5px;
    transition: .3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
}
/*==================================
PAGE BANNER
==================================*/

.page-banner{
    position:relative;
    width:100%;
    height:350px;
    background-image:url("../images/about.png");
	background-size:cover;
    display:flex;
    align-items:center;
	background-position:center;
	background-repeat:no-repeat;
}



.banner-content{
    position:relative;
    z-index:2;
    width:90%;
    margin:auto;
    color:#fff;
}

.banner-content h1{
    font-size:46px;
    margin-bottom:10px;
}

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

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

.banner-content span{
    color:#f5a623;
}


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

.about-section{
    width:90%;
    margin:80px auto;
}

.about-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

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

.about-content span{
    display:inline-block;
    color:#f5a623;
    font-size:16px;
    font-weight:600;
    margin-bottom:10px;
    text-transform:uppercase;
    letter-spacing:1px;
}

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

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

.about-btn{
    display:inline-block;
    padding:14px 32px;
    background:#f5a623;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-weight:600;
    transition:.3s;
}

.about-btn:hover{
    background:#d99000;
}

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

.about-image img{
    width:100%;
    display:block;
    border-radius:10px;
    object-fit:cover;
    box-shadow:0 10px 30px rgba(0,0,0,.12);
}

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

@media(max-width:768px){

    .about-section{
        width:92%;
        margin:50px auto;
    }

    .about-container{
        grid-template-columns:1fr;
        gap:30px;
    }

    /* Image First */
    .about-image{
        order:1;
    }

    .about-content{
        order:2;
        text-align:center;
    }

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

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

}
/*==============================
SERVICES SECTION
==============================*/

.services-section{
    width:90%;
    margin:80px auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#f5a623;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:40px;
    margin:15px 0;
    color:#222;
}

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

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

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

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

.service-card{
    background:#fff;
    border-radius:10px;
    overflow:hidden;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.service-card img{
    width:100%;
    height:400px;
    object-fit:cover;
    display:block;
}

.service-content{
    padding:25px;
}

.service-content h3{
    font-size:28px;
    margin-bottom:15px;
    color:#222;
}

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

.service-content a{
    display:inline-block;
    padding:12px 26px;
    background:#f5a623;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    transition:.3s;
}

.service-content a:hover{
    background:#dd9500;
}

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

@media(max-width:991px){

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

}

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

@media(max-width:768px){

.page-banner{
    height:180px;
	background-position:75% center;
}

.banner-content{
    width:92%;
}

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

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

.services-section{
    width:92%;
    margin:50px auto;
}

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

.section-title p{
    font-size:15px;
}

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

.service-card img{
    height:220px;
}

.service-content{
    padding:20px;
}

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

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

.service-content a{
    width:100%;
    text-align:center;
}

}/*==================================
GALLERY SECTION
==================================*/

.gallery-section{
    width:100%;
    margin:20px auto;
}


/*==================================
FILTER BUTTONS
==================================*/

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

.gallery-filter button{
    padding:12px 25px;
    border:none;
    background:#f3f3f3;
    color:#222;
    font-size:15px;
    border-radius:6px;
    cursor:pointer;
    transition:.3s;
}

.gallery-filter button:hover,
.gallery-filter button.active{
    background:#f5a623;
    color:#fff;
}


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

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

.gallery-item{
    overflow:hidden;
    border-radius:8px;
    cursor:pointer;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:230px;
    object-fit:cover;
    display:block;
    transition:.4s;
}

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


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

@media(max-width:991px){

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

}


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

@media(max-width:768px){

.page-banner{
    height:180px;
}

.banner-content{
    width:92%;
}

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

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

.gallery-section{
    width:100%;
    margin:10px auto;
}

.gallery-filter{
    justify-content:flex-start;
    overflow-x:auto;
    flex-wrap:nowrap;
    padding-bottom:10px;
}

.gallery-filter::-webkit-scrollbar{
    display:none;
}

.gallery-filter button{
    white-space:nowrap;
}

.gallery-grid{
    grid-template-columns:repeat(1,1fr);
    gap:12px;
}

.gallery-item img{
    height:250px;
}

}
/*==================================
DONATION SECTION
==================================*/

.donation-section{
    width:90%;
    margin:80px auto;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title span{
    color:#f5a623;
    font-weight:600;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-title h2{
    font-size:40px;
    color:#222;
    margin:15px 0;
}

.section-title p{
    max-width:750px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

/*==================================
DONATION CARDS
==================================*/

.donation-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:50px;
}

.donation-card{
    background:#fff;
    border-radius:10px;
    text-align:center;
    padding:35px 25px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

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

.donation-card h3{
    color:#f5a623;
    font-size:36px;
    margin-bottom:15px;
}

.donation-card p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.donation-btn{
    display:inline-block;
    padding:12px 28px;
    background:#f5a623;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    transition:.3s;
    font-weight:600;
}

.donation-btn:hover{
    background:#dd9500;
}

/*==================================
PAYMENT SECTION
==================================*/

.payment-section{
    width:90%;
    margin:80px auto;
}

.payment-wrapper{
    display:grid;
    grid-template-columns:350px 1fr;
    gap:40px;
    align-items:start;
}

/* QR BOX */

.qr-box{
    background:#fff;
    padding:25px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.qr-box img{
    width:220px;
    max-width:100%;
}

.qr-box h3{
    margin-bottom:20px;
}

/* BANK DETAILS */

.bank-box{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.bank-box h3{
    margin-bottom:20px;
}

.bank-box table{
    width:100%;
    border-collapse:collapse;
}

.bank-box td{
    padding:14px 10px;
    border-bottom:1px solid #eee;
}

.bank-box td:first-child{
    width:180px;
    font-weight:600;
}

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

@media(max-width:991px){

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

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

}

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

@media(max-width:768px){

.page-banner{
    height:180px;
}

.banner-content{
    width:92%;
}

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

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

.donation-section,
.payment-section{
    width:92%;
    margin:50px auto;
}

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

.section-title p{
    font-size:15px;
}

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

.donation-card{
    padding:25px 20px;
}

.donation-card h3{
    font-size:30px;
}

.payment-wrapper{
    gap:25px;
}

.bank-box{
    overflow-x:auto;
    padding:20px;
}

.bank-box table{
    min-width:500px;
}

.qr-box img{
    width:180px;
}

}
/*==================================
CONTACT SECTION
==================================*/

.contact-section{
    width:90%;
    margin:80px auto;
}

.contact-container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:50px;
    align-items:start;
}

/*==================================
LEFT SIDE
==================================*/

.contact-info h2{
    font-size:38px;
    color:#222;
    margin-bottom:20px;
}

.contact-info p{
    color:#666;
    line-height:1.8;
    margin-bottom:30px;
}

.info-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    margin-bottom:25px;
}

.info-box i{
    width:50px;
    height:50px;
    background:#f5a623;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
}

.info-box h4{
    margin-bottom:6px;
    color:#222;
}

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

/*==================================
CONTACT FORM
==================================*/

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

.contact-form form{
    display:flex;
    flex-direction:column;
    gap:18px;
}

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

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

.contact-form textarea{
    resize:none;
    min-height:180px;
}

.contact-form button{
    background:#f5a623;
    color:#fff;
    border:none;
    padding:15px;
    border-radius:6px;
    font-size:16px;
    cursor:pointer;
    transition:.3s;
}

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

/*==================================
GOOGLE MAP
==================================*/

.map-section{
    width:90%;
    margin:0 auto 80px;
}

.map-section iframe{
    width:100%;
    height:450px;
    border:none;
    border-radius:10px;
}

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

@media(max-width:991px){

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

}

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

@media(max-width:768px){

.page-banner{
    height:180px;
}

.banner-content{
    width:92%;
}

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

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

.contact-section{
    width:92%;
    margin:50px auto;
}

.contact-container{
    gap:30px;
}

.contact-info{
    text-align:center;
}

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

.info-box{
    flex-direction:column;
    align-items:center;
    text-align:center;
}

.contact-form{
    padding:25px;
}

.map-section{
    width:92%;
}

.map-section iframe{
    height:300px;
}

}
/*==============================
DONATION BUTTONS
==============================*/

.donation-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
    margin-top:40px;
}

.donation-buttons a{
    display:inline-block;
    min-width:170px;
    padding:15px 30px;
    background:#f5a623;
    color:#fff;
    text-align:center;
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    border-radius:8px;
    transition:0.3s ease;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.donation-buttons a:hover{
    background:#d99000;
    transform:translateY(-5px);
    box-shadow:0 12px 25px rgba(0,0,0,.18);
}

.donation-buttons a:active{
    transform:scale(.97);
}
/*==================================
DONATION GRID
==================================*/

.donation-grid{
    width:90%;
    margin:60px auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

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

.donation-card{
    background:#fff;
    padding:35px 25px;
    border-radius:10px;
    text-align:center;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    transition:0.3s ease;
    border-top:4px solid #f5a623;
}

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

.donation-card h3{
    font-size:25px;
    color:#f5a623;
    margin-bottom:15px;
    font-weight:700;
}

.donation-card p{
    color:#666;
    font-size:16px;
    line-height:1.8;
    margin-bottom:25px;
}

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

.donate-btn{
    display:inline-block;
    padding:12px 28px;
    background:#f5a623;
    color:#fff;
    text-decoration:none;
    border-radius:6px;
    font-size:16px;
    font-weight:600;
    transition:0.3s ease;
}

.donate-btn:hover{
    background:#d88d00;
    transform:translateY(-3px);
}

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

@media(max-width:992px){

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

}

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

@media(max-width:768px){

    .donation-grid{
        width:92%;
        grid-template-columns:1fr;
        gap:20px;
    }

    .donation-card{
        padding:30px 20px;
    }

    .donation-card h3{
        font-size:32px;
    }

    .donation-card p{
        font-size:15px;
    }

    .donate-btn{
        width:100%;
        text-align:center;
    }

}