






/* General Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
}

/* Global section spacing for visual consistency */
section {
    margin: 32px 0;
}



/* Header Styling */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;

    
}

/* Hamburger Button */
.hamburger {
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
    display: none; /* Hidden by default, shown for smaller screens */
}

/* Logo Styling */
.logo img {
    height: 50px;
}

/* Navigation Menu */
.nav {
    flex: 1; /* Take available space */
    text-align: right;
}

.nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px; /* Space between menu items */
}

.nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px; /* Space between icon and text */
}

.nav ul li a:hover {
    color: #f39c12;
    background: none !important;
    background-color: transparent !important;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.nav ul li:hover {
    background-color: transparent !important;
}

.dropdown:hover,
.dropdown li:hover {
    background-color: transparent;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    min-width: 220px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.25);
    border-radius: 10px;
    overflow: hidden;
    z-index: 1000;
    list-style: none;
    margin: 8px 0 0 0;
    padding: 8px 0;
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
}

.dropdown-menu li {
    border-bottom: 1px solid #444;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu li a {
    padding: 12px 16px;
    display: block;
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.dropdown-menu li a:hover {
    background-color: #f39c12;
    color: #333;
    transform: translateX(4px);
}

.dropdown > a {
    position: relative;
    padding-right: 18px;
}

.dropdown > a:hover {
    color: #f39c12 !important;
    background-color: transparent !important;
    background: none !important;
}

.dropdown > a i {
    font-size: 12px;
    margin-left: 6px;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Mobile-specific dropdown behavior */
@media (max-width: 768px) {
    .dropdown {
        position: static;
    }

    .dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .dropdown .dropdown-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        background: #f39c12;
        border-radius: 50%;
        cursor: pointer;
        margin-left: 10px;
        transition: all 0.3s ease;
        flex-shrink: 0;
        font-size: 16px;
        color: #fff;
        font-weight: bold;
    }

    .dropdown.open .dropdown-toggle {
        background: #e67e22;
        transform: rotate(180deg);
    }

    .dropdown .dropdown-toggle:hover {
        background-color: #e67e22;
        transform: scale(1.1);
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        margin: 10px 0 0 0;
        border-radius: 8px;
        box-shadow: none;
        display: none; /* hidden by default on mobile */
        opacity: 1;
        transform: none;
        pointer-events: auto;
        background: #444;
        padding: 10px 0;
    }

    .dropdown.open .dropdown-menu {
        display: block; /* show when toggled */
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

/* Call-to-Action Buttons */
.cta-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 10px;
}

.cta-buttons button {
    background-color: #f39c12;
    color: white;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    border-radius: 4px;
}

/* Install App Button Styling */
.install-menu-item {
    display: none; /* Hide mobile version on desktop */
    align-items: center;
    justify-content: center;
}

.install-app-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.install-app-desktop {
    max-width: 200px;
}

.install-app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.5);
}

.install-app-btn:active {
    transform: translateY(0);
}

.cta-buttons button:hover {
    background-color: #d98813;
}

/* Responsive Menu */
@media (max-width: 768px) {
    .hamburger {
        display: block; /* Show hamburger button */
    }

    .nav ul {
        display: none; /* Hide menu initially */
        flex-direction: column; /* Stack menu items vertically */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #333;
        padding: 20px;
        gap: 10px; /* Space between items */
    }

    .nav ul.open {
        display: flex; /* Show menu when 'open' class is toggled */
    }

    .cta-buttons {
        display: none; /* Hide CTA buttons on mobile */
    }
    
    .install-app-desktop {
        display: none !important; /* Hide desktop version on mobile */
    }
    
    .install-menu-item {
        display: flex; /* Show mobile version on mobile */
        width: 100%;
        padding: 10px 0;
    }
    
    .install-app-mobile {
        max-width: 100%;
        padding: 12px 20px !important;
        font-size: 14px !important;
    }
    
    .install-app-mobile img {
        width: 20px !important;
        height: 20px !important;
    }
}











/* Slideshow Section */
.slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

#placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2; /* Keeps placeholder above video initially */
    transition: opacity 0.5s ease; /* Smooth fade-out effect */
}

#slideshow-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* Keeps video behind placeholder initially */
    display: none; /* Hide video until it starts playing */
}

/* Overlay Content */
.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    text-align: center;
    z-index: 3; /* Ensure overlay content is above video and placeholder */
}

.slide-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.learn-more {
    padding: 10px 20px;
    background-color: #f39c12;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.learn-more:hover {
    background-color: #e67e22;
}














/* Bible Quotes Section */
.bible-quotes {
    background-color: #141010; /* Default background color */
    background-image: url('icons/bkground-image.jpg'); /* Optional background image */
    background-size: cover; /* Make the background image cover the entire section */
    background-position: center; /* Center the background image */
    padding: 50px 0;
    text-align: center;
    position: relative;
    z-index: 1; /* Ensure it stays behind the content */
}

/* Add a semi-transparent overlay if the background image is used */
.bible-quotes::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(20, 5, 5, 0.639); /* Dark overlay */
    z-index: -1; /* Push it behind the quotes */
}

/* Quote Container */
.quote-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid */
    gap: 20px; /* Spacing between quotes */
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual Quote Styling */
.quote {
    font-style: italic;
    font-size: 20px;
    line-height: 1.5;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

/* Hover effect for quotes */
.quote:hover {
    transform: translateY(-10px); /* Slight lift effect */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Image Styling */
.quote img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    margin-bottom: 15px;
}

/* Quote text styling */
.quote p {
    margin: 0;
    text-align: center;
    text-decoration: none; /* Ensure no underline */
    color: #000000; /* Set a suitable text color */
}

/* Prevent underlining of the entire quote text */
.quote-link {
    text-decoration: none; /* Remove underline from the link */
    color: inherit; /* Ensure the text color stays consistent */
}

/* Additional style for hover effects */
.quote-link:hover .quote-text {
    color: #555; /* Optional hover effect for text */
}




/* Read More styling */
.read-more {
    font-size: 16px;
    color: #f39c12; /* Yellowish color for "Read More" */
    text-transform: uppercase;
    font-weight: bold;
    margin-top: 10px;
    transition: color 0.3s ease;
}

/* Hover effect for "Read More" text */
.read-more:hover {
    color: #e67e22; /* Darker shade on hover */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .quote-container {
        grid-template-columns: 1fr; /* Single column layout for small screens */
    }

    .quote {
        width: 100%; /* Full width for smaller screens */
    }
}




/* TYPING SECTION */



/* Fullscreen Section with Background Image */
.image-background-section {
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    height: 90vh; /* Sets the height to 90% of the viewport */
    display: flex;
    justify-content: flex-end; /* Aligns the golden frame to the right */
    align-items: center; /* Vertically centers the content */
    padding: 0 50px; /* Adds padding for spacing */
    margin: 5% 0; /* Adds margins for spacing */
}

/* Golden frame styling (if needed) */
.golden-frame {
    border: 5px solid gold; /* Optional golden border */
    padding: 20px; /* Inner spacing */
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent white background */
    border-radius: 10px; /* Rounded corners */
}

/* Golden Frame with Responsive Size */
.golden-frame {
    border: 5px solid gold;
    padding: 20px;
    width: 40%; /* Use a percentage width for responsiveness */
    max-width: 400px; /* Limit max width */
    height: auto; /* Allow height to adjust with content */
    min-height: 350px; /* Set a minimum height */
    border-radius: 15px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    font-size: 20px;
    text-align: left;
    font-family: 'Georgia', serif;
    color: #333;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.golden-frame:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
}

/* Text Styling for Bible Verses */
#bible-text {
    font-size: 18px;
    font-weight: bold;
    color: #d4af37;
    margin: 0;
    padding: 25px;
    white-space: pre-wrap;
    text-align: center;
    display: inline-block;
    max-width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .image-background-section {
        flex-direction: column; /* Stack elements on smaller screens */
        justify-content: center;
        padding-right: 20px;
        padding-left: 20px;
    }

    .golden-frame {
        width: 90%; /* Take up most of the screen width */
        min-height: 300px; /* Adjust for smaller devices */
        padding: 15px;
    }

    #bible-text {
        font-size: 16px; /* Adjust font size for readability */
        padding: 10px;
    }
}







/* Newsletter Form Section */
.newsletter-section {
    background-color: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

/* Newsletter Container */
.newsletter-container {
    max-width: 500px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Header Image Styling */
.newsletter-container img {
    width: 120px; /* Adjust the width of the image */
    height: auto;
    border-radius: 50%; /* Circular border radius */
    margin-bottom: 20px; /* Add spacing below the image */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for the image */
}

/* Newsletter Heading */
.newsletter-container h2 {
    font-size: 28px;
    color: #333;
    margin-bottom: 10px;
}

/* Newsletter Subtext */
.newsletter-container p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

/* Form Group Styling */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

/* Submit Button Styling */
button[type="submit"] {
    background-color: #f39c12;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

button[type="submit"]:hover {
    background-color: #e67e22;
}

/* Status Message Styling */
#status-message {
    font-size: 14px;
    color: green;
    margin-top: 20px;
}













/* Giving Section */
.giving-section {
    position: relative;
    height: 100vh; /* Full screen height */
    background: url('background.jpg') center/cover no-repeat; /* Replace 'background.jpg' with your image */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

/* Blur and Overlay */
.giving-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    backdrop-filter: blur(8px); /* Blur effect */
    z-index: 1;
}

/* Content */
.giving-section .content {
    position: relative;
    z-index: 2;
}

.giving-section .content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.giving-section .content .learn-more {
    padding: 10px 20px;
    background-color: #ffc107; /* Yellow button */
    border: none;
    border-radius: 5px;
    color: black;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.giving-section .content .learn-more:hover {
    background-color: #e0a800; /* Darker yellow on hover */
}






/* Section Layout with Perspective */
.about-prophet-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 500px;
    background-color: #f4f4f4;
    padding: 20px;
    position: relative;
    perspective: 1000px; /* Adds 3D perspective */
    flex-wrap: nowrap; /* Prevent wrapping on desktop */
}

/* Left Side Background Image */
.prophet-image {
    width: 50%; /* Left side for the image */
    height: 100%;
    background-image: url('prophet-image.jpg'); /* Replace with your actual image */
    background-size: cover;
    background-position: center;
    border-radius: 19px 0 0 19px; /* Rounded left corners */
    position: relative;
    z-index: 1;
}

/* Right Side Golden Frame Styling */
.goldenframeprophet {
    width: 50%; /* Adjust as needed */
    padding: 30px;
    border: 5px solid gold;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s ease-in-out; /* Smooth transition for the hover effect */
    position: relative;
    z-index: 2;
    text-align: left;
    right: 0; /* Ensure it's aligned to the right */
}

/* Title and Text Styling */
.goldenframeprophet h2 {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.goldenframeprophet p {
    font-size: 18px;
    line-height: 2.6;
    color: #333;
}

/* Read More Button Styling */
.read-more-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #f39c12; /* Golden button */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.read-more-btn:hover {
    background-color: #e67e22; /* Darker shade on hover */
}

/* Hover Effect for Golden Frame */
.goldenframeprophet:hover {
    transform: rotateX(5deg) rotateY(-5deg); /* Example of tilting more on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Enhanced shadow effect on hover */
}

/* Responsive Adjustments for Mobile */
@media (max-width: 768px) {
    .about-prophet-section {
        flex-direction: column; /* Stack items vertically */
        align-items: center;
        height: auto; /* Allow section to grow based on content */
    }

    .prophet-image {
        width: 90%; /* Take up most of the screen width */
        height: 300px; /* Set a fixed height for the image */
        border-radius: 15px; /* Rounded corners for mobile */
    }

    .goldenframeprophet {
        width: 90%; /* Full width below the image */
        margin-top: 20px; /* Add space between the image and text */
        padding: 20px; /* Reduce padding for smaller screens */
        text-align: center; /* Center-align text for better readability */
    }

    .goldenframeprophet h2 {
        font-size: 24px; /* Smaller font size for titles */
    }

    .goldenframeprophet p {
        font-size: 16px; /* Smaller font size for paragraphs */
    }
}




/* Section Layout     images of church-products {*/
.church-products {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
    background-color: #f4f4f4; /* Optional background color */
    margin-top: 40%;
    margin-top: 5%
}

/* Product Frame Styling */
.product-frame {
    width: 30%;
    padding: 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(255, 251, 251, 0.694);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
}

/* Product Image Styling */
.product-frame img {
    width: 100px; /* Adjust size based on the product */
    height: auto;
    margin-bottom: 15px;
    pointer-events: none;
}

/* Floating Effect for Transparent Objects */
.floating {
    animation: float 5s ease-in-out infinite;
}

/* Keyframes for Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0); /* Starting and ending position */
    }
    50% {
        transform: translateY(-10px); /* Move up by 10px */
    }
}

/* Learn More Button Styling */
.learn-more {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #f39c12;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

/* Hover Effect on Learn More Button */
.learn-more:hover {
    background-color: #e67e22;
}

/* Hover Effect for Product Frame */
.product-frame:hover {
    transform: translateY(-5px); /* Slight lift effect on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); /* Increased shadow */
}







/* Position hamburger button on the left */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    margin-right: 15px; /* Add some spacing */
}

/* Adjust header layout for small screens */
@media (max-width: 768px) {
    .header {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        padding: 10px;
    }

    /* Show the hamburger button on mobile */
    .hamburger {
        display: block;
    }

    /* Hide the nav links initially */
    .nav ul {
        display: none;
        flex-direction: column;
        background-color: #003366;
        position: absolute;
        top: 60px; /* Adjust based on header height */
        left: 0;
        width: 100%;
        padding: 0;
        z-index: 1000;
    }

    /* Show nav links when active */
    .nav ul.active {
        display: flex;
    }

    /* Style each link in the mobile menu */
    .nav ul li {
        width: 100%;
        text-align: center;
    }
    .nav ul li a {
        padding: 15px;
        display: block;
        color: white;
    }
}
















/* WhatsApp Button Styling */
.whatsapp-button {
    position: fixed; /* Keeps it fixed on the screen while scrolling */
    bottom: 20px; /* Distance from the bottom of the screen */
    right: 20px; /* Distance from the right of the screen */
    z-index: 1000; /* Ensures it appears above other content */
    background-color: #25D366; /* WhatsApp green */
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease; /* Smooth hover effect */
}

.whatsapp-button img {
    width: 30px; /* Icon size */
    height: 30px;
}

/* Hover effect */
.whatsapp-button:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
    background-color: #1EBE56;
}










/* Event Calendar Section */
.event-calendar {
    background: linear-gradient(to bottom, #d4af37, #fff);
    padding: 40px 20px;
    text-align: center;
}

.section-title {
    font-size: 36px;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 30px;
}

/* Event Cards */
.events {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}



.event-card {
    position: relative; /* Needed for proper positioning of the icon */
    background-color: white;
    border: 2px solid black;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    width: 280px;
    text-align: center;
}

.event-icon {
    position: absolute; /* Ensures it stays in the top-right corner */
    top: 10px;
    left: 10px;
    width: 40px; /* Adjust size for icon */
    height: 40px; /* Ensure square dimensions */
    border-radius: 50%; /* Makes the icon circular (optional) */
    object-fit: cover; /* Ensures the image fits nicely */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Optional styling */
}




.event-title {
    font-size: 18px;
    font-weight: bold;
    color: #888;
}

.event-name {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin: 10px 0;
}

/* Countdown Timer */
.countdown {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.time-block {
    background-color: #f39c12;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-align: center;
}

.time-number {
    font-size: 24px;
    font-weight: bold;
}

.time-label {
    font-size: 14px;
}









/* Footer Styling */
.footer {
    background-color: #1a1a1a; /* Dark background */
    color: #ccc; /* Light text */
    padding: 40px 20px;
    font-size: 0.9rem;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer h3 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer p, .footer a {
    color: #ccc;
    text-decoration: none;
}

.footer a:hover {
    color: #ffc107; /* Highlight on hover */
}

/* Footer Install App Link Styling */
.footer-install-link {
    margin-bottom: 15px !important;
}

.install-app-footer {
    display: inline-flex !important;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.2s, box-shadow 0.2s, background 0.3s;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.4);
    text-decoration: none;
}

.install-app-footer:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.6);
    color: white !important;
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%) !important;
}

.install-app-footer:active {
    transform: translateX(3px);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    text-decoration: none;
}

.footer-contact p {
    margin-bottom: 10px;
}

/* Social Icons Styling for "Follow Us" */
.footer-social {
    text-align: left;
}

.footer-social h3 {
    margin-bottom: 15px;
}

.footer-social .social-icons {
    display: flex;
    gap: 15px;
}

.footer-social .social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    transition: transform 0.3s, background-color 0.3s;
}

.footer-social .social-icons a:hover {
    background-color: #ffc107;
    transform: scale(1.1);
}

.footer-social .social-icons a img {
    width: 70%;
    height: auto;
}

/* Footer Bottom Section */
.footer-bottom {
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #333;
    padding-top: 15px;
    font-size: 0.8rem;
    color: #aaa;
}

/* Responsive Design */
@media (min-width: 769px) {
    .footer-container {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .footer-social {
        text-align: left;
    }
    
    .footer-social .social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
        text-align: center;
    }

    .footer-social .social-icons {
        justify-content: center;
    }
}

















.church-products {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: #f9f9f9;
    background-image: url('path-to-your-background-image.jpg');
    background-size: cover; /* Ensures the image covers the entire section */
    background-position: center; /* Centers the image */
    background-repeat: no-repeat; /* Prevents tiling of the image */
    position: relative; /* For additional layering or effects */
}

/* Optional: Add a semi-transparent overlay */
.church-products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust transparency with alpha */
    z-index: 1;
}

.product-frame {
    position: relative;
    z-index: 2; /* Ensures product frames are above the overlay */
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    width: 300px;
    text-align: center;
    background-color: #fff;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-frame:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-title {
    font-size: 1.2em;
    margin: 10px 0;
    color: #333;
}

.product-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.product-description {
    font-size: 0.9em;
    color: #666;
    margin: 10px 0;
}

.learn-more {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.learn-more:hover {
    background-color: #0056b3;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .church-products {
        flex-direction: column;
        align-items: center;
    }

    .product-frame {
        width: 90%;
    }
}



/* Center and make the video responsive */
.video-frame-section {
    text-align: center;
    margin: 20px auto;
    width: 100%;
    max-width: 1200px; /* Prevents excessive stretching on large screens */
    padding: 10px;
}

.video-frame-section h2 {
    font-size: 2.5rem;
    color: #28a745;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Responsive Video Frame */
.video-frame {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-bottom: 56.25%; /* Maintains 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border: 2px solid #ccc;
    border-radius: 8px;
    background: #000;
}

/* Ensures the iframe is fully responsive */
.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .video-frame-section {
        padding: 5px;
    }

    .video-frame {
        border-radius: 5px;
    }
}


/* Football Academy Section */
.football-academy-section {
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.academy-container {
    max-width: 1400px;
    margin: 0 auto;
}

.academy-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.academy-text {
    color: white;
    animation: fadeInLeft 1s ease-out;
}

.academy-title {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from {
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
    }
    to {
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
}

.academy-subtitle {
    font-size: 1.8em;
    color: #ffd700;
    margin-bottom: 25px;
    font-weight: 600;
    font-style: italic;
}

.academy-description {
    font-size: 1.2em;
    line-height: 1.8;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
    text-align: justify;
}

.academy-video {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    position: relative;
}

.academy-video::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ffd700, #ff6b6b, #4ecdc4, #ffd700);
    border-radius: 15px;
    z-index: -1;
    animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.academy-video iframe {
    width: 100%;
    height: 350px;
    border: none;
    display: block;
}

.academy-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    animation: fadeInRight 1s ease-out;
    transition: transform 0.5s ease;
}

.academy-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.academy-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.academy-image:hover img {
    transform: scale(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,215,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.academy-image:hover .image-overlay {
    opacity: 1;
}

.overlay-text {
    color: white;
    font-size: 2.5em;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1024px) {
    .academy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .academy-title {
        font-size: 2.5em;
    }
    
    .academy-subtitle {
        font-size: 1.5em;
    }
    
    .academy-description {
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .football-academy-section {
        padding: 50px 15px;
    }
    
    .academy-title {
        font-size: 2em;
        letter-spacing: 2px;
    }
    
    .academy-subtitle {
        font-size: 1.2em;
    }
    
    .academy-description {
        font-size: 1em;
        text-align: left;
    }
    
    .academy-video iframe {
        height: 250px;
    }
    
    .overlay-text {
        font-size: 1.8em;
        letter-spacing: 3px;
    }
}
