﻿
/* =========================
GLOBAL CSS
========================= */

*{
    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{
    /*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);
}

/* =========================
HERO SECTION
========================= */

.dh-hero{
    width:100%;
    min-height:80vh;
    background:url('../image/banner.png') center/cover no-repeat;
    /*radial-gradient(circle at left,#fff0a8 0%,transparent 30%),
    linear-gradient(90deg,#f6f0df,#f4ead4);*/

    position:relative;
    overflow:hidden;

    display:flex;
    align-items:center;
}

/* BACKGROUND GLOW */

.dh-hero::before{
    content:'';
    position:absolute;
    width:550px;
    height:550px;
    border-radius:50%;
    background:rgba(255,186,82,0.18);
    right:-150px;
    top:-120px;
    filter:blur(30px);
}

/* CONTENT */

.dh-hero-wrapper{
    width:100%;
    display:grid;
    grid-template-columns:1fr ;
    align-items:center;
    gap:50px;
}

.dh-hero-content{
    position:relative;
    z-index:2;
    text-align:center;
    vertical-align:central;
    /*margin-left:30%;*/
    /*border:1px solid red;*/
}

/* TAG */

.dh-tag{
    display:inline-block;
    padding:10px 22px;
    background:#fff;
    border-radius:40px;
    color:#ff7a14;
    font-size:15px;
    margin-bottom:30px;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

/* HEADING */

.dh-hero-content h1{
    font-size:52px;
    line-height:1.1;
    color:#fff;
    margin-bottom:25px;
    font-weight:700;
}

.dh-hero-content h1 span{
    color:#fff;
    font-size:42px;
    line-height:1.1;
    font-weight:600;
}

/* PARAGRAPH */

.dh-hero-content p{
    font-size:20px;
    line-height:1.8;
    color:#fff;
    max-width:700px;
    margin-bottom:40px;
    margin-left:20%;
     text-align:center;
    vertical-align:central;
}

/* BUTTONS */

.dh-hero-btns{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
    justify-content:center;
     text-align:center;
    vertical-align:central;
    /*margin-left:auto;*/
}

.dh-primary-btn{
    padding:10px 14px;
    background:#E65100;
    color:#fff;
    border-radius:6px;
    font-size:18px;
    font-weight:600;
    transition:0.3s;
    text-transform:uppercase;
}

.dh-primary-btn:hover{
    transform:translateY(-5px);
}

.dh-outline-btn{
    padding:10px 14px;
    border:2px solid #355E3B;
    color:#fff;
    border-radius:6px;
    font-size:18px;
    font-weight:600;
    transition:0.3s;
    background:#355E3B ;
    text-transform:uppercase;
}


.dh-outline-btn:hover{
    background:#E65100;
     border:2px solid #E65100;
    color:#fff;
}

/* =========================
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;
}

}
/*=================================about===========================*/
/* =========================
SERVICES SECTION
========================= */

.dh-services{
    width:100%;
    padding:50px 0;
    background:#f7f4ef;
}

/* HEADING */

.dh-services-heading{
    text-align:center;
    justify-content:center;
    margin-bottom:30px;
  
}

.dh-services-heading span{
    /*color:#ff7a14;
    font-size:18px;
    font-weight:500;
    display:block;*/
     font-size:42px;
    color:#4A2A0A;
    font-weight:600;
    line-height:1.2;
    border-bottom:2px solid #4A2A0A;
    /*margin-bottom:10px;*/
}

.dh-services-heading h2{
    font-size:42px;
    color:#4A2A0A;
    font-weight:600;
    line-height:1.2;

}

.dh-line{
    width:100px;
    height:4px;
    background:#ff7a14;
    /*margin:12px auto 0;*/
    border-radius:10px;
}

/* GRID */

/*.dh-services-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}*/

/* CARD */

.dh-service-card{
    width:200px;
    text-align:center;
    transition:0.4s;
}

.dh-service-card:hover{
    transform:translateY(-10px);
}

/* ICON */

.dh-service-icon{
    width:120px;
    height:120px;
    background:#fff;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 28px;

    color:#fff;
    font-size:46px;

    box-shadow:0 15px 35px rgba(255,122,20,0.28);

    transition:0.4s;
}

.dh-service-card:hover .dh-service-icon{
    transform:scale(1.08) rotate(4deg);
}

/* TITLE */

.dh-service-card h3{
    font-size:24px;
    color:#3d2414;
    margin-bottom:10px;
    font-weight:600;
     height:50px;
  }

/* TEXT */

.dh-service-card p{
    font-size:18px;
    color:#5e5147;
    line-height:1.7;
   
}
/*====================auto scroll============================*/
/* MAIN WRAPPER */

.dh-services-wrapper{
    overflow:hidden;
    width:100%;
    position:relative;
    padding:20px 0;
}

/* AUTO SCROLL TRACK */

.dh-services-grid{
    display:flex;
    gap:30px;
   width:calc((260px + 20px) * 10);
    animation:dhScroll 25s linear infinite;
}

/* Pause on Hover */

.dh-services-wrapper:hover .dh-services-grid{
    animation-play-state:paused;
}

/* CARD */

.dh-service-card{
    /*min-width:260px;
    text-align:center;
    transition:0.4s;
    flex-shrink:0;*/
}

.dh-service-card:hover{
    transform:translateY(-10px);
}

/* ICON */

.dh-service-icon{
    /*width:120px;
    height:120px;
    background:#fff;
    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin:auto auto 28px;

    color:#fff;
    font-size:46px;

    box-shadow:0 15px 35px rgba(255,122,20,0.28);

    transition:0.4s;*/
}

.dh-service-card:hover .dh-service-icon{
    /*transform:scale(1.08) rotate(4deg);*/
}

/* TITLE */

.dh-service-card h3{
    /*font-size:24px;
    color:#3d2414;
    margin-bottom:10px;
    font-weight:600;
    height:80px;*/
}

/* TEXT */

.dh-service-card p{
    /*font-size:18px;
    color:#5e5147;
    line-height:1.7;*/
}

/* ANIMATION */

@keyframes dhScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}
/* =========================
RESPONSIVE CSS
========================= */

@media(max-width:1100px){

    .dh-services-grid{
        grid-template-columns:repeat(3,1fr);
    }

}

@media(max-width:768px){

    .dh-services{
        padding:80px 0;
    }

    .dh-services-heading h2{
        font-size:42px;
    }

    .dh-services-grid{
        grid-template-columns:repeat(2,1fr);
        gap:35px;
    }

}

@media(max-width:480px){

    .dh-services-heading h2{
        font-size:34px;
    }

    .dh-services-grid{
        grid-template-columns:1fr;
    }

    .dh-service-icon{
        width:90px;
        height:90px;
        font-size:38px;
    }

    .dh-service-card h3{
        font-size:24px;
    }

    .dh-service-card p{
        font-size:16px;
    }

}
    /* =========================
ABOUT TEMPLE SECTION
========================= */
.sanatan-section {
  background-color: #F8F3EC;
  padding: 40px 0;
  font-family: 'Noto Sans Devanagari', 'Mangal', sans-serif;
}

.sanatan-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: auto;
}

.sanatan-image img {
  width: 100%;
  max-width: 600px;
  height:420px;
  border-radius: 8px;
}

.sanatan-content {
  flex: 1;
  min-width: 320px;
  padding: 20px 40px;
}

.title {
  font-size: 42px;
  font-weight: 700;
  color: #4A2A0A;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 26px;
  font-weight: 600;
  color: #A56B3F;
  margin-bottom: 20px;
}

.description {
  font-size: 20px;
  color: #333333;
  line-height: 1.6;
  margin-bottom: 25px;
}

.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 20px;
  margin-bottom: 30px;
  
  
}

.feature {
  display: flex;
  align-items: center;
  font-size: 18px;
  color: #4A2A0A;

}

.icon {
  /*font-size: 18px;*/
  margin-right: 8px;
  color: #E65100;
  border-radius:50%;
  background:#fbceb5;
}
    .icon img
    {
        width:30px;height:30px;
    }
.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.btn {
  text-decoration: none;
  padding: 12px 24px;
   justify-content: center;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
     border:1px solid;


}

.btn.primary {
      justify-content: center;
  background-color: #E65100;
  color: #fff;
     text-align:center;
  vertical-align:middle;
   /*margin:auto;*/
}

.btn.secondary {
      justify-content: center;
  border: 2px solid #E65100;
  color: #E65100;
  background-color: #fff;
}

.btn:hover {
  transform: translateY(-2px);
}

    /* =========================
COUNTER SECTION
========================= */
.DonationWrap *{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

.DonationWrap{
    width:90%;
    font-family:'Poppins',sans-serif;
    background:#fff;
    overflow:hidden;
    margin:auto;
}

/* ===== Top Area ===== */

.DonationWrap .donation-main{
    display:flex;
    width:100%;
    min-height:360px;
    border:1px solid #d8b28d;
}

/* ===== Left Side ===== */

.DonationWrap .left-side{
    width:40%;
    position:relative;
    background:url('image/donate_img.png') center center/cover no-repeat;
    display:flex;
    align-items:center;
    padding:50px;
    overflow:hidden;
}

.DonationWrap .left-side::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(to right,rgba(60,18,0,.75),rgba(117,53,0,.60));
}

.DonationWrap .left-content{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:420px;
}

.DonationWrap .left-content h2{
    font-size:48px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:20px;
}

.DonationWrap .left-content p{
    font-size:18px;
    line-height:1.8;
    color:#f1e4d6;
}

/* ===== Right Side ===== */

.DonationWrap .right-side{
    width:60%;
    background:rgba(245, 39, 145, 0.07);
    padding:35px 40px;
    display:flex;
    gap:20px;
    align-items:flex-start;
}

/* QR */

.DonationWrap .qr-box{
    width:240px;
}

.DonationWrap .qr-title{
    font-size:32px;
    color:#7a3300;
    font-weight:600;
    margin-bottom:18px;
    text-align:center;
    vertical-align:central;
    
}
.DonationWrap .qr-title span{
    font-size:32px;
    color:#7a3300;
    font-weight:600;
    margin-bottom:18px;
    text-align:center;
    vertical-align:central;
    border-bottom:3px solid #d86c00;
}
.DonationWrap .qr-image{
    width:180px;
    height:180px;
    background:#fff;
    padding:10px;
    border-radius:10px;
    border:1px solid #e3d8ca;
    display:flex;
    margin:auto;
    align-items:center;
    justify-content:center;
}

.DonationWrap .qr-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.DonationWrap .upi{
    margin-top:15px;
    font-size:17px;
    text-align:center;
    vertical-align:central;
    color:#5b4a3e;
    line-height:1.7;
}

.DonationWrap .upi strong{
    color:#000;
}

/* Donation Form */

.DonationWrap .donation-form{
    flex:1;
}

.DonationWrap .tabs{
    display:flex;
    gap:40px;
    margin-bottom:30px;
    border-bottom:1px solid #e5d4c3;
}

.DonationWrap .tab{
    padding-bottom:14px;
    font-size:18px;
    color:#7d6d5d;
    font-weight:600;
    position:relative;
    cursor:pointer;
}

.DonationWrap .tab.active{
    color:#d86c00;
}

.DonationWrap .tab.active::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-1px;
    width:100%;
    height:3px;
    background:#e77700;
}

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

.DonationWrap .amount-btn{
    height:58px;
    border:1px solid #e3d5c8;
    background:#fff;
    border-radius:10px;
    font-size:18px;
    font-weight:600;
    color:#3d3d3d;
    cursor:pointer;
    transition:.3s;
}

.DonationWrap .amount-btn:hover{
    background:#f7ede3;
}

.DonationWrap .custom-input{
    width:100%;
    height:60px;
    border:1px solid #e3d5c8;
    border-radius:10px;
    padding:0 20px;
    font-size:18px;
    margin-bottom:20px;
    outline:none;
}

.DonationWrap .donate-btn{
    width:100%;
    height:64px;
    border:none;
    border-radius:10px;
    background:linear-gradient(to right,#d76700,#ef7d00);
    color:#fff;
    font-size:22px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
}

.DonationWrap .donate-btn:hover{
    transform:translateY(-2px);
}

/* ===== Counter Section ===== */

.DonationWrap .counter-section{
    background:linear-gradient(to right,#1d0d02,#4b2100,#1d0d02);
    border-top:2px solid #d08a34;
    padding:28px 20px;
}

.DonationWrap .counter-wrap{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    justify-content:center;
     align-items:center;
}

.DonationWrap .counter-box{
    display:flex;
    align-items:center;
    gap:16px;
    justify-content:center;
}

.DonationWrap .counter-icon{
    width:68px;
    height:68px;
    border:2px solid #c98014;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#c98014;
    font-size:28px;
    flex-shrink:0;
}

.DonationWrap .counter-text h3{
    color:#f0a31b;
    font-size:28px;
    line-height:1;
    margin-bottom:8px;
    font-weight:600;
}

.DonationWrap .counter-text p{
    color:#fff;
    font-size:14px;
    line-height:1.4;
}

/* ===== Responsive ===== */

@media(max-width:1200px){

.DonationWrap .left-content h2{
    font-size:40px;
}

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

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

}

@media(max-width:991px){

.DonationWrap .donation-main{
    flex-direction:column;
}

.DonationWrap .left-side,
.DonationWrap .right-side{
    width:100%;
}

.DonationWrap .right-side{
    flex-direction:column;
}

.DonationWrap .qr-box{
    width:100%;
}

.DonationWrap .counter-wrap{
    grid-template-columns:repeat(2,1fr);
}
.DonationWrap .qr-image{
     margin:auto;
}
}

@media(max-width:600px){

.DonationWrap .left-side{
    padding:35px 25px;
}

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

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

.DonationWrap .right-side{
    padding:25px 20px;
}

.DonationWrap .qr-title{
    font-size:30px;
}
.DonationWrap .qr-image{
   margin:auto;

}
.DonationWrap .tabs{
    gap:20px;
}

.DonationWrap .tab{
    font-size:15px;
}

.DonationWrap .amount-grid{
    grid-template-columns:1fr;
}

.DonationWrap .counter-wrap{
    grid-template-columns:1fr;
   
    margin:auto;

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

}

.DonationWrap .counter-box{
    justify-content:flex-start;
    /*margin:auto;*/
}

.DonationWrap .counter-text h3{
    font-size:32px;
}

}

  /*/*===========================gallery=============================*/*/


.mg-gallery-section *{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.mg-gallery-section{
  width:100%;
  background:#f6f1eb;
  padding:90px 20px 70px;
  overflow:hidden;
  position:relative;
  font-family:"Noto Sans Devanagari", sans-serif;
}

.mg-gallery-container{
  max-width:1080px;
  margin:auto;
}

/* =========================
   HEADING
========================= */
.heading-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F8F3EC; /* हल्का बेज बैकग्राउंड */
  padding: 10px 0;
}

.heading-gallery h2 {
  font-family: 'Noto Sans Devanagari', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #4A2A0A; /* गहरा भूरा रंग */
  margin: 0 15px;
}

.decor-line {
  width: 80px;
  height: 1px;
  background-color: #A56B3F;
  position: relative;
}

.decor-line::before {
  content: '';
  position: absolute;
  top: -3px;
  width: 6px;
  height: 6px;
  border: 1px solid #A56B3F;
  transform: rotate(45deg);
  background-color: #F8F3EC;
}

.decor-line.left::before {
  left: 0;
}

    .decor-line.right::before
    {
        right: 0;
    }

.mg-gallery-heading{
  text-align:center;
  margin-bottom:42px;
  animation:mgFadeUp 1s ease;
}

.mg-gallery-subtitle{
  display:inline-block;
  font-size:13px;
  color:#f57b20;
  margin-bottom:10px;
  font-weight:600;
  letter-spacing:.4px;
}

.mg-gallery-heading h2{
  font-size:48px;
  line-height:1.1;
  color:#2b1a12;
  margin-bottom:14px;
  font-weight:500;
}

.mg-gallery-heading p{
  font-size:15px;
  color:#5d5d5d;
  max-width:620px;
  margin:auto;
  line-height:1.7;
}

/* =========================
   GRID
========================= */

.mg-gallery-grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:16px;
}

/* =========================
   CARD
========================= */

.mg-gallery-card{
  position:relative;
  display:block;
  overflow:hidden;
  border-radius:12px;
  background:#eaeaea;
  height:145px;
  text-decoration:none;
  box-shadow:0 5px 16px rgba(0,0,0,0.06);
  transform:translateY(40px);
  opacity:0;
  animation:mgCardAnimation .8s ease forwards;
}

.mg-gallery-card:nth-child(1){animation-delay:.1s;}
.mg-gallery-card:nth-child(2){animation-delay:.2s;}
.mg-gallery-card:nth-child(3){animation-delay:.3s;}
.mg-gallery-card:nth-child(4){animation-delay:.4s;}
.mg-gallery-card:nth-child(5){animation-delay:.5s;}
.mg-gallery-card:nth-child(6){animation-delay:.6s;}
.mg-gallery-card:nth-child(7){animation-delay:.7s;}
.mg-gallery-card:nth-child(8){animation-delay:.8s;}

.mg-gallery-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .7s ease;
    filter: brightness(110%);
}

.mg-gallery-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(0,0,0,.55),
    rgba(0,0,0,.05)
  );
  opacity:.8;
  transition:.4s;
}

.mg-gallery-card span{
  position:absolute;
  left:14px;
  bottom:12px;
  color:#fff;
  font-size:13px;
  font-weight:500;
  z-index:2;
}

.mg-gallery-card:hover img{
  /*transform:scale(1.12);*/
}

.mg-gallery-card:hover::before{
  /*opacity:1;*/
}

/* ACTIVE CARD */

.mg-gallery-card.active{
  /*transform:translateY(-8px);
  box-shadow:0 14px 28px rgba(0,0,0,0.18);*/
}

/* =========================
   BUTTON
========================= */

.mg-gallery-btn-wrap{
  text-align:center;
  margin-top:34px;
}

.mg-gallery-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  min-width:145px;
  height:46px;
  padding:0 26px;
  border-radius:50px;
  background:#f57b20;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  transition:.35s ease;
  box-shadow:0 8px 20px rgba(245,123,32,.28);
}

.mg-gallery-btn:hover{
  transform:translateY(-4px);
  background:#e96d10;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes mgFadeUp{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes mgCardAnimation{
  from{
    opacity:0;
    transform:translateY(50px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .mg-gallery-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .mg-gallery-heading h2{
    font-size:38px;
  }

}

@media(max-width:576px){

  .mg-gallery-section{
    padding:70px 16px 60px;
  }

  .mg-gallery-grid{
    grid-template-columns:1fr;
  }

  .mg-gallery-heading h2{
    font-size:30px;
  }

  .mg-gallery-heading p{
    font-size:14px;
  }

  .mg-gallery-card{
    height:210px;
  }

}
 /* =========================
   AUTO SCROLL GALLERY
========================= */

.mg-gallery-scroll{
  width:100%;
  overflow:hidden;
  position:relative;
}

.mg-gallery-track{
  display:flex;
  align-items:center;
  gap:16px;
  width:max-content;
  animation:mgInfiniteScroll 20s linear infinite;
}

/* Pause on hover */
.mg-gallery-scroll:hover .mg-gallery-track{
  animation-play-state:paused;
}

/* Card */
.mg-gallery-track .mg-gallery-card{
  width:220px;
  min-width:220px;
  flex-shrink:0;
}

/* Smooth Infinite Animation */
@keyframes mgInfiniteScroll{
  0%{
    transform:translateX(0);
  }
  100%{
    transform:translateX(calc(-50% - 8px));
  }
}

/* Mobile */
@media(max-width:576px){

  .mg-gallery-track .mg-gallery-card{
    width:280px;
    min-width:280px;
  }

}
    /*===========================new publication=======================*/
    
/* =========================
   SECTION
========================= */

.latest-blog-section{
    width:100%;
    padding:30px 20px;
    background:#f7f4f1;
}

.latest-blog-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    gap:28px;
    align-items:flex-start;
}

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

.blog-left{
    flex:1;
    margin:auto;
    justify-content: center;
}

.section-title{
    text-align:center;
    margin-bottom:28px;
    position:relative;
}

.section-title h2{
    font-family:'Noto Serif Devanagari',serif;
    font-size:32px;
    font-weight:700;
    color:#5a2608;
    display:inline-flex;
    align-items:center;
    gap:18px;
    line-height:1;
}

.section-title h2::before,
.section-title h2::after{
    content:"";
    width:120px;
    height:2px;
    background:#e9c89d;
    display:block;
    position:relative;
}

.section-title h2::before{
    box-shadow:10px 0 0 #d7a86d;
}

.section-title h2::after{
    box-shadow:-10px 0 0 #d7a86d;
}

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

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

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

.blog-card{
    background:#fff;
    border:1px solid #ececec;
    border-radius:12px;
    overflow:hidden;
    transition:.3s;
}

.blog-card:hover{
    transform:translateY(-4px);
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.blog-image{
    position:relative;
    overflow:hidden;
}

.blog-image img{
    width:100%;
    height:200px;
    object-fit:cover;
    display:block;
}

.blog-tag{
    /*position:absolute;*/
   margin-left:20px;
      background:#f59c2f;
    color:#fff;
    font-size:13px;
    font-weight:600;
    padding:6px 12px;
    border-radius:6px;
    font-family:'Poppins',sans-serif;
}

.blog-content{
    padding:18px 18px 16px;
}

.blog-title{
    font-family:'Noto Serif Devanagari',serif;
    color:#2d1c12;
    font-size:18px;
    line-height:1.35;
    font-weight:600;
    margin-bottom:18px;
}

.blog-footer{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:10px;
}

.blog-date{
    color:#8f8f8f;
    font-size:14px;
    font-weight:500;
}

.read-more{
    text-decoration:none;
    color:#f28b1f;
    font-size:15px;
    font-weight:600;
    transition:.3s;
}

.read-more:hover{
    color:#c76300;
}

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

.service-box{
    width:320px;
    background:url('image/pb_img.png')center center/cover no-repeat;
    border-radius:16px;
    padding:30px 22px 0;
    position:relative;
    overflow:hidden;
    min-height:410px;
}

.service-box h3{
    font-family:'Noto Serif Devanagari',serif;
    font-size:32px;
    line-height:1.25;
    text-align:center;
    color:#8c3e00;
    margin-bottom:18px;
    font-weight:700;
}

.service-box p{
    text-align:center;
    color:#715b4a;
     font-weight:600;
    line-height:1.9;
    margin-bottom:22px;
}

.service-btn{
    display:flex;
    justify-content:center;
}

.service-btn a{
    background:#ef7d13;
    color:#fff;
    text-decoration:none;
    padding:16px 34px;
    border-radius:8px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.service-btn a:hover{
    background:#d96800;
}

.hands-img{
    width:100%;
    margin-top:42px;
    display:block;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1100px){

    .latest-blog-container{
        flex-direction:column;
    }

    .service-box{
        width:100%;
        min-height:auto;
    }
}

@media(max-width:900px){

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

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

    .blog-title{
        font-size:26px;
    }
}

@media(max-width:600px){

    .latest-blog-section{
        padding:30px 15px;
    }

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

    .section-title h2{
        font-size:28px;
        gap:10px;
    }

    .section-title h2::before,
    .section-title h2::after{
        width:45px;
    }

    .blog-image img{
        height:220px;
    }

    .blog-title{
        font-size:24px;
    }

    .service-box{
        padding:30px 20px 0;
    }

    .service-box h3{
        font-size:38px;
    }

    .service-box p{
        font-size:17px;
    }

    .service-btn a{
        width:100%;
        text-align:center;
    }
}
    /*<!--    ================================vedio====================================-->*/
    /* =========================
   VIDEO SECTION
========================= */

.mg-video-section *{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.mg-video-section{
  width:100%;
  background:#f3f3f3;
  padding:90px 20px;
  overflow:hidden;
  font-family:"Noto Sans Devanagari", sans-serif;
}

.mg-video-container{
  max-width:1120px;
  margin:auto;
}

/* =========================
   HEADING
========================= */

.mg-video-heading{
  text-align:center;
  margin-bottom:55px;
  animation:mgVideoFade .8s ease;
}

.mg-video-subtitle{
  display:block;
  color:#ef6b11;
  font-size:14px;
  font-weight:600;
  margin-bottom:8px;
}

.mg-video-heading h2{
  position:relative;
  display:inline-block;
  font-size:54px;
  color:#2d1a11;
  font-weight:500;
  line-height:1.1;
  padding-bottom:18px;
}

.mg-video-heading h2::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:66px;
  height:3px;
  border-radius:10px;
  background:#ef6b11;
}

/* =========================
   GRID
========================= */

.mg-video-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

/* =========================
   CARD
========================= */

.mg-video-card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,0.08);
  transition:.45s ease;
  animation:mgVideoCard .8s ease forwards;
  opacity:0;
  transform:translateY(50px);
}

.mg-video-card:nth-child(1){
  animation-delay:.15s;
}

.mg-video-card:nth-child(2){
  animation-delay:.35s;
}

.mg-video-card:nth-child(3){
  animation-delay:.55s;
}

.mg-video-card:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 38px rgba(0,0,0,0.15);
}

/* =========================
   THUMB
========================= */

.mg-video-thumb{
  position:relative;
  height:250px;
  overflow:hidden;
  background:#d8bcac;
}

.mg-video-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .8s ease;
}

.mg-video-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.08);
  transition:.4s;
}

.mg-video-card:hover .mg-video-overlay{
  background:rgba(0,0,0,0.18);
}

.mg-video-card:hover .mg-video-thumb img{
  transform:scale(1.08);
}

/* =========================
   PLAY BUTTON
========================= */

.mg-video-play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width:54px;
  height:54px;
  border-radius:50%;
  background:#fff;
  color:#ef6b11;
  text-decoration:none;
  font-size:20px;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.15);
  transition:.4s ease;
  z-index:2;
}

.mg-video-play:hover{
  transform:translate(-50%,-50%) scale(1.1);
}

/* pulse animation */

.mg-video-play::before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.5);
  animation:mgPulse 2s infinite;
}

/* =========================
   CONTENT
========================= */

.mg-video-content{
  background:#f2ecd9;
  padding:18px 20px 20px;
}

.mg-video-time{
  display:inline-block;
  font-size:12px;
  color:#ef6b11;
  margin-bottom:8px;
}

.mg-video-content h3{
  font-size:24px;
  color:#24150f;
  font-weight:500;
  margin-bottom:10px;
  line-height:1.3;
}

.mg-video-content p{
  color:#5f5f5f;
  font-size:14px;
  line-height:1.7;
}

/* =========================
   ANIMATION
========================= */

@keyframes mgVideoFade{
  from{
    opacity:0;
    transform:translateY(30px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes mgVideoCard{
  from{
    opacity:0;
    transform:translateY(50px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes mgPulse{
  0%{
    transform:scale(.8);
    opacity:1;
  }
  100%{
    transform:scale(1.5);
    opacity:0;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .mg-video-grid{
    grid-template-columns:1fr;
    max-width:650px;
    margin:auto;
  }

  .mg-video-heading h2{
    font-size:42px;
  }

}

@media(max-width:576px){

  .mg-video-section{
    padding:70px 15px;
  }

  .mg-video-heading{
    margin-bottom:40px;
  }

  .mg-video-heading h2{
    font-size:32px;
  }

  .mg-video-thumb{
    height:220px;
  }

  .mg-video-content h3{
    font-size:21px;
  }

}
    /*===========================================donation============================*/
/* =========================
   DONATION SECTION
========================= */

.mg-donation-section *{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.mg-donation-section{
  width:100%;
  background:#f7f3ee;
  padding:90px 20px;
  overflow:hidden;
  font-family:"Noto Sans Devanagari", sans-serif;
}

.mg-donation-container{
  max-width:1120px;
  margin:auto;
  display:grid;
  grid-template-columns:1.1fr .95fr;
  gap:42px;
  align-items:center;
}

/* =========================
   LEFT CONTENT
========================= */

.mg-donation-left{
  animation:mgFadeLeft .9s ease;
}

.mg-donation-subtitle{
  display:inline-block;
  color:#f97316;
  font-size:14px;
  font-weight:600;
  margin-bottom:14px;
}

.mg-donation-title{
  font-size:58px;
  line-height:1.1;
  color:#28170f;
  font-weight:500;
  margin-bottom:22px;
}

.mg-donation-line{
  width:54px;
  height:3px;
  background:#f97316;
  border-radius:20px;
  margin-bottom:24px;
}

.mg-donation-text{
  max-width:560px;
  color:#4d4d4d;
  font-size:17px;
  line-height:1.9;
  margin-bottom:34px;
}

/* =========================
   USE BOX
========================= */

.mg-donation-usebox{
  background:#fff;
  border-radius:16px;
  padding:28px 24px;
  box-shadow:0 10px 28px rgba(0,0,0,0.07);
  margin-bottom:34px;
  transition:.4s ease;
}

.mg-donation-usebox:hover{
  transform:translateY(-5px);
}

.mg-donation-usebox h3{
  font-size:36px;
  color:#2b1a12;
  margin-bottom:24px;
  font-weight:500;
}

/* =========================
   LIST ITEM
========================= */

.mg-donation-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.mg-donation-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
  transition:.35s ease;
}

.mg-donation-item:hover{
  transform:translateX(8px);
}

.mg-donation-icon{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:50%;
  background:#f97316;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  color:#fff;
  box-shadow:0 6px 18px rgba(249,115,22,.3);
}

.mg-donation-info h4{
  font-size:18px;
  color:#26160f;
  margin-bottom:4px;
  font-weight:500;
}

.mg-donation-info p{
  color:#666;
  font-size:14px;
  line-height:1.6;
}

/* =========================
   BUTTON
========================= */

.mg-donation-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:190px;
  height:58px;
  padding:0 34px;
  border-radius:50px;
  background:#f97316;
  color:#fff;
  text-decoration:none;
  font-size:17px;
  font-weight:600;
  transition:.4s ease;
  box-shadow:0 12px 25px rgba(249,115,22,.28);
}

.mg-donation-btn:hover{
  transform:translateY(-4px);
  background:#eb680f;
}

/* =========================
   RIGHT SIDE
========================= */

.mg-donation-right{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  animation:mgFadeRight .9s ease;
}

/* =========================
   CARD
========================= */

.mg-donation-card{
  background:#fff;
  border-radius:16px;
  padding:36px 22px;
  text-align:center;
  box-shadow:0 10px 28px rgba(0,0,0,0.07);
  transition:.45s ease;
  position:relative;
  overflow:hidden;
}

.mg-donation-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.5),
    transparent
  );
  transition:.7s;
}

.mg-donation-card:hover::before{
  left:100%;
}

.mg-donation-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 38px rgba(0,0,0,0.12);
}

.mg-donation-card.active{
  transform:translateY(-10px);
}

.mg-card-icon{
  width:54px;
  height:54px;
  border-radius:14px;
  background:#f97316;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 22px;
  font-size:24px;
  color:#fff;
  box-shadow:0 10px 22px rgba(249,115,22,.3);
}

.mg-donation-card h3{
  font-size:28px;
  color:#29170f;
  margin-bottom:12px;
  font-weight:500;
}

.mg-donation-card p{
  color:#666;
  font-size:15px;
  line-height:1.7;
  margin-bottom:16px;
}

.mg-donation-card span{
  color:#f97316;
  font-size:24px;
  font-weight:700;
}

/* =========================
   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);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .mg-donation-container{
    grid-template-columns:1fr;
  }

  .mg-donation-right{
    max-width:700px;
  }

  .mg-donation-title{
    font-size:46px;
  }

}

@media(max-width:767px){

  .mg-donation-right{
    grid-template-columns:1fr;
  }

  .mg-donation-title{
    font-size:36px;
  }

  .mg-donation-usebox h3{
    font-size:28px;
  }

}

@media(max-width:576px){

  .mg-donation-section{
    padding:70px 15px;
  }

  .mg-donation-title{
    font-size:31px;
  }

  .mg-donation-text{
    font-size:15px;
  }

  .mg-donation-card{
    padding:30px 18px;
  }

  .mg-donation-card h3{
    font-size:24px;
  }

  .mg-donation-btn{
    width:100%;
  }

}
/*=============================event===========================*/
/* =========================
   EVENT SECTION
========================= */

.mg-event-section *{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.mg-event-section{
  width:100%;
  background:#f6f6f6;
  padding:90px 20px;
  overflow:hidden;
  font-family:"Noto Sans Devanagari", sans-serif;
}

.mg-event-container{
  max-width:1120px;
  margin:auto;
}

/* =========================
   HEADING
========================= */

.mg-event-heading{
  text-align:center;
  margin-bottom:65px;
  animation:mgFadeDown .8s ease;
}

.mg-event-subtitle{
  display:block;
  color:#f97316;
  font-size:14px;
  font-weight:600;
  margin-bottom:10px;
}

.mg-event-heading h2{
  position:relative;
  display:inline-block;
  font-size:58px;
  line-height:1.1;
  color:#2b190f;
  font-weight:500;
  padding-bottom:18px;
}

.mg-event-heading h2::after{
  content:"";
  position:absolute;
  left:50%;
  bottom:0;
  transform:translateX(-50%);
  width:66px;
  height:3px;
  border-radius:20px;
  background:#f97316;
}

/* =========================
   GRID
========================= */

.mg-event-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

/* =========================
   CARD
========================= */

.mg-event-card{
  background:#f5efdf;
  border-radius:14px;
  padding:22px;
  display:flex;
  gap:18px;
  transition:.45s ease;
  position:relative;
  overflow:hidden;
  box-shadow:0 8px 24px rgba(0,0,0,0.05);
  animation:mgFadeUp .8s ease forwards;
  opacity:0;
  transform:translateY(50px);
}

.mg-event-card:nth-child(1){
  animation-delay:.15s;
}

.mg-event-card:nth-child(2){
  animation-delay:.35s;
}

.mg-event-card:nth-child(3){
  animation-delay:.55s;
}

.mg-event-card::before{
  content:"";
  position:absolute;
  top:0;
  left:-100%;
  width:100%;
  height:100%;
  background:linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,.4),
    transparent
  );
  transition:.8s;
}

.mg-event-card:hover::before{
  left:100%;
}

.mg-event-card:hover{
  transform:translateY(-10px);
  box-shadow:0 18px 38px rgba(0,0,0,0.12);
}

.mg-event-card.active{
  transform:translateY(-8px);
}

/* =========================
   DATE BOX
========================= */

.mg-event-date{
  width:66px;
  min-width:66px;
  height:66px;
  background:#f97316;
  border-radius:12px;
  color:#fff;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 22px rgba(249,115,22,.3);
}

.mg-event-day{
  font-size:28px;
  line-height:1;
  font-weight:700;
}

.mg-event-month{
  font-size:12px;
  margin-top:4px;
}

/* =========================
   CONTENT
========================= */

.mg-event-content{
  flex:1;
}

.mg-event-year{
  display:inline-block;
  color:#f97316;
  font-size:12px;
  margin-bottom:10px;
}

.mg-event-content h3{
  font-size:30px;
  color:#2a180f;
  font-weight:500;
  margin-bottom:16px;
  line-height:1.3;
}

.mg-event-content p{
  color:#555;
  font-size:15px;
  line-height:1.8;
  margin-bottom:18px;
}

.mg-event-time{
  color:#444;
  font-size:14px;
  margin-bottom:16px;
}

.mg-event-link{
  color:#f97316;
  text-decoration:none;
  font-size:15px;
  font-weight:600;
  transition:.35s;
}

.mg-event-link:hover{
  letter-spacing:.5px;
}

/* =========================
   ANIMATION
========================= */

@keyframes mgFadeDown{
  from{
    opacity:0;
    transform:translateY(-40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes mgFadeUp{
  from{
    opacity:0;
    transform:translateY(50px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .mg-event-grid{
    grid-template-columns:1fr;
    max-width:700px;
    margin:auto;
  }

  .mg-event-heading h2{
    font-size:46px;
  }

}

@media(max-width:767px){

  .mg-event-card{
    flex-direction:column;
  }

  .mg-event-date{
    width:74px;
    height:74px;
  }

  .mg-event-content h3{
    font-size:24px;
  }

}

@media(max-width:576px){

  .mg-event-section{
    padding:70px 15px;
  }

  .mg-event-heading{
    margin-bottom:45px;
  }

  .mg-event-heading h2{
    font-size:34px;
  }

  .mg-event-content p{
    font-size:14px;
  }

}
    /*=======================contact=======================*/
  
.mg-contact-section *{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

.mg-contact-section{
  position:relative;
  width:100%;
  overflow:hidden;
  background:#2e1306;
  padding:90px 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:55px;
}

.mg-contact-subtitle{
  display:block;
  color:#ff7a00;
  font-size:14px;
  font-weight:600;
  margin-bottom:10px;
}

.mg-contact-heading h2{
  position:relative;
  display:inline-block;
  color:#fff;
  font-size:58px;
  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:flex;
  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:#fff;
  box-shadow:0 12px 24px rgba(255,111,15,.25);
}

.mg-contact-content h3{
  color:#fff;
  font-size:28px;
  font-weight:500;
  margin-bottom:10px;
}

.mg-contact-content p{
  color:#f1f1f1;
  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:34px 22px;
  backdrop-filter:blur(12px);
  box-shadow:0 12px 38px rgba(0,0,0,.18);
}

.mg-contact-form h3{
  color:#fff;
  font-size:34px;
  font-weight:500;
  margin-bottom:28px;
}

/* =========================
   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(255,255,255,.15);
  border-radius:12px;
  padding:16px 18px;
  color:#fff;
  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:#d0d0d0;
}

.mg-contact-field input:focus,
.mg-contact-field textarea:focus{
  border-color:#ff7a00;
  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:#fff;
  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;
}

/* =========================
   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);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .mg-contact-container{
    grid-template-columns:1fr;
    gap:55px;
  }

  .mg-contact-heading h2{
    font-size:46px;
  }

}

@media(max-width:767px){

  .mg-contact-content h3{
    font-size:22px;
  }

  .mg-contact-form h3{
    font-size:28px;
  }

}

@media(max-width:576px){

  .mg-contact-section{
    padding:70px 15px;
  }

  .mg-contact-heading{
    margin-bottom:40px;
  }

  .mg-contact-heading h2{
    font-size:34px;
  }

  .mg-contact-item{
    gap:14px;
  }

  .mg-contact-icon{
    width:48px;
    height:48px;
    min-width:48px;
    font-size:20px;
  }

  .mg-contact-content p{
    font-size:14px;
  }

  .mg-contact-form{
    padding:28px 16px;
  }

}
    /*===============================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 ===== */

@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 ===== */