﻿
*{
    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/contact_banner.jpg') 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;
}

.sct-hero-text h1{
    color:#fff;
    font-size:68px;
    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;
}


/* =========================
   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;
    }
}
        /*=======================contact=======================*/
  
.mg-contact-section *{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.mg-contact-section{
  position:relative;
  width:100%;
  overflow:hidden;
  background:url('../image/cbg.png') center center/cover no-repeat;
  padding:40px 20px;
  font-family:"Noto Sans Devanagari", sans-serif;
}

/* =========================
   BLUR EFFECT
========================= */

.mg-contact-blur{
  position:absolute;
  border-radius:50%;
  filter:blur(120px);
  opacity:.25;
  pointer-events:none;
}

.mg-blur-1{
  width:300px;
  height:300px;
  background:#ff7a00;
  left:-100px;
  bottom:-80px;
}

.mg-blur-2{
  width:260px;
  height:260px;
  background:#ff6b00;
  right:-60px;
  top:-50px;
}

/* =========================
   CONTAINER
========================= */

.mg-contact-container{
  max-width:1120px;
  margin:auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:center;
  position:relative;
  z-index:2;
}

/* =========================
   LEFT
========================= */

.mg-contact-left{
  animation:mgFadeLeft .9s ease;
}

/* =========================
   HEADING
========================= */

.mg-contact-heading{
  text-align:center;
  margin-bottom:20px;
}

.mg-contact-subtitle{
  display:block;
  color:#E65100;
  font-size:18px;
  font-weight:600;
  margin-bottom:10px;
}

.mg-contact-heading h2{
  position:relative;
  display:inline-block;
  color:#242424;
  font-size:32px;
  line-height:1.1;
  font-weight:500;
  padding-bottom:18px;
}

.mg-contact-heading h2::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:64px;
  height:3px;
  border-radius:30px;
  background:#ff7a00;
}

/* =========================
   INFO LIST
========================= */

.mg-contact-list{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  /*flex-direction:column;*/
  gap:28px;
}

/* =========================
   ITEM
========================= */

.mg-contact-item{
  display:flex;
  align-items:flex-start;
  gap:18px;
  transition:.4s ease;
}

.mg-contact-item:hover{
  transform:translateX(10px);
}

.mg-contact-icon{
  width:54px;
  height:54px;
  min-width:54px;
  border-radius:14px;
  background:#ff6f0f;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  color:#242424;
  box-shadow:0 12px 24px rgba(255,111,15,.25);
}

.mg-contact-content h3{
  color:#242424;
  font-size:28px;
  font-weight:500;
  margin-bottom:10px;
}

.mg-contact-content p{
  color:#242424;
  font-size:15px;
  line-height:1.9;
}

/* =========================
   FORM
========================= */

.mg-contact-right{
  animation:mgFadeRight .9s ease;
}

.mg-contact-form{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  padding:20px 22px;
  backdrop-filter:blur(12px);
  box-shadow:0 12px 38px rgba(0,0,0,.18);
}

.mg-contact-form h3{
  color:#242424;
  font-size:34px;
  font-weight:500;
  margin-bottom:18px;
}

/* =========================
   INPUT
========================= */

.mg-contact-field{
  margin-bottom:16px;
}

.mg-contact-field input,
.mg-contact-field textarea{
  width:100%;
  border:none;
  /*outline:none;*/
  background:rgba(255,255,255,.08);
  border:1px solid rgba(0,0,0,0.15);
  border-radius:12px;
  padding:16px 18px;
  color:#242424;
  font-size:15px;
  transition:.35s ease;
  font-family:"Noto Sans Devanagari", sans-serif;
}

.mg-contact-field textarea{
  height:140px;
  resize:none;
}

.mg-contact-field input::placeholder,
.mg-contact-field textarea::placeholder{
  color:#242424;
}

.mg-contact-field input:focus,
.mg-contact-field textarea:focus{
  /*border-color:#fff;*/
  background:rgba(255,255,255,.12);
  box-shadow:0 0 0 3px rgba(255,122,0,.12);
}

/* =========================
   BUTTON
========================= */

.mg-contact-btn{
  width:100%;
  height:58px;
  border:none;
  outline:none;
  border-radius:14px;
  background:#ff7412;
  color:#242424;
  font-size:17px;
  font-weight:600;
  cursor:pointer;
  transition:.4s ease;
  box-shadow:0 12px 28px rgba(255,116,18,.28);
}

.mg-contact-btn:hover{
  transform:translateY(-4px);
  background:#ff6800;
}
/* =========================
   RESPONSIVE CSS
========================= */
@media (max-width:1200px){
  .mg-contact-container{
    gap:50px;
  }
  .mg-contact-heading h2{
    font-size:30px;
  }
  .mg-contact-content h3{
    font-size:24px;
  }
  .mg-contact-form h3{
    font-size:30px;
  }
}
/* ---------- Tablet ---------- */
@media (max-width:991px){
  .mg-contact-section{
    padding:60px 25px;
  }
  .mg-contact-container{
    grid-template-columns:1fr;
    gap:50px;
  }
  .mg-contact-left,
  .mg-contact-right{
    width:100%;
  }
  .mg-contact-heading{
    text-align:center;
  }
  .mg-contact-heading h2{
    font-size:28px;
  }
  .mg-contact-list{
    grid-template-columns:repeat(2,1fr);
    gap:24px;
  }
  .mg-contact-item{
    gap:15px;
  }
  .mg-contact-icon{
    width:50px;
    height:50px;
    min-width:50px;
    font-size:22px;
  }
  .mg-contact-content h3{
    font-size:22px;
  }
  .mg-contact-content p{
    font-size:14px;
    line-height:1.7;
  }
  .mg-contact-form{
    padding:28px 22px;
  }
  .mg-contact-form h3{
    font-size:28px;
  }
}
/* ---------- Mobile ---------- */
@media (max-width:767px){
  .mg-contact-section{
    padding:50px 16px;
  }
  .mg-contact-container{
    gap:40px;
  }
  .mg-contact-heading{
    margin-bottom:30px;
  }
  .mg-contact-subtitle{
    font-size:16px;
  }
  .mg-contact-heading h2{
    font-size:24px;
    line-height:1.3;
    padding-bottom:14px;
  }
  .mg-contact-heading h2::after{
    width:50px;
    height:3px;
  }
  .mg-contact-list{
    grid-template-columns:1fr;
    gap:22px;
  }
  .mg-contact-item{
      justify-items:center;
    align-items:flex-start;
    gap:14px;
  }
  .mg-contact-item:hover{
    transform:none;
  }

  .mg-contact-icon{
    width:46px;
    height:46px;
    min-width:46px;
    border-radius:12px;
    font-size:20px;
  }

  .mg-contact-content h3{
    font-size:20px;
    margin-bottom:6px;
  }

  .mg-contact-content p{
    font-size:14px;
    line-height:1.7;
  }

  .mg-contact-form{
    border-radius:16px;
    padding:24px 18px;
  }

  .mg-contact-form h3{
    font-size:24px;
    margin-bottom:20px;
  }

  .mg-contact-field{
    margin-bottom:14px;
  }

  .mg-contact-field input,
  .mg-contact-field textarea{
    padding:14px 16px;
    font-size:14px;
    border-radius:10px;
  }

  .mg-contact-field textarea{
    height:120px;
  }

  .mg-contact-btn{
    height:54px;
    font-size:15px;
    border-radius:12px;
  }

  .mg-contact-blur{
    filter:blur(90px);
    opacity:.18;
  }

}


/* =========================
   ANIMATION
========================= */

@keyframes mgFadeLeft{
  from{
    opacity:0;
    transform:translateX(-60px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

@keyframes mgFadeRight{
  from{
    opacity:0;
    transform:translateX(60px);
  }
  to{
    opacity:1;
    transform:translateX(0);
  }
}

/*===================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;
    }
}

/* ===== FOOTER END ===== */