:root {
--text-color: #ffffff;
--Black-color: #000000;
--Royal-purple: #4b248c;
--Primary-Blue: #0047AB;
--Gold-color: #F3CC3C;
--Background-color: #f9f9f9;
--nav-bg: rgba(255, 255, 255, 0.98);
--instagram-color: #c13584;
--facebook-color: #1877f2;
--tiktok-color: #111111;
--twitter-color: #000000;
--youtube-color: #ff0000;
}

* {
margin: 0;
padding: 0;
box-sizing: border-box;
text-decoration: none;
list-style: none;
scroll-behavior: smooth;
}

body {
font-family: "Poppins", sans-serif;
background-color: var(--Background-color);
color: var(--Black-color);
overflow-x: hidden;
}

.site-logo-img-wrapper {
    display: none !important;
    align-items: center;
    transition: all 0.35s ease;
    z-index: 1100;
}

@media (min-width: 769px) {
    .logo a {
        display: none;
    }

    .nav-container {
        position: relative;
    }

    .site-logo-img-wrapper {
        position: absolute;
        left: 2rem;
        top: 50%;
        transform: translateY(-50%);
    }

    .site-logo-img-wrapper img {
        height: 90px;
        width: auto;
        filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
        transition: height 0.35s ease, filter 0.35s ease;
    }

    body.scrolled .site-logo-img-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    body.scrolled .site-logo-img-wrapper img {
        height: 48px;
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.15));
    }

    body:not(.scrolled) .nav-links ul {
        padding-left: 110px;
    }

    body.scrolled .nav-links ul {
        padding-left: 0;
    }
}

@media (max-width: 768px) {
    .logo a {
        display: none;
    }

    .site-logo-img-wrapper {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
    }

    .site-logo-img-wrapper img {
        height: 40px;
        width: auto;
        filter: none;
    }
}


 /* Top Bar (Hides on Scroll) */
 .top-bar {
     background-color: var(--Royal-purple);
     color: var(--text-color);
     padding: 8px 0;
     font-size: 14px;
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 1001;
     transition: transform 0.3s ease;
 }

 .top-bar.hide {
     transform: translateY(-100%);
 }

 .top-bar-container {
     display: flex;
     justify-content: flex-end;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .top-bar a {
     color: var(--text-color);
     margin-left: 20px;
     transition: all 0.3s ease;
     display: inline-flex;
     align-items: center;
     min-height: 44px;
     min-width: 44px;
 }

 .portal-btn {
     background-color: var(--Gold-color);
     color: var(--Royal-purple) !important;
     padding: 8px 15px;
     border-radius: 4px;
     font-weight: 600;
 }

 .portal-btn:hover {
     background-color: #e6b800;
     transform: translateY(-2px);
 }

 .top-bar a:hover {
     color: var(--Gold-color);
 }

 .top-bar i {
     margin-right: 5px;
 }

 /* Active Page Indicator */
 .active-page-indicator {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     background: rgba(255, 255, 255, 0.85);
     backdrop-filter: blur(10px);
     -webkit-backdrop-filter: blur(10px);
     padding: 8px 20px;
     font-size: 14px;
     color: var(--Royal-purple);
     z-index: 999;
     text-align: center;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     display: none;
 }

 /* Navigation Styles */
 .navbar {
     position: sticky;
     top: 40px;
     background-color: var(--nav-bg);
     box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
     z-index: 1000;
     transition: all 0.3s ease;
 }

 .navbar.scrolled {
     top: 0;
 }

 .nav-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     padding: 15px 20px;
     position: relative;
 }

 .logo {
     display: flex;
     align-items: center;
 }

 .logo img {
     height: 60px;
     /* Reasonable logo size */
     width: auto;
     /* Maintain aspect ratio */
     max-width: 180px;
     /* Prevent excessive width */
     margin-right: 10px;
     object-fit: contain;
     /* Prevent distortion */
 }

 .logo a {
     font-size: 24px;
     font-weight: 700;
     color: var(--Royal-purple);
     text-decoration: none;
     display: flex;
     align-items: center;
 }

 .logo span {
     color: var(--Primary-Blue);
 }

 /* Desktop Nav Links */
 .nav-links ul {
     display: flex;
 }

 .nav-links li {
     position: relative;
     margin: 0 10px;
 }

 .nav-links>ul>li>a {
     color: var(--Primary-Blue);
     font-weight: 600;
     padding: 12px 15px;
     border-radius: 4px;
     transition: all 0.3s ease;
     display: flex;
     align-items: center;
     min-height: 44px;
 }

 .nav-links>ul>li>a:hover {
     background-color: var(--Royal-purple);
     color: var(--text-color);
 }

 .nav-links>ul>li>a i {
     margin-left: 5px;
     font-size: 12px;
     transition: transform 0.3s ease;
 }

 /* Enhanced Dropdown Styling */
 .dropdown {
     position: absolute;
     top: 100%;
     left: 0;
     background-color: var(--text-color);
     width: 600px;
     border-radius: 8px;
     box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
     opacity: 0;
     visibility: hidden;
     transition: all 0.3s ease;
     z-index: 100;
     padding: 25px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 25px;
     transform: translateY(10px);
 }

 /* Single-column dropdown adjustment */
 .nav-links>ul>li>.dropdown:not(.mega-menu) {
     width: 300px;
     grid-template-columns: 1fr;
 }

 .nav-links>ul>li:hover>.dropdown {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .nav-links>ul>li:hover>a {
     background-color: var(--Royal-purple);
     color: var(--text-color);
 }

 .nav-links>ul>li:hover>a i {
     transform: rotate(180deg);
 }

 .dropdown li a {
     color: var(--Black-color);
     padding: 10px 15px;
     display: block;
     transition: all 0.3s ease;
     font-weight: 500;
     border-radius: 4px;
     margin: 5px 0;
     min-height: 44px;
     line-height: 1.5;
 }

 .dropdown li a:hover {
     background-color: var(--Royal-purple);
     color: var(--text-color);
     padding-left: 20px;
     transform: translateX(5px);
 }

 .dropdown-column {
     padding: 5px;
 }

 .dropdown-column h4 {
     color: var(--Royal-purple);
     font-size: 18px;
     margin-bottom: 20px;
     padding-bottom: 8px;
     border-bottom: 2px solid var(--Gold-color);
 }

 /* Mobile Menu */
 .mobile-menu-btn {
     display: none;
     font-size: 28px;
     color: var(--Primary-Blue);
     background: none;
     border: none;
     cursor: pointer;
     z-index: 1002;
     min-height: 44px;
     min-width: 44px;
     padding: 8px;
 }

 /* Close Menu Button - Hide by default */
 .close-menu-btn {
     display: none;
     position: fixed;
     top: 30px;
     right: 20px;
     color: var(--Royal-purple);
     font-size: 28px;
     background: none;
     border: none;
     cursor: pointer;
     z-index: 1002;
     min-height: 44px;
     min-width: 44px;
     padding: 8px;
 }

 /* Mobile Responsiveness */
 @media (max-width: 992px) {
     .top-bar {
         visibility: hidden;
     }

     .navbar {
         top: 0;
     }

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

    .nav-links .close-menu-btn {
        display: none;
    }

    .nav-links.active .close-menu-btn {
        display: flex;
    }

     .nav-links {
         position: fixed;
         top: 0;
         left: -100%;
         width: 100%;
         height: 100vh;
         background-color: var(--text-color);
         display: flex;
         flex-direction: column;
         justify-content: flex-start;
         padding-top: 80px;
         transition: all 0.5s ease;
         z-index: 1001;
         overflow-y: auto;
     }

     .nav-links.active {
         left: 0;
     }

     .nav-links ul {
         flex-direction: column;
        width: 100%;
        margin: 0;
        padding: 0 16px;
     }

     .nav-links li {
         margin: 10px 0;
        text-align: left;
         width: 100%;
     }

     .nav-links>ul>li>a {
         min-height: 44px;
        justify-content: space-between;
        text-align: left;
        white-space: nowrap;
        word-break: normal;
        overflow-wrap: normal;
         font-size: 16px;
         padding: 15px;
         border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        width: 100%;
        gap: 12px;
     }

    .nav-links a {
        overflow-wrap: normal;
        word-break: normal;
        white-space: nowrap;
    }

    .nav-links .dropdown a {
        justify-content: flex-start;
        text-align: left;
    }

     .dropdown {
         position: static;
         width: 100%;
         margin: 0;
         transform: none;
         opacity: 1;
         visibility: visible;
         max-height: 0;
         overflow: hidden;
         padding: 0;
         transition: max-height 0.4s ease;
         box-shadow: none;
         background: rgba(75, 36, 140, 0.05);
         grid-template-columns: 1fr !important;
         display: block;
     }

     .dropdown.active {
         max-height: 1000px;
         padding: 10px;
     }

     .dropdown li a {
         padding: 12px 20px;
         min-height: 44px;
         font-size: 14px;
         border-bottom: 1px solid rgba(0, 0, 0, 0.05);
     }

     .dropdown-column h4 {
         margin-top: 15px;
         font-size: 16px;
         padding-left: 15px;
     }

     /* Adjusted for mobile ministries dropdown */
    .dropdown.mega-menu {
        max-height: none;
        overflow-y: visible;
    }

     /* Logo adjustments for mobile */
     .logo img {
         height: 50px;
         /* Slightly smaller for mobile */
         max-width: 150px;
     }
 }

 /* Additional mobile responsiveness for smaller screens */
 @media (max-width: 576px) {
     .logo img {
         height: 45px;
         /* Even smaller for very small screens */
         max-width: 130px;
     }

     .logo a {
         font-size: 20px;
         /* Adjust text size if needed */
     }
 }

 /* Demo content */
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px;
 }

 .content-box {
     background: white;
     border-radius: 8px;
     padding: 30px;
     margin-bottom: 30px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 h1 {
     color: var(--Royal-purple);
     margin-bottom: 20px;
 }

 p {
     line-height: 1.6;
     margin-bottom: 15px;
    color: var(--Black-color);
 }


.hero-slider {
width: 100%;
position: relative;
overflow: hidden;
height: auto;
aspect-ratio: 16/9;
}

.slide {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
opacity: 0;
transition: opacity 1s ease, transform 8s ease;
background-size: cover;
background-position: center;
transform: scale(1);
}

.slide.active {
opacity: 1;
transform: scale(1.05);
}

.slide::after {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: linear-gradient(135deg, rgba(75, 36, 140, 0.6) 0%, rgba(0, 0, 0, 0.7) 100%);
}

.slide-image {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
background-color: var(--Black-color);

}

.slide-content {
position: absolute;
bottom: 150px;
left: 100px;
max-width: 600px;
padding: 40px;
border-radius: 10px;
color: var(--text-color);
z-index: 2;
opacity: 0;
transform: translateY(50px);
transition: all 0.8s ease 0.3s;
background: rgba(0, 0, 0, 0.3);
backdrop-filter: blur(5px);
border-left: 4px solid var(--Gold-color);
}

.slide.active .slide-content {
opacity: 1;
transform: translateY(0);
}

.slide-content h2 {
font-size: clamp(2rem, 4vw, 3rem);
margin-bottom: 20px;
color: var(--Gold-color);
text-transform: uppercase;
letter-spacing: 2px;
line-height: 1.2;
}

.slide-content p {
font-size: clamp(1rem, 2vw, 1.2rem);
line-height: 1.6;
margin-bottom: 30px;
    color: var(--text-color);
}

.slide-content .btn {
display: inline-block;
padding: 12px 30px;
background: var(--Gold-color);
color: var(--Royal-purple);
text-decoration: none;
font-weight: bold;
border-radius: 30px;
transition: all 0.3s ease;
min-height: 44px;
line-height: 1.2;
}

.slide-content .btn:hover {
background: var(--text-color);
transform: translateY(-3px);
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.slider-arrows {
position: absolute;
top: 50%;
width: 100%;
display: flex;
justify-content: space-between;
padding: 0 30px;
transform: translateY(-50%);
z-index: 10;
}

.slider-arrow {
width: 60px;
height: 60px;
background-color: rgba(255, 255, 255, 0.2);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.3s ease;
color: var(--text-color);
font-size: 28px;
backdrop-filter: blur(5px);
border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-arrow:hover {
background-color: rgba(255, 255, 255, 0.4);
transform: scale(1.1);
}

.slider-nav {
position: absolute;
bottom: 50px;
left: 50%;
transform: translateX(-50%);
display: flex;
gap: 15px;
z-index: 10;
}

.slider-dot {
width: 15px;
height: 15px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.5);
cursor: pointer;
transition: all 0.3s ease;
position: relative;
min-height: 44px;
min-width: 44px;
display: flex;
align-items: center;
justify-content: center;
}

.slider-dot::before {
content: '';
width: 15px;
height: 15px;
border-radius: 50%;
background-color: rgba(255, 255, 255, 0.5);
transition: all 0.3s ease;
}

.slider-dot::after {
content: '';
position: absolute;
top: -5px;
left: -5px;
right: -5px;
bottom: -5px;
border: 1px solid rgba(255, 255, 255, 0.3);
border-radius: 50%;
opacity: 0;
transition: opacity 0.3s ease;
}

.slider-dot:hover::after {
opacity: 1;
}

.slider-dot.active::before {
background-color: var(--Gold-color);
transform: scale(1.2);
}

.progress-bar {
position: absolute;
bottom: 0;
left: 0;
height: 3px;
background-color: var(--Gold-color);
z-index: 10;
transition: width 0.1s linear;
}

/* Mobile Styles */
@media (max-width: 768px) {
.hero-slider {
    /* Mobile: 9:16 aspect ratio */
    aspect-ratio: 9/16;
}

.slide-content {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    max-width: 90%;
    padding: 20px;
}

.slide.active .slide-content {
    transform: translateX(-50%) translateY(0);
}

.slide-content h2 {
    font-size: clamp(1.5rem, 4vw, 2rem);
}

.slide-content p {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.slider-arrow {
    width: 50px;
    height: 50px;
    font-size: 24px;
}

.slider-arrows {
    padding: 0 20px;
}

.slider-nav {
    bottom: 30px;
    gap: 10px;
}

.slider-dot {
    min-height: 44px;
    min-width: 44px;
}   }

/*Main Content*/
/* Section Styling */
section {
padding: 5px 5%;
min-height: 100vh;
opacity: 0;
transform: translateY(50px);
transition: opacity 0.8s ease, transform 0.8s ease;
}

section.active {
opacity: 1;
transform: translateY(0);
}

/* Main Content - Enhanced Responsive Version */
.main-content {
    margin: 2rem auto;
    width: 100%;
    max-width: 1200px;
    padding: 0 1rem;
}

.row {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.main-content-col {
    width: 100%;
    padding: 20px;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

.image-container {
    position: relative;
    width: 100%;
    perspective: 1000px;
    /* For 3D effect */
}

.main-content-col img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.5s ease;
    transform-style: preserve-3d;
}

/* 3D Effect on Desktop */
@media (min-width: 992px) {
    .image-container:hover img {
        transform: rotateY(5deg) rotateX(5deg) translateZ(10px) scale(1.02);
        box-shadow:
            15px 15px 30px rgba(0, 0, 0, 0.2),
            0 0 20px rgba(106, 13, 173, 0.2);
    }

    /* Subtle 3D effect even without hover */
    .main-content-col img {
        transform: translateZ(5px);
        box-shadow:
            8px 8px 20px rgba(0, 0, 0, 0.15),
            0 0 10px rgba(106, 13, 173, 0.1);
    }
}

.banner {
    background-color: var(--Royal-purple);
    color: var(--text-color);
    font-family: var(--body-font);
    font-size: clamp(1.2rem, 4vw, var(--h2-font));
    font-weight: bold;
    margin: 20px 0;
    padding: 12px 25px;
    display: inline-block;
    text-transform: uppercase;
    position: relative;
    clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
    animation: fadeInUp 0.8s ease;
    width: 100%;
    text-align: center;
}

.main-content-col p {
    color: var(--Black-color);
    font-size: clamp(0.9rem, 3.5vw, var(--normal-font));
    line-height: 1.7;
    font-weight: 400;
    text-align: left;
    margin: 20px 0;
    animation: fadeIn 1s ease;
    transition: all 0.6s ease;
}

.main-content-col h4 {
    color: var(--Royal-purple);
    font-size: clamp(1.3rem, 5vw, var(--title-font));
    margin: 25px 0 15px;
    line-height: 1.3;
    text-align: left;
    animation: fadeIn 0.8s ease;
}

/* Tablet View (768px and up) */
@media (min-width: 768px) {
    .main-content-col {
        padding: 15px;
    }

    .banner {
        padding: 15px 40px;
        clip-path: polygon(10% 0%, 100% 0%, 90% 100%, 0% 100%);
        width: auto;
    }
}

/* Desktop View (992px and up) */
@media (min-width: 992px) {
    .row {
        flex-direction: row;
        justify-content: space-between;
        gap: 4rem;
    }

    .main-content-col {
        width: 48%;
        text-align: left;
    }

    .main-content-col:first-child {
        order: 1;
        /* Image on left */
    }

    .main-content-col:last-child {
        order: 2;
        /* Content on right */
    }

    .main-content {
        padding: 0;
    }
}

/* Animation tweaks */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

 /* Fellowship Welcoming Section - Redesigned */
 .fellowship {
     width: 100%;
     min-height: 100vh;
     /* Changed from fixed height */
     padding: 40px 20px;
     background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.75)), url(image/ministries\ home.png);
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: center;
 }

 .fellowship-container {
     max-width: 1200px;
     margin: 0 auto;
     width: 100%;
 }

 .poster-row {
     display: grid;
     grid-template-columns: 1fr;
     padding: 20px 40px;
     /* Single column by default */
     gap: 40px;
     align-items: center;
 }

 .content-col {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 /* Image Container */
 .image-container {
     width: 100%;
     max-width: 600px;
     margin: 0 auto;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
     order: 2;
     /* Image comes after content on mobile */
 }

 .main-poster {
     width: 100%;
     height: auto;
     display: block;
     transition: transform 0.5s ease;
 }

 .main-poster:hover {
     transform: scale(1.03);
 }

 /* Content Cards */
 .fellowship-card {
     display: flex;
     flex-direction: column;
     gap: 30px;
 }

 .fellowship-details,
 .upcoming-events {
     background-color: white;
     border-radius: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     opacity: 1;
     /* Always visible */
     transform: none;
     /* Remove initial transform */
 }

 .card-header {
     background-color: var(--Royal-purple);
     padding: 20px;
     text-align: center;
 }

 .card-header a {
     color: white;
     font-size: clamp(1.2rem, 3vw, var(--h2-font));
     text-transform: uppercase;
     font-weight: 600;
     text-decoration: none;
 }

 .card-body {
     padding: 25px;
 }

 /* Fellowship Details */
 .fellowship-details .card-body {
     text-align: center;
 }

 .fellowship-details h4 {
     font-size: clamp(1.3rem, 4vw, var(--title-font));
     color: var(--Primary-Blue);
     margin-bottom: 15px;
 }

 .fellowship-details h5 {
     font-size: clamp(1.1rem, 3vw, 23px);
     font-weight: 600;
     margin-bottom: 10px;
 }

 .fellowship-details h6 {
     font-size: clamp(1rem, 2.5vw, 18px);
     margin-bottom: 20px;
     color: #555;
 }

 .time-details {
     background-color: #f8f9fa;
     padding: 15px;
     border-radius: 8px;
     margin-top: 20px;
 }

 .time-details p {
     font-weight: 600;
     color: #333;
 }

 /* Upcoming Events */
 .upcoming-events .card-body {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .event-item {
     padding-bottom: 15px;
     border-bottom: 1px solid #eee;
 }

 .event-item:last-child {
     border-bottom: none;
     padding-bottom: 0;
 }

 .event-item h4 {
     font-size: clamp(1.1rem, 3vw, 20px);
     color: var(--Royal-purple);
     margin-bottom: 8px;
 }

 .event-item p {
     color: #555;
     margin-bottom: 10px;
 }

 .event-date {
     font-weight: 600;
     color: #333;
 }

 .event-link {
     display: inline-block;
     background-color: var(--Royal-purple);
     color: white;
     padding: 12px 20px;
     border-radius: 6px;
     text-decoration: none;
     font-weight: 600;
     margin-top: 15px;
     transition: all 0.3s ease;
 }

 .event-link:hover {
     background-color: var(--Primary-Blue);
     transform: translateY(-2px);
 }

   /* Social Media Icons */
   .icon-bar {
       display: flex;
       justify-content: center;
       gap: 15px;
       margin-top: 30px;
       opacity: 1;
       /* Always visible */
       transform: none;
       /* Remove initial transform */
   }

   .icon-bar a {
       width: 50px;
       height: 50px;
       display: flex;
       justify-content: center;
       align-items: center;
       color: white;
       font-size: 24px;
       border-radius: 8px;
       transition: all 0.3s ease;
       box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
   }

   .icon-bar a:hover {
       transform: translateY(-5px);
       box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
   }

   /* Instagram */
   .icon-bar a.instagram {
       background: var(--instagram-color);
   }

   .icon-bar a.instagram:hover {
       background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
   }

   /* Facebook */
   .icon-bar a.facebook {
       background: var(--facebook-color);
   }

   .icon-bar a.facebook:hover {
       background: #1877F2;
   }

   /* TikTok */
   .icon-bar a.tiktok {
       background: var(--tiktok-color);
   }

   .icon-bar a.tiktok:hover {
       background: linear-gradient(to right, #000000, #00f2ea, #ff0050);
   }

   /* Twitter/X */
   .icon-bar a.twitter {
       background: var(--twitter-color);
   }

   .icon-bar a.twitter:hover {
       background: #000000;
   }

   /* YouTube */
   .icon-bar a.youtube {
       background: var(--youtube-color);
   }

   .icon-bar a.youtube:hover {
       background: #FF0000;
   }

 /* Tablet View (768px and up) */
 @media (min-width: 768px) {
     .poster-row {
         grid-template-columns: 1fr 1fr;
         /* Two columns */
         align-items: center;
         padding: 10px;
     }

     .image-container {
         order: 1;
         /* Image first on desktop */
     }

     .content-col {
         order: 2;
         /* Content second on desktop */
     }
 }

 /* Desktop View (992px and up) */
 @media (min-width: 992px) {
     .fellowship {
         padding: 60px 0;
     }

     .poster-row {
         gap: 60px;
     }
 }

    /* PROGRAM SECTION*/
    .prog {
        margin-top: 10%;
        margin-bottom: 5%;
        width: 100%;
        padding: 10px;
    }

    .program-container {
        display: flex;
        justify-content: space-evenly;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 10px;
        padding: 30px;
    }

    .prog-card {
        width: 300px;
        position: relative;
        transition: all 0.5s ease;
        margin-bottom: 20px;
    }

    .image-container {
        position: relative;
        width: 100%;
        height: 200px;
        overflow: hidden;
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .prog-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: all 0.5s ease;
        border-radius: 8px;
    }

    .program-info {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(75, 0, 130, 0.9);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity 0.5s ease;
        padding: 15px;
        box-sizing: border-box;
        text-align: center;
        border-radius: 8px;
    }

    .program-info p {
        font-size: 14px;
        line-height: 1.5;
        color: var(--text-color);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    }

    .prog-card:hover .program-info {
        opacity: 1;
    }

    .prog-card:hover img {
        transform: scale(1.05);
        filter: brightness(0.7);
    }

    .prog-card a {
        display: block;
        margin-top: 35px;
        text-transform: uppercase;
        text-decoration: none;
        font-weight: bold;
        color: #4b0082;
        text-align: center;
        font-size: 16px;
        transition: color 0.3s ease;
    }

    .prog-card a:hover {
        color: var(--Royal-purple);
        text-decoration: underline;
    }

    .default-banner {
        width: 80%;
        background-color: var(--Royal-purple);
        color: var(--text-color);
        font-size: var(--h2-font);
        font-weight: bold;
        padding: 15px 40px;
        text-align: center;
        display: inline-block;
        text-transform: uppercase;
        position: relative;
        clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
        margin-bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
    }

    /* Responsive Design */
    @media (max-width: 1024px) {
        .prog-card {
            width: 280px;
        }
    }

    @media (max-width: 768px) {
        .program-container {
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }

        .prog-card {
            width: 100%;
            max-width: 350px;
        }

        .default-banner {
            width: 90%;
            font-size: 1.5rem;
        }
    }

    @media (max-width: 480px) {
        .prog {
            margin-top: 15%;
        }

        .default-banner {
            width: 95%;
            font-size: 1.2rem;
            padding: 12px 20px;
        }

        .program-info p {
            font-size: 13px;
        }

        .prog-card a {
            font-size: 15px;
        }
    }
/* Location Section */
.main-banner {
width: 80%;
background-color: var(--Royal-purple);
color: var(--text-color);
font-size: var(--h2-font);
font-weight: bold;
padding: 15px 40px;
text-align: center;
display: inline-block;
text-transform: uppercase;
position: relative;
clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
margin: 30px 0;
left: 50%;
transform: translateX(-50%);
}

.location {
margin: auto;
background-image: linear-gradient(rgba(255, 246, 246, 0.85), rgba(255, 246, 246, 0.85));
padding: 10px 0;
text-align: center;
}

.map-container {
position: relative;
width: 90%;
margin: 0 auto;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.map-loader {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
background: rgba(255, 255, 255, 0.8);
z-index: 10;
font-size: 1.2rem;
color: var(--Royal-purple);
}

.location iframe {
width: 100%;
height: 60vh;
min-height: 400px;
border: none;
}

.location-actions {
display: flex;
justify-content: center;
gap: 20px;
margin: 25px 0;
flex-wrap: wrap;
}

.directions-btn,
.call-btn {
padding: 12px 25px;
border-radius: 30px;
font-weight: 600;
text-decoration: none;
display: inline-flex;
align-items: center;
gap: 8px;
transition: all 0.3s ease;
}

.directions-btn {
background-color: var(--Royal-purple);
color: white;
}

.call-btn {
background-color: var(--Gold-color);
color: var(--Black-color);
}

.directions-btn:hover {
background-color: #3a1a6a;
transform: translateY(-3px);
}

.call-btn:hover {
background-color: #e6b800;
transform: translateY(-3px);
}

/* Home Page Contact Section */
.home-page-contact {
min-height: 95vh;
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.85)), url(image/Contactdetails-home.jpg);
background-position: center;
background-size: cover;
text-align: center;
padding: 50px 0;
color: var(--text-color);
}

.home-contact-banner {
width: 90%;
background-color: var(--Royal-purple);
color: var(--Soft-white);
font-size: var(--h2-font);
font-weight: bold;
padding: 15px 10px;
text-align: center;
display: inline-block;
text-transform: uppercase;
position: relative;
clip-path: polygon(0% 0%, 100% 0%, 90% 100%, 0% 100%);
margin-bottom: 40px;
}

.home-contact-row {
display: flex;
justify-content: center;
gap: 30px;
flex-wrap: wrap;
padding: 0 20px;
}

.home-contact-col {
flex: 1;
min-width: 300px;
max-width: 400px;
}

.home-contact-card {
background: var(--text-color);
border-radius: 10px;
padding: 30px 20px;
height: 100%;
box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-contact-card:hover {
transform: translateY(-10px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.home-contact-icon {
font-size: 2.5rem;
color: var(--Royal-purple);
margin-bottom: 15px;
}

.home-contact-card h3 {
color: var(--Gold-color);
margin-bottom: 20px;
font-size: 1.4rem;
position: relative;
padding-bottom: 10px;
}

.home-contact-card h3::after {
content: '';
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
width: 50px;
height: 3px;
background: var(--Gold-color);
}

.home-contact-card p {
color: var(--Black-color);
margin: 15px 0;
font-size: 1rem;
line-height: 1.6;
}

.home-contact-card a {
color: var(--Primary-Blue);
text-decoration: none;
transition: color 0.3s ease;
}

.home-contact-card a:hover {
color: var(--Royal-purple);
text-decoration: underline;
}

.home-copy-text {
cursor: pointer;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 5px;
}

.home-copy-text:hover {
color: var(--Royal-purple);
font-weight: bold;
}

.home-contact-note {
font-size: 0.9rem;
color: #666;
margin-top: 20px;
}



.home-footer {
background-color: #1a1a2e;
color: #ffffff;
height: 90vh;
padding: 3rem 2rem;
font-family: 'Poppins', sans-serif;
}

.footer-container {
max-width: 1200px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: 2.5rem;
}

.scripture-section {
text-align: center;
padding-bottom: 2rem;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
margin-top: 40px;
}

.scripture-box {
max-width: 600px;
margin: 0 auto;
}

.scripture-text {
font-size: 1.5rem;
font-weight: 300;
font-style: italic;
line-height: 1.4;
margin-bottom: 0.5rem;
color: #e6e6e6;
}

.scripture-reference {
font-size: 1rem;
color: #a5a5a5;
}

.social-media-section {
display: flex;
flex-direction: column;
align-items: center;
gap: 1.5rem;
}

.connect-title {
font-size: 1.2rem;
font-weight: 500;
text-transform: uppercase;
letter-spacing: 1px;
color: #ffffff;
margin-bottom: 0.5rem;
}


.copyright-section {
display: flex;
flex-direction: column;
align-items: center;
gap: 1rem;
margin-top: 10vh;
padding-top: 2rem;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo a {
font-size: 1.8rem;
font-weight: 700;
color: #ffffff;
text-decoration: none;
}

.footer-logo span {
color: #f8c537;
}

.copyright-text {
font-size: 0.9rem;
color: #a5a5a5;
}

@media (max-width: 768px) {
.social-media-icons {
gap: 1rem;
}

.social-icon {
width: 70px;
}

.scripture-text {
font-size: 1.3rem;
}
}

/* APOSTLE DENNIS PAGE */
.apostle-hero {
height: auto;
min-height: 40vh;
width: 100%;
background-color: var(--Royal-purple);
color: var(--text-color);
padding: 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}

.apostle-hero h1 {
color: var(--text-color);
font-size: var(--title-font);
padding-top: 50px;
line-height: 1.3;
text-transform: uppercase;
}

.apostle-hero h4 {
font-family: var(--bodyfont);
padding-top: 20px;
font-weight: 400;
line-height: 1.5;
}

/* Body Content */
/* Apostle Profile Base Styles */
.apostle-profile {
display: flex;
flex-wrap: wrap;
gap: 2rem;
align-items: flex-start;
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}

.apostle-image-container {
flex: 1;
min-width: 300px;
}

.apostle-image-container img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.apostle-content {
flex: 2;
min-width: 300px;
}

.apostle-content p {
line-height: 1.6;
margin-bottom: 1.5rem;
color: #333;
}

/* Modern Ministry Pillars */
.ministry-pillars {
margin: 2rem 0;
}

.pillar {
border-radius: 8px;
overflow: hidden;
margin-bottom: 1rem;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
border: 1px solid #eaeaea;
transition: all 0.3s ease;
}

.pillar:hover {
box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.pillar-header {
display: flex;
align-items: center;
padding: 1.2rem 1.5rem;
background-color: #f8f9fa;
cursor: pointer;
transition: all 0.3s ease;
}

.pillar:hover .pillar-header {
background-color: #f1f3f5;
}

.pillar-number {
font-size: 1.2rem;
font-weight: 700;
color: #f8c537;
margin-right: 1.5rem;
min-width: 40px;
}

.pillar-title {
font-size: 1.1rem;
font-weight: 600;
color: #1a1a2e;
margin: 0;
flex-grow: 1;
}

.pillar-toggle {
font-size: 1.3rem;
font-weight: 300;
color: #666;
transition: transform 0.3s ease;
}

.pillar-content {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
padding: 0 1.5rem;
background-color: white;
}

.pillar-content p {
padding: 1rem 0;
margin: 0;
color: #555;
}

/* Active State */
.pillar.active .pillar-content {
max-height: 200px;
}

.pillar.active .pillar-toggle {
transform: rotate(45deg);
}

.pillars-conclusion {
margin-top: 2rem;
font-style: italic;
color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
.apostle-profile {
flex-direction: column;
padding: 1rem;
}

.pillar-header {
padding: 1rem;
}

.pillar-title {
font-size: 1rem;
}
}
.apostle-social-section {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
margin-top: 30px;
}

.apostle-btn {
background-color: #4B217D;
color: white;
padding: 10px 23px;
font-size: var(--span-font);
font-weight: bold;
text-decoration: none;
display: inline-block;
clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
text-align: center;
width: 250px;
margin-bottom: 20px;
}

.apostle-social-icons {
display: flex;
gap: 15px;
margin-top: 15px;
flex-wrap: wrap;
justify-content: center;
}

.apostle-social-icon {
width: 40px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 24px;
font-weight: bold;
border-radius: 8px;
transition: transform 0.3s ease;
}

.apostle-instagram {
background: linear-gradient(45deg, #833AB4, #FD1D1D, #F56040);
}

.apostle-facebook {
background-color: #1877F2;
}

.apostle-tiktok {
background: linear-gradient(45deg, #69C9D0, #010101, #EE1D52);
}

.apostle-x-twitter {
background-color: #000000;
color: #FFFFFF;
}

.apostle-youtube {
background-color: #FF0000;
}

/* Hover Effect */
.apostle-social-icon:hover {
transform: scale(1.1);
}

/* Apostle Dennis Bio Continuation */
.apostle-details {
width: 100%;
height: auto;
background-color: var(--Primary-Blue);
padding: 30px 20px;
}

.apostle-details-row {
display: flex;
flex-direction: column;
gap: 20px;
max-width: 1200px;
margin: 0 auto;
}

.apostle-details-col {
width: 100%;
padding: 20px;
border: 1px solid white;
margin-bottom: 20px;
background-color: rgba(255, 255, 255, 0.1);
border-radius: 8px;
}

.apostle-details-col h3 {
color: var(--Gold-color);
font-size: var(--span-font);
font-weight: 700;
text-align: center;
margin-bottom: 15px;
}

.apostle-details-col p {
color: var(--text-color);
font-size: var(--bodyfont);
text-align: justify;
line-height: 1.5;
margin-bottom: 10px;
}

.apostle-details-col i {
font-weight: 700;
display: block;
text-decoration: underline;
font-style: normal;
}

.apostle-bio-link {
display: block;
font-size: var(--span-font);
text-decoration: none;
color: var(--Royal-purple);
background-color: white;
width: 300px;
height: 45px;
padding: 10px;
text-align: center;
margin: 30px auto 0;
border-radius: 5px;
transition: all 0.3s ease;
}

.apostle-bio-link:hover {
color: royalblue;
background-color: var(--Gold-color);
}

/* Desktop View */
@media (min-width: 768px) {
.apostle-hero h1 {
font-size: 2.5rem;
padding-top: 110px;
}

.apostle-profile {
flex-direction: row;
align-items: flex-start;
max-width: 1200px;
margin-top: 5%;
}

.apostle-image-container {
width: 300px;
flex-shrink: 0;
}

.apostle-image-container img {
width: 300px;
height: auto;
}

.apostle-content {
width: 600px;
}

.apostle-social-section {
align-items: flex-end;
width: 250px;
}

.apostle-details-row {
flex-direction: row;
flex-wrap: wrap;
justify-content: space-between;
}

.apostle-details-col {
flex-basis: calc(33.333% - 20px);
margin-bottom: 0;
}
}

/* JavaScript Animation Classes */
.section-hidden {
opacity: 0;
transform: translateY(50px);
transition: all 1s ease;
}

.section-visible {
opacity: 1;
transform: translateY(0);
}

/*Christhood Leadership Page*/
/* ======================
CHRISTHOOD LEADERSHIP SECTION - REDESIGNED
====================== */

/* Base Styles */
.christhood-leadership-section {
padding: 60px 5%;
background-color: white;
}

.christhood-leader-card {
display: flex;
margin-bottom: 60px;
background-color: white;
border-radius: 10px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
overflow: hidden;
flex-direction: column;
/* Stack vertically by default */
}

/* Image Container - Focus on Headspace */
.christhood-leader-image {
position: relative;
width: 100%;
height: 300px;
/* Fixed height for consistent headspace */
overflow: hidden;
}

.christhood-leader-image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: top center;
/* Ensures heads are always visible */
}

/* Content Area */
.christhood-leader-content {
padding: 30px;
}

.christhood-leader-content h3 {
font-size: 24px;
color: #4B248C;
margin-bottom: 5px;
}

.christhood-leader-content h6 {
font-size: 18px;
color: #0066CC;
margin-bottom: 15px;
font-weight: 500;
}

.christhood-leader-content p {
color: #555;
line-height: 1.6;
margin-bottom: 20px;
}

/* Read More Button */
.christhood-read-more {
background-color: #4B248C;
color: white;
border: none;
padding: 8px 20px;
border-radius: 30px;
cursor: pointer;
display: inline-flex;
align-items: center;
transition: all 0.3s ease;
font-size: 14px;
}

.christhood-read-more:hover {
background-color: #0066CC;
}

.christhood-read-more i {
margin-left: 5px;
}

/* Hidden Content */
.christhood-full-message {
display: none;
padding-top: 15px;
}

.christhood-full-message.show {
display: block;
}

/* Desktop Layout (768px and up) */
@media (min-width: 768px) {
.christhood-leader-card {
flex-direction: row;
/* Side by side on desktop */
min-height: 300px;
/* Match image height */
}

.christhood-leader-image {
width: 40%;
height: auto;
/* Flexible height on desktop */
min-height: 300px;
}

.christhood-leader-content {
width: 60%;
padding: 40px;
}

/* Alternate layout for every other card */
.christhood-leader-card.alternate {
flex-direction: row-reverse;
}
}

/* Larger Screens */
@media (min-width: 992px) {
.christhood-leader-image {
min-height: 350px;
}
}

/* Animation for cards */
@keyframes fadeInUp {
from {
opacity: 0;
transform: translateY(30px);
}

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

.christhood-leader-card {
opacity: 0;
animation: fadeInUp 0.8s ease-out forwards;
}

/* Stagger animations */
.christhood-leader-card:nth-child(1) {
animation-delay: 0.1s;
}

.christhood-leader-card:nth-child(2) {
animation-delay: 0.3s;
}

.christhood-leader-card:nth-child(3) {
animation-delay: 0.5s;
}



/* Testimonials Section */
.ciom-testimonials {
padding: 60px 5%;
background-color: #f9f9f9;
text-align: center;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.ciom-testimonials h4 {
font-size: 28px;
color: #4B248C;
margin-bottom: 40px;
position: relative;
display: inline-block;
}

.ciom-testimonials h4::after {
content: '';
position: absolute;
bottom: -10px;
left: 50%;
transform: translateX(-50%);
width: 80px;
height: 3px;
background-color: #F3CC3C;
}

.christhood-testimonial-carousel {
position: relative;
max-width: 1200px;
margin: 0 auto;
overflow: hidden;
}

.christhood-testimonial-track {
display: flex;
transition: transform 0.5s ease;
gap: 20px;
padding: 20px 0;
}

.christhood-testimonial-card {
flex: 0 0 calc(33.333% - 14px);
background-color: white;
border-radius: 10px;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
padding: 30px;
transition: transform 0.3s ease;
position: relative;
min-height: 300px;
}

.christhood-testimonial-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.christhood-testimonial-card::before {
content: '"';
position: absolute;
top: 20px;
left: 20px;
font-size: 4rem;
color: rgba(75, 36, 140, 0.1);
font-family: Georgia, serif;
line-height: 1;
}

.christhood-testimonial-content {
margin-bottom: 20px;
color: #555;
line-height: 1.8;
font-style: italic;
text-align: left;
position: relative;
overflow: hidden;
}

.christhood-testimonial-content.collapsed {
max-height: 150px;
}

.christhood-testimonial-content.expanded {
max-height: none;
}

.christhood-testimonial-content.collapsed::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 50px;
background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white);
}

.christhood-read-more-btn {
display: block;
margin: 15px auto 0;
padding: 8px 20px;
background-color: #4B248C;
color: white;
border: none;
border-radius: 20px;
font-weight: bold;
cursor: pointer;
font-style: normal;
font-size: 0.9rem;
transition: all 0.3s ease;
position: relative;
z-index: 2;
}

.christhood-read-more-btn:hover {
background-color: #F3CC3C;
color: #4B248C;
}

.christhood-testimonial-author {
display: flex;
align-items: center;
margin-top: 20px;
}

.christhood-testimonial-author img {
width: 50px;
height: 50px;
border-radius: 50%;
object-fit: cover;
margin-right: 15px;
border: 2px solid #F3CC3C;
}

.christhood-testimonial-author-info h4 {
color: #4B248C;
font-size: 1.1rem;
margin-bottom: 5px;
text-align: left;
}

.christhood-testimonial-author-info p {
color: #777;
font-size: 0.9rem;
text-align: left;
}

.christhood-carousel-arrow {
position: absolute;
top: 50%;
transform: translateY(-50%);
background-color: #4B248C;
color: white;
border: none;
width: 40px;
height: 40px;
border-radius: 50%;
font-size: 20px;
cursor: pointer;
z-index: 10;
display: flex;
align-items: center;
justify-content: center;
transition: all 0.3s ease;
}

.christhood-carousel-arrow:hover {
background-color: #F3CC3C;
color: #4B248C;
}

.christhood-carousel-arrow.prev {
left: 10px;
}

.christhood-carousel-arrow.next {
right: 10px;
}

.christhood-carousel-dots {
display: flex;
justify-content: center;
margin-top: 20px;
gap: 10px;
}

.christhood-carousel-dot {
width: 12px;
height: 12px;
border-radius: 50%;
background-color: #ddd;
cursor: pointer;
transition: background-color 0.3s ease;
}

.christhood-carousel-dot.active {
background-color: #4B248C;
}

/* Responsive Design */
@media (max-width: 992px) {
.christhood-testimonial-card {
flex: 0 0 calc(50% - 10px);
}
}

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

.christhood-carousel-arrow {
width: 35px;
height: 35px;
font-size: 18px;
background-color: transparent;
color: #4B248C;
}

.christhood-carousel-arrow:hover {
background-color: transparent;
color: #F3CC3C;
}
}

/* CHRISTHOOD MINISTRIES PAGE */
.christhood-hero {
height: auto;
min-height: 30vh;
width: 100%;
background-color: var(--Royal-purple);
color: var(--text-color);
padding: 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
}

.christhood-hero h1 {
color: var(--text-color);
font-size: var(--title-font);
padding-top: 30px;
line-height: 1.3;
text-transform: uppercase;
}

/* Cover Photo Section */
.christhood-cover {
width: 100%;
height: 100vh;
background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), Url(/image/Christhood-ministries-Mantra.jpg);
background-position: center;
background-size: cover;  
display: flex;
align-items: center;
justify-content: center;
}

/* Body Content */
.christhood-container {
width: 100%;
height: auto;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding: 30px 20px;
margin: 0 auto;
gap: 30px;
max-width: 1200px;
}

.christhood-content {
width: 100%;
font-weight: 400;
color: black;
}

.christhood-content p {
font-size: var(--bodyfont);
text-align: justify;
line-height: 1.6;
margin-bottom: 20px;
}

.christhood-content .christhood-verse {
font-style: italic;
display: block;
padding: 15px;
background-color: rgba(75, 33, 125, 0.1);
border-left: 4px solid var(--Royal-purple);
margin: 20px 0;
}

.christhood-social-section {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
margin-top: 30px;
}

.christhood-btn {
background-color: #4B217D;
color: white;
padding: 12px 25px;
font-size: var(--span-font);
font-weight: bold;
text-decoration: none;
display: inline-block;
clip-path: polygon(0% 0%, 90% 0%, 100% 100%, 0% 100%);
text-align: center;
width: 250px;
margin-bottom: 20px;
}

.christhood-social-icons {
display: flex;
gap: 15px;
margin-top: 15px;
color: white;
flex-wrap: wrap;
justify-content: center;
}

.christhood-social-icon {
width: 40px;
height: 40px;
display: flex;
justify-content: center;
align-items: center;
color: white;
font-size: 24px;
font-weight: bold;
border-radius: 8px;
transition: transform 0.3s ease;
}

.christhood-instagram {
background: linear-gradient(45deg, #833AB4, #FD1D1D, #F56040);
}

.christhood-facebook {
background-color: #1877F2;
}

.christhood-tiktok {
background: linear-gradient(45deg, #69C9D0, #010101, #EE1D52);
}

.christhood-x-twitter {
background-color: #000000;
color: #FFFFFF;
}

.christhood-youtube {
background-color: #FF0000;
}

/* Hover Effect */
.christhood-social-icon:hover {
transform: scale(1.1);
}

/* Animation Classes */
.section-hidden {
opacity: 0;
transform: translateY(50px);
transition: all 1s ease;
}

.section-visible {
opacity: 1;
transform: translateY(0);
}

/* Desktop View */
@media (min-width: 768px) {
.christhood-hero h1 {
font-size: 2.5rem;
padding-top: 80px;
}

.christhood-cover {
height: 70vh;
}

.christhood-container {
flex-direction: row;
align-items: flex-start;
padding: 50px;
}

.christhood-content {
width: 70%;
padding-right: 40px;
}

.christhood-social-section {
width: 30%;
align-items: flex-end;
position: sticky;
top: 20px;
}
}

@media (min-width: 1200px) {
.christhood-cover {
background-size: contain;
}
}

 /* Hero Section */
 .christhood-mission-hero {
     background: linear-gradient(rgba(75, 36, 140, 0.85), rgba(0, 71, 171, 0.9)), url('https://placehold.co/1200x800/4b248c/FFFFFF/png?text=Christhood+Mission') center/cover no-repeat;
     min-height: 60vh;
     display: flex;
     align-items: center;
     justify-content: center;
     text-align: center;
     color: var(--text-color);
     padding: 2rem;
     position: relative;
 }

 .christhood-mission-hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23F3CC3C' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
     opacity: 0.3;
 }

 .christhood-mission-hero-content {
     max-width: 800px;
     z-index: 1;
 }

 .christhood-mission-hero h1 {
     font-size: 3.5rem;
     margin-bottom: 1rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
     font-weight: 700;
    color: #f59e0b;
 }

 .christhood-mission-hero p {
     font-size: 1.5rem;
    color: var(--text-color);
     text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
 }

 /* Mission Sections */
 .mission-section {
    padding: 20px 16px;
    min-height: auto;
 }

 .mission-card {
     max-width: 1000px;
     margin: 0 auto;
     background: white;
     border-radius: 12px;
    padding: 20px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     position: relative;
     overflow: hidden;
 }

 .mission-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 6px;
     height: 100%;
     background: linear-gradient(to bottom, var(--Royal-purple), var(--Primary-Blue));
 }

 .mission-card h2 {
     color: var(--Royal-purple);
     font-size: 2.2rem;
     margin-bottom: 1.5rem;
     position: relative;
     padding-bottom: 0.5rem;
 }

 .mission-card h2::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 60px;
     height: 3px;
     background-color: var(--Gold-color);
 }

 .mission-card>p:first-of-type {
     font-size: 1.2rem;
     margin-bottom: 1.5rem;
     line-height: 1.7;
     color: #333;
 }

 /* Alternate background colors for sections */
 #vision .mission-card::before {
     background: var(--Royal-purple);
 }

 #mission .mission-card::before {
     background: var(--Primary-Blue);
 }

 #doctrinal .mission-card::before {
     background: linear-gradient(to bottom, var(--Primary-Blue), var(--Royal-purple));
 }

 #philosophy .mission-card::before {
     background: linear-gradient(to bottom, var(--Royal-purple), var(--Primary-Blue));
 }

 #faith .mission-card::before {
     background: var(--Gold-color);
 }

 #standards .mission-card::before {
     background: linear-gradient(to bottom, var(--Gold-color), var(--Royal-purple));
 }

 #commitments .mission-card::before {
     background: linear-gradient(to bottom, var(--Primary-Blue), var(--Gold-color));
 }

 /* Read More Button */
 .read-more {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     background: var(--Primary-Blue);
     color: white;
     border: none;
     padding: 0.8rem 1.5rem;
     border-radius: 30px;
     font-weight: 600;
     cursor: pointer;
     transition: all 0.3s ease;
     margin-top: 1rem;
 }

 .read-more:hover {
     background: var(--Royal-purple);
     transform: translateY(-2px);
 }

 .read-more i {
     transition: transform 0.3s ease;
 }

 .read-more.active i {
     transform: rotate(180deg);
 }

 /* Full Content */
 .full-content {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.5s ease;
 }

 .full-content.active {
     max-height: 2000px;
     margin-top: 2rem;
 }

 .full-content p {
     margin-bottom: 1.5rem;
     font-size: 1.1rem;
     line-height: 1.7;
 }

 .full-content ul {
     margin-left: 1.5rem;
     margin-bottom: 1.5rem;
 }

 .full-content li {
     margin-bottom: 1rem;
     line-height: 1.6;
 }

 .full-content strong {
     color: var(--Royal-purple);
 }

 /* Section Background Colors */
 #vision {
     background-color: rgba(75, 36, 140, 0.05);
 }

 #mission {
     background-color: rgba(0, 71, 171, 0.05);
 }

 #doctrinal {
     background-color: rgba(75, 36, 140, 0.03);
 }

 #philosophy {
     background-color: rgba(0, 71, 171, 0.03);
 }

 #faith {
     background-color: rgba(75, 36, 140, 0.05);
 }

 #standards {
     background-color: rgba(0, 71, 171, 0.05);
 }

 #commitments {
     background-color: rgba(75, 36, 140, 0.03);
 }

 /* Responsive Design */
 @media (max-width: 900px) {
     .christhood-mission-hero h1 {
         font-size: 2.8rem;
     }

     .christhood-mission-hero p {
         font-size: 1.3rem;
     }

     .mission-card {
        padding: 20px;
     }

     .mission-card h2 {
         font-size: 1.8rem;
     }
 }

 @media (max-width: 600px) {
     .christhood-mission-hero h1 {
         font-size: 2.2rem;
     }

     .christhood-mission-hero p {
         font-size: 1.1rem;
     }

     .mission-card {
        padding: 16px;
     }

     .mission-card h2 {
         font-size: 1.6rem;
     }

     .mission-card>p:first-of-type {
         font-size: 1.1rem;
     }
 }



/* GIVING PAGE STYLES */
.give-container{
width: 100%;
background-color: var(--Royal-purple);
height: 40vh;
padding: 20px 15px;

}
.give-container h1{
font-size: 3rem;
color: var(--text-color);
text-align: center;
margin-top: 40px;
}
.give-container p{
color: var(--text-color);
padding: 20px 12px;
text-align: center;
}
.christhood-giving-card {
background-color: var(--Background-color);
color: var(--Black-color);
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
overflow: hidden;
max-width: 1200px;

margin: 0 auto;
}

.christhood-giving-header {
background-color: var(--Royal-purple);
color: var(--text-color);
padding: 20px;
text-align: center;
}

.christhood-giving-header h1 {
margin-top: 0;
font-size: 28px;
}

.christhood-scripture {
background-color: var(--Gold-color);
color: var(--Black-color);
padding: 15px;
border-radius: 5px;
margin-top: 15px;
font-style: italic;
}

/* Bank Transfer Details Styling */
.christhood-payment-details {
background-color: white;
padding: 30px;
border-radius: 10px;
margin: 30px auto;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
max-width: 600px;
text-align: center;
border: 1px solid var(--Primary-Blue);
}

.christhood-payment-details h3 {
color: var(--Royal-purple);
font-size: 24px;
margin-bottom: 20px;
display: flex;
align-items: center;
justify-content: center;
gap: 10px;
}

.christhood-payment-info {
background-color: rgba(75, 36, 140, 0.05);
/* Light purple tint */
padding: 25px;
border-radius: 8px;
border-left: 4px solid var(--Gold-color);
}

.christhood-payment-info p {
font-size: 18px;
margin: 15px 0;
color: var(--Black-color);
line-height: 1.6;
}

.christhood-payment-info p strong {
color: var(--Royal-purple);
font-weight: 600;
}

.christhood-copy-btn {
background-color: var(--Primary-Blue);
color: white;
border: none;
padding: 12px 25px;
border-radius: 6px;
cursor: pointer;
margin-top: 20px;
font-size: 16px;
font-weight: 500;
transition: all 0.3s ease;
display: inline-flex;
align-items: center;
gap: 8px;
box-shadow: 0 2px 5px rgba(0, 71, 171, 0.2);
}

.christhood-copy-btn:hover {
background-color: #00367d;
transform: translateY(-2px);
box-shadow: 0 4px 8px rgba(0, 71, 171, 0.3);
}

.christhood-copy-btn:active {
transform: translateY(0);
}

.christhood-copy-btn i {
font-size: 18px; }

.christhood-form-group {
margin-bottom: 20px;
}

.christhood-form-group label {
display: block;
margin-bottom: 8px;
font-weight: bold; }








/*Protocol Ministry*/
    /* Protocol Ministry Specific Styles */
    :root {
        --protocolministry-navy-blue: #0047ab;
        --protocolministry-silver-color: #4b248c;
        --protocolministry-light-gray: #f9f9f9;
        --protocolministry-dark-gray: #2d3748;
        --protocolministry-white: #ffffff;
    }

    /* Intro Section */
    .protocolministry-intro {
        background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(26, 35, 126, 0.8)),
            url('https://source.unsplash.com/random/1200x800/?church,security');
        background-size: cover;
        background-position: center;
        height: 60vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        color: var(--protocolministry-white);
        padding: 0 20px;
    }

    .protocolministry-intro h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }

    .protocolministry-intro h4 {
        font-size: 1.5rem;
        font-weight: 300;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }

    /* Main Content */
    .protocolministry-page {
        padding: 60px 0;
        background-color: var(--protocolministry-white);
    }

    .protocolministry-main-content {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .protocolministry-row {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 40px;
    }

    .protocolministry-main-content-col {
        flex: 1;
        min-width: 300px;
    }

    .protocolministry-main-content-col img {
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        border: 2px solid var(--protocolministry-silver-color);
    }

    .protocolministry-main-content-col p {
        margin-bottom: 20px;
        line-height: 1.8;
        color: var(--protocolministry-dark-gray);
    }

    .protocolministry-main-content-col h4 {
        color: var(--protocolministry-navy-blue);
        margin: 25px 0 15px;
        font-size: 1.5rem;
    }

    .protocolministry-button-btn {
        margin-top: 30px;
    }

    .protocolministry-button-btn a {
        display: inline-block;
        background-color: var(--protocolministry-navy-blue);
        color: var(--protocolministry-white);
        padding: 12px 30px;
        border-radius: 5px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 1px solid var(--protocolministry-silver-color);
    }

    .protocolministry-button-btn a:hover {
        background-color: #0d1a6e;
        transform: translateY(-2px);
    }

    /* Desktop Departments */
    .protocolministry-departments {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 20px;
        display: block;
    }

    .protocolministry-main-banner {
        background-color: var(--protocolministry-navy-blue);
        color: var(--protocolministry-white);
        padding: 15px 25px;
        font-size: 1.3rem;
        margin-bottom: 30px;
        display: inline-block;
        border-radius: 5px;
        border: 1px solid var(--protocolministry-silver-color);
    }

    .protocolministry-departments h3 {
        color: var(--protocolministry-navy-blue);
        margin: 25px 0 10px;
        font-size: 1.4rem;
        border-bottom: 2px solid var(--protocolministry-silver-color);
        padding-bottom: 5px;
    }

    .protocolministry-departments p {
        color: var(--protocolministry-dark-gray);
        line-height: 1.8;
        margin-bottom: 15px;
    }

    /* Mobile Accordion */
    .protocolministry-accord {
        display: none;
        max-width: 1200px;
        margin: 0 auto;
        padding: 20px;
    }

    .protocolministry-accord-item {
        margin-bottom: 15px;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        border: 1px solid var(--protocolministry-silver-color);
    }

    .protocolministry-accord-header {
        background-color: var(--protocolministry-navy-blue);
        color: var(--protocolministry-white);
        padding: 15px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .protocolministry-accord-header h3 {
        font-size: 1.2rem;
        margin: 0;
    }

    .protocolministry-accord-icon {
        font-size: 1.3rem;
        font-weight: bold;
        transition: transform 0.3s ease;
    }

    .protocolministry-accord-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        background-color: var(--protocolministry-light-gray);
    }

    .protocolministry-accord-content p {
        padding: 20px;
        margin: 0;
        color: var(--protocolministry-dark-gray);
        line-height: 1.8;
    }

    .protocolministry-accord-item.active .protocolministry-accord-content {
        max-height: 300px;
    }

    .protocolministry-accord-item.active .protocolministry-accord-icon {
        transform: rotate(45deg);
    }

    /* Responsive Design */
    @media (max-width: 768px) {
        .protocolministry-intro h1 {
            font-size: 2rem;
        }

        .protocolministry-intro h4 {
            font-size: 1.2rem;
        }

        .protocolministry-departments {
            display: none;
        }

        .protocolministry-accord {
            display: block;
        }

        .protocolministry-row {
            flex-direction: column;
            gap: 30px;
        }

        .protocolministry-main-content-col {
            width: 100%;
        }
    }

    @media (max-width: 480px) {
        .protocolministry-intro h1 {
            font-size: 1.7rem;
        }

        .protocolministry-intro h4 {
            font-size: 1rem;
        }
    }

/* Continue Page Styles */
.protocolministry-cont-page-intro {
background: linear-gradient(rgba(26, 35, 126, 0.8), rgba(26, 35, 126, 0.8)),
url('https://source.unsplash.com/random/1200x800/?protocol,church');
background-size: cover;
background-position: center;
height: 50vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
text-align: center;
color: var(--protocolministry-white);
padding: 0 20px;
}

.protocolministry-cont-page-intro h1 {
font-size: 2.5rem;
margin-bottom: 15px;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.protocolministry-cont-page-intro h4 {
font-size: 1.5rem;
font-weight: 300;
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.protocolministry-cont-grid-container {
display: grid;
grid-template-columns: 2fr 1fr;
gap: 40px;
max-width: 1200px;
margin: 40px auto;
padding: 0 20px;
}

.protocolministry-cont-main-content {
background-color: var(--protocolministry-white);
padding: 30px;
border-radius: 8px;
box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
border: 1px solid var(--protocolministry-silver-color);
}

.protocolministry-cont-main-banner {
background-color: var(--protocolministry-navy-blue);
color: var(--protocolministry-white);
padding: 15px 25px;
font-size: 1.3rem;
margin: 40px 0 30px;
display: inline-block;
border-radius: 5px;
border: 1px solid var(--protocolministry-silver-color);
}

.protocolministry-cont-department {
margin-bottom: 40px;
padding-bottom: 20px;
border-bottom: 1px solid #e2e8f0;
}

.protocolministry-cont-department h3 {
color: var(--protocolministry-navy-blue);
margin-bottom: 15px;
border-bottom: 2px solid var(--protocolministry-silver-color);
padding-bottom: 5px;
}

.protocolministry-cont-responsibilities {
margin-left: 20px;
}

.protocolministry-cont-responsibilities h4 {
color: var(--protocolministry-navy-blue);
margin: 20px 0 10px;
font-size: 1.2rem;
}

.protocolministry-cont-phase {
margin-bottom: 30px;
}

.protocolministry-cont-phase h4 {
color: var(--protocolministry-navy-blue);
font-size: 1.2rem;
margin-bottom: 10px;
}

.protocolministry-cont-checklist p {
margin-bottom: 10px;
padding-left: 20px;
position: relative;
}

.protocolministry-cont-checklist p:before {
content: "✓";
position: absolute;
left: 0;
color: var(--protocolministry-navy-blue);
}

.protocolministry-cont-social-sidebar {
background-color: var(--protocolministry-light-gray);
padding: 30px;
border-radius: 8px;
height: fit-content;
position: sticky;
top: 20px;
border: 1px solid var(--protocolministry-silver-color);
}

.protocolministry-cont-social-title {
color: var(--protocolministry-navy-blue);
margin-bottom: 20px;
font-size: 1.5rem;
text-align: center;
border-bottom: 2px solid var(--protocolministry-silver-color);
padding-bottom: 10px;
}

.protocolministry-cont-social-icons {
display: flex;
flex-direction: column;
gap: 15px;
margin-top: 30px;
}

.protocolministry-cont-social-icons a {
color: var(--protocolministry-navy-blue);
font-size: 1.1rem;
transition: all 0.3s ease;
padding: 10px;
border: 1px solid var(--protocolministry-silver-color);
border-radius: 5px;
text-align: center;
}

.protocolministry-cont-social-icons a:hover {
background-color: var(--protocolministry-navy-blue);
color: var(--protocolministry-white);
}

.protocolministry-cont-social-icons i {
margin-right: 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
.protocolministry-cont-grid-container {
grid-template-columns: 1fr;
}

.protocolministry-cont-social-sidebar {
position: static;
margin-top: 40px;
}
}

@media (max-width: 768px) {
.protocolministry-cont-page-intro h1 {
font-size: 2rem;
}

.protocolministry-cont-page-intro h4 {
font-size: 1.2rem;
}
}

@media (max-width: 480px) {
.protocolministry-cont-page-intro h1 {
font-size: 1.7rem;
}

.protocolministry-cont-page-intro h4 {
font-size: 1rem;
}
}

/* Header Section */
.christhood-media-header {
    background: linear-gradient(rgba(75, 36, 140, 0.85), rgba(75, 36, 140, 0.85)),
        url('/image/media-ministry-cover-photo');
    background-size: cover;
    background-position: center;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-color);
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.christhood-media-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(transparent, var(--Background-color));
    z-index: 1;
}

.christhood-media-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease;
}

.christhood-media-header h4 {
    font-size: 1.5rem;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Floating Media Icons Animation */
.media-icons-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.media-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.15);
    font-size: 2rem;
    animation: float 15s linear infinite;
}

/* Main Content */
.mediaministry-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.mediaministry-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.mediaministry-main-content-col {
    flex: 1;
    min-width: 300px;
}

.mediaministry-main-content-col img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.mediaministry-main-content-col img:hover {
    transform: scale(1.03);
}

.mediaministry-main-content-col h4 {
    color: var(--Royal-purple);
    margin: 20px 0 15px;
    font-size: 1.5rem;
    position: relative;
    display: inline-block;
}

.mediaministry-main-content-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--Gold-color);
}

.mediaministry-button-btn a {
    background-color: var(--Gold-color);
    color: var(--Royal-purple);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(243, 204, 60, 0.3);
    margin-top: 20px;
}

.mediaministry-button-btn a:hover {
    background-color: #e6c143;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(243, 204, 60, 0.4);
}

/* Desktop Version - Objectives */
.mediaministry-objectives {
    background: linear-gradient(135deg, var(--Royal-purple), var(--Primary-Blue));
    border-radius: 15px;
    padding: 60px 40px;
    color: var(--text-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.mediaministry-objectives::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(243, 204, 60, 0.1) 0%, transparent 70%);
    z-index: 1;
}

.mediaministry-main-banner {
    background-color: var(--Gold-color);
    color: var(--Royal-purple);
    padding: 12px 25px;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 40px;
    display: inline-block;
    border-radius: 5px;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mediaministry-objectives h3 {
    color: var(--Gold-color);
    margin: 25px 0 15px;
    font-size: 1.4rem;
    position: relative;
    z-index: 2;
}

.mediaministry-objectives p {
    color: var(--text-color);
    opacity: 0.9;
    position: relative;
    z-index: 2;
    margin-bottom: 10px;
}

/* Mobile Accordion */
.mediaministry-accord {
    display: none;
    margin: 40px 0;
}

.mediaministry-accord-item {
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mediaministry-accord-header {
    background: linear-gradient(135deg, var(--Royal-purple), var(--Primary-Blue));
    color: var(--text-color);
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mediaministry-accord-header h3 {
    font-size: 1.2rem;
    margin: 0;
}

.mediaministry-accord-content {
    background-color: var(--Background-color);
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mediaministry-accord-content p {
    padding: 20px 0;
    color: var(--Black-color);
}

.mediaministry-accord-item.active .mediaministry-accord-content {
    max-height: 500px;
}

.mediaministry-accord-item.active .mediaministry-accord-icon {
    transform: rotate(45deg);
}

/* Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

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

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

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

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.1;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .christhood-media-header h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .christhood-media-header {
        height: 60vh;
    }

    .christhood-media-header h1 {
        font-size: 2.2rem;
    }

    .christhood-media-header h4 {
        font-size: 1.2rem;
    }

    .mediaministry-objectives {
        display: none;
    }

    .mediaministry-accord {
        display: block;
    }
}

@media (max-width: 576px) {
    .christhood-media-header h1 {
        font-size: 1.8rem;
    }

    .christhood-media-header h4 {
        font-size: 1rem;
    }

    .mediaministry-row {
        flex-direction: column;
    }

    .mediaministry-objectives,
    .mediaministry-accord {
        padding: 20px;
    }
}

  /* Continue Page Intro */
  .mediaministry-cont-page-intro {
      background: linear-gradient(rgba(75, 36, 140, 0.8), rgba(75, 36, 140, 0.8)),
          url('https: //images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2072&q=80');
      background-size: cover;
      background-position: center;
      height: 50vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: var(--text-color);
      padding: 0 20px;
  }

  .mediaministry-cont-page-intro h1 {
      font-size: 2.8rem;
      margin-bottom: 15px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  }

  .mediaministry-cont-page-intro h4 {
      font-size: 1.5rem;
      font-weight: 300;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  }

  /* Grid Container */
  .mediaministry-cont-grid-container {
      display: grid;
      grid-template-columns: 2fr 1fr;
      gap: 40px;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
  }

  /* Main Content */
  .mediaministry-cont-main-content {
      background-color: var(--text-color);
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  }

  .mediaministry-cont-main-banner {
      background-color: var(--Royal-purple);
      color: var(--text-color);
      padding: 15px 25px;
      font-size: 1.3rem;
      margin: 40px 0 30px;
      display: inline-block;
      border-radius: 5px;
  }

  .mediaministry-cont-team {
      margin-bottom: 40px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--Light-gray);
  }

  .mediaministry-cont-team h3 {
      color: var(--Royal-purple);
      margin-bottom: 15px;
  }

  .mediaministry-cont-responsibilities {
      margin-left: 20px;
  }

  .mediaministry-cont-responsibilities h4 {
      color: var(--Primary-Blue);
      margin: 20px 0 10px;
      font-size: 1.2rem;
  }

  .mediaministry-cont-point h4 {
      color: var(--Primary-Blue);
      font-size: 1.2rem;
      margin: 25px 0 10px;
  }

  /* Sidebar */
  .mediaministry-cont-resources-sidebar {
      background-color: var(--Light-gray);
      padding: 30px;
      border-radius: 8px;
      height: fit-content;
      position: sticky;
      top: 20px;
  }

  .mediaministry-cont-resources-title {
      color: var(--Royal-purple);
      margin-bottom: 20px;
      font-size: 1.5rem;
      text-align: center;
      border-bottom: 2px solid var(--Royal-purple);
      padding-bottom: 10px;
  }

  .mediaministry-cont-resources-links {
      display: flex;
      flex-direction: column;
      gap: 15px;
      margin-top: 30px;
  }

  .mediaministry-cont-resources-links a {
      background-color: var(--text-color);
      color: var(--Royal-purple);
      font-size: 1.1rem;
      transition: all 0.3s ease;
      padding: 12px;
      border: 2px solid var(--Royal-purple);
      border-radius: 5px;
      text-align: center;
      text-decoration: none;
  }

  .mediaministry-cont-resources-links a:hover {
      background-color: var(--Royal-purple);
      color: var(--text-color);
  }

  /* Responsive Design */
  @media (max-width: 992px) {
      .mediaministry-cont-grid-container {
          grid-template-columns: 1fr;
      }

      .mediaministry-cont-resources-sidebar {
          position: static;
          margin-top: 40px;
      }
  }

  @media (max-width: 768px) {
      .mediaministry-cont-page-intro h1 {
          font-size: 2.2rem;
      }

      .mediaministry-cont-page-intro h4 {
          font-size: 1.2rem;
      }
  }

  @media (max-width: 480px) {
      .mediaministry-cont-page-intro h1 {
          font-size: 1.8rem;
      }

      .mediaministry-cont-page-intro h4 {
          font-size: 1rem;
      }

      .mediaministry-cont-main-content {
          padding: 20px;
      }

      .mediaministry-cont-resources-sidebar {
          padding: 20px;
      }
  }

/* Global mobile responsiveness overrides */
img,
video,
iframe,
picture {
    max-width: 100%;
    height: auto;
    display: block;
}

body {
    overflow-wrap: anywhere;
    word-break: break-word;
}

@media (max-width: 1024px) {
    .nav-container,
    .top-bar-container,
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.6rem !important;
    }

    h3 {
        font-size: 1.4rem !important;
    }

    h4 {
        font-size: 1.2rem !important;
    }

    h5 {
        font-size: 1.1rem !important;
    }

    h6 {
        font-size: 1rem !important;
    }

    p,
    li {
        line-height: 1.6;
    }

    section,
    .section-spacing {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .row,
    .poster-row,
    .program-container,
    .home-contact-row,
    .ifc-content-row,
    .men-ministry-row,
    .ladiesministry-row,
    .christhood-counselling-row,
    .missions-content-row,
    .worship-content-row,
    .mediaministry-row,
    .protocolministry-row,
    .christhood-impact-grid,
    .grid-container,
    .jm-two-column {
        flex-direction: column;
        align-items: stretch;
    }

    .christhood-impact-grid,
    .grid-container,
    .men-cont-grid-container,
    .ladies-cont-grid-container,
    .protocolministry-cont-grid-container,
    .mediaministry-cont-grid-container,
    .missions-features-container,
    .missions-schools-container {
        grid-template-columns: 1fr !important;
    }

    .nav-links a,
    .nav-links button,
    .btn,
    button,
    .event-link,
    .portal-btn,
    .icon-bar a,
    .pillars-social-icon,
    .home-copy-text,
    .registration-link-btn {
        min-height: 48px;
        min-width: 48px;
        padding: 14px 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav-links .close-menu-btn {
        display: none;
    }

    .nav-links.active .close-menu-btn {
        display: flex;
    }

    .icon-bar,
    .pillars-social-icons {
        gap: 8px;
    }

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

    form .form-row > * {
        width: 100%;
    }

    input,
    select,
    textarea {
        width: 100%;
        font-size: 16px;
    }

    label {
        display: block;
    }

    .hero-slider,
    .apostle-hero,
    .christhood-hero,
    .christhood-mission-hero,
    .protocolministry-intro,
    .protocolministry-cont-page-intro,
    .mediaministry-cont-page-intro,
    .jm-hero-banner,
    .tlm-hero-v2,
    .christhood-iact-hero,
    .christhood-apologetics-hero,
    .christhood-impact-hero,
    .hero,
    .men-ministry-intro,
    .men-cont-page-intro,
    .ladiesministry-intro,
    .ladies-cont-page-intro,
    .christhood-counselling-intro,
    .christhood-cont-page-intro,
    .creative-cont-page-intro,
    .worship-hero,
    .missions-hero,
    .name-intro,
    .creative-ministry-intro,
    .pillars-hero {
        height: 60vh !important;
        min-height: 50vh !important;
    }
}

@media (max-width: 576px) {
    section,
    .section-spacing,
    .container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

@media (max-width: 400px) {
    h1 {
        font-size: 1.4rem !important;
    }

    h2 {
        font-size: 1.3rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    h4 {
        font-size: 1.1rem !important;
    }

    h5 {
        font-size: 1rem !important;
    }

    h6 {
        font-size: 0.95rem !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media (max-width: 768px) {
    .nav-links .has-dropdown i {
        display: none;
    }

    .nav-chevron {
        display: inline-block;
        width: 18px;
        height: 18px;
        margin-left: auto;
        transition: transform 0.3s ease;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234b248c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: center;
        background-size: contain;
        flex-shrink: 0;
    }

    .has-dropdown.open > a .nav-chevron {
        transform: rotate(180deg);
    }

    .nav-links li > .dropdown,
    .nav-links li > ul {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: max-height 0.3s ease, opacity 0.25s ease;
        padding-left: 1.25rem;
    }

    .nav-links li.open > .dropdown,
    .nav-links li.open > ul {
        max-height: 2000px;
        opacity: 1;
    }

    .has-dropdown {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

.app-splash {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #4b248c 0%, #2d0f5a 55%, #140529 100%);
    color: #ffffff;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.app-splash--hide {
    opacity: 0;
    pointer-events: none;
}

.app-splash__content {
    text-align: center;
    padding: 24px;
}

.app-splash__logo {
    width: 120px;
    height: auto;
    margin: 0 auto 18px;
}

.app-splash__title {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.app-splash__tagline {
    margin-top: 10px;
    font-size: 0.85rem;
    letter-spacing: 0.18em;
    opacity: 0.85;
}

.scroll-top-button {
    position: fixed;
    right: 24px;
    bottom: 32px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: none;
    background: radial-gradient(circle at 30% 30%, #f5dc7a, #f0b92f 55%, #4b248c 100%);
    color: #2a0a4b;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    box-shadow: 0 14px 28px rgba(75, 36, 140, 0.35);
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1200;
}

.scroll-top-button.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.scroll-top-button:hover {
    box-shadow: 0 18px 32px rgba(75, 36, 140, 0.45);
    transform: translateY(-2px);
}

.scroll-top-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

@media (max-width: 576px) {
    .app-splash__logo {
        width: 96px;
    }

    .app-splash__title {
        font-size: 1.1rem;
    }

    .app-splash__tagline {
        font-size: 0.75rem;
    }
}