@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Bungee+Spice&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Hubot+Sans:ital,wght@0,200..900;1,200..900&family=Meow+Script&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;


}

/* Top Banner */
.top-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: midnightblue;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    position: fixed;
    /* Fix the banner to the top */
    top: 0;
    left: 0;
    width: 100%;
    /* Ensure the banner spans the full width of the viewport */
    z-index: 1000;
    /* Keep the banner above all other elements */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for visibility */
}

.banner-left span a {
    margin-right: 5px;
    color: white;
}

.banner-left span a {
    color: white;
    /* Change link color to white */
    text-decoration: none;
    /* Optional: Remove underline from links */
}

.banner-left span a:hover {
    color: #4CAF50;
    /* Optional: Change color on hover */
}


.banner-left span i {
    margin-right: 5px;
    color: white;
}

.banner-right a {
    color: #fff;
    margin-left: 10px;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.banner-right a:hover {
    color: #ff6a00;
}

/* Responsive View: Hide Left Side Content */
@media (max-width: 768px) {
    .banner-left {
        display: none;
        /* Hide the left-side content (mobile, email, location) */
    }

    .banner-right {
        display: flex;
        /* Ensure the social media links are displayed */
        justify-content: flex-start;
        /* Align the links to the left side */
        margin: 0;
        /* Remove any extra margin */

    }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 3px;
}

.social-icon {
    font-size: 2rem;
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

/* Standard Colors for Each Platform */
.social-icon.whatsapp {
    color: #25D366;
    /* WhatsApp Green */
}

.social-icon.facebook {
    color: #1877F2;
    /* Facebook Blue */
}

.social-icon.instagram {
    color: #E1306C;
    /* Instagram Gradient */
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-icon.youtube {
    color: #FF0000;
    /* YouTube Red */
}

.social-icon.spotify {
    color: #1DB954;
    /* Spotify Green */
}

.social-icon.amazon {
    color: #FF9900;
    /* Amazon Orange */
}


.header {
    position: fixed;
    top: 2.5rem;
    left: 0;
    width: 100%;
    padding: 1.3rem 10%;
    background: rgba(0, 0, 0, .5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    padding: 10px 15px;
}

.header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    /* backdrop-filter: blur(5px); */
    z-index: -1;
}

.header::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(90deg, transparent, rgba(10, 71, 121, 0.4), transparent); */
    transition: 0.5s;
}

.header:hover:after {
    left: 100%;
}

.logo {
    font-size: 1.5rem;
    /* Adjust the font size as needed */
    font-weight: bold;
    text-decoration: none;
    /* Remove underline */
    background-size: 300% 300%;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    /* Add depth with shadow */
    transition: transform 0.3s ease-in-out;
    /* Add hover effect */
    color: white;

}

/* Hover Effect */
.logo:hover {
    transform: scale(1.1);
    /* Slightly enlarge on hover */
    text-decoration: none;
}

/* Gradient Animation */
@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 100% 50%;
    }
}


.navbar a {
    font-size: 1rem;
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-left: 2rem;
    text-align: center;
    font-weight: bold;

}

.navbar a:hover {
    color: #ff6a00;
    text-decoration: none;
}

#check {
    display: none;
}

.icons {
    position: absolute;
    right: 5%;
    font-size: 2.8rem;
    color: white;
    cursor: pointer;
    display: none;
}


/* Style the active link with a different color */
.navbar a.active {
    color: red;
    /* Change this to your desired color */
    font-weight: bold;
    /* Optional: make the active link bold */
}

/* Active Link Animation */
.navbar a.active {
    background: linear-gradient(90deg, #ff6a00, #ee0979, #12c2e9);
    background-size: 300% 300%;
    color: #fff;
    animation: animateColor 3s infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hover Effects */
.navbar a:hover {
    color: #ff6a00;

}



/* Keyframes for Animated Color */
@keyframes animateColor {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Breakpoints */

@media (max-width:992px) {
    .header {
        padding: 1.3rem 5%;
    }

}

@media (max-width:768px) {
    .icons {
        display: inline-flex;
    }

    #check:checked~.icons #menu-icons {
        display: none;
    }

    .icons #close-icon {
        display: none;
    }

    #check:checked~.icons #close-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(0, 0, 0, .1);
        backdrop-filter: blur(50px);
        box-shadow: 0.5rem 1rem rgba(0, 0, 0, .1);
        overflow: hidden;
        transition: 0.3s ease;
    }

    #check:checked~.navbar {
        height: 22rem;
    }

    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 0.8rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: 0.3s ease;
    }

    #check:checked~.navbar a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(0.15s * var(--i));
    }

    .footer {
        max-width: 100%;
    }
}

/* Styling for the login button */
.navbar a.login-btn {
    background-color: #007BFF;
    /* Example: Blue background */
    color: white;
    /* White text */
    padding: 10px 15px;
    /* Padding for button-like feel */
    border-radius: 5px;
    /* Rounded corners */
    text-decoration: none;
    /* Remove underline */
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 16px;
    /* Default font size */
    display: inline-block;
    /* Ensure proper spacing */
    text-align: center;
}

/* Hover effect for the login button */
.navbar a.login-btn:hover {
    background-color: #0056b3;
    /* Darker blue on hover */
    transform: scale(1.05);
    /* Slight zoom effect */
}

/* Medium screens (tablets) */
@media (max-width: 768px) {
    .navbar a.login-btn {
        padding: 8px 12px;
        /* Slightly smaller padding */
        font-size: 14px;
        /* Reduce font size */
        width: 25%;
        margin: 10px auto;
        /* Center the button with some margin */
        text-align: center;
    }
}

/* Small screens (mobile phones) */
@media (max-width: 480px) {
    .navbar a.login-btn {
        padding: 6px 10px;
        /* Smaller padding for compact design */
        font-size: 12px;
        /* Reduce font size further */
        width: 20%;
        /* Make it full-width for smaller screens */
        display: block;
        /* Stack the button */
        margin: 10px auto;
        /* Center the button with some margin */
        text-align: center;
    }
}


@media (max-width:992px) {
    .icons {
        display: inline-flex;
    }

    #check:checked~.icons #menu-icons {
        display: none;
    }

    .icons #close-icon {
        display: none;
    }

    #check:checked~.icons #close-icon {
        display: block;
    }

    .navbar {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        height: 0;
        background: rgba(0, 0, 0, .1);
        backdrop-filter: blur(50px);
        box-shadow: 0.5rem 1rem rgba(0, 0, 0, .1);
        overflow: hidden;
        transition: 0.3s ease;
    }

    #check:checked~.navbar {
        height: 22rem;
    }

    .navbar a {
        display: block;
        font-size: 1.1rem;
        margin: 0.8rem 0;
        text-align: center;
        transform: translateY(-50px);
        opacity: 0;
        transition: 0.3s ease;
    }

    #check:checked~.navbar a {
        transform: translateY(0);
        opacity: 1;
        transition-delay: calc(0.15s * var(--i));
    }

    .footer {
        max-width: 100%;
    }

    .banner-left {
        display: none;
        /* Hide the left-side content (mobile, email, location) */
    }

    .banner-right {
        display: flex;
        /* Ensure the social media links are displayed */
        justify-content: flex-start;
        /* Align the links to the left side */
        margin: 0;
        /* Remove any extra margin */

    }


}

/* General reset for responsive layout */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.front-page-image {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.responsive-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image covers the container */
}



.bottom-left-text1,
.bottom-left-text2,
.contact-btn {
    position: relative;
    z-index: 2;
    /* Ensure text and button are above the image */
}

.text-container {
    position: absolute;
    bottom: 15%;
    /* Adjust position based on design preference */
    left: 5%;
    width: 90%;
    /* Restrict width to avoid overflow */
    display: flex;
    flex-direction: column;
    gap: 10px;
    /* Space between elements */
}

.bottom-left-text1 {
    color: #ffffff;
    font-size: 4rem;
    /* Adjust size for better readability */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-family: 'Raleway';
    word-wrap: break-word;
    /* Prevent long words from breaking layout */
}

.bottom-left-text2 {
    font-size: 3.8rem;
    color: #ffffff;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-family: 'Raleway';
}


/* Add a new flex container for the buttons */
.button-group {
    display: flex;
    gap: 10px;
    /* Space between buttons */
}

/* Common button styling */
.contact-btn,
.sermons-btn {
    padding: 10px 20px;
    background-color: none;
    color: white;
    font-size: 1rem;
    text-decoration: none;
    border: 2px solid white;
    transition: background-color 0.3s ease, transform 0.2s ease, color 0.3s ease, border-color 0.3s ease;
    font-family: 'Raleway';
    border-radius: 1px;
    /* Optional: Rounded corners */
}

/* Hover effects for both buttons */
.contact-btn:hover,
.sermons-btn:hover {
    background-color: white;
    color: black;
    border-color: black;
    transform: scale(1.05);
    /* Slightly enlarge the button */
    text-decoration: none;
    /* Ensure no underline */
}

/* Media queries for responsiveness */
@media (max-width: 768px) {

    .bottom-left-text1,
    .bottom-left-text2 {
        font-size: 4rem;
    }

    .contact-btn {
        font-size: 1.5rem;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {

    .bottom-left-text1,
    .bottom-left-text2 {
        font-size: 3rem;
        text-align: left;
        /* Ensure text aligns properly on small screens */
    }

    .contact-btn {
        font-size: 1.3rem;
        padding: 6px 12px;
    }
}




/* month of prayer */

.month-of-prayer {
    width: 100%;
    padding: 30px 20px;
    /* Reduced padding for less height */
    background: linear-gradient(to right, #6a11cb, #2575fc);
    /* Gradient background */
    color: #fff;
    text-align: center;
    margin-top: 2.5rem;
}

.month-of-prayer h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #fff;
}

.prayer-content {
    padding: 10px 10px;
    /* Reduced padding for compact content */
}

.promise-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
    /* Reduced margin */
    color: #ffdd00;
    /* Bright gold color for emphasis */
}

.verse {
    font-size: 1.2rem;
    /* Slightly smaller font size */
    line-height: 1.6;
    /* Reduced line height */
    font-style: italic;
    color: white;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .month-of-prayer {
        padding: 20px 15px;
    }

    .month-of-prayer h2 {
        font-size: 1.8rem;
    }

    .promise-title {
        font-size: 1.4rem;
    }

    .verse {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .month-of-prayer {
        padding: 15px 10px;
    }

    .month-of-prayer h2 {
        font-size: 1.6rem;
    }

    .promise-title {
        font-size: 1.2rem;
    }

    .verse {
        font-size: 0.9rem;
    }
}

.slide-show {
    max-width: 80%;
    margin: auto;
    position: relative;
    text-align: center;
    font-family: Arial, sans-serif;
    border: 2px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    margin-top: 3rem;
}

.slide-show h2 {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 15px;
    font-weight: bold;
}

.slide-image {
    display: flex;
    overflow: hidden;
    position: relative;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.slide-image img {
    max-width: 70%;
    height: auto;
    display: none;
    transition: opacity 1s ease-in-out;
    border: 2px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.slide-image img.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .slide-show {
        padding: 15px;
    }

    .slide-show h2 {
        font-size: 1.5em;
    }

    .slide-image img {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .slide-show h2 {
        font-size: 1.2em;
    }

    .slide-image img {
        max-width: 100%;
    }
}

/* General Styles */
.day-schedule {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.church-timing-heading {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
    color: #0056b3;
}

.schedule-container {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    flex-wrap: nowrap;
    justify-content: center;
}

.photo {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.photo img {
    width: 100%;
    height: 40vh;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.schedule {
    flex-grow: 1;
    min-width: 250px;
    padding: 10px;

}


.schedule .day-title {
    margin-top: 20px;
    font-size: 24px;
    font-weight: bold;
    color: #444;
    border-bottom: 2px solid #ddd;
    padding-bottom: 5px;
}

.schedule p strong {
    text-align: left;
}

.schedule p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.5;
    color: #555;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .schedule-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .photo img {
        height: auto;
        max-width: 90%;
        margin-bottom: 15px;
    }

    .schedule {
        min-width: 100%;
        text-align: center;
    }

    .church-timing-heading {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .schedule-container {
        align-items: center;
    }

    .photo img {
        width: 100%;
        max-height: 30vh;
    }

    .schedule {
        text-align: center;
    }

    .church-timing-heading {
        font-size: 22px;
    }

    .schedule p {
        font-size: 14px;
    }
}


/* Basic Styles */
.youtube-videos {
    padding: 40px;
    text-align: center;
}

.video-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    max-width: 100%;
}

.youtube-videos h2 {
    font-size: 40px;
    color: #0056b3;
}

/* Video Grid for Horizontal Scroll */
.video-grid {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    /* For Firefox */
    scrollbar-color: #ccc transparent;
}

.video-grid::-webkit-scrollbar {
    height: 8px;
    /* Horizontal scrollbar height */
}

.video-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.video-grid::-webkit-scrollbar-track {
    background: transparent;
}

.video-item {
    flex-shrink: 0;
    width: 270px;
    height: 200px;
}

.video-item iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Arrows for Navigation */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    user-select: none;
}

.left-arrow {
    left: 10px;
}

.right-arrow {
    right: 10px;
}

.arrow:hover {
    background-color: rgba(0, 0, 0, 0.7);
}

/* See More Button */
.see-more-container {
    margin-top: 10px;
}

.see-more-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    display: inline-block;
    margin-top: 10px;
}

.see-more-button:hover {
    background-color: #0056b3;
}

/* Subscribe Button (Red) */
.button-container .follow-button {
    margin: 10px;
    padding: 10px 20px;
    background-color: #FF0000;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.button-container .follow-button:hover {
    background-color: #cc0000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .youtube-videos h2 {
        font-size: 30px;
    }

    .video-grid {
        gap: 15px;
    }

    .video-item {
        width: 150px;
        height: 150px;
    }

    .video-item iframe {
        border-radius: 5px;
    }

    .see-more-button {
        font-size: 14px;
        padding: 8px 16px;
    }

    .follow-button {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media (max-width: 480px) {

    .youtube-videos h2 {
        font-size: 22px;
    }

    .video-item {
        width: 120px;
        height: 120px;
    }

    .see-more-button {
        font-size: 12px;
        padding: 6px 12px;
    }

    .follow-button {
        font-size: 12px;
        padding: 6px 12px;
    }
}




/* Instagram Section Styles */
.instagram-section h2 {
    color: #0056b3;
    font-size: 40px;
}

.instagram-section {
    padding: 20px;
    text-align: center;
}

.instagram-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Instagram Post Grid */
.instagram-grid {
    display: flex;
    gap: 20px;
    /* Maintain consistent gap between posts */
    overflow-x: auto;
    padding: 10px 0;
    scroll-behavior: smooth;
}

.instagram-post {
    flex-shrink: 0;
    width: 285px;
    /* Box width */
    height: 275px;
    /* Box height */
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    /* Ensures content stays within the box */
    position: relative;
    background-color: #f9f9f9;
    /* Optional: Background color for boxes */
}

/* Ensure iframe fits within the post box */
.instagram-post iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
    /* Matches box's rounded corners */
}

/* Arrows for Horizontal Scroll */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    /* Ensure arrows are above the posts */
}

/* See More and Follow Buttons */
.see-more-button,
.follow-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
}

.see-more-button:hover,
.follow-button:hover {
    background-color: #0056b3;
}

/* Follow Button - Red */
.follow-button {
    background-color: #FF0000;
}

.follow-button:hover {
    background-color: #cc0000;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .instagram-grid {
        gap: 15px;
        /* Reduce gap for smaller screens */
    }

    .instagram-section h2 {
        font-size: 30px;
    }

    .instagram-post {
        width: 150px;
        /* Smaller box width */
        height: 200px;
        /* Smaller box height */
    }
}

@media (max-width: 480px) {
    .instagram-grid {
        gap: 10px;
        /* Smaller gap for very small screens */
    }

    .instagram-post {
        width: 120px;
        /* Smaller box width */
        height: 180px;
        /* Smaller box height */
    }

    .instagram-section h2 {
        font-size: 22px;
    }



    .see-more-button,
    .follow-button {
        font-size: 12px;
        padding: 6px 12px;
    }
}


/* General styles for the testimony section */
.testimony-section {
    background-color: #f7f7f7;
    padding: 50px 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimony-heading {
    font-size: 40px;
    color: #0056b3;
    margin-bottom: 20px;
}

.testimony-text {
    font-size: 1.125rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimony-btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    font-size: 1.25rem;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.testimony-btn:hover {
    background-color: #0056b3;
    text-decoration: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .testimony-heading {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .testimony-heading {
        font-size: 22px;
    }
}

/* share your story */

/* General Reset */


/* Body and Main Layout */


.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

/* Section styling */
.story-section {
    background-color: #fff;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin-top: 4rem;
}

.section-heading {
    font-size: 2.5rem;
    color: midnightblue;
    margin-bottom: 10px;
}

.sub-heading {
    font-size: 2rem;
    color: #3498db;
    margin-bottom: 20px;
}

.section-text {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 30px;
}

/* Form Group Styling */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

/* Word Count Styling */
.word-count {
    font-size: 1rem;
    color: #888;
    margin-top: 5px;
}

/* Button Styling */
.submit-btn {
    padding: 12px 30px;
    background-color: #3498db;
    color: white;
    font-size: 1.25rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #2980b9;
}

/* Required Field Asterisk */
.required {
    color: white;
    font-weight: bold;
    margin-left: 5px;
}


/* share your story */

button:hover {
    background-color: #2a77bb;
    /* Darker blue when hovered */
}


/* WhatsApp Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    background-color: #25D366;
    padding: 10px;
    width: 210px;
    border-radius: 50px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
    transition: background-color 0.3s ease;
}

.whatsapp-btn img {
    width: 30px;
    /* Smaller icon size */
    height: 30px;
    margin-right: 8px;
    /* Reduced space between icon and text */
}

.whatsapp-btn span {
    font-size: 12.2px;
    /* Smaller text size */
    font-weight: bold;
    color: red;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    text-decoration: none;
}

/* prayer call */

.need-prayer {
    width: 100%;
    padding: 30px 20px;
    /* Reduced padding for less height */
    background: linear-gradient(to right, #6a11cb, #2575fc);
    /* Gradient background */
    color: #fff;
    text-align: center;
}


.need-to {
    padding: 5px 5px;
    /* Reduced padding for compact content */
}

.call-us {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 5px;
    /* Reduced margin */
    color: #ffdd00;
    /* Bright gold color for emphasis */
}


/* Responsive Styling */
@media (max-width: 768px) {
    .need-prayer {
        padding: 20px 15px;
    }

    .need-prayer h2 {
        font-size: 1.8rem;
    }

    .call-us {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .need-prayer {
        padding: 15px 10px;
    }

    .need-prayer h2 {
        font-size: 1.6rem;
    }

    .call-us {
        font-size: 1.2rem;
    }
}

/* Footer */
footer {
    width: 100%;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 30px 10px;
    /* Reduced from 60px to 30px */
    border-top-left-radius: 125px;
    font-size: 14px;
    line-height: 1.6;
    height: 67vh;
    /* Keeps it responsive */
    text-align: center;
    /* Center content */
}



.row {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
    /* Ensure content aligns to center */
    justify-content: center;
    /* Center columns horizontally */
}

.col {
    padding: 10px;
}

.col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #f4a261;
    text-align: center;
    /* Center text */
}

.col p,
.col ul li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #fff;
    text-align: left;
    /* Center text */
}

.col .email-id,
.col .phone-number {
    font-style: italic;
    color: #fff;
    margin: 10px 0;
    display: block;
    /* Ensure it takes up the full width */
    text-align: left;
}

.col .email-id a,
.col .phone-number a {
    color: #fff;
    text-decoration: none;
}

.col .email-id a:hover,
.col .phone-number a:hover {
    color: #f4a261;
}

/* UL list styling */
ul {
    padding: 0;
    margin: 0;
    text-align: center;
    /* Center list items */
}

ul li {
    list-style: none;
}

ul li a {
    text-decoration: none;
    color: #fff;
    transition: color 0.3s ease;
}

ul li a:hover {
    color: #f4a261;
}

.get-directions {
    display: inline-block;
    background: #f4a261;
    color: #00093c;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 10px;
    transition: background 0.3s ease, color 0.3s ease;
    text-align: center;
}

.get-directions:hover {
    background: #fff;
    color: #2d0b00;
}

/* Social Icons */
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    /* Center icons */
    margin-top: 20px;
}

.social-icon {
    font-size: 24px;
    color: #fff;
    transition: color 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    color: #f4a261;
}

/* Responsive Design */
@media (max-width: 1024px) {
    footer {
        height: auto;
    }

    .row {
        grid-template-columns: repeat(2, 1fr);
        /* 2-column grid for tablets */
        justify-content: center;
        /* Center columns */
        text-align: center;
    }

    .col {
        padding: 10px 20px;
        text-align: center;
        /* Center text for smaller screens */
    }

    .social-icons {
        justify-content: center;
        /* Center icons */
    }
}

@media (max-width: 768px) {
    footer {
        height: auto;
    }

    .row {
        grid-template-columns: 1fr;
        /* Single-column layout for smaller screens */
        justify-content: center;
        /* Center column */
    }

    .col {
        text-align: center;
        margin-bottom: 20px;
    }

    .get-directions {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    footer {
        font-size: 12px;
        padding: 40px 15px;
    }

    .col h3 {
        font-size: 16px;
        text-align: center;
        /* Center text */
    }

    .social-icon {
        font-size: 20px;
    }
}

/* HR Style */
hr {
    border: 1px solid #f4a261;
    margin: 20px 0;
}

.copyright {
    text-align: center;
    /* Center copyright text */
    font-size: 14px;
    color: #fff;
}



/* theme */

/* theme */

/* ------------------------------------------------------------------------------------------------------- */

/* About section */

/* Hero Image Section */
.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    /* Ensures the image fills the space without distortion */
    display: block;
    border-radius: 1rem;
}

/* History Section */
.history {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.history h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;
    color: #0066cc;
}

.history-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.history-photo {
    flex: 1;
    text-align: center;
}

.history-photo img {
    width: 100%;
    max-width: 275px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.history-content {
    flex: 2;
}

.history-content p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}


/* Section container */
.vision-mission {
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}



/* Content container for Vision and Mission boxes */
.content-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 40px;
}

/* Box styles for Vision and Mission */
.box {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    max-width: 45%;
    /* Reduced size */
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

.box:hover {
    transform: translateY(-5px);
}


.vision h3,
.mission h3 {
    color: #0066cc;
    margin-bottom: 20px;
    font-family: 'Arial', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-align: center;
}

.box p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.4;
    /* font-family: 'Verdana', sans-serif; */
}

/* We Believe Section */
.we-believe {
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    background-color: #f9f9f9;
    text-align: center;
}

.we-believe h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.we-believe p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-family: 'Verdana', sans-serif;
}

/* Grid Container */
.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    justify-content: center;
}

/* Belief Cards */
.belief-card {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
    /* font-family: 'Verdana', sans-serif; */
    font-size: 1rem;
    line-height: 1.6;
    position: relative;
    overflow: hidden;
}

.belief-card::before {
    content: "★";
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 3rem;
    color: rgba(255, 215, 0, 0.2);
    transform: rotate(15deg);
}

.belief-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    border-color: #007bff;
}

.belief-card:hover::before {
    color: rgba(255, 215, 0, 0.6);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .beliefs-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }

    .belief-card {
        font-size: 0.9rem;
        padding: 10px;
    }
}

@media (max-width: 480px) {
    .beliefs-grid {
        grid-template-columns: 1fr;
    }
}




/* Responsive design */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
    }

    .box {
        max-width: 100%;
        margin-bottom: 25px;
    }
}





/* Pastor's Welcome Section */
.pastor-welcome {
    background-color: #f4f4f4;
    padding: 20px 20px;
    text-align: center;
    color: #333;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow-x: hidden;

}

.pastor-welcome h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.pastor-welcome p {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Ensure the container is centered and responsive */
.video {
    position: relative;
    width: 100%;
    /* Full width for responsiveness */
    max-width: 560px;
    /* Limit the maximum width */
    margin: 0 auto;
    /* Center the video container horizontally */
    padding-top: 30px;
    /* Optional: Add space above the video */
}

/* Maintain 16:9 aspect ratio for the video */
.video::before {
    content: "";
    display: block;
    padding-top: 56.25%;
    /* Aspect ratio of 16:9 (height/width = 9/16) */
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Make the video scale to the container width */
    height: 100%;
    /* Make the video scale to the container height */
    border: none;
    border-radius: 8px;
    /* Optional: Add rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    /* Optional: Add a shadow */
}

/* Optional: Add some spacing around the video for smaller screens */
@media (max-width: 768px) {
    .video {
        padding-left: 10px;
        padding-right: 10px;
    }
}




/* Responsive Design */
@media (max-width: 768px) {
    .pastor-welcome h2 {
        font-size: 28px;
    }

    .pastor-welcome p {
        font-size: 16px;
        max-width: 90%;
    }

    .pastor-welcome iframe {
        width: 50%;
        height: auto;
    }

    .video {
        padding-left: 10px;
        padding-right: 10px;
    }

}



/* Our Ministries Section */
.ministries {
    text-align: center;
    padding: 50px;
    background-color: #f9f9f9;
}

.ministries h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

/* Grid Layout */
.ministry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Fixed to 3 columns */
    gap: 30px;
    justify-content: center;
    align-items: start;
}

/* Individual Ministry Card */
.ministry {
    background: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

/* Image Styling */
.ministry img {
    width: 100%;
    aspect-ratio: 4 / 3;
    /* Maintain a 4:3 aspect ratio */
    object-fit: cover;
    /* Ensures image fills the space proportionally */
    border-radius: 10px;
    margin-bottom: 15px;
}

.ministry h3 {
    font-size: 1.5rem;
    color: #007bff;
    margin-bottom: 10px;
    /* font-family: 'Verdana', sans-serif; */
}

.ministry p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    /* font-family: 'Verdana', sans-serif; */
}

/* Hover Effect */
.ministry:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.ministry:hover h3 {
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .ministry-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Switch to 2 columns */
    }
}

@media (max-width: 576px) {
    .ministry-grid {
        grid-template-columns: 1fr;
        /* Switch to 1 column for small screens */
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    /* .navbar {
        flex-wrap: wrap;
        gap: 0.5rem;
    } */

    iframe {
        width: 100%;
        height: auto;
    }
}



/* About section */


/* ------------------------------------------------------------------------------------------------------------- */

/* Events section */

/* Event Calendar */
.event-calendar {
    text-align: center;
    margin: 2rem 0;
    margin-top: 6rem;
    color: navy;
}

.event-calendar h1 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #0056b3;
}

/* General Styling */
.photo-gallery {
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.gallery-heading {
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Horizontal Scroll Wrapper */
.gallery-wrapper-horizontal {
    overflow-x: auto;
    /* Enables horizontal scrolling */
    white-space: nowrap;
    /* Keeps all items in a single row */
    padding-bottom: 10px;
    scrollbar-width: thin;
    /* For modern browsers */
    scrollbar-color: #ccc transparent;
}

/* Scrollbar Styling for Webkit Browsers */
.gallery-wrapper-horizontal::-webkit-scrollbar {
    height: 8px;
    /* Scrollbar height */
}

.gallery-wrapper-horizontal::-webkit-scrollbar-thumb {
    background: #ccc;
    /* Scrollbar color */
    border-radius: 10px;
}

.gallery-wrapper-horizontal::-webkit-scrollbar-track {
    background: transparent;
}

/* Gallery Images */
.gallery-images img {
    display: inline-block;
    /* Makes images stay in a row */
    width: 325px;
    /* Adjust image width */
    height: 250px;
    object-fit: cover;
    margin-right: 10px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effects */
.gallery-images img:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

/* Lightbox Effect Styling */
.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-overlay img {
    max-width: 90%;
    max-height: 80%;
    border-radius: 10px;
}

.lightbox-overlay .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10000;
}


/* General Styling for Video Gallery Section */
.video-gallery {
    text-align: center;
    margin: 40px auto;
    padding: 20px;
}

.video-gallery h1 {
    font-size: 32px;
    color: #333;
    margin-bottom: 30px;
}

/* Styling for individual video categories (Recent Sermon, Previous Sermons) */
.video-category {
    margin-bottom: 40px;
}

.video-category h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
}

/* Recent Sermon (displayed individually with a centered iframe) */
.single-video iframe {
    width: 75%;
    height: 315px;
    border: none;
    margin: 0 auto;
    display: block;
}

/* Grid Layout for Previous Sermons */
.video-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* Responsive grid */
    gap: 20px;
    /* Space between videos */
    justify-items: center;
    padding: 10px;
}

.video {
    position: relative;
    padding-bottom: 56.25%;
    /* Maintain 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    width: 100%;
    /* Full width within the grid cell */
    max-width: 400px;
    /* Optional: Limit max width */
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .video-category h2 {
        font-size: 24px;
        /* Smaller heading for tablets */
    }

    .single-video iframe {
        width: 90%;
        /* Slightly larger iframe for smaller screens */
    }

    .video-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        /* Adjust grid for tablets */
    }

    .video {
        max-width: 350px;
        /* Adjust video max width */
    }
}

@media (max-width: 480px) {
    .video-category h2 {
        font-size: 20px;
        /* Even smaller heading on mobile */
    }

    .single-video iframe {
        width: 100%;
        /* Full-width iframe on mobile */
    }

    .video-gallery-grid {
        grid-template-columns: 1fr;
        /* Single column for mobile */
    }
}


/* View More Button Styling */
.view-more-container {
    margin-top: 20px;
}

.view-more-button {
    display: inline-block;
    text-decoration: none;
    background-color: red;
    /* Bright red color for emphasis */
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.view-more-button:hover {
    background-color: #e63b47;
    /* Slightly darker on hover */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
    /* Subtle hover lift effect */
    text-decoration: none;
}

.view-more-button:active {
    transform: translateY(0);
    /* Reset hover lift on click */
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
}






/* Events section */

/* ----------------------------------------------------------------------------------------------------------- */

/* Offering Section */




/* Payment Section Styles */
.payment-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Image Section */
.top-image {
    width: 100%;
    height: 50vh;
    /* Half of the viewport height */
    overflow: hidden;
}

.top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Payment Form Container */
.payment-form-container {
    background: linear-gradient(135deg, #ffffff, #f3f3f3);
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    padding: 60px;
    margin-top: -50px;
    text-align: center;
}

.section-title {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.section-title2 {
    font-size: 24px;
    font-weight: bold;
    color: #3498db;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 25px;
}



.donate-form {
    margin-bottom: 30px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: bold;
    color: #34495e;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    outline: none;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: #3498db;
}

.donate-btn {
    background: #e74c3c;
    color: #fff;
    font-size: 18px;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.donate-btn:hover {
    background: #c0392b;
}

/* Container for QR and Bank Details */
.qr-account-container {
    display: flex;
    justify-content: space-between;
    /* Space between the QR code and bank details */
    align-items: flex-start;
    /* Align items at the top */
    gap: 20px;
    /* Space between the QR code and bank details */
    flex-wrap: wrap;
    /* Allow wrapping on smaller screens */
    margin-top: 20px;
}

.bank-details {
    background-color: #f9f9f9;
    /* Light gray background */
    border: 1px solid #ddd;
    /* Subtle border */
    border-radius: 8px;
    /* Rounded corners */
    padding: 20px;
    /* Inner padding for content */
    margin: auto;
    /* Center horizontally */
    max-width: 400px;
    /* Limit width for readability */
    font-family: Arial, sans-serif;
    /* Clean font */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    display: flex;
    /* Flexbox for alignment */
    flex-direction: column;
    /* Stack content vertically */
    justify-content: center;
    /* Center content vertically */
    text-align: left;
    /* Align text straight to the left */
}

.bank-details h4 {
    color: #2a7cdb;
    /* Blue color for the heading */
    font-size: 1.5em;
    /* Larger font size */
    margin-bottom: 15px;
    /* Space below the heading */
    display: flex;
    /* Align icon with text */
    align-items: center;
    /* Vertically align the icon */
    gap: 8px;
    /* Space between icon and text */
}

.bank-details p {
    color: #333;
    /* Darker text for readability */
    font-size: 1em;
    /* Standard font size */
    margin: 8px 0;
    /* Equal spacing between paragraphs */
}

.bank-details p strong {
    color: #555;
    /* Subtle emphasis color */
    font-weight: bold;
    /* Bold font for labels */
}

.bank-details i {
    font-size: 1.2em;
    /* Icon size */
    color: #2a7cdb;
    /* Icon color matches the heading */
}


/* Styling for UPI QR Code (Right side) */
.qr-code-container {
    flex: 1;
    /* Allow QR code container to take available space */
    max-width: 50%;
    /* Set max-width to 50% for right section */
    text-align: center;
}

.upi-qr {
    width: 100%;
    /* Make sure QR code takes full width */
    max-width: 200px;
    /* Limit max width to prevent too large image */
    height: auto;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
    .qr-account-container {
        flex-direction: column;
        /* Stack the QR code and bank details vertically */
        text-align: center;
    }

    .bank-details,
    .qr-code-container {
        max-width: 100%;
        /* Allow each section to take full width on smaller screens */
    }
}





/* Offering Section */


/* ---------------------------------------------------------------------------------------------------------- */


/* Prayer Request Section */


.prayer-section {
    text-align: center;
    padding: 85px 20px;
}

/* Section Title Style */
.section-title {
    font-size: 2rem;
    /* Default font size */
    margin-top: 40px;
    /* Gap between title and header menu */
    color: #007BFF;
    text-align: center;
    /* Center the title */
}



/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
        /* Smaller font size for mobile/tablets */
        margin-top: 35px;
        /* Smaller gap */
    }


}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.2rem;
        /* Even smaller font size for smaller devices */
        margin-top: 25px;
        /* Smaller gap */
    }


}


.section-description {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #555;
}

.prayer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.prayer-box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    flex: 1 1 calc(45% - 40px);
    max-width: 45%;
    min-width: 300px;
    text-align: center;
}

.prayer-box h2 {
    font-size: 1.5rem;
}

/* Form Styling */
form {
    text-align: left;
    margin-top: 10px;
}

label {
    display: block;
    margin: 10px 0 5px;
    font-weight: bold;
    color: #333;
}

input,
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

input:focus,
textarea:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #0056b3;
}

/* UPI Section */
.upi-qr {
    max-width: 200px;
    margin: 15px auto;
    display: block;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .prayer-box {
        flex: 1 1 100%;
    }

    .navbar {
        flex-direction: column;
        display: none;
    }

    #check:checked~.navbar {
        display: flex;
    }
}

/* Prayer Request Section */

/* Contact us Section */

.contact-us {
    margin-top: 80px;
    padding: 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-us h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

/* Map */
.map {
    margin-bottom: 20px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto 20px;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form label {
    display: block;
    font-weight: bold;
    margin: 10px 0 5px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form .submit-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form .submit-btn:hover {
    background: #0056b3;
}

/* Social Media Links */
.social-media {
    text-align: center;
}

.social-media h3 {
    margin-bottom: 10px;
}

.social-media a {
    font-size: 2rem;
    margin: 0 10px;
    color: #555;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form {
        padding: 15px;
    }

    .social-media a {
        font-size: 1.5rem;
    }
}

/* Address Section */
.address {
    margin-top: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    /* Align the text to the left */
}

/* Heading Style */
.address h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

/* Paragraph Styling for Address Items */
.address p {
    font-size: 1rem;
    margin: 5px 0;
    display: flex;
    flex-wrap: wrap;
    /* Allows content to wrap for longer text */
    align-items: center;
    /* Ensures the content aligns vertically */
}

/* Align the 'strong' text (labels) to the left */
.address p strong {
    width: 150px;
    /* Fixed width for the label (before the colon) */
    font-weight: bold;
    margin-right: 10px;
    text-align: left;
    /* Space between label and value */
}

/* Link Styling */
.address a {
    color: #007bff;
    text-decoration: none;
}

.address a:hover {
    text-decoration: none;
    color: #1DB954;
}


/* Contact us Section */

/* ------------------------------------------------------------------------------------------------------------- */

/* Church Timing */

/* Full-screen container with the background image */
.background-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('church-pic2.jpg');
    /* Replace with your background image */
    background-size: cover;
    background-position: center;
    filter: blur(1px);
    /* Apply a blur effect to the background */
    z-index: 0;
    /* Ensure it's behind the content */
}

/* Faded overlay for the background */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    /* Black overlay with 50% opacity */
    z-index: 1;
}

/* Content container */
.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    /* Start at a smaller size (scaled down) */
    z-index: 2;
    /* Make sure content is above the background */
    color: white;
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.4);
    /* Semi-transparent background */
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    margin: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Title Styling */
h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 2.5em;
    color: white;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.day-title {
    font-size: 2em;
    color: midnightblue;
    margin-bottom: 10px;
}

.schedule p {
    font-size: 18px;
    margin: 10px 0;
    color: #000;
}

.schedule strong {
    color: #000;
}

/* Hover effects on schedule */
.schedule p:hover {
    color: #f39c12;
    cursor: pointer;
    transition: 0.3s;
}

/* Animated zoom-in effect for content */
.content {
    animation: zoomIn 1s ease-in-out forwards;
    /* Apply zoom-in animation */
}

/* Zoom-in animation */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.5);
        /* Start small and transparent */
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
        /* Zoom to full size and opacity */
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .day-title {
        font-size: 1.8em;
    }

    .schedule p {
        font-size: 16px;
    }

    .content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .day-title {
        font-size: 1.5em;
    }

    .schedule p {
        font-size: 14px;
    }

    .content {
        padding: 15px;
    }
}


/* Church Timing */

/*---------------------------------------------------------------------------------*/


/* Registration Section */
.container {
    max-width: 900px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

p {
    margin-bottom: 20px;
}

.tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.tab-btn {
    padding: 10px 20px;
    background: #f0f0f0;
    border: none;
    cursor: pointer;
    font-weight: bold;
    color: #555;
    margin: 0 5px;
}

.tab-btn.active {
    background: #007BFF;
    color: white;
}

.tab-content {
    margin-top: 20px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.form-columns {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.form-column {
    flex: 1;
    padding: 20px;
    background: #f4f4f4;
    border-radius: 8px;
}

h2 {
    color: #007BFF;
    margin-bottom: 10px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

span {
    color: red;
}

input,
button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
}

button {
    background: #007BFF;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

button:hover {
    background: #0056b3;
}

/* member-login registration */


/* member-login registration */


/* Registration Section */

/* church-management-login */

body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
}

.form-container {
    width: 100%;
    max-width: 400px;
    margin: 50px auto;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    color: #555;
    margin-bottom: 5px;
}

.input-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.btn {
    width: 100%;
    padding: 12px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #45a049;
}

p {
    text-align: center;
    color: #777;
}

a {
    color: #4CAF50;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* church-management-login */

/* ------------------------------------------------------------------------------------------------------ */

/* login page */

/* Login Page Section */
.login-page {
    width: 100%;
    padding: 50px 20px;
    background: #007BFF;
    color: white;
    text-align: center;
}

.login-page .container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #333;
}

.login-page h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #007BFF;
}

.login-page p {
    font-size: 1.2em;
    margin-bottom: 30px;
}

/* Login Options Styling */
.login-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    /* Space between buttons */
}

.login-btn {
    display: inline-block;
    padding: 15px 20px;
    font-size: 1.2em;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-weight: bold;
}

/* Specific Button Styles */
.members-login {
    background-color: #007BFF;
    color: white;
}

.signup-btn {
    background-color: #28a745;
    /* Green for Sign Up */
    color: white;
}

/* Hover Effects */
.login-btn:hover {
    background-color: #333;
    color: white;
}

/* login page */

/* member login Page */

/* Login Page Section */
.login-page {
    width: 100%;
    padding: 50px 20px;
    background: #007BFF;
    color: white;
    text-align: center;
}

.login-page .container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #333;
}

.login-page h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #007BFF;
}

/* Form Styling */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Space between fields */
    text-align: left;
}

.login-form label {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.login-form input {
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.login-form input:focus {
    border-color: #007BFF;
    outline: none;
}

.submit-btn {
    padding: 15px;
    background-color: #007BFF;
    color: white;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #0056b3;
}

/* member login Page */

/* Signup Page */

/* Sign Up Page Section */
.signup-page {
    width: 100%;
    padding: 50px 20px;
    background: #007BFF;
    color: white;
    text-align: center;
}

.signup-page .container {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: #333;
}

.signup-page h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #007BFF;
}

/* Form Styling */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    /* Space between fields */
    text-align: left;
}

.signup-form label {
    font-size: 1.1em;
    margin-bottom: 5px;
}

.signup-form input,
.signup-form textarea {
    padding: 12px;
    font-size: 1em;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.signup-form input:focus,
.signup-form textarea:focus {
    border-color: #007BFF;
    outline: none;
}

.signup-form textarea {
    resize: vertical;
    /* Allow resizing the text area vertically */
}

.submit-btn {
    padding: 15px;
    background-color: #28a745;
    color: white;
    font-size: 1.2em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #218838;
}

/* Text Link for Already have an account */
.signup-page p {
    font-size: 1em;
    margin-top: 20px;
}

.signup-page a {
    text-decoration: none;
    color: #007BFF;
    font-weight: bold;
}

.signup-page a:hover {
    text-decoration: underline;
}

/* Signup Page */