*{
    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;
}
    /*.pagecon
    {
            background:url('image/CBg.png')center center/cover no-repeat;
            max-width:1340px;
    }*/
    /* =========================
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{
    /*width:80px;
    height:80px;
    border-radius:50%;
    background:#ff7a14;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:30px;
    font-weight:700;*/
}
.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);
}
/*======================Banner===============*/
.trust-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;  
  border-bottom: 2px solid #E65100;
    width: 100%;
  max-width: 1100px;
  margin: auto;
}
.sct-hero-text{
    /*max-width:650px;*/
    padding:36px;
      max-width:1400px;
     text-align:center;
    vertical-align:middle;
}

.sct-hero-text h1{
    color:#fff;
    font-size:68px;
    font-weight:700;
    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;
}

.trust-logo {
    grid:1;
    width:100%;
    width:900px;
    /*height:200px;*/
    /*border: 2px solid black;*/
    background:url('../image/about_banner.png') center center/cover no-repeat;
  grid-row: 1; /* सिर्फ header में */
}
.sct-about-hero{
    position:relative;
    width:100%;
    min-height:420px;
    /*overflow:hidden;*/
}


.trust-title {
    text-align:center;
   vertical-align:middle;
   color:#E65100;
  grid-row: 1;
}

.trust-info {
  grid-column: 1 / span 3; 
  grid-row: 2;             
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 8px;
  font-size: 14px;
  color: #E65100;
  padding:10px 22px;
  border-top:1px solid;
  border:1px solid #E65100;
}

.trust-qr {

  /*grid-row: 1 / span 2;*/ /* Header + Info दोनों को merge करेगा */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding:0 0px;
}

.trust-qr img {
  width: 200px;
  border: 1px solid #E65100;
  /*border-radius: 6px;*/
  
}

.trust-qr span {
    width:100%;
    background:#E65100;
  /*margin-top: 15px;*/
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  padding:15px;
    /*border-bottom: 1px solid #fff;*/
}

.trust-footer {
    max-width:1100px;
    margin:auto;
  background: #E65100;
  color: #fff;
  text-align: center;
  padding: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
/*====================================mobile view===========================*/
/* =====================================
MOBILE VIEW - HEADER + BANNER + TRUST
===================================== */

@media only screen and (max-width:768px){

/* CONTAINER */

.scope-container{
    padding:0 10px;
}

/* =========================
TOP HEADER
========================= */

.dh-topbar{
    font-size:12px;
    padding:8px 10px;
}

.dh-topbar-wrapper{
    flex-direction:column;
    align-items:flex-start;
    gap:8px;
}

.dh-top-left,
.dh-top-right{
    flex-wrap:wrap;
    gap:10px;
}

/* =========================
NAVBAR
========================= */

.dh-navbar{
    flex-direction:column;
    gap:15px;
    padding:12px 0;
}

/* LOGO */

.dh-logo{
    flex-direction:column;
    text-align:center;
    gap:8px;
}

.dh-logo-icon img{
    width:70px;
    height:70px;
}

.dh-logo-text h2{
    font-size:22px;
}

.dh-logo-text span{
    font-size:12px;
}

/* MENU */

.dh-menu{
    width:100%;
    flex-wrap:wrap;
    justify-content:center;
    gap:15px;
}

.dh-menu a{
    font-size:14px;
}

/* BUTTON */

.dh-btn{
    padding:8px 14px;
    font-size:13px;
}

/* =========================
BANNER SECTION
========================= */

.trust-layout{
    grid-template-columns:1fr;
    width:100%;
}

/* HERO */

.sct-about-hero{
    min-height:auto;
}

/* TEXT */

.sct-hero-text{
    padding:20px 15px;
}

.sct-hero-text h1{
    font-size:34px;
    line-height:1.2;
}

.sct-hero-text p{
    font-size:18px;
    line-height:1.5;
}

/* IMAGE */

.trust-logo{
    width:100%;
    min-height:220px;
    background-position:center;
    background-size:cover;
}

/* TITLE */

.trust-title{
    padding:15px 10px;
}

/* INFO */

.trust-info{
    grid-template-columns:1fr;
    padding:12px;
    font-size:13px;
    gap:10px;
}

/* QR */

.trust-qr{
    width:100%;
}

.trust-qr img{
    width:160px;
}

.trust-qr span{
    font-size:12px;
    padding:10px;
    text-align:center;
}

/* FOOTER */

.trust-footer{
    width:100%;
    font-size:13px;
    padding:10px;
}

}

/* =====================================
SMALL MOBILE
===================================== */

@media only screen and (max-width:480px){

.scope-container{
    padding:0 5px;
}

/* LOGO */

.dh-logo-icon img{
    width:60px;
    height:60px;
}

.dh-logo-text h2{
    font-size:18px;
}

/* MENU */

.dh-menu{
    gap:10px;
}

.dh-menu a{
    font-size:13px;
}

/* HERO */
        .dh-header{
   position:static;
}
.sct-hero-text{
    padding:15px 10px;
}

.sct-hero-text h1{
    font-size:28px;
}

.sct-hero-text p{
    font-size:15px;
}

/* QR */

.trust-qr img{
    width:130px;
}

}

/*==============================
DONOR FORM SECTION
==============================*/

.dnr-form-section{
    width:100%;
    /*background:#f7ecd9;*/
    /*border:1px solid #efd3b0;*/
    padding:0px 110px;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
    /*padding:22px 110px;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);*/
}

/*==============================
FORM HEADER
==============================*/

.dnr-form-head{
    /*/*width:100%;
   
    text-align:center;
    padding:8px 15px;
    margin-bottom:14px;
    position:relative;
    box-sizing:border-box;*/*/
     /*text-align:center;
    margin-bottom:22px;*/
    
}

.dnr-form-head span{
    color:#fff;
    font-size:18px;
    font-weight:500;
    position:relative;
    display:inline-block;
    /*display:inline-block;
    margin:0;
    padding:12px 35px;
    font-size:24px;
    color:#fff;
    border-radius:50px;
     background:#E65100;
    box-shadow:0 8px 20px rgba(234,110,13,0.25);
    letter-spacing:0.5px;*/
}

/*==============================
FORM LAYOUT
==============================*/

.dnr-form-wrap{
    max-width:1101px;
    margin:auto;
     background:#fff;
    /*border-radius:16px;*/
    padding:8px 22px;
    border:1px solid #f2ddc3;
    box-shadow:0 4px 14px rgba(0,0,0,0.04);
     display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

/*==============================
FIELDS
==============================*/

.dnr-field{
    /*width:calc(50% - 6px);
    display:flex;   
    flex-direction:column;*/
       /*background:#f5f5f5;
    padding:20px;
    border-radius:10px;*/
}

.dnr-field.full-width{
    /*width:100%;*/
     grid-column:1 / -1;
}

.dnr-field label{
    font-size:14px;
    color:#c66a1d;
    font-weight:700;
    /*margin-bottom:5px;*/
}

.dnr-field label span{
    color:#ff5b1f;
}

.dnr-field input,
.dnr-field textarea{
       width:100%;
    border:1px solid #efc9a5;
    background:#f8f2e7;
    padding:5px 10px;
    font-size:14px;
    color:#E65100;
    outline:none;
    box-sizing:border-box;
    transition:0.3s;
    resize:none;
}

/*==============================
FOCUS EFFECT
==============================*/

.dnr-field input:focus,
.dnr-field textarea:focus{
    border-color:#ea8518;
    background:#fff;
    box-shadow:0 0 0 3px rgba(234,133,24,0.10);
}

/*==============================
RESPONSIVE
==============================*/
/* =========================
MOBILE SINGLE COLUMN FIX
========================= */

/* =========================
SAFE MOBILE FIX
ONLY FORM SECTION
========================= */

@media only screen and (max-width:768px){

/* ONLY THIS FORM */

.dnr-form-section{
    padding:0 10px;
}

/* GRID -> SINGLE COLUMN */

.dnr-form-wrap{
    grid-template-columns:1fr !important;
    gap:10px;
    padding:12px;
}

/* ALL FIELDS FULL WIDTH */

.dnr-field,
.dnr-field.full-width{
    width:100% !important;
    grid-column:1/-1 !important;
}

/* INPUTS */

.dnr-field input,
.dnr-field textarea{
    width:100%;
    box-sizing:border-box;
}

/* TEXTAREA */

.dnr-field textarea{
    min-height:90px;
}

}
/*@media(max-width:768px){

.dnr-form-section{
    width:100%;
    padding:0 8px;
    box-sizing:border-box;
}*/

/* FORM WRAPPER */

/*.dnr-form-wrap{
    grid-template-columns:1fr !important;
    padding:12px;
    gap:8px;
    border:1px solid #e5e5e5;
    box-shadow:none;
    background:#fff;
}*/

/* FULL WIDTH */

/*.dnr-field,
.dnr-field.full-width{
    width:100%;
    grid-column:1/-1;
}*/

/* LABEL */

/*.dnr-field label{
    display:block;
    font-size:12px;
    font-weight:600;
    color:#666;
    margin-bottom:4px;
}*/

/* INPUT */

/*.dnr-field input,
.dnr-field textarea{
    width:100%;
    height:38px;
    border:1px solid #d8d8d8;
    background:#f7f7f7;
    padding:0 10px;
    font-size:13px;
    color:#444;
    border-radius:3px;
    box-sizing:border-box;
    box-shadow:none;
}*/

/* TEXTAREA */

/*.dnr-field textarea{
    min-height:90px;
    padding-top:10px;
    resize:none;
}*/

/* FOCUS */

/*.dnr-field input:focus,
.dnr-field textarea:focus{
    border-color:#E65100;
    background:#fff;
    box-shadow:none;
}*/

/* HEADER */

/*.dnr-form-head{
    margin-bottom:10px;
    text-align:center;
}*/

/*.dnr-form-head span{
    width:100%;
    display:block;
    font-size:17px;
    padding:10px;
    background:#E65100;
    color:#fff;
}*/

/* GAP */

/*.dnr-field{
    margin-bottom:6px;
}

}*/

/* =========================================
SMALL MOBILE
========================================= */

/*@media(max-width:480px){

.dnr-form-section{
    padding:0 5px;
}

.dnr-form-wrap{
    padding:10px;
}

.dnr-form-head span{
    font-size:15px;
    padding:8px;
}

.dnr-field label{
    font-size:11px;
}

.dnr-field input,
.dnr-field textarea{
    height:36px;
    font-size:12px;
}

}*/
/*@media(max-width:768px){

    .dnr-field{
        width:100%;
    }

    .dnr-form-head span{
        font-size:16px;
    }

}

@media(max-width:480px){

    .dnr-form-section{
        padding:10px;
    }

    .dnr-form-head{
        padding:7px 10px;
    }

    .dnr-form-head span{
        font-size:15px;
    }

    .dnr-field label{
        font-size:13px;*/
    /*}*/

    /*.dnr-field input,
    .dnr-field textarea{*/
        /*padding:9px 10px;
        font-size:13px;*/
         /*width:100%;
    border:1px solid #efc9a5;
    background:#f8f2e7;
    padding:5px 10px;
    font-size:14px;
    color:#E65100;
    outline:none;
    box-sizing:border-box;
    transition:0.3s;
    resize:none;*/
    /*}*/

/*}*/
    /*===================================
DONATION SECTION
===================================*/

.dn-modern-donation{
    width:100%;
    margin:auto;
    max-width:1100px;
    background:#fff7ed;
    /*border:1px solid #f1d3ad;*/
    /*border-radius:18px;*/
    /*padding:22px 110px;
    box-sizing:border-box;
    font-family:Arial, sans-serif;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);*/
}

/*===================================
HEADER
===================================*/

.dn-modern-head{
    text-align:center;
    /*margin-bottom:22px;*/
     background:#E65100;
}

.dn-modern-head h2{
    display:inline-block;
    margin:0;
    padding:12px 35px;
    font-size:24px;
    color:#fff;
    /*border-radius:50px;*/
    background:#E65100;
        box-shadow:0 8px 20px rgba(234,110,13,0.25);
    letter-spacing:0.5px;
}

/*===================================
GRID LAYOUT
===================================*/

.dn-modern-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
   
}

/*===================================
BOX
===================================*/

.dn-modern-box{
    background:#fff;
    /*border-radius:16px;*/
    padding:22px;
    /*border:1px solid #f2ddc3;*/
    box-shadow:0 4px 14px rgba(0,0,0,0.04);
}

/*===================================
FIELDS
===================================*/

.dn-field-group{
    margin-bottom:10px;
}
.dn-field-group1{
    display:grid;
  grid-template-columns:.3fr 1fr;
    gap:10px;
    margin-bottom:10px;
}
.dn-field-group1 label{
    display:block;
    font-size:15px;
    font-weight:700;
    color:#c66314;
    margin-bottom:5px;
    text-align:left;
    vertical-align:middle;
    /*border-bottom:1px solid #edd3b7;*/
}
.dn-field-group2{
    display:grid;
  grid-template-columns:.7fr 1fr;
    gap:10px;
    margin-bottom:10px;
}
.dn-field-group2 input[type="text"]{
    width:100%;
    border:1px solid #efc9a5;
    background:#f8f2e7;
    padding:5px 10px;
    font-size:14px;
    color:#E65100;
    outline:none;
    box-sizing:border-box;
    transition:0.3s;
    resize:none;
}
.dn-field-group2 select{
    width:100%;
    border:1px solid #efc9a5;
    background:#f8f2e7;
    padding:5px 10px;
    font-size:14px;
    color:#E65100;
    outline:none;
    box-sizing:border-box;
    transition:0.3s;
    resize:none;
}
.dn-field-group2 input[list]{
    width:100%;
    border:1px solid #efc9a5;
    background:#f8f2e7;
    padding:5px 10px;
    font-size:14px;
    color:#E65100;
    outline:none;
    box-sizing:border-box;
    transition:0.3s;
    resize:none;
}
.dn-field-group2 label{
    display:block;
    font-size:15px;
    font-weight:700;
    color:#c66314;
    margin-bottom:5px;
    /*border-bottom:1px solid #edd3b7;*/
}
    .dn-field-group .lbl
    {
        border-bottom:1px solid #edd3b7;
        padding-bottom:10px;
    }
.dn-field-group label{
    display:block;
    font-size:15px;
    font-weight:700;
    color:#c66314;
    margin-bottom:10px;
    /*border-bottom:1px solid #edd3b7;*/
}

/*===================================
INPUTS
===================================*/

.dn-field-group input[type="text"]{
    /*width:100%;
    height:35px;
    border:1px solid #edd3b7;
    background:#fffaf4;
    padding:0 15px;
    font-size:14px;
    color:#444;
    box-sizing:border-box;
    transition:0.3s;*/
     width:100%;
    border:1px solid #efc9a5;
    background:#f8f2e7;
    padding:5px 10px;
    font-size:14px;
    color:#E65100;
    outline:none;
    box-sizing:border-box;
    transition:0.3s;
    resize:none;
}

.dn-field-group input[type="text"]:focus{
    border-color:#ef7d11;
    background:#fff;
    outline:none;
    box-shadow:0 0 0 4px rgba(239,125,17,0.10);
}

/*===================================
CHECKBOX GRID
===================================*/

.dn-check-grid{
    display:grid;
    grid-template-columns:1fr;
    /*gap:12px;*/
 
}

.dn-check-item{
    display:flex;
    align-items:center;
    /*gap:10px;*/
    /*padding:10px 12px;
    border-radius:12px;
    background:#fff8f1;*/
    /*border:1px solid #f3dfc8;*/
    cursor:pointer;
    transition:0.3s;
     border-bottom:none;
}

.dn-check-item:hover{
    background:#fff1df;
    transform:translateY(-2px);
}

.dn-check-item span{
    font-size:14px;
    color:#6d4b2d;
    font-weight:600;
}

/*===================================
PAYMENT METHOD
===================================*/

.dn-payment-grid{
    display:flex;
    flex-wrap:wrap;
    
    /*gap:12px;*/
}

.dn-pay-item{
    display:flex;
    align-items:center;
    /*gap:8px;*/
    padding:10px 10px;
    /*background:#fff8f1;
    border:1px solid #f3dcc2;
    border-radius:50px;*/
    cursor:pointer;
    transition:0.3s;
}

.dn-pay-item:hover{
    background:#ffefd9;
    transform:translateY(-2px);
}

.dn-pay-item span{
    font-size:14px;
    font-weight:600;
    color:#704520;
}

/*===================================
OTHER FIELD
===================================*/

.dn-other-field{
    display:flex;
    align-items:center;
    gap:10px;
    grid-column:1/-1;
}

.dn-other-field input{
    flex:1;
    height:44px;
    border:1px solid #edd3b7;
    border-radius:10px;
    padding:0 12px;
    background:#fffaf4;
    outline:none;
}

/*===================================
CHECKBOX STYLE
===================================*/

input[type="checkbox"]{
    width:16px;
    height:16px;
    accent-color:#ef7d11;
    cursor:pointer;
}

/*===================================
RESPONSIVE
===================================*/

@media(max-width:991px){

    .dn-modern-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .dn-modern-donation{
        padding:16px;
        border-radius:14px;
    }

    .dn-modern-box{
        padding:18px;
    }

    .dn-modern-head h2{
        font-size:20px;
        padding:10px 25px;
    }

    .dn-check-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:480px){

    .dn-modern-head h2{
        font-size:17px;
        width:100%;
        border-radius:12px;
    }

    .dn-payment-grid{
        flex-direction:column;
    }

    .dn-pay-item{
        width:100%;
    }

    .dn-other-field{
        flex-direction:column;
        align-items:stretch;
    }

}
    /* ===== SECTION ===== */

.mj-donation-section{
  width:100%;
  max-width:1100px;
  margin:auto;
  /*padding:10px 110px;*/
  /*background:#f7f4ef;*/
  font-family:Arial, sans-serif;
}

/* ===== CONTAINER ===== */

.mj-donation-container{
  /*max-width:1200px;*/
  /*margin:auto;*/
  display:grid;
  grid-template-columns:1fr 1fr;
  /*gap:35px;*/
}

/* ===== BOX ===== */

.mj-box{
  background:#fff;
  padding:0px 20px;
  /*border-radius:20px;*/
  /*box-shadow:0 10px 30px rgba(0,0,0,0.08);*/
  /*border:1px solid #f0e4d6;*/
  transition:0.3s ease;
}

/*.mj-box:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 40px rgba(0,0,0,0.12);
}*/

/* ===== HEADINGS ===== */

.mj-heading{
  position:relative;
  margin-bottom:10px;
   background:#E65100;
     text-align:center;
  vertical-align:middle;
  /*border:1px solid red;*/
}

.mj-heading span{
  display:inline-block;
  background:#E65100;/*linear-gradient(90deg,#e67e22,#ffb347);*/
  color:#fff;
  font-size:18px;
  font-weight:700;

  padding:12px 24px;
  border-radius:6px;
  letter-spacing:0.5px;
  box-shadow:0 5px 15px rgba(230,126,34,0.25);
}

.mj-small-heading{
  /*margin-top:15px;*/
}

/* ===== CHECKBOX ===== */

.mj-checkbox-group{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-bottom:10px;
}

.mj-checkbox-group label,
.mj-radio-group label{
  display:flex;
  align-items:center;
  gap:5px;
  font-size:15px;
  color:#444;
  font-weight:500;
  cursor:pointer;
}

/* ===== CUSTOM INPUTS ===== */

.mj-checkbox-group input,
.mj-radio-group input{
  width:18px;
  height:18px;
  accent-color:#e67e22;
  cursor:pointer;
}

/* ===== TEXTAREA ===== */

.mj-box input[type="text"]{
  /*width:100%;
  height:40px;
  margin-top:10px;
  border:1px solid #ddd;*/
  /*border-radius:14px;*/
  /*padding:0 16px;
  resize:none;
  font-size:15px;
  outline:none;
  transition:0.3s ease;
  background:#fafafa;*/
   width:100%;
    border:1px solid #efc9a5;
    background:#f8f2e7;
    padding:5px 10px;
    font-size:14px;
    color:#E65100;
    outline:none;
    box-sizing:border-box;
    transition:0.3s;
    resize:none;
}

.mj-box input[type="text"]:focus{
  border-color:#e67e22;
  background:#fff;
  box-shadow:0 0 0 4px rgba(230,126,34,0.12);
}

/* ===== INPUTS ===== */

.mj-input-group{
  margin-bottom:5px;
}

.mj-input-group input{
  /*width:100%;
  height:35px;
  border:1px solid #ddd;*/
  /*border-radius:14px;*/
  /*padding:0 18px;
  font-size:15px;
  outline:none;
  transition:0.3s ease;
  background:#fafafa;*/
   width:100%;
    border:1px solid #efc9a5;
    background:#f8f2e7;
    padding:5px 10px;
    font-size:14px;
    color:#E65100;
    outline:none;
    box-sizing:border-box;
    transition:0.3s;
    resize:none;
}

.mj-input-group input:focus{
  border-color:#e67e22;
  background:#fff;
  box-shadow:0 0 0 4px rgba(230,126,34,0.12);
}

/* ===== TAX ROW ===== */

.mj-tax-row{
  margin-top:5px;
  margin-bottom:5px;
}

.mj-tax-row p{
  font-size:15px;
  color:#333;
  font-weight:600;
  margin-bottom:14px;
}

.mj-radio-group{
  display:flex;
  gap:30px;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px){

  .mj-donation-container{
    grid-template-columns:1fr;
  }

}

@media(max-width:576px){

  .mj-donation-section{
    padding:60px 15px;
  }

  .mj-box{
    padding:25px;
  }

  .mj-heading span{
    font-size:16px;
    padding:10px 18px;
  }

  .mj-radio-group{
    gap:18px;
    flex-wrap:wrap;
  }

}
    /* =========================
   TRUST SECTION
========================= */

.mj-trust-section{
  width:100%;
  max-width:1100px;
  margin:auto;
  /*background:#f8f2e9;*/
  padding:0;
  font-family:Arial, sans-serif;
}

/* =========================
   CONTAINER
========================= */

.mj-trust-container{
  /*max-width:1100px;*/
  margin:auto;
  background:#fff;
  /*border-radius:0 0 24px 24px;*/
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,0.08);
  /*border:1px solid #f1dfc8;*/
}

/* =========================
   TOP CONTENT
========================= */

.mj-trust-top{
  padding: 15px 18px;
}

/* =========================
   CHECKBOX
========================= */

.mj-check-wrap{
  display:flex;
  align-items:flex-start;
  gap:16px;
  cursor:pointer;
  margin-bottom:45px;
}

.mj-check-wrap input{
  display:none;
}

.mj-custom-check{
  min-width:20px;
  height:20px;
  border-radius:8px;
  border:2px solid #d9822b;
  margin-top:2px;
  position:relative;
  transition:0.3s ease;
  background:#fff;
}

.mj-check-wrap input:checked + .mj-custom-check{
  background:#d9822b;
}

.mj-check-wrap input:checked + .mj-custom-check::after{
  content:"✓";
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  color:#fff;
  font-size:14px;
  font-weight:bold;
}

.mj-check-wrap p{
  font-size:14px;
  line-height:1.7;
  color:#5b4631;
  margin:0;
}

.mj-check-wrap strong{
  color:#c26d18;
}

/* =========================
   SIGNATURE ROW
========================= */

.mj-sign-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.mj-sign-box{
  border-bottom:2px dashed #d7b18a;
  padding-bottom:12px;
  text-align:center;
}

.mj-sign-box span{
  font-size:15px;
  font-weight:600;
  color:#7d5b3e;
  letter-spacing:0.5px;
}

/* =========================
   FEATURE BAR
========================= */

.mj-feature-bar{
  background:#E65100;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:50px;
  padding:22px 30px;
  flex-wrap:wrap;
}

/* =========================
   FEATURE ITEM
========================= */

.mj-feature-item{
  display:flex;
  align-items:center;
  gap:14px;
  color:#fff;
}

.mj-icon{
  width:48px;
  height:48px;
  border-radius:50%;
  background:rgba(255,255,255,0.18);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:22px;
  backdrop-filter:blur(6px);
}

.mj-feature-item h4{
  margin:0;
  font-size:16px;
  font-weight:700;
}

.mj-feature-item p{
  margin:2px 0 0;
  font-size:13px;
  opacity:0.9;
}

/* =========================
   HOVER EFFECT
========================= */

.mj-feature-item:hover .mj-icon{
  transform:scale(1.08);
  transition:0.3s ease;
}
    .submit
    {
      padding:20px;
          text-align:center;
          vertical-align:middle;
    }
.Sub-btn{
    padding:15px 15px;
    background:#E65100;
    color:#fff;
    border-radius:6px;
    font-weight:500;
    font-size:18px;
    transition:0.3s;
   width:150px;
   border:none;
   
}

.Sub-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 10px 25px rgba(255,122,20,0.35);
}
/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

  .mj-trust-top{
    padding:30px 22px;
  }

  .mj-sign-row{
    grid-template-columns:1fr;
    gap:25px;
  }

  .mj-feature-bar{
    gap:25px;
    justify-content:flex-start;
  }

  .mj-check-wrap p{
    font-size:16px;
  }

}

@media(max-width:480px){

  .mj-feature-item{
    width:100%;
  }

  .mj-feature-bar{
    padding:20px;
  }

}
    /*============================mobile view form=====================*/

        /*===============================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;
    margin:auto;
}

/* 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 ===== */
/* =====================================
FOOTER RESPONSIVE
===================================== */

@media only screen and (max-width:991px){

/* FOOTER WRAP */

.SCT-footer-wrap{
    padding:35px 25px 25px;
}

/* GRID */

.SCT-footer-grid{
    grid-template-columns:1fr 1fr;
    gap:35px;
}

/* BOTTOM */

.SCT-bottom-wrap{
    flex-direction:column;
    text-align:center;
}

}

/* =====================================
MOBILE VIEW
===================================== */

@media only screen and (max-width:768px){

/* WRAPPER */

.SCT-footer-wrap{
    padding:30px 18px 20px;
}

/* GRID SINGLE COLUMN */

.SCT-footer-grid{
    grid-template-columns:1fr;
    gap:30px;
}

/* TITLE */

.SCT-footer-title{
    font-size:20px;
    margin-bottom:15px;
}

/* ABOUT */

.SCT-footer-about p{
    font-size:14px;
    line-height:1.8;
    max-width:100%;
}

/* LINKS */

.SCT-footer-links ul li{
    margin-bottom:10px;
}

.SCT-footer-links ul li a{
    font-size:14px;
}

/* TWO COLUMN LINKS */

.SCT-links-flex{
    grid-template-columns:1fr;
    gap:5px;
}

/* CONTACT */

.SCT-contact-item{
    gap:10px;
    margin-bottom:15px;
}

.SCT-contact-item i{
    font-size:15px;
}

.SCT-contact-item p,
.SCT-contact-item a{
    font-size:14px;
    line-height:1.7;
}

/* SOCIAL */

.SCT-social{
    flex-wrap:wrap;
    gap:10px;
}

.SCT-social a{
    width:38px;
    height:38px;
    font-size:16px;
}

/* BOTTOM BAR */

.SCT-footer-bottom{
    padding:12px 15px;
}

/* BOTTOM FLEX */

.SCT-bottom-wrap{
    flex-direction:column;
    text-align:center;
    gap:10px;
}

/* COPYRIGHT */

.SCT-copy{
    font-size:13px;
    line-height:1.6;
}

/* TAGLINE */

.SCT-tagline{
    font-size:15px;
    line-height:1.5;
}

/* SCROLL BUTTON */

.SCT-scroll-top{
    width:42px;
    height:42px;
    right:15px;
    bottom:15px;
    font-size:15px;
}

}

/* =====================================
SMALL MOBILE
===================================== */

@media only screen and (max-width:480px){

.SCT-footer-wrap{
    padding:25px 12px 18px;
}

.SCT-footer-title{
    font-size:18px;
}

.SCT-footer-about p,
.SCT-contact-item p,
.SCT-contact-item a,
.SCT-footer-links ul li a{
    font-size:13px;
}

.SCT-tagline{
    font-size:14px;
}

.SCT-copy{
    font-size:12px;
}

.SCT-scroll-top{
    width:38px;
    height:38px;
    font-size:14px;
}

}
@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 ===== */