header {
    position: relative;
    width: 100%;
    height: auto;
    z-index: 2;
    padding-bottom: 50px;

}

.headerbg-img img {
    object-fit: cover;
    height: 100%;
    object-position: left bottom;
}

.headerbg-img {
    position: absolute;
    z-index: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.header-section {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;

}

.logo img {
    width: 140px;

}

nav {
    flex: 1;
}

.nav-links {
    display: flex;
    justify-content: flex-end;
    list-style: none;

}

.nav-links li a {
    text-decoration: none;
    color: #000000;
    font-size: 16px;
    padding: 10px;
    text-transform: uppercase;
}

.nav-links li a:hover {
    color: #FE6E01;
}

.donate-btn {
    background-color: #FE6E01;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 55px;
    transition: background-color 0.3s ease;
    border: none;
    margin: 0 5px;
    text-transform: uppercase;
}

.donate-btn:hover {
    background-color: #FE6E01;
}

.en {
    padding: 0 10px;
    display: flex;
    width: 5%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

}

.en p {
    font-size: 15px;
}

.bar {
    position: absolute;
    z-index: 1;
    display: none;
}

.fa-solid,
.fas {
    font-weight: 900;
    font-size: 30px;

}

.header-content {
    width: 100%;
    height: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}


.header-content h1 {
    color: #FE6E01;
    text-transform: uppercase;
    padding-right: 0;
    font-size: 50px;
    padding-right: 0;
    padding: 25px 0;
    padding-top: 150px;
    padding-bottom: 60px;
}

.reg-btn {
    background-color: #FE6E01;
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 55px;
    transition: background-color 0.3s ease;
    border: none;
    text-transform: uppercase;
    width: 51%;

}

.lines {
    position: relative;
    z-index: 5;
    bottom: -17px;
}

/* dropdown */
.dropdown-menu {
    display: none;
    /* Hide by default */
    position: absolute;
    right: 0;
    background-color: white;
    /* Adjust based on your design */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    /* Ensure it appears above other elements */
}

.dropdown-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-links li {
    padding: 10px 20px;
    /* Adjust padding as necessary */
}

.dropdown-links li a {
    text-decoration: none;
    color: #000;
    /* Adjust link color */
    font-size: 16px;
}

.dropdown-links li a:hover {
    color: #FE6E01;
    /* Adjust hover color */
}

/*-------------------------------- commitee section--------------------------------------------- */
.line {
    width: 25px;
    height: 1px;
    background-color: #FE6E01;

}

.jcs-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;

}

#commitee-founder h3 {
    font-size: 30px;
}
.founderimg{
    width: 25%;
}
.icon {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 166px;
    background-color: white;
    border: 2px solid #FE6E0133;
    padding: 2px;
    cursor: pointer;
}
.icon:hover{
    border: 2px solid #FE6E01;
}
#box-commitee{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 0;
}
.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

}
.icons-content {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    padding: 40px 20px;
}
#president-img img{
    border-radius: 155px;
}
.xyz {
    position: relative;
    width: 17%;
    top: 34px;
    right: 11px;
    z-index: 0;
}/* Blur effect on the entire body except for the pop-up */
.blur > *:not(.popup) {
    filter: blur(5px);
}

/* Pop-up styles */
.popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
   width: 80%;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    z-index: 1000;
    animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
    
    display: flex;
}
.popup-img img{
    width:100%;
    border: 2px solid #FE6E01;
    border-radius: 155px;
    padding: 2px;
}
.popup-text{
    width: 100%;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
}
.popup-text h3{
    font-size: 30px;
    

}
.popup-text p{
    font-size: 12px;
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    border: none;
    border-radius: 1555px;
    padding: 6px 8px;
    background-color: #FE6E01;
    color: white;
}
.fa-solid, .fas {
    font-weight: 900;
    font-size: 20px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -45%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

/* ----------------------------footer section--------------------------------------- */
.footer-section {
    position: relative;
    width: 100%;
    height: auto;
    top: 0;
}

.footerbg {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.footerbg img {
    object-fit: cover;
    height: 100%;
    object-position: left top;
}

.footer-content {
    position: relative;
    width: 100%;
    padding: 30px 20px;
    display: flex;
    z-index: 1;
    padding-top: 107px;
    flex-wrap: wrap;
}

.footer-content-l {
    width: 33%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-content-l h5 {
    font-size: 30px;
    color: white;
}

.footer-content-l p {
    padding: 10px 0;
    color: white;
    line-height: 25px;
}

.footer-content-m {
    width: 33%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-mainlogo {
    width: 63%;
}

.footer-content-r {
    width: 33%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-content-r h5 {
    font-size: 30px;
    color: white;
}

.footer-content-r p {
    padding-bottom: 15px;
    color: white;
    line-height: 25px;
}

.fa-location-arrow,
.fa-phone {
    color: white;
    font-size: 20px;
    margin-right: 15px;
}

.footer-add {
    display: flex;
    justify-content: center;
}
.blackbox{
    position: relative;
    z-index: 10;
    top: -60px;
}
.fa-location-arrow:before {
    content: "\f124";
    font-size: 18px;
}
.fa-phone:before {
    content: "\f095";
    font-size: 18px;
}
/* .blackbox-content{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1000;
}
.blackbox-lc{
    width: 60%;
    background-color: #FE6E01;
    height: 300px;
}
.blackbox-rc{
    width: 40%;
} */
/* -----------------------------------second footer secction--------------------------------------- */
.second-footer {
    width: 100%;
    height: auto;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: -1px;
    z-index: 5;
}
.second-footer-content{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    padding: 14px 20px;
}
.fcl p{
color: white;
}
.fa-facebook,
.fa-instagram,
.fa-twitter
{
    color: white;
    border: 1px solid white;
    border-radius: 50%;
    padding: 10px;
    font-size: 18px;
}