* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
}

.nav li {
    list-style: none;
}
.nav.nav-mobile {
    display: none;
}
.nav li a {
    list-style: none;
    color: black;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

.nav li a::after {
    content: '';
    width: 0;
    left: 0;
    bottom: -6px;
    background: blue;
    height: 3px;
    position: absolute;
    transition: width 0.3s ease;
}

.nav li a:hover::after {
    width: 100%;
}

a {
    text-decoration: none;
    cursor: pointer;
    color: inherit;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 10px 40px;
    background: rgba(255, 255, 255, 0.98);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    width: 60px;
    height: auto;
    transition: transform 0.3s ease;
}

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

.app-title {
    font-size: 1.5rem;
    color: #000;
    margin: 0;
    padding: 0 20px;
}

.app-title span {
    color: #4009f4;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav li {
    list-style: none;
}

.nav li a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    padding: 8px 15px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.nav li a:hover {
    color: #4009f4;
    background: rgba(64, 9, 244, 0.1);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 1;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
}

.nav.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 400px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 80px 20px 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.nav.nav-mobile.open {
    right: 0;
}

.nav.nav-mobile li {
    width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.3s ease;
    margin: 8px 0;
}

.nav.nav-mobile.open li {
    opacity: 1;
    transform: translateX(0);
}

.nav.nav-mobile li:nth-child(1) { transition-delay: 0.1s; }
.nav.nav-mobile li:nth-child(2) { transition-delay: 0.2s; }
.nav.nav-mobile li:nth-child(3) { transition-delay: 0.3s; }
.nav.nav-mobile li:nth-child(4) { transition-delay: 0.4s; }
.nav.nav-mobile li:nth-child(5) { transition-delay: 0.5s; }
.nav.nav-mobile li:nth-child(6) { transition-delay: 0.6s; }

.nav.nav-mobile li a {
    display: flex;
    align-items: center;
    padding: 16px 20px;
    font-size: 1.1rem;
    color: #333;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav.nav-mobile li a i {
    width: 24px;
    margin-right: 12px;
    font-size: 1.2rem;
    color: #4009f4;
    transition: all 0.3s ease;
}

.nav.nav-mobile li a:hover {
    background: #4009f4;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(64, 9, 244, 0.2);
}

.nav.nav-mobile li a:hover i {
    color: white;
    transform: scale(1.1);
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.close-menu:hover {
    transform: rotate(90deg);
    color: #4009f4;
    background: rgba(64, 9, 244, 0.1);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Add a subtle divider between menu items */
.nav.nav-mobile li:not(:last-child)::after {
    content: '';
    display: block;
    height: 1px;
    background: rgba(0, 0, 0, 0.05);
    margin: 8px 0;
}

/* Add a header section to the mobile menu */
.nav.nav-mobile::before {
    content: 'Menu';
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

@media (max-width: 900px) {
    header {
        padding: 15px 20px;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav.nav-large {
        display: none;
    }
}

@media (max-width: 700px) {
    .nav.nav-large, .app-title {
        display: none;
    }
    .nav.nav-mobile.open {
        display: flex;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 20;
    }
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    header h2 {
        margin-bottom: 15px;
    }

    header ul.nav {
        flex-wrap: wrap;
    }

    header ul.nav li {
        margin: 0 7px 10px 0;
    }

    .about-right p {
        display: none;
    }
}

@media (max-width: 480px) {
    header {
        padding: 8px 20px;
    }

    header h2 {
        font-size: 20px;
        padding-right: 0;
        margin-bottom: 10px;
    }

    header ul.nav {
        flex-direction: column;
        width: 100%;
        padding-left: 0;
    }

    header ul.nav li {
        margin: 5px 0;
    }
}

@media (max-width: 720px) {
    header {
        padding: 15px 20px 8px 20px;
    }
}
/* Section & Banner */
section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

h3.section-title {
    font-size: 2.5rem;
    text-transform: uppercase;
    color: #333;
}

.section-title span {
    color: #4009f4;
}

@media (max-width: 1000px) {
    section {
        padding: 100px 50px;
    }
}

@media (max-width: 600px) {
    section {
        padding: 125px 30px;
    }
}

@media (max-width: 480px) {
    section {
        margin: 10px;
        padding: 60px 20px;
    }

    section p {
        font-size: 14px;
        padding: 0 10px;
    }
}

/* Banner Area */
.banner-area {
    margin-top: 80px;
    position: relative;
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding: 100px 20px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/a1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.banner-area h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.banner-area h1 span {
    color: #bf0a30;
}

.banner-area h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
}

.banner-btn {
    display: inline-block;
    padding: 15px 35px;
    background: #bf0a30;
    color: #fff;
    text-transform: uppercase;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.banner-btn:hover {
    background: #8b0000;
    transform: translateY(-2px);
}

/* Responsive Banner */
@media (max-width: 800px) {
    .banner-area {
        min-height: 600px;
    }

    .banner-area h1 {
        font-size: 27px;
    }

    .banner-area h3 {
        font-size: 20px;
    }

    .banner-area a.banner-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .banner-area h1 {
        font-size: 24px;
        line-height: 1.2;
    }

    .banner-area h3 {
        font-size: 16px;
    }

    .banner-area a.banner-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}



/*about area*/

about-content {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.about-content p {
    padding: 1px;
    height: 20%;
    text-align: justify;
    font-size: larger;
}

.about-right h2 {
    margin-bottom: 3%;
}

.about-btn {
    padding: 15px 35px;
    background:blue;
    border-radius: 50px;
    text-transform: uppercase;
    color: #fff;
}

@media (max-width: 1000px) {
    .section-title {
        font-size: 35px;
    }
    .about-left,
    .about-right {
        flex-basis: 100%;
    }
    .about-content li {
        padding: 8px;
    }
}


/*msg area*/

.msg-content p {
    text-transform: capitalize;
    font-size: 30px;
    max-width: 800px;
    margin-bottom: 35px;
    line-height: 1.5;
    text-align: center;
    padding-left: 0;
    font-weight: bolder;
    margin: 0 auto;
}

.msg-content h2 {
    text-transform: uppercase;
    font-size: 50px;
    margin-bottom: 5%;
    text-align: center;
}

.msg-content h2 span {
    color: blue;
}


/*service area*/

ul.services-content {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.services-content li {
    padding: 0 30px;
    flex-basis: 33%;
    text-align: center;
}

.services-content img {
    width: 100%;
    margin-bottom: 20px;
}

.services-content li h4 {
    font-size: 20px;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 3px;
}

.services-content li p {
    margin: 0;
}

@media (max-width:1000px) {
    .services-content li {
        flex-basis: 100%;
        margin-bottom: 65px;
    }
    .services-content li:last-child {
        margin-bottom: 0;
    }
    .services-content li p {
        padding: 0;
    }
}


/*contact area*/

ul.contact-content {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-content li {
    padding: 0 30px;
    flex-basis: 33%;
    text-align: center;
    list-style: none;
}

.contact-content li i {
    font-size: 50px;
    color: blue;
    margin-bottom: 25px;
}

.contact-content li p {
    margin: 0;
}

@media (max-width: 1000px) {
    .contact-content li {
        flex-basis: 100%;
        margin-bottom: 65px;
    }
    .contact-content li:last-child {
        margin-bottom: 0;
    }
    .contact-content li p {
        padding: 0;
    }
}


/* Footer Styles */
footer {
    background: #1a1a1a;
    color: #fff;
    padding: 80px 20px 20px;
    position: relative;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #4009f4;
}

.contact-info {
    display: flex;
      flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    color: #4009f4;
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-item p {
    color: #ccc;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    display: flex;
      align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.footer-links a i {
    color: #4009f4;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.service-times {
    list-style: none;
    padding: 0;
}

.service-times li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.service-times li:last-child {
    border-bottom: none;
}

.service-times .day {
    color: #ccc;
}

.service-times .time {
    color: #4009f4;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #4009f4;
    transform: translateY(-3px);
}

.newsletter {
    margin-top: 20px;
}

.newsletter h5 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    outline: none;
}

.newsletter-form input::placeholder {
    color: #ccc;
}

.newsletter-form button {
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    background: #4009f4;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #2d07b3;
    transform: translateY(-2px);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-bottom .credits {
    margin-top: 10px;
}

.footer-bottom .credits a {
    color: #4009f4;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom .credits i {
    color: #ff4444;
    margin: 0 5px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-section {
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .contact-item {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }
}

.ministries-area {
    max-width: 1200px;
    margin: auto;
    padding: 60px 20px;
    background-color: #f9f9fb;
  }
  

  
  .ministries-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 0;
    list-style: none;
  }
  
  .ministries-content li {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    width: 280px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
  }
  
  .ministries-content li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }
  
  .ministries-content img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }
  
  .ministries-content h4 {
    color: #1e40af;
    font-size: 1.2em;
    margin-bottom: 10px;
  }
  
  .ministries-content p {
    color: #444;
    font-size: 0.95em;
    margin-bottom: 20px;
  }
  
  .ministry-link {
    background-color: #1e40af;
    color: white;
    
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 0.9em;
    transition: background-color 0.3s;
    margin-top: auto;
  }
  
  .ministry-link:hover {
    background-color: #3b82f6;
  }
  
.videos-area {
    padding: 20px 20px;
    background-color: #fff;
    text-align: center;
}

.video-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.video {
    flex: 1 1 300px;
    max-width: 400px;
}

.video iframe {
    width: 100%;
    height: 220px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.sermon-archive-link:hover {
    background-color: #222;
}


.events-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    background-color: #f9fafb;
  }

  .events-area {
    max-width: 1200px;
    margin: auto;
    padding: 40px 20px;
  }

 
  .subheading {
    text-align: center;
    color: #555;
    font-size: 1.1em;
    margin-bottom: 40px;
  }

  .card-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    padding: 20px;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
  }

  .card h4 {
    margin: 10px 0 8px;
    color: #1e40af;
    font-size: 1.2em;
  }

  .card p {
    color: #444;
    font-size: 0.95em;
    margin-bottom: 15px;
  }

  .read-more {
    margin-top: auto;
    background-color: #1e40af;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9em;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
  }

  .read-more:hover {
    background-color: #3b82f6;
  }

  @media (max-width: 768px) {
    .card {
      width: 100%;
    }
  }

.slider-track {
    display: flex;
    animation: slide 15s infinite;
    animation: scrollSlider 20s linear infinite;
    gap: 20px;
    padding: 10px 0;
}

.slider-track img {
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes scrollSlider {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.theme-button {
    margin-top: 4%;
    display: inline-block;
    background-color: #1e40af;
    /* Deep navy / spiritual feel */
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.theme-button:hover {
    background-color : #3b82f6;
    /* Soothing green-blue on hover */
    transform: translateY(-2px);
}





/* Scoped 3D Slideshow Styling */

.three-d-slideshow #slideshow {
    margin: 0 auto;
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.three-d-slideshow .section-title {
    font-family: 'Allerta Stencil', sans-serif;
    font-size: 48px;
    color: #000;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.three-d-slideshow .section-title span {
    color: blue;
    font-weight: bold;
}

.three-d-slideshow .entire-content {
    margin: auto;
    width: 260px;
    perspective: 1000px;
    position: relative;
    padding-bottom: 80px;
}

.three-d-slideshow .content-carrousel {
    width: 100%;
    position: absolute;
    animation: rotate-carousel 15s infinite linear;
    transform-style: preserve-3d;
}

.three-d-slideshow .content-carrousel:hover {
    animation-play-state: paused;
    cursor: pointer;
}

.three-d-slideshow .content-carrousel figure {
    width: 100%;
    height: 150px;
    border: 2px solid #3b444b;
    overflow: hidden;
    position: absolute;
    border-radius: 6px;
}

.three-d-slideshow .content-carrousel figure:nth-child(1) {
    transform: rotateY(0deg) translateZ(320px);
}

.three-d-slideshow .content-carrousel figure:nth-child(2) {
    transform: rotateY(40deg) translateZ(320px);
}

.three-d-slideshow .content-carrousel figure:nth-child(3) {
    transform: rotateY(80deg) translateZ(320px);
}

.three-d-slideshow .content-carrousel figure:nth-child(4) {
    transform: rotateY(120deg) translateZ(320px);
}

.three-d-slideshow .content-carrousel figure:nth-child(5) {
    transform: rotateY(160deg) translateZ(320px);
}

.three-d-slideshow .content-carrousel figure:nth-child(6) {
    transform: rotateY(200deg) translateZ(320px);
}

.three-d-slideshow .content-carrousel figure:nth-child(7) {
    transform: rotateY(240deg) translateZ(320px);
}

.three-d-slideshow .content-carrousel figure:nth-child(8) {
    transform: rotateY(280deg) translateZ(320px);
}

.three-d-slideshow .content-carrousel figure:nth-child(9) {
    transform: rotateY(320deg) translateZ(320px);
}

.three-d-slideshow .shadow {
    position: absolute;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.3);
    border-radius: 4px;
}

.three-d-slideshow .content-carrousel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 300ms ease-in-out;
}

.three-d-slideshow .content-carrousel img:hover {
    transform: scale(1.1);
}

@keyframes rotate-carousel {
    from {
        transform: rotateY(0deg);
    }
    to {
        transform: rotateY(360deg);
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    margin-top: 80px;
}

.slider-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.slider-image.active {
    opacity: 1;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    z-index: 2;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.arrow:hover {
    background: rgba(0, 0, 0, 0.8);
}

.arrow.left {
    left: 20px;
}

.arrow.right {
    right: 20px;
}

/* Responsive styles for slider */
@media (max-width: 768px) {
    .slider-container {
        height: 400px;
        margin-top: 60px;
    }

    .arrow {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .arrow.left {
        left: 10px;
    }

    .arrow.right {
        right: 10px;
    }
}

@media (max-width: 480px) {
    .slider-container {
        height: 300px;
        margin-top: 50px;
    }

    .arrow {
        width: 35px;
        height: 35px;
        font-size: 18px;
    }
}

/* Responsive styles for images in cards and sections */
.card img,
.ministries-content li img,
.choir-image img,
.performance-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

@media (max-width: 768px) {
    .card img,
    .ministries-content li img,
    .choir-image img,
    .performance-item img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .card img,
    .ministries-content li img,
    .choir-image img,
    .performance-item img {
        height: 160px;
    }
}

/* Responsive styles for video gallery */
.video-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding: 20px;
}

.video {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .video-gallery {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}

/* Responsive styles for ministry cards */
.ministries-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.ministries-content li {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.ministries-content li:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .ministries-content {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}

/* Responsive styles for event cards */
.card-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px;
}

.card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

@media (max-width: 768px) {
    .card-row {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}

/* Responsive styles for map section */
.map-container {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

@media (max-width: 768px) {
    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .map-container {
        height: 300px;
    }
}
  