.container {
    max-width: 1440px;
}

body {
    font-family: "Inter", sans-serif;
    font-weight: normal;
    line-height: normal;
}

/* .headerSection {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.headerSection {
  width: 100%;
  padding: 15px 40px;
  background: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: transform 0.4s ease, opacity 0.4s ease;
  border-bottom: 2px solid #F2581D;
}

.ourDonateNow .container {
    display: none;
}


.btn-org {
    background: #F2581D;
    padding: 7px;
    border-radius: 30px;
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: all 0.40s ease-in-out;
}

.btn-org span {
    padding: 0 12px;
}

.btn-org:hover {
    background: #2C266C;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.40s ease-in-out;
    flex-direction: row-reverse;
}

.btn-blue {
    background: #303030;
    border: 1px solid #303030;
    padding: 7px;
    border-radius: 30px;
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    transition: all 0.40s ease-in-out;
    margin: 0 auto;
}

.btn-blue span {
    padding: 0 12px;
}

.btn-blue:hover {
    background: #ffffff;
    color: #303030;
    text-decoration: none;
    transition: all 0.40s ease-in-out;
    flex-direction: row-reverse;
}

.heroContainer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.heroContainer:after {
    content: "";
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), transparent);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
        height: 100%;
}

.heroContainer .video-wrapper {
  position: relative;
  width: 100%;
  height: 85vh; /* FULL screen height */
  background: #000;
  overflow: hidden;
}

.heroContainer .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.heroContainer .container {
    max-width: 1400px;
}

.heroContainer .content {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
    bottom: 10%;
}

.heroContainer .content .heading {
        max-width: 720px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.heroContainer .content .heading h1 {
    font-size: clamp(36px, 5vw, 72px);
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 4px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
}

.heroContainer .content .heading p {
    font-size: clamp(16px, 5vw, 28px);
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 4px 1px rgba(0, 0, 0, 0.4);
    text-align: center;
    line-height: 40px;
}

.heroContainer .content .heading .gap-10{
    gap: 15px;
}

.heroContainer .content .heading .gap-10 img{
    width: auto;
    height: auto;
}

.heroContainer .content .heading .gap-10 .btn-org,
.heroContainer .content .heading .gap-10 .btn-blue{
    border:1px solid #ffffff;
}

.heroContainer .content .heading .gap-10 .btn-org {
    background: rgba(242, 88, 29, 0.75);;
}

.heroContainer .content .heading .gap-10 .btn-blue {
    background: rgba(48 48 48, 0.75);;
}


.heroContainer img {
    width: 100%;
    height: auto;
}

.heroContainer .imgBanner {
  transform: scale(1);   /* start scale */
  will-change: transform;
}

/**/

.formContainer {
    padding: 60px 0;
}

.formSection {
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    position: relative;
}

.formDonation {
    position: absolute;
    right: 50px;
    max-width: 50%;
}

.formDonation .form-group{
       margin-bottom: 30px;
    position: relative;
}

.formDonation .form-group label.error{
   color: #ffffff;
    font-size: 13px;
    font-style: italic;
    font-weight: 300;
    position: absolute;
    top: -19px;
    display: none;
}

.formDonation .form-group .form-control {
    background: rgba(255, 255, 255, 0.8);
    border-radius: 6px;
    border: 1px solid #ffffff;
    padding: 12px;
    height: 46px;
}

.formDonation .form-group .form-control.select-arrow {
    background: rgba(255, 255, 255, 0.8) url(../img/select-arrow.png) no-repeat 97% center;
}

.formDonation .form-group .form-control.error{
    color: #ff0000 !important;
}

/* Placeholder color */
.formDonation .form-group .form-control.error::placeholder{
    color: #ff0000 !important;
}

/* Browser compatibility */
.formDonation .form-group .form-control.error::-webkit-input-placeholder{
    color: #ff0000 !important;
}

.formDonation .form-group .form-control.error::-moz-placeholder{
    color: #ff0000 !important;
}

.formDonation .form-group .form-control.error:-ms-input-placeholder{
    color: #ff0000 !important;
}

.formDonation .form-group .form-control.error:-moz-placeholder{
    color: #ff0000 !important;
}


.formDonation .heading h2 {
    font-size: 48px;
    font-size: clamp(36px, 4vw, 48px);
    font-weight: bold;
    color: #ffffff;
    text-shadow: 0 3px 1px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.formDonation .heading p {
    font-size: 24px;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    line-height: clamp(30px, 5vw, 40px);
    opacity: 0.8;
}

/**/

/**/
.ourAchievements {
    padding:30px 0 60px 0;
    position: relative;
}

.ourAchievements:before{
    content: '';
    background: #FFFBEB;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    width: 100%;
}

.achieveContent{
    position: absolute;
    z-index: 1;
    left: 100px;
    width: 650px;
}

.ourAchievements .heading {
    margin-bottom: 20px;
}

.ourAchievements .heading h2 {
    font-size: 40px;
     font-size: clamp(36px, 4vw, 40px);
    font-weight: bold;
    color: #ffffff;
    /* text-shadow: 0 3px 1px rgba(0, 0, 0, 0.3); */
    text-align: center;
    margin: 0;
}

.ourAchievements .heading h3 {
    font-size: 24px;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 400;
    color: #ffffff;
    text-align: center;
    line-height: clamp(30px, 4vw, 40px);
    opacity: 0.8;
    margin: 0;
}

.ourAchievements .desc {
    background: #ffffff;
    border-radius: 8px;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin: 0 0 20px;
}

.ourAchievements .desc img {
    margin: 0 0 10px;
    width: 140px;
    object-fit: 100%;
}

.ourAchievements .desc p {
    font-size: 18px;
    font-size: clamp(16px, 4vw, 18px);
    color: #454545;
    font-weight: 400;
    text-align: center;
    line-height: 32px;
    margin: 0;
    padding: 0;
}

.ourAchievements .desc p span {
    display: block;
    font-size: 36px;
    font-size: clamp(26px, 4vw, 36px);
    font-weight: 600;
    color: #383838;
}

/**/

.ourDonateNow {
    background: #FFFBEB;
    padding:0 0 60px 0;
}

.ourDonateNow .heading {
    margin-bottom: 30px;
}

.ourDonateNow .heading h2 {
    font-size: 42px;
    font-size: clamp(36px, 4vw, 42px);
    font-weight: bold;
    color: #383838;
    text-align: center;
    line-height: normal;
}

.ourDonateNow .heading h3 {
    font-size: 24px;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 400;
    color: #454545;
    text-align: center;
     line-height: clamp(30px, 4vw, 40px);
}

.ourDonateNow label {
    cursor: pointer;
    display: block;
    position: relative;
    margin: 0 0 30px;


}

.ourDonateNow label span {
    padding: 18px;
    background: rgba(255,255,255,0.5);
    border: 1px solid #FF9066;
    border-radius: 20px;
    font-size: 20px;
    color: #2C266C;
    font-weight: 400;
    display: block;
    position: relative;
     transition: all 0.3s ease;
}

.ourDonateNow label span::after {
    content: '';
    background: url(../img/checked-icon.svg) no-repeat center;
    width: 32px;
    height: 32px;
    position: absolute;
    right: 20px;
    top: 20px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.ourDonateNow label span strong {
    font-size: 38px;
    color: #F2581D;
    display: block;
    font-weight: bold;
}

.ourDonateNow input[type="radio"] {
    display: none;
}

.ourDonateNow input[type="radio"]:checked+span {
    background: #ffffff;
    border: 1px solid #F2581D;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}
.ourDonateNow input[type="radio"]:checked+span::after {
    opacity: 1; 
    transform: scale(1);    
    transition: all 0.3s ease;
}

/**/

.midContainer{
    padding: 60px 0 30px;
}

.giftSection{
    position: relative;
    width: 100%;
    height: 100%;
}

.giftSection::before{
    content: '';
    background: linear-gradient(0deg, #FAB115 0%, #FFE07D 100%);
    position: absolute;
    left: -30px;
    right: 0;
    bottom: 50px;
    height: 70%;
    border-radius: 20px;
}

.giftImage{
    position: relative;
    display: flex;
    align-items: center;
}

.giftImage img.imgBanner{
    opacity: 0.5;
}

.giftImage img.imglimg{
    position: absolute;
    z-index: 1;
    /* left: 140px; */
     left: 380px;
}

.giftSection img.imgboy{
      position: absolute;
    z-index: 1;
    right: 20px;
    bottom: -10px;
}

.midDesc{
    position: relative;
    margin-right: -20px;
     will-change: opacity;
}

.midDesc .heading h2 {
    font-size: 38px;
     font-size: clamp(28px, 4vw, 38px);
    font-weight: bold;
    color: #2C266C;
    margin-bottom: clamp(15px, 4vw, 30px);
}

.midDesc p {
    font-size: 18px;
    font-size: clamp(16px, 4vw, 18px);
    font-weight: 400;
    color: #454545;
    line-height: 30px;
}

.midDesc p strong{
    font-weight: 700;
}

.midDesc .donationApeal{
    background: #FFFBEB;
    border-radius: 16px;
    padding: 30px;
    border-left: 3px solid #F2581D;
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 36px;
    margin-bottom: 30px;
    font-size: clamp(16px, 4vw, 18px);
}

.midDesc .donationApeal strong{
    display: block;
    color: #F2581D;
    font-size: 28px;
    font-weight: 600;
    font-size: clamp(20px, 4vw, 28px);
}

.midDesc .donationApeal strong span{
    font-size: 32px;
}

/**/

.faqsNewYear{
    padding: 60px 0 ;
}

.faqsNewYear .heading {
    margin-bottom: 30px;
}

.faqsNewYear .heading h2 {
    font-size: 42px;
    font-size: clamp(36px, 4vw, 42px);
    font-weight: bold;
    color: #383838;
    text-align: center;
    line-height: normal;
}

.faqsNewYear .heading h3 {
    font-size: 24px;
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 400;
    color: #454545;
    text-align: center;
     line-height: clamp(30px, 4vw, 40px);
}

.faqsNewYear .faqsList{
    list-style: none;
    padding: 0;
    margin: 0;
}

.faqsNewYear .faqsList li{
    border: 1px solid rgba(0,0,0,0.3);
    padding: 20px;
    border-radius: 8px;
    margin: 0 0 20px;
}

.faqsNewYear .faqsList li h4{
    font-size: 24px;
    font-size: clamp(18px, 4vw, 24px);
    color: #000000;
    font-weight: 600;
    margin:0;
    padding: 0 20px 0 0;
    position: relative;
    cursor: pointer;
}

.faqsNewYear .faqsList li h4:after{
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    font-size: 30px;
    font-weight: 300;
}

.faqsNewYear .faqsList li h4.collapsed:after{
    content: "-";
    position: absolute;
    right: 0;
}



.faqsNewYear .faqsList li p{
    font-size: 18px;
    font-size: clamp(16px, 4vw, 18px);
    color: #000000;
    font-weight: 300;
    margin: 10px 0 0;
    padding: 0;
}

/**/


.footerSection {
    background: #383838;
    padding: 30px 0;
}

.footerSection .footlogo {
    margin-bottom: clamp(15px, 2vw, 20px);
}

.footerSection p {
    font-size: clamp(16px, 2vw, 18px);
    font-weight: 300;
    color: #ffffff;
    line-height: normal;
    margin: 0;
}

.footerSection p a{
    color: #ffffff;
    opacity: 0.9;
    text-decoration: none;
}

@media all and (max-width:767px) {
    .headerSection {
        padding: 15px 10px;
    }

    .headerSection .logo{
        width: 210px;
    }

    .btn-org, .btn-blue  {
    padding: 5px;
    font-size: 16px;
}

.btn-org img, .btn-blue img{
    width: 25px;
}

.heroContainer{
    height: 50vh;
}
.heroContainer .imgBanner{
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.heroContainer .content .heading br{
    display: none;
}

.formContainer, .ourAchievements, .ourDonateNow, .faqsNewYear{
    padding: 40px 0;
}

.formDonation {
    position: absolute;
    right: 20px;
    max-width: initial;
    left: 20px;
}

.giftImage img.imgBanner {
    width: 80%;
}

.giftImage img.imglimg {
    left: 65px;
    width: 145px;
}

.giftSection img.imgboy {
    position: absolute;
    z-index: 1;
    right: -15px;
    bottom: -35px;
    width: 34%;
}

.midDesc {
    margin-right: 0;
    padding: 50px 0 0;
}

.midDesc .donationApeal{
    padding: 20px;
}

.ourAchievements .desc{
    margin-bottom: 20px;
}

    .footerSection {
        background: #383838;
        padding: 20px 0;
    }

    .footerSection .footlogo img {
      height: auto;
        width: 275px;
    }

    .achieveContent  .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 10px;
    }

    .achieveContent {
    position: absolute;
    z-index: 1;
    left: 0;
    width: 650px;
    max-width: 100%;
}

.ourAchievements .desc img {
    margin: 0 0 10px;
    width: 110px;
    object-fit: cover;
}

.faqsNewYear .faqsList li h4:after {
    top: -12px;
}

.heroContainer .video-wrapper {
    height: 50vh;
}

}


/* CSS BY Developer */
    .bankcard-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 32px;
}

.detailbank-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 3px 1px rgba(0, 0, 0, 0.05);
    padding: 32px;
    border: 1px solid #f0f0f0;
    max-width: 900px;
    margin: 50px auto 0;
    z-index: 99;
}

.bankcard-header {
        display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    border-bottom: 0 !important;
    background: #ffffff !important;
}

.bankcard-header h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

/* NEW STRUCTURE */
.bankdetailhome {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

.bank-left {
    flex: 1;
    display: grid;
       gap: 30px 60px;
    grid-template-columns: repeat(2, max-content);
}

.detail-item {
    border-left: 4px solid #F2581D;
    padding-left: 16px;
    display: flex;
    gap: 12px;
}

.detail-item i {
    color: #6b7280;
    margin-top: 4px;
}

.detail-label {
    font-size: 0.875rem;
    color: #6b7280;
}

.detail-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    word-break: break-all;
}

.bank-qr img {
        width: 180px;
    border: 1px solid #e5e7eb;
    padding: 8px;
    border-radius: 8px;
    margin-top: -50px;
}

/* Responsive */
@media (max-width: 768px) {
    .bank-qr img
    {
        margin-top: 0;
    }
    .bankdetailhome {
        flex-direction: column;
    }

    .bank-left {
        grid-template-columns: 1fr;
    }

    .bank-qr {
        text-align: center;
        margin-top: 16px;
    }
    .detailbank-card
    {
        width: 90%;
    }
}
.gpry-section2
{
    padding-bottom: 160px !important;
}
.bank-qr
{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
}
.bank-qr .btn
{
    font-weight: 500;
    font-size: 14px;
}
.bank-qr .btn:focus
{
  box-shadow: none;
}
.btn-downloadqr
{
    color: #fff !important;
    background-color: #f60 !important;
    border-color: #f60 !important;
display: inline-block;
    font-weight: 400;
    color: #212529;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    margin-top: 15px;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}