﻿*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Noto Sans Devanagari',sans-serif;
    overflow-x:hidden;
    background:#f8f3e8;
}

img{
    width:100%;
    display:block;
}

a{
    text-decoration:none;
}

.scope-container{
    width:100%;
    max-width:1200px;
    margin:auto;
    padding:0 20px;
}

/* =========================
TOP HEADER
========================= */

.dh-topbar{
    width:100%;
    background:#E65100 ;
    color:#fff;
    font-size:14px;
    padding:8px 0;
}

.dh-topbar-wrapper{
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
    gap:15px;
}

.dh-top-left,
.dh-top-right{
    display:flex;
    align-items:center;
    gap:25px;
}

/* =========================
MAIN HEADER
========================= */

.dh-header{
    width:100%;
    background:#f5f5f5;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
    position:sticky;
    top:0;
    z-index:999;
}

.dh-navbar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 0;
}

/* LOGO */

.dh-logo{
    display:flex;
    align-items:center;
    gap:14px;
}

.dh-logo-icon img{
    width:100px;
    height:100px;
   padding:5px;
}

.dh-logo-text h2{
    font-size:28px;
    color:#E65100;
    line-height:1.2;
}

.dh-logo-text span{
    font-size:14px;
    color:#BF5B17;
}

/* MENU */

.dh-menu{
    display:flex;
    align-items:center;
    gap:38px;
}

.dh-menu a{
    color:#3e2515;
    font-weight:500;
    transition:0.3s;
}
/*.dh-menu .active{
    color:#E65100;
    font-weight:500;
    transition:0.3s;
    padding-bottom:5px;
    border-bottom:2px solid #E65100;
}*/
.dh-menu a:hover{
    color:#E65100;
     padding-bottom:15px;
    border-bottom:2px solid #E65100;
}

/* BUTTON */

.dh-btn{
    padding:7px 15px;
    background:#E65100;
    color:#fff;
    border-radius:40px;
    font-weight:500;
    transition:0.3s;
}

.dh-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(255,122,20,0.35);
}
/* =========================
RESPONSIVE CSS
========================= */

@media(max-width:1100px){

    .dh-menu{
        gap:20px;
    }

    .dh-hero-content h1{
        font-size:64px;
    }
    .dh-btn{
    padding:7px 15px;
    background:#E65100;
    color:#fff;
    border-radius:40px;
    font-weight:500;
    transition:0.3s;
}

}

@media(max-width:991px){

    .dh-navbar{
        flex-direction:column;
        gap:15px;
    }

    .dh-menu{
         gap:18px;
        flex-wrap:wrap;
        justify-content:center;
    }

    .dh-hero{
        min-height:auto;
        padding:100px 0;
    }

    .dh-hero-wrapper{
        grid-template-columns:1fr;
    }

    .dh-hero-content{
        text-align:center;
    }

    .dh-hero-content p{
        margin:auto auto 40px;
    }

    .dh-hero-btns{
        justify-content:center;
    }

}

@media(max-width:768px){

    .dh-topbar-wrapper{
        flex-direction:column;
        text-align:center;
    }

    .dh-top-left,
    .dh-top-right{
        justify-content:center;
        flex-wrap:wrap;
        gap:10px;
    }

    .dh-logo{
        flex-direction:column;
        text-align:center;
    }

    .dh-logo-text h2{
        font-size:24px;
    }

    .dh-menu{
        gap:10px;
    }
    .dh-btn
    {
        width:170px;
    }
    .dh-hero-content h1{
        font-size:46px;
    }

    .dh-hero-content p{
        font-size:20px;
    }
        .dh-header{
   position:static;
}
}

@media(max-width:480px){   
    
    .dh-hero-content h1{
        font-size:36px;
    }

    .dh-hero-content p{
        font-size:17px;
    }

    .dh-primary-btn,
    .dh-outline-btn{
        width:70%;
        padding:10px 8px;
        text-align:center;
    }
    .dh-header{
   position:static;
}

}
/* =========================
   HERO SECTION
========================= */

.sct-about-hero{
    position:relative;
    width:100%;
    min-height:420px;
    overflow:hidden;
}

/* Background Image */

.sct-about-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:url('../image/act_banner.png') center center/cover no-repeat;
    z-index:1;
    transform:scale(1.02);
}

/* Orange Overlay */

.sct-about-hero::after{
    content:"";
    position:absolute;
    inset:0;
    background:
    linear-gradient(
        90deg,
        rgba(0,0,0,0.40) 0%,
        rgba(0,0,0,0.20) 35%,
        rgba(233,133,28,0.12) 100%
    );
    z-index:2;
}
/* =========================
   HERO CONTENT
========================= */

.sct-hero-content{
    position:relative;
    z-index:5;
    width:100%;
    max-width:1400px;
    /*margin:auto;*/
    padding:80px 60px;
   

}

.sct-hero-text{
    max-width:1400px;
     text-align:center;
    vertical-align:middle;
    /*border:2px solid red;*/
}

.sct-hero-text h1{
    color:#fff;
    font-size:58px;
    font-weight:800;
    line-height:1.08;
    margin-bottom:15px;
    letter-spacing:-1px;
}

.sct-hero-text p{
    color:#fff;
    font-size:30px;
    font-weight:500;
    line-height:1.5;
    margin-bottom:25px;
}

/* Scroll Down */

.sct-scroll{
    display:inline-flex;
    align-items:center;
    gap:14px;
    color:#fff;
    text-decoration:none;
    font-size:22px;
    font-weight:500;
}

.sct-scroll span{
    display:flex;
    align-items:center;
    justify-content:center;
    width:34px;
    height:34px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.7);
    font-size:16px;
    transition:.3s;
}

.sct-scroll:hover span{
    transform:translateX(4px);
}

/* =========================
   COW IMAGE
========================= */

.sct-cow{
    position:absolute;
    right:0;
    bottom:0;
    width:350px;
    z-index:4;
}

.sct-cow img{
    width:100%;
    display:block;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1200px){

    .sct-hero-text h1{
        font-size:64px;
    }

    .sct-hero-text p{
        font-size:25px;
    }

    .sct-cow{
        width:290px;
    }
}

@media(max-width:991px){

    .sct-navbar{
        padding:0 25px;
        height:auto;
        padding-top:18px;
        padding-bottom:18px;
    }

    .sct-nav-inner{
        flex-direction:column;
        gap:18px;
    }

    .sct-nav-menu{
        flex-wrap:wrap;
        justify-content:center;
        gap:18px;
    }

    .sct-hero-content{
        padding:90px 30px 80px;
    }

    .sct-hero-text h1{
        font-size:54px;
    }

    .sct-hero-text p{
        font-size:22px;
        margin-bottom:50px;
    }

    .sct-scroll{
        font-size:18px;
    }

    .sct-cow{
        width:240px;
    }
}

@media(max-width:767px){

    .sct-about-hero{
        min-height:720px;
    }

    .sct-logo-text h2{
        font-size:24px;
    }

    .sct-nav-menu{
        gap:14px;
    }

    .sct-nav-menu a{
        font-size:14px;
    }

    .sct-hero-content{
        padding:70px 22px 80px;
    }

    .sct-hero-text h1{
        font-size:44px;
    }

    .sct-hero-text p{
        font-size:19px;
        line-height:1.6;
    }

    .sct-scroll{
        font-size:16px;
    }

    .sct-cow{
        width:190px;
    }
}

@media(max-width:480px){

    .sct-about-hero{
        min-height:680px;
    }

    .sct-navbar{
        padding-left:15px;
        padding-right:15px;
    }

    .sct-logo{
        width:44px;
        height:44px;
    }

    .sct-logo-text h2{
        font-size:20px;
    }

    .sct-logo-text p{
        font-size:9px;
    }

    .sct-hero-content{
        padding:60px 18px 80px;
    }

    .sct-hero-text h1{
        font-size:36px;
    }

    .sct-hero-text p{
        font-size:17px;
        margin-bottom:45px;
    }

    .sct-donate-btn{
        height:40px;
        padding:0 18px;
        font-size:13px;
    }

    .sct-cow{
        width:150px;
    }
}
    /*=========================main section===================*/
    /* =========================
ACTIVITY PAGE
========================= */

.sct-activity-page{
    width:100%;
    background:#fff;
    overflow:hidden;
    font-family:Arial, sans-serif;
}


/* =========================
HEADING
========================= */

.sct-activity-heading{
    max-width:900px;
    margin:60px auto 40px;
    text-align:center;
    padding:0 20px;
}

.sct-activity-heading h2{
    color:#E65100;
    font-size:52px;
    margin-bottom:20px;
}

.sct-activity-heading p{
    color:#555;
    font-size:20px;
    line-height:1.8;
}

/* =========================
GRID
========================= */

.sct-activity-grid{
    max-width:1300px;
    margin:auto;
    padding:0 20px 80px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */

.sct-activity-card{
    background:#fff;
    border-radius:14px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.sct-activity-card:hover{
    transform:translateY(-8px);
}

/* IMAGE */

.sct-activity-img{
    width:100%;
    height:220px;
}

.sct-activity-img img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* INFO */

.sct-activity-info{
    display:flex;
    gap:15px;
    padding:15px;
}

/* ICON */

.sct-activity-icon{
    width:55px;
    height:55px;
    min-width:55px;
    border-radius:50%;
    background:#fff3e7;
    color:#E65100;
    display:flex;
    align-items:center;
    justify-content:center;
  
    margin:auto;
}
.sct-activity-info img{
    color:#E65100;
    font-size:20px;
    margin-bottom:8px;
    width:100px;
    height:80px;
}

/* TEXT */

.sct-activity-info h3{
    color:#E65100;
    font-size:20px;
    margin-bottom:2px;
}

.sct-activity-info p{
    color:#555;
    font-size:15px;
    line-height:1.4;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1200px){

.sct-activity-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

/* HERO */

.sct-activity-hero{
    min-height:260px;
}

.sct-activity-overlay{
    padding:25px 20px;
}

/* LOGO */

.sct-activity-logo img{
    width:80px;
}

/* TITLE */

.sct-activity-content h1{
    font-size:36px;
}

.sct-breadcrumb a,
.sct-breadcrumb p,
.sct-breadcrumb span{
    font-size:14px;
}

/* HEADING */

.sct-activity-heading{
    margin:40px auto 25px;
}

.sct-activity-heading h2{
    font-size:34px;
}

.sct-activity-heading p{
    font-size:16px;
    line-height:1.7;
}

/* GRID */

.sct-activity-grid{
    grid-template-columns:1fr;
    gap:20px;
    padding:0 15px 50px;
}

/* CARD */

.sct-activity-img{
    height:220px;
}

.sct-activity-info{
    padding:18px;
    margin:auto;
}

.sct-activity-info h3{
    font-size:22px;
     text-align:center;
    vertical-align:central;
}
.sct-activity-info img{
     text-align:center;
    vertical-align:center;
    justify-contant:center;
}
.sct-activity-info p{
    font-size:20px;
    text-align:center;
    vertical-align:central;
}
}

@media(max-width:480px){

.sct-activity-content h1{
    font-size:28px;
}

.sct-activity-heading h2{
    font-size:28px;
}

.sct-activity-heading p{
    font-size:14px;
}

.sct-activity-info{
    flex-direction:column;
}

.sct-activity-icon{
    width:48px;
    height:48px;
    font-size:22px;
}

.sct-activity-info h3{
    font-size:20px;
    text-align:center;
    vertical-align:central;
}
.sct-activity-info img{
     text-align:center;
    vertical-align:central;
}
.sct-activity-info p{
    font-size:20px;
    text-align:center;
    vertical-align:central;
}
}
       /*=====================footer=============================*/
    .SCT-footer{
    width:100%;
    background:
    linear-gradient(rgba(30,12,0,0.94),rgba(30,12,0,0.94)),
    radial-gradient(circle at center,#7a3500 0%,#2b1200 70%);
    color:#fff;
    overflow:hidden;
}

.SCT-footer-wrap{
    max-width:1280px;
    margin:auto;
    padding:42px 50px 28px;
}

.SCT-footer-grid{
    display:grid;
    grid-template-columns:1.2fr 1.1fr 1.1fr 1.2fr;
    gap:55px;
}

/* Heading */

.SCT-footer-title{
    font-size:22px;
    font-weight:700;
    color:#fff;
    margin-bottom:18px;
    position:relative;
    line-height:1.2;
}

.SCT-footer-title::after{
    content:"";
    width:42px;
    height:3px;
    background:#ff8c00;
    position:absolute;
    left:0;
    bottom:-10px;
    border-radius:10px;
}

/* About Text */

.SCT-footer-about p{
    font-size:16px;
    line-height:1.9;
    color:#f1f1f1;
    margin-top:22px;
    max-width:360px;
}

/* Links */

.SCT-footer-links ul{
    list-style:none;
    margin-top:5px;
}

.SCT-footer-links ul li{
    margin-bottom:5px;
}

.SCT-footer-links ul li a{
    text-decoration:none;
    color:#f2f2f2;
    font-size:16px;
    font-weight:400;
    transition:0.3s ease;
}

.SCT-footer-links ul li a:hover{
    color:#ff9a19;
    padding-left:4px;
}

/* Two Column Links */

.SCT-links-flex{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:10px 40px;
}

/* Contact */

.SCT-contact-box{
    margin-top:22px;
}

.SCT-contact-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
}

.SCT-contact-item i{
    color:#fff;
    font-size:17px;
    margin-top:5px;
}

.SCT-contact-item p,
.SCT-contact-item a{
    color:#f1f1f1;
    font-size:15px;
    line-height:1.8;
    text-decoration:none;
}

/* Social Icons */

.SCT-social{
    display:flex;
    gap:12px;
    margin-top:15px;
}

.SCT-social a{
    width:30px;
    height:30px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
}

.SCT-social a:nth-child(1){
    background:#1d4ed8;
}

.SCT-social a:nth-child(2){
    background:#ef4444;
}

.SCT-social a:nth-child(3){
    background:linear-gradient(45deg,#f9ce34,#ee2a7b,#6228d7);
}

.SCT-social a:nth-child(4){
    background:#4db6ac;
}

.SCT-social a:hover{
    transform:translateY(-4px);
}

/* Bottom Bar */

.SCT-footer-bottom{
    width:100%;
    background:#E65100 ;
    padding:10px 50px;
}

.SCT-bottom-wrap{
    max-width:1280px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.SCT-copy{
    color:#fff;
    font-size:15px;
    font-weight:400;
}

.SCT-tagline{
    color:#fff;
    font-size:18px;
    font-weight:500;
    letter-spacing:0.5px;
}

/* Scroll Top */

.SCT-scroll-top{
    position:fixed;
    right:22px;
    bottom:22px;
    width:52px;
    height:52px;
    border-radius:50%;
    background:#fff;
    color:#c46a00;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    text-decoration:none;
    box-shadow:0 10px 25px rgba(0,0,0,0.18);
    z-index:99;
}

/* ===== Responsive ===== */

@media(max-width:1100px){

    .SCT-footer-grid{
        grid-template-columns:1fr 1fr;
        gap:45px;
    }
}

@media(max-width:768px){

    .SCT-footer-wrap{
        padding:40px 24px 28px;
    }

    .SCT-footer-grid{
        grid-template-columns:1fr;
        gap:40px;
    }

    .SCT-footer-title{
        font-size:24px;
    }

    .SCT-footer-about p,
    .SCT-footer-links ul li a,
    .SCT-contact-item p,
    .SCT-contact-item a{
        font-size:15px;
    }

    .SCT-bottom-wrap{
        flex-direction:column;
        text-align:center;
    }

    .SCT-footer-bottom{
        padding:18px 20px;
    }

    .SCT-tagline{
        font-size:16px;
    }

    .SCT-links-flex{
        grid-template-columns:1.2fr 1fr;
    }
}

@media(max-width:480px){

    .SCT-footer-wrap{
        padding:35px 18px 24px;
    }

    .SCT-footer-title{
        font-size:22px;
    }

    .SCT-links-flex{
        grid-template-columns:1fr;
        gap:0;
    }

    .SCT-social a{
        width:40px;
        height:40px;
        font-size:16px;
    }

    .SCT-copy{
        font-size:13px;
        line-height:1.7;
    }

    .SCT-tagline{
        font-size:15px;
    }

    .SCT-scroll-top{
        width:46px;
        height:46px;
        font-size:16px;
    }
}