@font-face {
    font-family: 'MyCustomFontBold';
    src: url(../fonts/PolyMath/Polymath-Bold.otf);
}
@font-face {
    font-family: 'MyCustomFontLight';
    src: url(../fonts/PolyMath/Polymath-Light.otf);
}
@font-face {
    font-family: 'MyCustomFontMedium';
    src: url(../fonts/PolyMath/Polymath-Medium.otf);
}
@font-face {
    font-family: 'MyCustomFontRegular';
    src: url(../fonts/PolyMath/Polymath-Regular.otf);
}
@font-face {
    font-family: 'MyCustomFontSemiBold';
    src: url(../fonts/PolyMath/Polymath-Semibold.otf);
}
@font-face {
    font-family: 'MyCustomFontDisplayMedium';
    src: url(../fonts/PolyMath/PolymathDisplay-Medium.otf);
}
@font-face {
    font-family: 'MyCustomFontDisplayRegular';
    src: url(../fonts/PolyMath/PolymathDisplay-Regular.otf);
}
html {
    overflow-y: scroll;
    overflow-x: hidden;
}
body {
    color: #fff;
    background: #fff;
    font-size: 16px;
    font-family: "MyCustomFontRegular";
    font-weight: 400;   
}
p {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
}
h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}
h2 {
    font-size: 42px;
    color: #123306;
    font-weight: 700;
}
h3 {
    font-size: 22px;
    color: #000;
    font-weight: 600;
}
img {
    width: 100%;
    max-width: 100%;
}
a{
    font-size: 20px;
    text-decoration: none;
}
.container{
    width: 100%;
    max-width: 1280px !important;
    margin: 0 auto;
    padding-left: 5px !important;
    padding-right: 5px !important;
}
/* Header CSS */
.site-wrapper{
    max-width: 1920px;
    margin: 0 auto;
}
header {
    background-color: #FFFFFF;
    padding: 25px 0px;
}
header .container-lg{
    max-width: 1330px !important;
    margin: 0 auto;
}

.navbar-brand {
    font-size: 20px;
    color: #123306;
    font-weight: bold;
    font-family: "MyCustomFontBold";
}
.nav-content li a {
    font-size: 20px;
    color: #434343 !important;
    /* padding: 0px 25px !important; */
    padding: 0px !important;
    font-family: "MyCustomFontMedium";
}
li.nav-item {
    padding: 0px 28px;
}
.navbar-brand img{
    padding-right: 10px;
}
.nav-link {
    position: relative;
    text-decoration: none;
  }
  
/* .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    background: #d69401;
    left: 0;
    bottom: 0;
    transition: width 0.3s ease;
  }
  
  .nav-link:hover::after {
    width: 100%;
  } */

  .nav-link {
    position: relative; /* Zaroori hai takay ::after ka position kaam kare */
    text-decoration: none; /* Agar underline na chahiye toh */
    color: #000; /* Text color */
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 4px;
    background: #d69401; /* Underline ka color */
    left: 0;
    bottom: 0;
    transition: width 0.3s ease; /* Animation speed aur style */
}

.nav-link:hover::after,
.nav-link.active::after { /* Yahan active page ka effect bhi rahega */
    width: 100%; 
}

/* Base header style */
.header {
    position: relative;
    top: 0;
    width: 100%;
    opacity: 1; /* Keep header visible by default */
    transform: translateY(0); /* Keep header at its original position */
    z-index: 999; /* Keep it above other content */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition for opacity and position */
    left: 0;
  }
  
  /* Keyframe animation for smooth entrance */
  @-webkit-keyframes moveDown {
    0% {
      transform: translateY(-2.5rem);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  @keyframes moveDown {
    0% {
      transform: translateY(-2.5rem);
      opacity: 0;
    }
    100% {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* When scrolled: Fixed position with animation */
  .header.scrolled {
    position: fixed;
    background-color: #fff;  /* Background color when scrolling */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);  /* Shadow effect */
    animation: moveDown 0.6s ease-out forwards; /* Apply the moveDown animation */
    transition: opacity 0.6s ease, transform 0.6s ease; /* Smooth transition */
    z-index: 9999;
    padding: 15px 0px !important;
  }
  
  /* Navbar transition for smooth movement */
  .navbar {
    transition: all 0.5s ease;
  }
  .navbar-toggler:focus{
    box-shadow: none !important;
  }
  nav.navbar.navbar-expand-lg{
    padding: 0px 30px !important;
  }
  
/* Hero Section CSS */
.hero-bg {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    padding: 340px 0px;
    position: relative;
    z-index: 999;
}
.hero-bg:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #123306;
    top: 0;
    left: 0;
    opacity: 0.7;
    z-index: -1;
}
.hero-block h1 {
    font-size: 60px;
    letter-spacing: -1px;
    color: #ffffff;
    font-family: "MyCustomFontDisplayRegular";
}
.hero-block h1 span{
    color: #d69401;
    font-weight: bold;
}
.hero-block h3 {
    font-size: 24px;
    color: #ffffff;
    font-family: "MyCustomFontDisplayRegular";
    margin-bottom: 40px;
    margin-top: 15px;
}
.hero-block a{
    font-size: 19px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: 500;
    font-family: "MyCustomFontMedium";
    text-decoration: none;
    border-radius: 26px;
    background-color: #d69401;
    padding: 15px 45px;
    transition: all 0.3s ease-in-out;
}
.hero-block a:hover{
    background-color: #220f00;
}
/* About CSS */
.about-bg {
    margin: 100px 0px;
}
.about-content {
    max-width: 500px;
    margin: 0 auto;
}
.about-content h2 {
    font-size: 45px;
    color: #123306;
    font-weight: bold;
    font-family: "MyCustomFontRegular";
    margin-bottom: 60px;
}
.inner-about-commited {
    width: 55%;
}
.about-commited-pcdac {
    width: 45%;
}
.about-content h2 span{
    color: #d69401;
}
.about-content a {
    border-radius: 50px;
    background-color: #d69401;
    text-decoration: none;
    padding: 14px 45px;
    font-size: 19px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: bold;
    font-family: "MyCustomFontMedium";
    text-align: center;
    transition: all 0.3s ease-in-out;
}
.about-content a:hover {
    background-color: #000;
}
/* Third Css */
.services-section{
    padding: 100px 0px;
}
section.services-section.inner-stays {
    padding: 300px 0px;
}
/* .heading-program {
    font-size: 90px;
    letter-spacing: -4px;
    line-height: 78px;
    color: #123306;
    font-family: "Helvetica";
    text-align: center;
    position: relative;
} */
.heading-program {
    font-size: 90px;
    letter-spacing: -4px;
    line-height: 78px;
    color: #123306;
    font-family: "MyCustomFontRegular";
    text-align: left;
}
.heading-program-coming {
    font-size: 30px;
    line-height: 36px;
    color: #434343;
    font-weight: bold;
    font-family: "MyCustomFontMedium";
    text-align: left;
    position: relative;
    margin-top: 30px;
}
.services-section .container {
    max-width: 1230px !important;
    margin: 0 auto;
}
/* .heading-program:before {
    content: '';
    position: absolute;
    width: 395px;
    height: 6px;
    background-color: #d69401;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
} */
.heading-program-coming:before {
    content: '';
    position: absolute;
    width: 280px;
    height: 5px;
    background-color: #d69401;
    bottom: -50px;
    left: 0;
}
.coming-img,.coming-img-section1,.coming-img-section2 {
    border: 1px solid #707070;
}
.coming-img-section{
    width: 100%;
    padding-top: 50px;
}
.coming-img-section1, .coming-img-section2{
    width: 50%;
}
.coming-img-section1 img, .coming-img-section2 img{
    object-fit: cover;
}
.paragraph-program {
    font-size: 25px;
    line-height: 36px;
    color: #434343;
    font-family: "MyCustomFontRegular";
    text-align: left;
    padding-top: 90px;
    padding-bottom: 90px;
}
.services-cards {
    display: flex;
    align-items: center;
    max-width: 1110px;
    margin: 0 auto;
    width: 100%;
    background-color: #d69401;
    margin-top: 40px;
}
.services-card-img {
    width: 38%;
    position: relative;
}
.services-card-img::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    top: 0;
    left: 0;
    opacity: 0.3;
}
.services-card-content {
    width: 62%;
    padding-left: 50px;
    padding-bottom: 30px;
}
.services-card-content h3 {
    font-size: 35px;
    letter-spacing: -2px;
    line-height: 78px;
    color: #ffffff;
    font-family: "Helvetica";
}
.services-card-content p{
    font-size: 18px;
    letter-spacing: -1px;
    line-height: 25px;
    color: #ffffff;
    font-family: "Helvetica";
    max-width: 600px;
}
.services-card-content a{
    border-radius: 50px;
    background-color: #123306;
    font-size: 15px;
    letter-spacing: 8px;
    line-height: 25px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: "Helvetica";
    padding: 12px 35px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}
.services-card-content a:hover{
    background-color: #000;
}
/* Four Section */
div#exampleModal {
    z-index: 9999 !important;
    /* width: 60%; */
}
.modal-content{
    width: 70% !important;
    margin: 0 auto !important;
}
.container-lg {
    max-width: 1180px !important;
    margin: 0 auto;
}
.pcdac-news {
    font-size: 120px;
    line-height: 120px;
    color: #123306;
    font-weight: bold;
    font-family: "MyCustomFontMedium";
    text-align: left;
    position: relative;
}
.pcdac-news small{
    font-size: 128px;
}
.pcdac-news:before {
    content: '';
    position: absolute;
    width: 530px;
    height: 6px;
    background-color: #d69401;
    bottom: -50px;
    left: 0;
}
.pcdac-news-description{
    font-size: 30px;
    line-height: 55px;
    color: #434343;
    font-family: "MyCustomFontRegular";
    margin-top: 100px;
}
.video-news {
    /* width: 1172px;
    height: 704px; */
    width: 100%;
    /* height: 100%; */
    height: 635px;
    margin-top: 50px;
    position: relative;
}
/* .video-news p{
    background-color: #4d4d4d;
    font-size: 100px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
} */

/* Five Section */
.stay-heading {
    font-size: 82px;
    line-height: 80px;
    color: #123306;
    font-weight: bold;
    font-family: "MyCustomFontBold";
    text-align: center;
    position: relative;
}
.stay-heading:before {
    content: '';
    position: absolute;
    width: 404px;
    height: 6px;
    background-color: #d69401;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
}
.stay-paragraph {
    max-width: 800px;
    font-size: 27px;
    line-height: 30px;
    color: #434343;
    font-weight: bold;
    font-family: "MyCustomFontBold";
    margin: 90px auto 0px;
    text-align: center;
}
.div-input-text {
    max-width: 880px;
    position: relative;
    margin: 0 auto;
    margin-top: 10rem;
}
.div-input-text input {
    background-color: #ffffff;
    border: 2px solid #434343;
    width: 82%;
    padding: 20px;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    padding-right: 40px; /* Add padding to the right for the spinner */

}
.div-input-text input:focus-visible{
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
.div-input-text button {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    background-color: #434343;
    border: 2px solid #434343;
    font-size: 24px;
    line-height: 34px;
    color: #ffffff;
    font-weight: bold;
    font-family: "Helvetica";
    padding: 13px 0px 17px;
    width: 18%;
    transition: all 0.3s ease-in-out;
}
section.in-news-section {
    margin-top: 100px;
}
.div-input-text button:hover{
    background-color: #d69401;
    border-color: #d69401;
}
/* Fooert */
footer {
    background-color: #220f00;
    color: #fff;
    padding: 100px 0px;
}
.copyright-content p a,.copyright-content p{
    color: #fff;
    font-family: "MyCustomFontRegular";
    font-size: 18px;
    line-height: 28px;
    transition: all 0.3s ease-in-out;
}
.copyright-content p a:hover{
    color: #d69401;
}
.footer-links-heading{
    font-size: 20px;
    line-height: 26px;
    text-transform: uppercase;
    color: #ffffff;
    font-family: "MyCustomFontRegular";
    margin-bottom: 40px;
}
.video-news a {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
footer ul,.privacy-content .col-md-12,.copyright-content .col-md-12{
    padding: 0px;
}
.phone-text a,.email-text a{
    text-decoration: none;
}
footer ul li {
    list-style: none;
    padding: 3px 0px 0px;
}
footer ul li a,.footer-link .bold-address,.footer-link p,.phone-text p,.phone-text a,.email-text p,.email-text a{
    font-size: 20px;
    line-height: 26px;
    color: #ffffff;
    font-family: "MyCustomFontRegular";
    transition: all 0.3s ease-in-out;
}
.footer-link {
    /* width: 20% !important; */
    padding: 0px !important;
}
.footer-link .bold-address {
    margin-top: 40px;
}
.copyright-content p{
    font-size: 20px;
    letter-spacing: -1px;
    line-height: 24px;
    color: #ffffff;
    font-family: "MyCustomFontRegular";
    margin-top: 30px;
}
footer ul li a:hover {
    color: #d69401;
}
@media (max-width:1370px){
    /* header{
        padding: 20px 30px;
    } */
    .nav-content li a,.navbar-brand{
        font-size: 13px !important;
    }
}
@media (max-width:1370px){
    .about-content a{
        padding: 10px 20px;
        font-size: 20px;
        display: inline-block;
    }
    .about-content h2{
        font-size: 40px;
    }
    .header.scrolled{
        padding: 0px 30px;
        left: 0;
    }
    footer{
        padding: 100px 30px;
    }
}
@media (max-width:992px) {
    /* .main-header {
        position: absolute;
        top: 85px;
        left: 0px;
        background-color: white;
        width: 100%;
        z-index: 999;
    } */
     /* Initially hide the menu items */
.main-header .nav-item {
    opacity: 0;
    transform: translateY(-20px); /* Slide-up effect */
    transition: opacity 0.5s ease, transform 0.5s ease;
}

/* When the navbar is open, show the menu items with animation */
.main-header.open .nav-item {
    opacity: 1;
    transform: translateY(0); /* Slide them back into place */
}

/* Ensure the navbar has a hidden height and transition when it's collapsed */
.main-header {
    position: absolute;
    top: 65px;
    left: 0;
    background-color: white;
    width: 100%;
    z-index: 999;
    height: 0; /* Initially hidden */
    overflow: hidden;
    transition: height 0.5s ease; /* Smooth transition for height */
}

.main-header.open {
    height: 210px; /* Adjust based on your content */
}

     
    .main-header li.nav-item {
        padding: 10px 28px;
    }
    .pcdac-news,.pcdac-news small{
        font-size: 90px;
        line-height: 80px;
    }
    .navbar-nav{
        padding: 5px 0px;
    }
    .video-news{
        height: 600px;
    }
}


@media (max-width:767px) {
    /* .video-news{
        width: 350px;
        height: 440px;
    } */
    .navbar-brand img {
        width: 75px;
        height: 40px;
    }
    .navbar-brand{
        font-size: 10px !important;
    }
    .hero-block h1 {
        font-size: 25px;
        letter-spacing: -1px;
    }
    .hero-block h3{
        font-size: 12px;
        margin-bottom: 15px;
        margin-top: 0px;
    }
    .hero-block a {
        font-size: 8px;
        letter-spacing: 2px;
        padding: 12px 35px;
    }
    .hero-bg{
        padding: 100px 25px;
    }
    .about-img img {
        width: 375px;
        height: 369px;
    }
    .about-img{
        text-align: center;
    }
    .about-img:before {
        width: 180px;
        height: 80px;
        left: 50%;
        bottom: -34px;
        transform: translateX(-50%);
    }
    .about-content{
        text-align: left;
        padding-left: 15px;
        text-align: left;
        padding-right: 15px;
    }
    .about-content h2 br {
        display: none;
    }
    .about-content h2{
        font-size: 36px;
        text-align: left;
        margin: 60px 0px 25px;
    }
    .about-bg{
        margin: 50px 15px;
    }
    .about-content a{
        font-size: 16px;
        letter-spacing: 5px;
    }
    .heading-program{
        font-size: 42px;
        letter-spacing: -2px;
        line-height: 52px;
    }
    .services-section {
        padding: 120px 15px 100px;
    }
    .heading-program:before{
        width: 186px;
        height: 3px;
    }
    .heading-program-coming{
        font-size: 15px;
        margin-top: 0px;
    }
    .heading-program-coming:before{
        height: 3px;
        width: 185px;
        bottom: -20px;
    }
    .paragraph-program{
        font-size: 15px;
        line-height: 22px;
        max-width: 350px;
    }
    .services-card-content h3{
        font-size: 22px;
        letter-spacing: -1px;
        line-height: 22px;
    }
    .services-card-content p{
        font-size: 9px;
        letter-spacing: 0px;
        line-height: 11px;
    }
    .services-card-content a {
        font-size: 9px;
        line-height: 12px;
        padding: 8px 10px;
        letter-spacing: 1px;
    }
    .services-card-content {
        padding-left: 20px;
        padding-right: 12px;
        padding-top: 10px;
    }
    .pcdac-news{
        font-size: 55px;
        line-height: 30px;
        padding-top: 100px;
    }
    .pcdac-news small{
        font-size: 56px;
        line-height: 77px;
    }
    .pcdac-news:before{
        width: 227px;
        height: 4px;
    }
    .pcdac-news-description{
        font-size: 15px;
        line-height: 22px;
    }
    section.services-section.inner-stays{
        padding: 50px 15px;
    }
    .stay-heading {
        font-size: 43px;
        line-height: 42px;
        padding-top: 0px;
    }
    .stay-heading:before {
        width: 192px;
        height: 6px;

    }
    .stay-paragraph {
        font-size: 15px;
        line-height: 22px;
        text-align: center;
    }
    .div-input-text {
        margin-top: 5rem;
    }
    .div-input-text input{
        width: 60%;
        padding: 10px;
    }
    .div-input-text button {
        width: 40%;
        padding: 7px 0px 9px;
        font-size: 21px;
        line-height: 28px;
    }
    /* header {
        padding: 20px 30px;
    } */
    .header.scrolled{
        left: 0;
        padding: 20px 30px;
    }
    .about-content a{
        padding: 12px 35px;
    }
    .paragraph-program{
        padding-top: 40px;
    }
    .services-card-img img{
    height: 210px;
    object-fit: cover;
    }
    .services-cards{
        width: 90%;
    }
    section.in-news-section {
        padding: 0px 15px;
        margin: 0px;
    }

    footer {
        padding: 60px 30px;
    }
    .copyright-content p,.copyright-content p a{
        font-size: 14px;
        letter-spacing: -1px;
        line-height: 24px;
        max-width: 300px;
    }
    .video-news{
        height: 300px;
    }
    .pcdac-news-description{
        margin-top: 60px;
    }
    .pcdac-news:before{
        bottom: -25px;
    }
    .footer-links-heading{
        margin-top: 30px;
    }
    .coming-img-section1, .coming-img-section2 {
        width: 100%;
    }
    .coming-img-section{
        flex-wrap: wrap;
    }
    .coming-img-section1 img, .coming-img-section2 img,.coming-img img{
        height: 215px;
    }
    .inner-about-commited,.about-commited-pcdac{
        width: 100%;
    }
    .about-commited {
        flex-wrap: wrap;
    }
}

/* About Us Page */
.about-section {
    background-color: #123306;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 999;
    padding: 190px 0px;
}
.about-section:before,.donation-section:before {
    content: '';
    position: absolute;
    background-color: #123306;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0.7;
}
.who-pdac h1{
    font-size: 92px;
    letter-spacing: -5px;
    color: #ffffff;
    font-family: "MyCustomFontRegular";
    font-weight: 400;
}
.who-pdac h1 span{
    color: #d69401;
    font-family: "MyCustomFontBold";
}
.about-content-section h2 {
    font-size: 55px;
    color: #123306;
    font-family: "MyCustomFontBold";
    margin: 0px;
}
.inner-people img {
    height: 585px;
    width: 620px;
    object-fit: cover;
}
.about-content-section p{
    font-size: 25px;
    line-height: 35px;
    color: #434343;
    margin-top: 0px;
    font-family: "MyCustomFontRegular";
}
.about-content-section .container {
    max-width: 1320px !important;
    margin: 0 auto;
}
.about-content-section {
    padding: 120px 0px;
}
.our-mission{
    background-color: #d69401;
    padding: 70px 0px;
}
.our-mission h2{
    font-size: 55px;
    color: #123306;
    font-family: "MyCustomFontBold";
    margin: 0px;
}
.inner-vision img {
    width: 516px;
    height: 516px;
    object-fit: cover;
}
.our-mission p{
    font-size: 25px;
    line-height: 35px;
    color: #ffffff;
    font-family: "MyCustomFontRegular";
}
.our-mission .container {
    max-width: 1320px !important;
    margin: 0 auto;
}
.help-us {
    background-color: #220f00;
    color: #fff;
}
.help-us .content-help-us h3{
    font-size: 40px;
    line-height: 49px;
    font-family: "MyCustomFontRegular";
}
.content-help-us {
    padding: 50px 0px;
}
.content-help-us a {
    font-size: 30px;
    letter-spacing: 9px;
    line-height: 49px;
    text-decoration: none;
    color: #ffffff;
    border: 2px solid #fff;
    border-radius: 50px;
    padding: 5px 40px;
    text-transform: uppercase;
    font-family: "MyCustomFontRegular";
    transition: all 0.3s ease-in-out;
}
.slick-slide img {
    display: block;
    width: 100%;
    height: 740px;
    object-fit: cover;
}
.content-help-us a:hover{
    background-color: #d69401;
}
.slideshow {
    padding: 200px 0px;
}
.slick-next:before {
    font-size: 87px !important;
    color: unset !important;
    content: '';
    background-image: url(../images/chevron-right_.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}
.slick-prev:before {
    font-size: 87px !important;
    color: unset !important;
    content: '';
    background-image: url(../images/chevron-left_.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.5 !important;
}
.slick-prev, .slick-next{
    width: 140px;
    height: 140px;
    background-color: #000;
}
.slick-next {
    right: -80px !important;
}
.slick-prev {
    left: -60px !important;
    z-index: 999;
}
.slick-prev, .slick-next {
    width: 140px !important;
    height: 140px !important;
    background: #a0a0a0 !important;
    border-radius: 50%;
}
.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus,button.slick-next.slick-arrow:hover,button.slick-prev.slick-arrow:focus{
    background-color: #d69401 !important;
}
.slick-prev:hover::before, .slick-prev:focus::before, .slick-prev:focus::before{
    opacity: 1 !important;
}
.slick-prev:active, .slick-next:active{
    background-color: #123306 !important;
}
@media (max-width:1260px) {
    .about-content-section{
        padding: 120px 15px 80px;
    }
    .our-mission{
        padding: 185px 15px 260px;
    }
    .slideshow{
        padding: 250px 15px;
    }
    .slick-prev, .slick-next{
        width: 80px !important;
        height: 80px !important;
    }
    .slick-prev:before,.slick-next:before{
        font-size: 50px !important;
    }
    .slick-prev{
        right: -20px !important;
    }
}
@media (max-width:992px) {
    .about-section{
        padding: 100px 0px;
    }
    .who-pdac h1{
        font-size: 48px;
        letter-spacing: -2px;
    }
    .about-content-section:before {
        top: -2rem;
        left: 50%;
        width: 268px;
        height: 80px;
        transform: translateX(-50%);
        z-index: 9999999;
        mix-blend-mode: multiply;
    }
    .about-content-section h2{
        font-size: 36px;
    }
    .about-content-section p {
        font-size: 17px;
        line-height: 20px;
        margin-top: 10px;
    }
    .about-content-section {
        padding: 50px 15px;
    }
    .organization-content {
        margin-top: 50px !important;
    }
    .our-mission h2 {
        font-size: 40px;
        max-width: 100%;
    }
    .our-mission p {
        font-size: 17px;
        line-height: 25px;
        max-width: 100%;
    }
    section.our-mission .straightforward-content {
        gap: 1rem !important;
    }
    .our-mission {
        padding: 60px 15px 70px;
    }
    .our-mission:after{
        width: 8%;
        height: 510px;
        top: 9rem;
    }
    .content-help-us{
        flex-wrap: wrap;
        padding: 25px 0px;
    }
    .help-us .content-help-us h3 {
        font-size: 15px;
        line-height: 30px;
    }
    .content-help-us a {
        font-size: 15px;
        letter-spacing: 3px;
        line-height: 30px;
    }
    .slideshow {
        padding: 100px 25px 50px;
    }
    .slick-next {
        right: 0px !important;
    }
    .slick-prev {
        left: -20px !important;
    }
}

/* DOnation Page CSS */

.donation-section {
    background-color: #123306;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    z-index: 999;
    padding: 190px 0px;
}
.donation-content-section h2 {
    font-size: 65px;
    color: #123306;
    font-family: "MyCustomFontBold";
}
.donation-content-section{
    padding: 80px 0px 350px;
}
.donation-content-section p{
    font-size: 40px;
    line-height: 49px;
    color: #434343;
    margin-top: 20px;
    font-family: "MyCustomFontRegular";
}
.donation-content-section h2 span{
    color: #d69401;
}
section.services-padac .container {
    max-width: 1310px !important;
    margin: 0 auto;
}
.donation-services-content {
    width: 33.33333333%;
}
section.services-padac {
    background-color: #d69401;
    padding: 0px 0px 150px;
    margin-top: -100px;
}
.donation-content {
    background-color: #FFFFFF;
    padding: 50px 40px;
}
.donation-content h5{
    font-size: 30px;
    color: #123306;
    font-family: "MyCustomFontBold";
}
.donation-content a {
    font-size: 18px;
    color: #123306;
    text-decoration: none;
    background-color: #d69401;
    border-radius: 50px;
    padding: 8px 30px;
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    font-family: "MyCustomFontMedium";
}
.donation-content a:hover{
    background-color: #123306;
    color: #fff;
}
.donation-services {
    margin-top: -90px;
}
.donation-services-content img {
    height: 280px;
    object-fit: cover;
}
@media (max-width: 992px) {
    .donation-content{
        flex-wrap: wrap;
        padding: 50px 18px;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .inner-people img{
        height: 335px;
    }
    section.our-mission .straightforward-content{
        gap: 3rem !important;
    }
    .straightforward-content {
        flex-direction: column-reverse;
    }
    .inner-vision img {
        height: 335px;
    }
    .our-mission h2 {
        text-align: left;
    }
    .our-mission p {
        text-align: left;
    }
    .slick-prev, .slick-next{
        width: 40px !important;
        height: 40px !important;
    }
    .slick-prev:before,.slick-next:before{
        font-size: 20px !important;
    }
    .slick-next {
        right: -20px !important;
    }
    .donation-section{
        padding: 100px 0px;
    }
    .donation-content-section h2{
        font-size: 36px;
    }
    .donation-content-section p {
        font-size: 17px;
        line-height: 20px;
        text-align: center;
    }
    .donation-services{
        flex-wrap: wrap;
    }
    .donation-services-content{
        width: 100%;
    }
    section.services-padac{
        padding: 0px 15px 120px;
    }
    .donation-content-section {
        padding: 80px 15px 350px;
    }
}
/* Contact Us */

.icon-main-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    margin-bottom: 80px;
}
.contact-section {
    padding: 80px 0px 100px;
}
.contact-section .container{
    max-width: 1100px;
    margin: 0 auto;
}
.icons-list{
    width: 33.3333333%;
    text-align: center;
}
.icons-list h4{
    font-size: 35px;
    letter-spacing: -2px;
    color: #434343;
    font-family: "MyCustomFontRegular";
    font-weight: 300;
    padding-top: 20px;

}
.icons-list h4 a{
    text-decoration: none;
    color: #434343;
    font-size: 35px;
    letter-spacing: -2px;
    font-weight: 300;
}
.contact-section h2{
    font-size: 45px;
    letter-spacing: -2px;
    color: #434343;
    font-family: "MyCustomFontRegular";
    font-weight: 300;
}
.bg-contact{
    background-position: center;
}
.icons-list img{
    height: 50px;
    width: 50px;
}
.map iframe{
    display: block;
}
@media (max-width: 767px) {
    .icons-list{
        width: 100%;
    }
    .icons-list img{
        height: 30px;
        width: 30px;
    }
    .icon-main-list{
        flex-wrap: wrap;
        gap: 30px;
    }
    .contact-section h2 {
        font-size: 25px;
        max-width: 250px;
        margin: 0 auto;
    }
    .contact-section {
        padding: 40px 0px 50px;
    }
    .icons-list h4,.icons-list h4 a {
        font-size: 24px;
        letter-spacing: -1px;
        padding-top: 5px;
    }
    .icon-main-list{
        margin-bottom: 0px;
    }
}
/* Program Services CSS */
.board-directors .container {
    max-width: 990px !important;
    margin: 0 auto;
}
.board-directors {
    padding: 100px 0px;
}
.board-directors p {
    font-size: 26px;
    line-height: 36px;
    color: #434343;
    font-family: "MyCustomFontRegular";
    text-align: center;
}
.content-affordable {
    display: flex;
    align-items: center;
    gap: 40px;
}
.content-affordable-img:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.3;
    top: 0;
    left: 0;
}
.content-affordable-heading {
    width: 55%;
    padding-left: 15px;
    padding-right: 15px;
}
.content-affordable-img {
    width: 45%;
    position: relative;
}
.content-affordable-heading h2 {
    font-size: 45px;
    letter-spacing: -2px;
    line-height: 78px;
    color: #123306;
    font-weight: bold;
    font-family: "MyCustomFontBold";
}
.content-affordable-heading p{
    font-size: 23px;
    letter-spacing: -1px;
    line-height: 35px;
    color: #434343;
    font-family: "MyCustomFontRegular";
}
.initiatives{
    background-color: #d69401;
}
.initiatives .content-affordable-heading h2,.initiatives .content-affordable-heading p {
    color: #fff;
}
.initiatives .content-affordable-heading {
    padding-left: 72px;
    padding-right: 72px;
}
.philemon {
    background-color: #123306;
}
.youth img {
    height: 555px;
    object-fit: cover;
}
.philemon .content-affordable-heading h2,.philemon .content-affordable-heading p {
    color: #FFFFFF;
}
.form-pacdac .container {
    max-width: 1060px !important;
    margin: 0 auto;
}
.form-content h3 {
    font-size: 40px;
    color: #000000;
    font-family: "Helvetica";
    text-align: center;
}
.form-pacdac {
    padding: 50px 0px;
}
.form-content {
    filter: drop-shadow(0px 20px 11.5px rgba(0,0,0,0.16));
    background-color: #ffffff;
    border: 1px solid #707070;
    padding: 60px 100px 0px;
}
input,textarea{
    border: none;
    width: 100%;
}
.input-name input[type="text"],input[type="email"],input[type="tel"],textarea {
    border-bottom: 2px solid #000000;
    padding-bottom: 15px;
    font-size: 18px;
    line-height: 22px;
    color: #6e6e6e;
    font-weight: 300;
    font-family: "Helvetica";
}
.radio-box .checkbox{
    padding-bottom: 15px;
    font-size: 18px;
    line-height: 22px;
    color: #6e6e6e;
    font-weight: 300;
    font-family: "Helvetica";
}
.radio-box label{
    padding-bottom: 15px;
    font-size: 18px;
    line-height: 22px;
    color: #6e6e6e;
    font-weight: 300;
    font-family: "Helvetica";
}
.input-name {
    padding-bottom: 30px;
}
.form-pacdac form{
    padding: 50px 0px;
}
.input-name input[type="text"]:focus-visible,input[type="email"]:focus-visible,input[type="tel"]:focus-visible,textarea:focus-visible{
    outline: none !important;
}
.div-input-text input:focus-visible{
    outline: none;
}

input[type="radio"] {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background-color: #ffffff;
    border: 1px solid #000000 !important;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}
input[type="radio"]:checked {
    background-color: #d69401;
}
textarea{
    resize: unset !important;
}
.textarea label {
    font-size: 15px;
    line-height: 18px;
    color: #6e6e6e;
    font-weight: 300;
}
.submit-request input[type="submit"] {
    display: inline-block;
    border-radius: 50px;
    background-color: #123306;
    color: #fff;
    padding: 0px;
    width: 25%;
    font-size: 20px;
    line-height: 65px;
    font-family: "Helvetica";
    transition: all 0.3s ease-in-out;
}
.submit-request input[type="submit"]:hover{
    background-color: #d69401;
}
.submit-request p {
    font-size: 16px;
    line-height: 65px;
    color: #000000;
    font-family: "Helvetica";
    margin-top: 20px;
}
.submit-request {
    margin-top: 40px;
}
@media (max-width: 767px) {
    .slick-slide img {
        height: 265px;
    }
    .board-directors p {
        font-size: 20px;
        line-height: 28px;
        max-width: 600px;
        margin: 0 auto;
    }
    .content-affordable-img img{
        height: 230px;
        object-fit: cover;
    }
    .content-affordable-heading h2 {
        font-size: 20px;
        letter-spacing: -1px;
        line-height: 25px;
    }.content-affordable-heading p {
        font-size: 11px;
        letter-spacing: -1px;
        line-height: 15px;
    }
    .content-affordable {
        gap: 10px;
    }
    .initiatives .content-affordable-heading {
        padding-left: 15px;
        padding-right: 15px;
    }
    .content-affordable-heading{
        padding-left: 5px;
    }
    .form-content {
        padding: 60px 50px 0px;
    }
    .form-content h3 {
        font-size: 25px;
    }
    .input-name input[type="text"], input[type="email"], input[type="tel"], textarea,.radio-box label,.radio-box .checkbox {
        font-size: 14px;
    }
    .form-pacdac {
        margin: 0px 15px;
    }
    .textarea label {
        line-height: 24px;
    }
    .submit-request input[type="submit"] {
        padding: 0px;
        width: 70%;
        font-size: 15px;
        line-height: 49px;
    }
    .submit-request p {
        font-size: 10px;
        line-height: 12px;
    }
}
@media (max-width: 425px){
    .board-directors p {
        max-width: 340px;
        margin: 0 auto;
    }
    .youth img {
        height: 380px;
    }
}
@media (max-width: 1230px){
    .donation-content {
        padding: 50px 20px;
    }
}
@media (max-width: 1130px) {
    .donation-content {
        padding: 50px 10px;
        align-items: center;
    }
    .donation-content h5{
        font-size: 20px;
    }
}
/* Full page loader */
#fullPageLoader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Spinner for input field */
#spinnerMailer {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

/* Toast notification */
.toast {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 9999;
}
