body {
    margin: 0;
    font-family: sans-serif;
    background-color: #ffffff;
    color: #000000;
}

header {
    /* background-color: rgba(0, 0, 0, 0.7); */
    padding-top: 25px;
    position: fixed;
    width: 100%;
    z-index: 100;
}

header .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    flex-direction: column;
}

header .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
    align-items: center;
}

header .nav-links li a {
    color: #fff;
    text-decoration: none;
    padding: 10px 20px;
}

header .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

header .mobile-nav img {
    display: none;
}

header .hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
}

header .close-btn {
    display: none;
    position: absolute;
    left: 150px;
    top: 0px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
}

header .logo {
    width: 80px;
}

header .navbar .nav-links li a {
    text-transform: uppercase;
    font-weight: 600;
}

header.scrolled {
    background-color: #26442d;
    /* Dark background on scroll */
    padding-top: 0px;

}

header.scrolled .nav-links li a {
    color: #fff;
    font-size: 14px;
}

header .navbar .nav-links li a:hover {
    font-size: 15px;
    font-weight: 700;
    /* text-decoration: underline; */
    text-decoration-color: #f0cd30;
    color: #f0cd30;
}

header.scrolled .nav-links img {
    width: 40px;
    padding: 5px 0;
}

header .dropdown-menu.show {
    background-color: #8A9A5B;
    color: #26442d;
    border: none;
}

header .navbar .nav-links li a:active {
    color: #26442d;
}

header .dropdown-item:focus,
.dropdown-item:hover {
    background-color: #26442d;
}

header .dropdown-menu {
    --bs-dropdown-link-active-bg: #26442d;
    --bs-dropdown-header-color: #8a9a5b;
}

/* -------------- */
.hero {
    background-image: url("image/Home-banner.png");
    /* Replace with your image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 170px;
    /* Space for the fixed header */
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: "Times New Roman", Times, serif;
    color: #fff;
}

.hero h1:hover {
    scale: 1.05;
}

.hero p {
    font-size: 28px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 8px;
    color: #fffdd0;
}

.hero p:hover {
    scale: 1.05;
}

.hero .hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
}

.hero .btn {
    background-color: #26442d;
    padding: 15px 25px;
    border-radius: 5px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    color: #fffdd0;
}

.hero .btn:hover {
    background-color: #f0cd30;
    color: #26442d;
}

.times .prayer-times {
    display: flex;
    justify-content: center;
    align-items: start;
    background-color: #fff;
    color: #333;
    gap: 3px;
}

.times .prayer {
    text-align: center;
    width: 12%;
    border: 1px solid #26442d;
    padding: 15px 0 40px 0;
    border-radius: 0 0 100px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    gap: 5px;
    border-top: none;
}

.times .prayer.one {
    background-color: #8A9A5B !important;
    color: #fffdd0;
}

.times .prayer:hover {
    background-color: #8A9A5B;
    color: #FFFDD0;
}

.times .prayer.active {
    background-color: #26442d;
}

.times .prayer.active:hover {
    background-color: #8A9A5B;
    color: #FFFDD0;
}


.times .prayer.active h3 {
    color: #f0cd30;
}

.times .prayer.active p {
    color: #fffdd0;
}

.times .prayer h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    font-family: "Times New Roman", Times, serif;
    color: #26442d;
    font-weight: 800;
}

.times .prayer p {
    margin: 0;
    font-size: 14px;
    font-family: "Times New Roman", Times, serif;
    text-transform: uppercase;
    padding: 0 5px;
}

.times .prayer svg {
    width: 40px;
    height: 40px;
}

.times .other-time {
    padding-bottom: 20px;
}

/* ----------------- */
.home-events {
    margin: 70px 0;
    position: relative;
}

.home-events h3 {
    text-align: center;
    color: #26442d;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 22px;
    margin-bottom: 20px;
}

.home-events p {
    text-align: center;
    color: #3E3E3E;
    font-weight: 500;
    margin-bottom: 30px;
    line-height: 35px;
}

.home-events .carousel-container {
    max-width: 998px;
    margin: auto;
    overflow: hidden;
    width: 90%;
    position: relative;
}

.home-events .carousel-slide {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.home-events .carousel-slide .events {
    min-width: calc(33.333% - 10px);
    /* 3 items per view */
    margin: 0 5px;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.home-events .carousel-slide img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    height: 200px;
}

.home-events .event-details {
    padding: 15px;
    text-align: center;

}

.home-events .carousel-buttons {
    position: absolute;
    top: 50%;
    width: 83%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
}

.home-events .carousel-buttons button {
    background: none;
    border: none;
    cursor: pointer;
}

.home-events .carousel-buttons button i {
    font-size: 34px;
    color: #8A9A5B;

}

.home-events .events h5 {
    font-size: 20px;
}

.home-events .events p {
    font-size: 14px;
    line-height: 30px;
}



/* ----contacts ad */
.contct-ad {
    background-color: #8A9A5B;
    color: #fff;
    margin: 50px 0;
}

.contct-ad img {
    width: 100%;
    padding: 20px 0;
}

.contct-ad img:hover {
    scale: 1.07;
}

.contct-ad .details {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.contct-ad h2 {
    font-size: 38px;
    font-family: 'Times New Roman', Times, serif;
}

.contct-ad p {
    font-size: 14px;
    line-height: 35px;
    padding-right: 20px;
}

.contct-ad .verse {
    font-size: 16px;
    text-transform: uppercase;
    font-family: 'Times New Roman', Times, serif;
}

.contct-ad span a {
    text-decoration: none;
    background-color: #FFFDD0;
    color: #26442d;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
}

.contct-ad span a:hover {
    background-color: #f0cd30;
    color: #26442d;
}

/* -------home videos--- */
.home-videos {
    margin: 50px 0;
}

.home-videos video {
    width: 100%;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.home-videos h2 {
    text-align: center;
    color: #26442d;
    font-weight: 700;
    letter-spacing: 3px;
    font-size: 22px;
    margin-bottom: 40px;
}

.home-videos a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #26442d;
    margin: 40px 0;
    font-size: 14px;
    font-weight: 600;
}

.home-events a.view-all-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #26442d;
    margin: 40px 0;
    font-size: 14px;
    font-weight: 600;
}

.home-events a.view-all-link:hover {
    font-size: 16px;
    font-weight: 700;
}

.home-events a.view-all-link i {
    color: #26442d;
}


.home-videos a:hover {

    font-size: 16px;
    font-weight: 700;
}

.home-videos a i {
    color: #26442d;
}


.foot {
    background-image: url(image/footer-background.png);
    background-size: cover;
    color: #fff;
}

.foot .allfoot {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    padding-top: 50px;
    gap: 20px;
}

.foot .allfoot h6 {
    font-weight: 600;
    margin-bottom: 20px;
}

.foot .allfoot a {
    font-size: 14px;
    line-height: 30px;
    text-decoration: none;
    color: #ffffff;
}

.foot .allfoot a:hover {
    color: #f0cd30;
    font-size: 15px;
}

.foot .allfoot svg {
    width: 35px;
    height: 25px;
}

.foot .allfoot svg:hover {
    width: 38px;
    height: 27px;
}

.foot .foot-content.one p {
    padding-right: 55px;
}

.foot .copyright {
    text-align: center;
    font-size: 14px;
    margin-bottom: 0;
    padding-bottom: 10px;
}

@media screen and (max-width: 580px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
    }

    header {
        width: 100%;
        padding-top: 10px !important;
    }

    header .navbar {
        flex-direction: column;
    }

    header .nav-links {
        flex-direction: column;
        width: 100%;
    }

    header .nav-links li {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    header .nav-links li a {
        width: 100%;
        padding: 15px;
    }

    header .mobile-nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    header .mobile-nav img {
        display: block;
        margin-left: 10px;
        /* Adjust margin as needed */
        width: 40px;
    }

    header .hamburger {
        display: flex;
        margin-right: 10px;
        /* Adjust margin as needed */
    }

    header .logo {
        width: 50px;
        /* Adjust logo size for smaller screens */
    }

    header .dropdown-menu[data-bs-popper] {
        top: 70%;
        left: 2%;
        margin-top: var(--bs-dropdown-spacer);
        width: 96%;
    }


    .hero {
        height: 50vh;
        padding-top: 75px;
    }

    .nav-links img {
        display: none;
    }


    header .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.9);
        padding-top: 40px;
        transition: all 0.3s ease-in-out;
    }

    header .nav-links.show {
        display: flex;
    }

    header .hamburger {
        display: flex;
    }

    header .close-btn {
        display: block;
    }

    .hero h1 {
        font-size: 26px;
        padding: 0 20px;
        font-weight: 600;
        line-height: 35px;
        margin-bottom: 10px;
    }

    .hero p {
        font-size: 14px;
        letter-spacing: 5px;
        margin-bottom: 10px;
    }

    .hero .hero-buttons {
        gap: 7px;
    }

    .header .close-btn {
        display: none;
        position: absolute;
        left: 150px;
        top: 0px;
        font-size: 2rem;
        color: #fff;
        cursor: pointer;
    }

    .hero .btn {
        padding: 5px 9px;
        font-size: 12px;
    }

    .times .prayer h3 {
        font-size: 12px;
    }

    .times .container {
        padding: 0;
    }

    .times .prayer p {
        font-size: 10px;
    }

    .times .prayer svg {
        width: 20px;
        height: 26px;
    }

    .times .prayer {
        text-align: center;
        width: 16%;
        padding: 10px 0 20px 0;
        height: 120px;
    }

    .times .prayer-times {
        gap: 1px;
        padding: 0 5px;
    }

    .home-events h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .home-events p {
        margin-bottom: 20px;
        font-size: 14px;
    }


    .contct-ad h2 {
        font-size: 22px;
        font-weight: 600;
        padding-top: 20px;
        line-height: 30px;
    }

    .contct-ad p {
        font-size: 12px;
        line-height: 27px;
        padding-right: 0px;
    }

    .contct-ad span a {

        padding: 10px 12px;
        font-size: 12px;
    }

    .contct-ad img {
        padding: 31px;
    }

    .videos {
        padding: 10px;
    }

    .home-videos h2 {
        font-size: 18px;
        margin-bottom: 15px;
    }

    .foot .allfoot {
        grid-template-columns: 1fr;
    }

    .home-events {
        margin: 0px 0;
        margin-top: 20px !important;
    }

}

@media (max-width: 768px) {
    .home-events .carousel-slide {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    .home-events .carousel-slide .events {
        min-width: 100%;
        margin: 0;
    }

    .home-events .carousel-buttons {
        width: 94%;
    }
}



/* -------about us----- */


.about-banner {
    background-image: url("image/about-banner.png");
    /* Replace with your image */
    background-size: cover;
    /* background-position: center; */
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Space for the fixed header */
    padding-top: 150px;
}

.about-banner h6 {
    text-align: center;
    font-size: 48px;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
}

.about-data .abt-img {
    display: flex;
    align-items: start;
    justify-content: center;

}

.about-data {
    margin: 80px 0;
}

.about-data .abt-img img {
    width: 100%;
    padding-right: 20px;
    height: 430px;
}

.about-data .abt-data {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.about-data .abt-data h2 {
    font-size: 42px;
    color: #26442d;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 700;
}

.about-data p {
    font-size: 15px;
    color: #000000;
    line-height: 35px;
    text-align: justify;
    font-weight: 500;

}

.about-data h3 {
    font-size: 28px;
}

.about-data a {
    color: #26442d;
    margin-bottom: 15px;
}

.a-tag {
    margin: 10px;
}




@media screen and (max-width: 580px) {
    .about-data a {
        font-size: 12px;
    }

    .about-data .abt-data h2 {
        font-size: 38px;
    }

    .about-data .abt-img img {
        padding-right: 0px;
    }

    .about-banner {
        background-position: center;
        height: 30vh;
        padding-top: 150px;
    }

    .about-banner h6 {
        font-size: 24px;

        margin-bottom: 41px;
    }

    .about-data {
        margin: 15px 0;
    }

    .about-data .abt-data p {
        font-size: 14px;
        line-height: 32px;
    }

}

/* donation page */

.donation-banner {
    background-image: url("image/donation-banner.png");
    /* Replace with your image */
    background-size: cover;
    /* background-position: center; */
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Space for the fixed header */
    padding-top: 150px;
}

.donation-banner h6 {
    text-align: center;
    font-size: 48px;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
}

.doantion-details .first h1 {
    color: #26442d;
    font-family: 'Times New Roman', Times, serif;
    font-size: 52px;
    font-weight: 700;
}

.doantion-details .first p {
    font-size: 14px;
    line-height: 35px;
    padding-right: 20px;
}

.doantion-details .first img {
    width: 100%;
}

.doantion-details .first img:hover {
    width: 101%;
}

.doantion-details {
    margin: 80px 0;
}

.doantion-details .second {
    background-color: #E9EBE3;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    /* justify-content: center; */
    padding: 0 50px;
}

.doantion-details .first {
    padding-right: 50px;
}



.doantion-details .tabs {
    display: flex;
    margin-bottom: 20px;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
}

.doantion-details .tab-button {
    background-color: #f1f1f1;
    border: none;
    padding: 15px 50px;
    cursor: pointer;
    font-size: 20px;
    color: #26442d;
}

.doantion-details .tab-button:hover {
    background-color: #26442d;
    color: #ffffff;
}

.doantion-details .tab-button.active {
    background-color: #8A9A5B;
    color: #fff;
}

.doantion-details .tab-content {
    display: none;
}

/* .doantion-details .tab-content h2 {
    margin-top: 0;
} */

.doantion-details h2 {
    color: #000000;
    font-size: 16px;
    margin: 10px 0;
}

.doantion-details .dropdown .btn-secondary.don-type {
    width: 100%;
    border: 2px solid #8A9A5B;
    background-color: #E8ECDC;
    color: #000000;
    justify-content: space-between;
    align-items: start;
    font-weight: 500;

}

.doantion-details .dollar {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 15px;
    flex-wrap: wrap;
}

.doantion-details .dollar a {
    text-decoration: none;
    border: 2px solid #8A9A5B;
    background-color: #E8ECDC;
    color: #000000;
    border-radius: 10px;
    padding: 5px 15px;
    font-weight: 500;
}

.doantion-details .dollar .button0 {
    text-decoration: none;
    border: 2px solid #26442d;
    background-color: #E8ECDC;
    color: #fbfbfb;
    border-radius: 10px;
    padding: 5px 15px;
    font-weight: 500;
    background-color: #26442d;
    width: 60px;
}

.doantion-details .dollar .button0:hover {
    background-color: #8A9A5B;
    color: #26442d;
    border: none;
}

.doantion-details input {
    border: 2px solid #8A9A5B;
    background-color: #E8ECDC;
    color: #000000;
    border-radius: 8px;
    width: 100%;
    height: 40px;
}

.doantion-details input::placeholder {
    color: #000;
    padding: 10px;
}

.donate {
    text-decoration: none;
    background-color: #26442d;
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 500;
    border: none;
}

.donate:hover {
    background-color: #8A9A5B;
    color: #26442d;
    border: none;
}

.doantion-details .info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.doantion-details .error1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.doantion-details .dropdown-toggle::after {
    float: right;
    margin-top: 10px;
}

.doantion-details .btn {
    text-align: start;
}

.doantion-details .dropdown-menu.show {
    display: block;
    width: 100%;
    background-color: #8A9A5B;
    color: #fff;
}

.doantion-details .dropdown-item {
    color: #E9EBE3;
}

.second .info textarea {
    border: 2px solid #8A9A5B;
    background-color: #E8ECDC;
    color: #000000;
    border-radius: 8px;
    width: 100%;
    padding: 10px;
    font-size: 16px;
    line-height: 1.5;
    resize: vertical;
    margin-top: 10px;
}


/* ---- */
.bank-type {
    padding: 50px 0;
}

.bank-type .donate {
    text-align: center;
}

.bank-type h3 {
    color: #26442d;
    font-family: 'Times New Roman', Times, serif;
    /* text-transform: capitalize; */
    font-size: 42px;
    font-weight: 600;
}

.bank-type .name {
    color: #8A9A5B;
    text-transform: capitalize;
    font-size: 20px;
}

.bank-type .details {
    margin: 30px 0;

}

.bank-type .bank-details {
    background-color: #b4c28d;
    border-radius: 10px;
    padding: 20px;
    margin-right: 30px;
    width: 100%;
    text-align: center;
}

.bank-type .bank-details:hover {
    background-color: #b4c28d;
}

.bank-type h4 {
    color: #26442d;
    font-weight: 700;
    margin-bottom: 20px;
}

.bank-type .bank-details p {
    color: #181818;
    line-height: 35px;
    margin-right: 50px;
    font-weight: 500;
    margin-bottom: 8px;
}

.bank-details {
    margin: 20px 0;
}

.bank-detail-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
    text-align: center;
}

.bank-label {
    font-weight: bold;
    flex-basis: 18%;
    text-align: left;
}

.bank-dot {
    font-weight: 700;
    padding: 0 10px;
}

.bank-detail {
    flex-basis: 35%;
    text-align: left;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .bank-label {
        flex-basis: 40%;
        padding-left: 0;
    }

    .bank-detail {
        flex-basis: 60%;
        padding-left: 0;
    }

    .bank-detail-row {
        align-items: start;
    }
}

@media screen and (max-width: 580px) {


    .donation-banner {
        background-position: center;
        height: 30vh;
        padding-top: 150px;
    }

    .donation-banner h6 {
        font-size: 38px;
    }

    .doantion-details .first h1 {
        font-size: 42px;
    }

    .doantion-details {
        margin: 20px 0;
    }

    .doantion-details .first p {
        line-height: 30px;
        padding-right: 0px;
    }

    .doantion-details .first {
        padding-right: 10px;
    }

    .doantion-details .second {
        padding: 15px;
    }

    .doantion-details .tab-button {
        padding: 10px 22px;
        font-size: 14px;
    }

    .bank-type h3 {
        font-size: 28px;
    }

    .bank-type .name {
        font-size: 18px;
    }

    .bank-type .bank-details {
        background-color: #b4c28d;
        border-radius: 10px;
        padding: 20px;
        margin-right: 30px;
        width: 100%;
        text-align: center;
    }

    .bank-type .bank-details p {
        line-height: 30px;
        margin-right: 0px;

    }

    .doantion-details .info {
        flex-direction: column;
    }
}

/* login */
body {
    overflow-x: hidden;
}

.login-banner {
    background-image: url("image/login-bannere.png");
    /* Replace with your image */
    background-size: cover;
    /* background-position: center; */
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Space for the fixed header */
    padding-top: 150px;
}

.login-banner h6 {
    text-align: center;
    font-size: 48px;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
}

.logins img {
    width: 100%;
}

.logins img:hover {
    scale: 1.05;
}

.logins .data .forms-log {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: center;
    margin-left: 80px;
    margin-right: 20px;
}

.logins .data .forms-log h5 {
    font-size: 38px;
    font-family: 'Times New Roman', Times, serif;
    color: #8A9A5B;
    margin-bottom: 20px;
}

.logins .form-img {
    background-color: #EFF1E9;
}

.logins .forms-log input {
    border: 2px solid #8A9A5B;
    border-radius: 8px;
    height: 40px;
}

.logins .login {
    text-decoration: none;
    background-color: #26442d;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
}

.logins .login:hover {
    background-color: #8A9A5B;
    color: #26442d;
}

.logins p {
    color: #8A9A5B;
}

.logins .register {
    color: #8A9A5B;
    font-weight: 700;
}

.logins .register:hover {
    font-weight: 800;
}

.logins .icons svg {
    width: 30px;
}

.logins .icons svg:hover {
    scale: 1.10;
}

.logins .icons {
    display: flex;
    align-items: center;
    gap: 20px;
}


@media screen and (max-width: 580px) {


    .login-banner {
        background-position: center;
        height: 30vh;
        padding-top: 150px;
    }

    .login-banner h6 {
        font-size: 38px;
    }

    .logins .data .forms-log {

        margin-left: 0px;
        margin-right: 0px;
        padding: 20px;
    }

    .logins img {
        display: none;
    }
}

/* -------thahlil----- */
.thahlil-banner {
    background-image: url("image/bannerthahil.png");
    /* Replace with your image */
    background-size: cover;
    /* background-position: center; */
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Space for the fixed header */
    padding-top: 150px;
}

.thahlil-banner h6 {
    text-align: center;
    font-size: 38px;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
}

.thahlil-data .data1 {
    padding-left: 100px;
    padding-right: 50px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.thahlil-data .data1 h2 {
    color: #26442d;
    font-family: 'Times New Roman', Times, serif;
    font-size: 42px;
    font-weight: 600;
    line-height: 60px;
}

.thahlil-data .data1 .p1 {
    color: #26442d;
    line-height: 38px;
    font-size: 15px;

}

.thahlil-data .data1 .surah {
    text-align: center;
}

.thahlil-data .data1 h3 {
    color: #8A9A5B;
    font-family: 'Times New Roman', Times, serif;
    font-size: 36px;
    font-weight: 600;
}

.thahlil-data .data1 p {
    color: #26442d;
    font-size: 18px;
    line-height: 40px;

}

.thahlil-data .data2 {
    background-color: #f1f2eb;
    padding: 50px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding-right: 150px;
}

.thahlil-data .data2 h2 {
    color: #26442d;
    font-family: 'Times New Roman', Times, serif;
    font-size: 24px;
    font-weight: 600;

}

.thahlil-data .dollar {
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: left;
    gap: 15px;
    flex-wrap: wrap;
}

.thahlil-data .dollar a {
    text-decoration: none;
    border: 2px solid #8A9A5B;
    background-color: #E8ECDC;
    color: #000000;
    border-radius: 10px;
    padding: 5px 15px;
    font-weight: 500;
}


.thahlil-data input {
    border: 2px solid #8A9A5B;
    background-color: #E8ECDC;
    color: #000000;
    border-radius: 8px;
    width: 100%;
    height: 40px;
}

.thahlil-data textarea {
    border: 2px solid #8A9A5B;
    background-color: #E8ECDC;
    color: #000000;
    border-radius: 8px;
    width: 100%;

}

.thahlil-data input::placeholder {
    color: #000;
    padding: 10px;
}

.save {
    text-decoration: none;
    background-color: #26442d;
    color: #fff;
    border-radius: 5px;
    padding: 10px 20px;
    font-weight: 500;
    border: none;
}

.save:hover {
    color: #26442d;
    background-color: #8A9A5B;
}

.thahlil-data .dropdown .btn-secondary.cas {
    width: 100% !important;
    border: 2px solid #8A9A5B;
    background-color: #E8ECDC;
    color: #000000;
    justify-content: space-between;
    align-items: start;
    font-weight: 500;


}

.thahlil-data .dropdown {
    width: 100%;
}

.thahlil-data .dropdown-item {
    color: #E9EBE3;
}

.thahlil-data .btn {
    text-align: start;
}

.thahlil-data .dropdown-menu.show {
    display: block;
    width: 100%;
    background-color: #8A9A5B;
    color: #fff;
}

.thahlil-data .amount {
    display: flex;
    align-items: center;
}

.thahlil-data .total {
    border: 2px solid #8A9A5B;
    background-color: #E8ECDC;
    color: #000000;
    border-radius: 8px;
    padding: 8px 20px;
    margin: 20px 0;

}

.thahlil-data .amount input {
    border: 2px solid #8A9A5B;
    background-color: #E8ECDC;
    color: #000000;
    border-radius: 8px;
    width: 30%;
    height: 40px;
}

.thahlil-data .dropdown-toggle::after {
    float: right;
    margin-top: 10px;
}

.thahlil-data .dollar .button0 {
    text-decoration: none;
    border: 2px solid #26442d;
    background-color: #E8ECDC;
    color: #fbfbfb;
    border-radius: 10px;
    padding: 5px 15px;
    font-weight: 500;
    background-color: #26442d;
    width: 60px;
}

.thahlil-data .dollar .button0:hover {
    background-color: #8A9A5B;
    color: #26442d;
    border: none;
}

.oth-btn {
    width: 27% !important;
}

@media screen and (max-width: 580px) {
    .thahlil-banner {
        background-position: center;
        height: 30vh;
        padding-top: 150px;
    }

    .thahlil-banner h6 {
        font-size: 38px;
    }

    .thahlil-data .data1 {
        padding-left: 20px;
        padding-right: 20px;
    }

    .thahlil-data .data1 h2 {
        font-size: 32px;
    }

    .thahlil-data .data1 .p1 {
        line-height: 35px;
    }

    .thahlil-data .data1 h3 {
        font-size: 26px;
    }

    .thahlil-data .data2 {
        padding: 30px;
        padding-right: 30px;
    }

    .thahlil-data .data2 h2 {
        font-size: 20px;
    }

    .oth-btn {
        width: 40% !important;
    }
}

.contacts-banner {
    background-image: url("image/contacts-banner.png");
    /* Replace with your image */
    background-size: cover;
    /* background-position: center; */
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Space for the fixed header */
    padding-top: 150px;
}

.contacts-banner h6 {
    text-align: center;
    font-size: 38px;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
}

.contacts-details .cont1 {
    background-color: #EFF1E9;
    padding-left: 100px;
    padding-right: 50px;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
}

.contacts-details .cont1 h3 {
    font-size: 24px;
    font-family: 'Times New Roman', Times, serif;
    color: #26442d;
    font-weight: 600;
    margin-bottom: 40px;
}

.contacts-details .cont1 input {
    border: 2px solid #8A9A5B;
    background-color: #E8ECDC;
    color: #000000;
    border-radius: 8px;
    width: 100%;
    height: 45px;
}

.contacts-details .cont1 input::placeholder {

    color: #000000;
    padding: 10px;

}

.contacts-details .cont1 textarea {
    border: 2px solid #8A9A5B;
    background-color: #E8ECDC;
    color: #000000;
    border-radius: 8px;
    width: 100%;

}

.send-btn {
    text-decoration: none;
    background-color: #26442d;
    color: #fff;
    border-radius: 5px;
    padding: 10px 25px;
    font-weight: 500;
    border: none;
}

.send-btn:hover {
    background-color: #8A9A5B;
    color: #26442d;
    border: none;
}

/* ----------------------- */
.contacts-details .cont2 {
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;
    padding: 50px 100px 50px 50px;
}

.contacts-details .cont2 h4 {
    color: #26442d;
    font-weight: 700;
    font-size: 22px;
}

.contacts-details .cont2 h5 {
    color: #000000;
    font-weight: 600;
    font-size: 26px;
    font-family: 'Times New Roman', Times, serif;
    margin: 20px 0;

}

.contacts-details .cont2 p {
    font-size: 16px;
    line-height: 35px;
}

.contacts-details .cont2 .contacts-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin: 20px 0;
}

.contacts-details .cont2 .contacts-data svg {
    width: 50px;
}

.contacts-details .cont2 .contacts-data svg:hover {
    scale: 1.10;

}

.contacts-details .cont2 .contacts-data h6 {
    font-size: 16px;
    color: #000000;
    margin-bottom: 0;
    font-weight: 700;
}

.contacts-details .cont2 .contacts-data h6:hover {
    color: #8A9A5B;
    font-weight: 800;
    cursor: pointer;
}

.contacts-details .cont2 .contacts-data p {
    font-size: 14px;
    color: #26442d;
    margin-bottom: 0;
}

.contacts-details .cont2 .contacts-data p:hover {
    font-size: 14px;
    color: #000000;
    font-weight: 600;
}

.contacts-details .cont2 .contacts-data .details {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.contacts-details .cont2 .icons {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 5px;
    flex-direction: row;
}

.contacts-details .cont2 .icons svg {
    width: 40px;
    height: 30px;
}

.contacts-details .cont2 .icons svg:hover {
    scale: 1.10;
}

.location h2 {
    text-align: center;
    margin: 50px 0;
    font-weight: 700;
    font-family: 'Times New Roman', Times, serif;
}

.location iframe {
    width: 100%;
    height: 300px;
}

.location {
    margin-bottom: 50px;
}

@media screen and (max-width: 580px) {
    .contacts-banner {
        background-position: center;
        height: 30vh;
        padding-top: 150px;
    }

    .contacts-banner h6 {
        font-size: 38px;
    }

    .contacts-details .cont1 {

        padding: 10px 20px;

    }

    .contacts-details .cont1 h3 {
        font-size: 20px;
        margin-bottom: 20px;
        line-height: 30px;
    }

    .contacts-details .cont2 {
        display: flex;
        align-items: start;
        justify-content: center;
        flex-direction: column;
        padding: 56px 20px 50px 20px;
    }

    .contacts-details .cont2 h5 {
        font-size: 24px;
        margin: 5px 0;
    }

    .contacts-details .cont2 p {
        font-size: 13px;
        line-height: 28px;
        margin-bottom: 0;
    }

    .contacts-details .cont2 .icons {
        gap: 8px;
        margin-top: 20px;
    }

    .location h2 {
        margin: 20px 0;
    }
}

/* --------------signup------------- */
.signup-banner {
    background-image: url("image/signup-banner.png");
    /* Replace with your image */
    background-size: cover;
    /* background-position: center; */
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Space for the fixed header */
    padding-top: 150px;
}

.signup-banner h6 {
    text-align: center;
    font-size: 48px;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
}

.signup img {
    width: 100%;
}

.signup img:hover {
    scale: 1.10;
}

.signup .data .forms-sin {
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: space-evenly;
    margin-left: 80px;
    margin-right: 20px;
    padding: 20px 0;
}

.signup .data .forms-sin h5 {
    font-size: 23px;
    font-family: 'Times New Roman', Times, serif;
    color: #8A9A5B;
    margin-bottom: 20px;
    font-weight: 700;
}

.signup .form-img {
    background-color: #EFF1E9;
}

.signup .forms-sin input {
    border: 2px solid #8A9A5B;
    border-radius: 8px;
    height: 40px;
    margin-bottom: 10px;
}

.signup .register {
    text-decoration: none;
    background-color: #26442d;
    color: #fff;
    border-radius: 8px;
    text-align: center;
    padding: 10px;
    margin-bottom: 20px;
}

.signup .register:hover {
    background-color: #8A9A5B;
    color: #26442d;
}

.signup p {
    color: #8A9A5B;
}

.signup .loginnow {
    color: #8A9A5B;
    font-weight: 700;
}

.signup .loginnow:hover {
    font-weight: 800;
}

.signup .icons svg {
    width: 30px;
}

.signup .icons svg:hover {
    scale: 1.10;
}

.signup .icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.signup textarea {
    border: 2px solid #8A9A5B;
    color: #000000;
    border-radius: 8px;
    width: 100%;

}

@media screen and (max-width: 580px) {


    .signup-banner {
        background-position: center;
        height: 30vh;
        padding-top: 150px;
    }

    .signup-banner h6 {
        font-size: 38px;
    }

    .signup .data .forms-sin {

        margin-left: 0px;
        margin-right: 0px;
        padding: 20px;
    }

    .signup img {
        display: none;
    }
}

/* ------------------- */
.events-banner {
    background-image: url("image/events-banner.png");
    /* Replace with your image */
    background-size: cover;
    /* background-position: center; */
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Space for the fixed header */
    padding-top: 150px;
}

.events-banner h6 {
    text-align: center;
    font-size: 48px;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
}

.events-all .events {
    width: 31%;
    margin: 0 5px;
    background-color: #fff;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.events-all img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    height: 200px;
}

.events-all {
    margin: 80px 0;
}

.events-all .event-details {
    padding: 15px;
    text-align: center;

}

.events-all .eventses {
    display: flex;
    align-items: center;
    justify-content: left;
    flex-wrap: wrap;
    gap: 20px
}

@media screen and (max-width: 580px) {

    .events-banner {
        background-position: center;
        height: 30vh;
        padding-top: 150px;
    }

    .events-banner h6 {
        font-size: 38px;
    }

    .events-all .events {
        width: 100%;

    }
}

/* ---------video------------- */
.video-banner {
    background-image: url("image/abstract-banner.jpg");
    /* Replace with your image */
    background-size: cover;
    /* background-position: center; */
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Space for the fixed header */
    padding-top: 150px;
}

.video-banner h6 {
    text-align: center;
    font-size: 48px;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
}

.video-all .videoses {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    flex-wrap: wrap;
    gap: 50px;

}

.video-all .video-one {
    width: 30%;
}

.video-all .video-one h2 {
    color: #8A9A5B;
    text-align: center;
    margin: 10px 0;
    font-size: 24px;
}

.video-all {
    margin: 80px 0;
}


@media screen and (max-width: 580px) {

    .video-banner {
        background-position: center;
        height: 30vh;
        padding-top: 150px;
    }

    .video-banner h6 {
        font-size: 38px;
    }

    .video-all .video-one {
        width: 100%;

    }

    .video-all {
        margin: 50px 0;
    }
}

/* ---------customers------------- */

header .my-pro.dropdown .dropdown-toggle::after {
    display: none;
}

header .my-pro.dropdown .profile.btn {
    background-color: transparent;
    border: none;
}

header .my-pro.dropdown .dropdown-menu[data-bs-popper] {
    left: -135px !important;
    top: 50px;
}

.customers {
    background-image: url("image/customer.png");
    /* Replace with your image */
    background-size: cover;
    /* background-position: center; */
    height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Space for the fixed header */
    padding-top: 150px;
}

.customers h6 {
    text-align: center;
    font-size: 48px;
    color: #fff;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 600;
}

/* ---------------- */
.customer-profile .container {
    display: flex;
    margin: 50px auto;
    max-width: 1120px;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    padding: 0;
}

.customer-profile .sidebar {
    width: 250px;
    background-color: #f5f5f5;
    border-right: 1px solid #ddd;
}

.customer-profile .sidebar ul {
    list-style: none;
}

.customer-profile .sidebar ul li {
    padding: 12px;
    text-align: center;
    background-color: #e0e0e0;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
}

.customer-profile .sidebar ul li.active {
    background-color: #8A9A5B;
    color: white;
}

.customer-profile .sidebar ul li:hover {
    background-color: #26442d;
    color: #ddd;
}

.customer-profile .content {
    padding: 30px;
    width: 100%;
}


.customer-profile .sidebar ul {
    padding-left: 0;

}


.customer-profile .profile-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
}


.customer-profile .tab-content {
    display: none;
}

.customer-profile .tab-content.active {
    display: block;
}

@media screen and (max-width: 580px) {

    .customers {
        background-position: center;
        height: 30vh;
        padding-top: 150px;
    }

    .customersh6 {
        font-size: 38px;
    }

}

.foot-link {
    text-decoration: none;
    color: #fff;
}

.foot-link:hover {
    color: #f0cd30;
}

.navbar .nav-links .active-menu a {
    color: #f0cd30;
}

/* popup box */
/* The popup box (hidden by default) */
.popup.login-volunters {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

/* The popup box (hidden by default) */
.popup.login-volunters {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .7);
    /* Black background with opacity for fade effect */
}

/* Popup content */
.popup.login-volunters .popup-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 30px;
    border: 1px solid #888;
    width: 400px;
    text-align: center;
    border-radius: 10px;
    /* Optional for rounded corners */
}

/* Close button */
.popup.login-volunters .close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.popup.login-volunters .close-btn:hover,
.close-btn:focus {
    color: #000;
    text-decoration: none;
}

.popup.login-volunters .reset {
    text-decoration: none;
    background-color: #26442d;
    color: #fff;
    border-radius: 5px;
    padding: 8px 25px;
    font-weight: 500;
    width: 100%;
}

.popup.login-volunters .cancel {
    text-decoration: none;
    background-color: transparent;
    color: #26442d;
    border: 1px solid #26442d;
    border-radius: 5px;
    padding: 5px;
    font-weight: 500;
    width: 50%;
}

.popup.login-volunters .pop-data {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.popup.login-volunters .pop-data input {
    width: 100%;
}

.popup.login-volunters .pop-data input::placeholder {
    font-size: 14px;
    padding: 5px 0;
}

@media screen and (max-width: 580px) {
    .popup.login-volunters .popup-content {
        margin: 75% auto;
        width: 300px;

    }
}

.logins .register {
    color: #8A9A5B;
    font-weight: 700;
    background-color: transparent;
    border: none;
    text-align: start;
    text-decoration: underline;
}

.customer-profile .dropdown {
    width: 100%;
}

.modal-dialog {
    max-width: 55%;
}

@media screen and (max-width: 580px) {
    .customers-table-div {
        display: flex;
        overflow-x: auto;
        width: 100% !important;
        scroll-behavior: smooth;
    }

    .modal-dialog {
        max-width: 100%;
    }

    .customer-profile {
        font-size: 12px;
    }

    .filter-dropdown {
        width: 33% !important;
    }

    .customer-profile .content {
        padding: 10px;
    }

    .filter-form {
        justify-content: unset !important;
        gap: 50px !important;
    }

    .sign-menu {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .my-pro.dropdown.desktop {
        display: none;
    }

    .my-pro.dropdown.mobile {
        display: block !important;
    }

    .dropdown-item {
        color: #e0e0e0 !important;
    }

    .customers-table-div table {
        min-width: 800px;
    }

    .popup-table {
        font-size: 13px;
    }

    .customers-tables td,
    .customers-tables th {
        font-size: 13px !important;
    }
}

.my-pro.dropdown.mobile {
    display: none;
}

.modal-dialog .modal-header {
    background-color: #26442d;
    color: #fff;
}

.modal-dialog table thead {
    color: #fffdd0;
    background-color: #8a9a5b;
}

.modal-dialog .modal-body {
    background-color: #f8f9fa !important;
    color: #212529;
}

/* new style */
.kuruma {
    margin: 80px 0;
}

.kuruma h1 {
    text-align: center;
    color: #8a9a5b;
    font-family: 'Times New Roman', Times, serif;
    font-weight: 800;
    font-size: 38px;
    margin-bottom: 20px;
}

.kuruma .kuruma-p {
    text-align: center;
    font-size: 18px;
    line-height: 35px;
    padding: 0 70px;
}

.kuruma .kuruma-data p {
    font-size: 16px;
    line-height: 35px;
}

.kuruma .kuruma-data img {
    width: 90%;
}

.kuruma .images img {
    width: 100%;
}

.kuruma-details {
    margin-top: 80px !important;
}

.kuruma-form {
    background-color: #E9EBE3;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px !important;
}

.kuruma-form label {
    color: #000000;
    font-size: 15px;
    margin: 10px 0;
}

.kuruma-form input {
    border: 2px solid #8A9A5B;
    background-color: #E8ECDC;
    color: #000000;
    border-radius: 8px;
    width: 100%;
    height: 40px;
}

.kuruma-form .names {
    display: flex;
    align-items: center;
    gap: 20px;
}

.kuruma h3 {
    color: #26442d;
    font-size: 22px;
    font-weight: 700;
    margin: 10px 0;
}

/* .kuruma h4{
    color: #26442d;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Times New Roman', Times, serif;
text-align: center;
} */
.kuruma .pricing {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 10px;
}

.kuruma-type p {
    margin-bottom: 0;
}

.kuruma-type span {
    margin-bottom: 0;
    font-size: 15px;
}

.kuruma-type h6 {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 15px;
}

.kuruma-form ul li {
    font-size: 15px;
    margin-bottom: 10px;
}

.kuruma form {
    display: flex;
    gap: 10px;
    flex-direction: column;
}

.kuruma h2 {
    color: #26442d;
    font-family: 'Times New Roman', Times, serif;
    font-size: 38px;
    font-weight: 700;
}

.kuruma .d-btn {
    display: flex;
}

.kuruma-form input::placeholder {
    padding-left: 5px;
    font-size: 14px;
}

.radio-btns {
    display: flex;
}

.radio-btns input {
    width: 20%;
    height: 18px;
}

.radio-btns label {
    font-size: 15px;
    margin: 0;
}

.kuruma-form textarea {
    border: 2px solid #8A9A5B;
    background-color: #E8ECDC;
    color: #000000;
    border-radius: 8px;
    width: 100%;
}

.total {
    display: flex;
    align-items: center;
    gap: 10px;
}

.kuruma-type.tot {
    display: flex;
    align-items: center;
}

.kuruma .form-control:focus {
    color: var(--bs-body-color);
    background-color: var(--bs-body-bg);
    border-color: #8a9a5b;
    outline: 0;
    box-shadow: 0 0 0 .25rem #8a9a5b29;
}

.kuruma .form-check-input:checked {
    background-color: #8a9a5b;
    border-color: #7d8c51;
}

@media screen and (max-width: 780px) {
    .kuruma h1 {
        font-size: 28px;
    }

    .kuruma {
        margin: 30px 0;
    }

    .kuruma .kuruma-p {
        font-size: 16px;
        padding: 0 10px;
    }

    .kuruma h2 {
        font-size: 28px;
        text-align: center;
    }

    .kuruma .kuruma-data img {
        width: 100%;
        margin-bottom: 20px;
    }

    .kuruma .kuruma-data p {
        font-size: 14px;
        line-height: 30px;
        text-align: center;
    }

    .kuruma-form label {
        font-size: 13px;
    }

    .kuruma-form {
        padding: 20px !important;
    }

    .kuruma h3 {
        font-size: 18px;
    }

    .kuruma-type span {
        font-size: 13px;
    }

    .kuruma-type h6 {
        font-weight: 400;
        font-size: 13px;
    }

    .kuruma-type p {
        margin-bottom: 0;
        font-size: 13px;
    }
    .kuruma .pricing {
        gap: 5px;
    }
    .kuruma .form-control {
        font-size: 14px;
        padding: 5px;
    }
    .kuruma input::placeholder {
        font-size: 12px;
    }
}

/*  */
.payment-type {
    display: flex;
    align-items: center;
    gap: 50px;
}
.payment-type .form-check input {
    width: 28% !important;
    height: 18px !important;
}