@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
    font-weight: weight;
    font-style: normal;
}

.all-content {
    background: #f7f4f2;
}

/* navbar start */
.navbar li {
    list-style: none;
}

.navbar a {
    color: #004b57;
    /* margin-left: 15px; */
    font-weight: bold;
    font-size: 20px;
    transition: 0.5s;
}

.navbar a:hover {
    color: #006a89;
}

.logo img {
    width: 100px;
    /* margin-left: 20px;
    margin-top: -30px; */

}

header {
    position: relative;
    padding: 10px 2rem;
}

.navbar {
    /* height: 60px; */
    /* max-width: 1200px; */
    margin: 0 auto;
}

.navbar .links {
    margin-top: 15px;
    display: flex;
    margin-bottom: 15px;
    /* gap: 2rem; */
}

.navbar .toggle_btn {
    color: #004b57;
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.action_btn {
    color: #fff !important;
    background-color: #004b57;
    padding: 0.5rem 1.5rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease;
}

.action_btn:hover {
    transform: scale(1.05);
}

.actions_btn {
    color: #fff !important;
    background-color: #004b57;
    padding: 0.5rem 1.5rem;
    border: none;
    outline: none;
    border-radius: 20px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease;
}

.action_btn:hover {
    transform: scale(1.05);
}

.dropdown_menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    width: 340px;
    height: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown_menu.open {
    height: 470px;
    z-index: 1;
}

.dropdown_menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown_menu .actions_btn {
    width: 100%;
    display: flex;
    justify-content: center;
}


@media (max-width: 992px) {

    .navbar .links,
    .navbar .action_btn {
        display: none;
    }

    .navbar .toggle_btn {
        display: block;
    }

    .dropdown_menu {
        display: block;
    }
}

@media (max-width: 576px) {
    .dropdown_menu {
        left: 2rem;
        width: unset;
    }
}

/* navbar end */


/* home section starts */
.slider {
    width: 100%;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    transition: 0.5s;
    height: 800px;
    overflow: hidden;
}

.slide img {
    width: 100%;
    display: block;
    object-fit: cover;
    height: 100%;
}
.slide .widget footer{display: none;}

.navigation {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active,
.dot:hover {
    background-color: #717171;
}

/* home section ends */


/* about section start */
.heading {
    text-align: center;
    margin-bottom: 10px;
    color: #004b57;
    font-size: 45px;
    font-weight: bold;
    padding-top: 50px;
}

.heading span {
    color: #006a89;
}

#about .card {
    border-radius: 10px;
    /* height: 550px; */
    width: 100%;

}

#about .card img {
    border-radius: 10px;
}

.card-text {
    margin-left: 20px;
    margin-top: 60px;
}


@media screen and(max-width:982px) {
    #about p {
        font-size: 8px;
    }
}

@media screen and(max-width:766px) {
    #about p {
        font-size: 15px;
    }

    #about {
        height: 120vh;
    }
}

/* about section end */

/* donation form start */
#donation .dnt-text {
    font-weight: bold;
    font-size: 20px;
    color: #000000;
}

#dnt-btn {
    width: 100px;
    height: 36px;
    border: none;
    color: white;
    background: #004b57;
    cursor: pointer;
    margin: 10px;
    border-radius: 10px;
}

#donate-btn {
    width: 200px;
    height: 45px;
    border: none;
    border-radius: 15px;
    color: white;
    background: #004b57;
    cursor: pointer;
    margin-bottom: 50px;
}

#dnt-btn:hover {
    background: #006a89;
}

/* donation form end */

/* servics starts */
#service .heading7 {
    text-align: center;
    font-size: 45px;
    color: #004b57;
    font-weight: bold;
    margin-top: 30px;
}

#service .heading7 span {
    color: #006a89;
}

#service .card {
    padding: 30px;
    height: auto;
    width: 100%;
    border-radius: 10px;
    margin-top: 60px;
}

#service h5 {
    color: #006a89;
}

/* Hidden extra text */
.more-text {
    display: none;
    transition: all 0.3s ease;
}

.read-more-btn {
    background-color: #006a89;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.read-more-btn:hover {
    background-color: #004b57;
}


/* services ends */

/* payment */
.payment-container {
    padding: 30px;
    border-radius: 15px;
    width: 100%;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    animation: fadeInUp 1s ease-out;
    margin-left: 0px;
    margin-top: 60px;
}

.PayPal {
    font-size: 50px;
    margin-bottom: 25px;
    color: #004b57;
    font-weight: 500;
}

.qr-code img {
    width: 300px;
    height: 300px;
    border-radius: 15px;
    transition: transform 0.3s;
}

.qr-code img:hover {
    transform: scale(1.1);
}

.info-text {
    font-size: 18px;
    color: #000;
    margin-top: 20px;
}

.pay-now-button {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 25px;
    background: #004b57;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 18px;
    transition: background 0.3s, transform 0.3s;
    animation: pulse 2s infinite;
}

.pay-now-button:hover {
    background: #006a89;
    color: #fff;
    transform: translateY(-5px);
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

/* payment end */


/* prayer timings start*/
.prayer-container {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    /* max-width: 1350px; */
    /* width: 100%; */
    animation: fadeIn 2s ease-in-out;
}

.prayer-container h2 {
    font-size: 27px;
    margin-bottom: 20px;
    color: #2c3e50;
    animation: slideIn 1s ease-out;
}

.prayer-container .qr-code img {
    width: 250px;
    height: auto;
    margin: 20px 0;
    border: 5px solid #2c3e50;
    border-radius: 10px;
    animation: pulse 2s infinite;
}

.prayer-container .text {
    font-style: italic;
    color: #34495e;
    margin: 15px 0;
    animation: fadeInText 3s ease-in-out;
}

.prayer-container strong {
    display: block;
    margin-top: 10px;
    font-weight: bold;
    color: #2980b9;
}

.prayer-container .view-timings-btn {
    background: linear-gradient(45deg, #004b57, #016b7b);
    color: white;
    padding: 12px 25px;
    border: none;
    margin-top: 50px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.prayer-container .view-timings-btn:hover {
    background: linear-gradient(45deg, #004b57, #016b7b);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Iframe Container Styling */
#iframe-container {
    display: none;
    margin-top: 30px;
    animation: fadeIn 1s ease-in-out forwards;
}

.iframe-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#iframe-container iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 15px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h2 {
        font-size: 20px;
    }

    .qr-code img {
        /* width: 150px; */
        margin: 15px 0;
    }

    .view-timings-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    #iframe-container iframe {
        height: 350px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 18px;
    }

    .qr-code img {
        width: 100% !important;
        margin: 10px 0;
    }

    .view-timings-btn {
        padding: 8px 18px;
        font-size: 12px;
    }

    #iframe-container iframe {
        height: 300px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

@keyframes fadeInText {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* footer start */
footer {
    margin-top: 80px;
    bottom: 0px;
    width: 100%;
    background: #ccd8db;
    border-radius: 5px;
    padding-top: 40px;
}

.main-content {
    display: flex;
}

.main-content .box {
    flex-basis: 50%;
    padding: 10px 20px;
}

.box h2 {
    font-size: 1.125rem;
    font-weight: 600;
    text-transform: uppercase;
}

.box .content {
    margin: 20px 0 0 0;
    position: relative;
}

.box .content:before {
    position: absolute;
    content: '';
    top: -10px;
    height: 2px;
    width: 100%;
    background: #004253;
}

.box .content:after {
    position: absolute;
    content: '';
    height: 2px;
    width: 15%;
    background: #7c9ba3;
    top: -10px;
}

.left .content p {
    text-align: justify;
}

.left .content .social {
    margin: 20px 0 0 0;
}

.left .content .social a {
    padding: 0 2px;
    color: #ffff;
}

.left .content .social a span {
    height: 40px;
    width: 40px;
    background: #004c5f;
    line-height: 40px;
    text-align: center;
    font-size: 18px;
    border-radius: 5px;
    transition: 0.3s;
}

.left .content .social a span:hover {
    background: #79adbb;
}

.center .content .fas {
    font-size: 1.4375rem;
    background: #004253;
    color: #ffff;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 50%;
    transition: 0.3s;
    cursor: pointer;
}

.center .content .fas:hover {
    background: #79adbb;
}

.center .content .text {
    font-size: 1.0625rem;
    font-weight: 500;
    padding-left: 10px;
}

.center .content .phone {
    margin: 15px 0;
}

.right form .text {
    font-size: 1.0625rem;
    margin-bottom: 2px;
    color: #000;
}

.right form .msg {
    margin-top: 10px;
}

.right form input,
.right form textarea {
    width: 100%;
    font-size: 1.0625rem;
    background: #fff;
    padding-left: 10px;
    border: none;
}

.right form input:focus,
.right form textarea:focus {
    outline-color: #3498db;
}

.right form input {
    height: 35px;
}

.right form .btn {
    margin-top: 10px;
}

.right form .btn button {
    width: 150px;
    border: none;
    outline: none;
    background: #004c5f;
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: .3s;
    padding: 5px;
    border-radius: 6px;
}

.right form .btn button:hover {
    background: #79adbb;
    color: #000;
}

.bottom center {
    padding: 5px;
    font-size: 0.9375rem;
    background: #004c5f;
}

.bottom center span {
    color: #fff;
}

.bottom center a {
    color: #c4ebf4;
    text-decoration: none;
}

.bottom center a:hover {
    text-decoration: underline;
}
.validation_form .card {border-radius: 10px;padding: 30px;}
.form-label {font-weight: 600; color: #000;}
.form-control {border: 1px solid #c4c4c4; border-radius: 10px;padding: 10px 15px;color: #000;font-weight: 500;}
.validation_btn {
    display: inline-block;
    padding: 10px 20px;
    background: #004b57;
    color: #fff;
    border-radius: 10px;
    text-decoration: none;
    font-size: 16px;
}
.validation_btn:hover {
    background: #006a89;
    color: #fff;
}
.text-danger {
    color: #dc3545 !important;
    font-size: 12px;
    font-weight: 700;
}




@media screen and (max-width: 900px) {
    footer {
        position: relative;
        bottom: 0px;
    }

    .main-content {
        flex-wrap: wrap;
        flex-direction: column;
    }

    .main-content .box {
        margin: auto;
    }
}

@media (max-width: 1200px) {
    .logo img{margin-left: 0;}
    .navbar .links{margin-top: 0;margin-bottom: 0;}
    .navbar a{margin-left: 0;font-size: 18px;}
    .slide, .iframe-wrapper{height: 500px;}
    #dnt-btn{width: 80px;margin: 0px 0px 15px 5px !important;}
}
@media (max-width: 980px) {
    header{padding: 10px 20px;}
    .navbar{height: auto;}
    .logo img{margin-top: 0;width: 80px;}
    .container, .container-sm, .container-md {max-width: 100%;}
    .dropdown_menu.open {height: auto;z-index: 1;backdrop-filter: blur(0px);background: #fff;}
}
@media (max-width: 900px) {
    .slide, .iframe-wrapper {height: 400px;}
    .main-content .box{width: 100%;}
}
@media (max-width: 767px) {
    #service .card{margin-top: 0px;padding: 20px;}
    #service .card img{max-width: 100%;width: auto;margin: 0 auto;}
}
@media (max-width: 667px) {
    .slide, .iframe-wrapper {height: 300px;}
    .payment-container{margin-top: 0px;}
    .dropdown_menu.open{top: 100%;width: 100%;left: 0;}
}
@media (max-width: 480px) {
    .PayPal {font-size: 30px;}
    .slide, .iframe-wrapper {height: 220px;}

}
@media (max-width: 414px) {
    .slide, .iframe-wrapper {height: 180px;}

}



