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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: #fafafa;
}

/* Typography improvements */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.02em;
}

p {
    font-weight: 400;
    letter-spacing: 0.01em;
}

/* Header Styles */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    color: #333;
}

.logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.logo h1 {
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.2;
}

.navlist {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navlist a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navlist a:hover {
    color: #ff6b35;
}

/* Dropdown Menu Styles */
.navlist li {
    position: relative;
}

.drop-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
}

.drop-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.drop-menu li {
    margin: 0;
}

.drop-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: #333;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.drop-menu a:last-child {
    border-bottom: none;
}

.drop-menu a:hover {
    background: #f8f9fa;
    color: #ff6b35;
    padding-left: 2rem;
}

/* Show dropdown on hover */
.navlist li:hover .drop-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Mobile dropdown styles */
.mobile-item {
    display: none;
}

@media (max-width: 768px) {
    .desktop-item {
        display: none;
    }
    
    .mobile-item {
        display: block;
    }
    
    .drop-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin: 0;
        padding: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .drop-menu::before {
        display: none;
    }
    
    .drop-menu a {
        padding: 0.5rem 2rem;
        border-bottom: 1px solid #e9ecef;
    }
    
    .drop-menu a:hover {
        padding-left: 2rem;
    }
    
    /* Show dropdown when checkbox is checked */
    #showDropAboutus:checked ~ .drop-menu {
        max-height: 300px;
    }
    
    /* Mobile dropdown styling */
    .drop-menu {
        background: #f8f9fa;
        margin: 0.5rem 0 0.5rem 1.5rem;
        border-left: 3px solid #ff6b35;
        border-radius: 0 8px 8px 0;
        box-shadow: inset 2px 0 5px rgba(0,0,0,0.1);
    }
    
    .drop-menu a {
        padding: 0.75rem 1rem;
        font-size: 0.95rem;
        color: #666;
        border-bottom: 1px solid #e9ecef;
    }
    
    .drop-menu a:last-child {
        border-bottom: none;
    }
    
    .drop-menu a:hover {
        background: #e9ecef;
        color: #ff6b35;
        padding-left: 1.5rem;
    }
    
    /* Mobile About Us label styling */
    .mobile-item {
        cursor: pointer;
        position: relative;
    }
    
    .mobile-item::after {
        content: '▼';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-size: 0.8rem;
        color: #ff6b35;
        transition: transform 0.3s ease;
    }
    
    #showDropAboutus:checked ~ .mobile-item::after {
        transform: translateY(-50%) rotate(180deg);
    }
}

/* Hide radio buttons and checkboxes */
input[type="radio"], input[type="checkbox"] {
    display: none;
}

/* Show hamburger menu button on mobile */
.menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #333;
}

/* Additional hamburger menu styles */
.navbar .btn {
    color: #000000;
    font-size: 20px;
    cursor: pointer;
    display: none;
}

.navbar .btn.close-btn {
    position: absolute;
    right: 30px;
    top: 10px;
    display: none;
}

nav input {
    display: none;
}

/* Mobile menu styles */
.menu-btn, .close-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Mobile navigation */
@media (max-width: 768px) {
    .navbar .navlist {
        position: fixed;
        height: 100vh;
        width: 100%;
        max-width: 350px;
        top: 0;
        left: -100%;
        background: #bdbdbd;
        display: flex !important;
        flex-direction: column;
        padding: 50px 10px;
        line-height: 50px;
        overflow-y: auto;
        box-shadow: 0px 15px 15px rgba(0, 0, 0, 0.18);
        transition: all 0.3s ease;
        z-index: 9999;
    }
    
    /* Show menu when menu-btn is checked */
    #menu-btn:checked ~ .navlist {
        left: 0 !important;
    }
    
    /* Hide menu when close-btn is checked */
    #close-btn:checked ~ .navlist {
        left: -100% !important;
    }
    
    .navlist li {
        margin: 1rem 0;
        text-align: center;
        list-style: none;
    }
    
    .navlist a {
        font-size: 1.2rem;
        padding: 0.5rem 1rem;
        display: block;
        color: #333;
        text-decoration: none;
    }
    
    .navlist a:hover {
        background: rgba(255,255,255,0.2);
        border-radius: 5px;
    }
    
    .close-btn {
        position: absolute;
        top: 20px;
        right: 20px;
        display: block !important;
        cursor: pointer;
        font-size: 24px;
        color: #000000;
        background: none;
        border: none;
        padding: 10px;
        z-index: 1000;
    }
    
    /* Show hamburger menu button on mobile */
    .menu-btn {
        display: block !important;
        cursor: pointer;
        background: none;
        border: none;
        padding: 0.5rem;
        font-size: 1.5rem;
        color: #333;
        z-index: 1000;
        position: relative;
    }
    
    /* Mobile navigation display */
    .navlist {
        display: block;
    }
    
    .navlist.active {
        display: block;
    }
    
    /* Mobile dropdown styling */
    .navlist .drop-menu {
        position: static;
        opacity: 1;
        top: 65px;
        visibility: visible;
        padding-left: 20px;
        width: 100%;
        max-height: 0px;
        overflow: hidden;
        box-shadow: none;
        transition: all 0.3s ease;
    }
    
    #showDropAboutus:checked ~ .drop-menu {
        max-height: 100%;
    }
    
    #showDrop:checked ~ .drop-menu {
        max-height: 100%;
    }
    
    #showDropMinistries:checked ~ .drop-menu {
        max-height: 100%;
    }
    
    .navlist .desktop-item {
        display: none;
    }
    
    .navlist .mobile-item {
        display: block;
        color: #000000;
        font-size: 20px;
        font-weight: 500;
        padding-left: 20px;
        cursor: pointer;
        border-radius: 5px;
        transition: all 0.3s ease;
    }
    
    /* Ensure all nav items are visible */
    .navlist li {
        display: block;
        margin: 0;
        text-align: left;
    }
    
    .navlist a {
        display: block;
        padding: 10px 20px;
        color: #000000;
        text-decoration: none;
        font-size: 18px;
        border-bottom: 1px solid #999;
    }
    
    .navlist a:hover {
        background: #3A3B3C;
        color: #d1d1d1;
    }
    
    .navlist .mobile-item:hover {
        background: #3A3B3C;
        color: #d1d1d1;
    }
    
    .drop-menu li {
        margin: 0;
    }
    
    .drop-menu li a {
        border-radius: 5px;
        font-size: 18px;
    }
}

/* Hero Section */
#landing {
    margin-top: 80px;
    position: relative;
    height: 92vh;
    overflow: hidden;
}

#slider-wrap {
    position: relative;
    height: 100%;
}

#slider {
    list-style: none;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 10%;
    color: white;
    background: linear-gradient(135deg, rgba(128, 0, 128, 0.7), rgba(255, 105, 180, 0.7));
}

.slide.showing {
    opacity: 1;
}

.slide h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-text p:nth-of-type(3){
    color: rgb(244, 146, 110);
}

.theme-text {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Slider Controls */
#prev, #next {
    position: absolute;
    bottom: 50px;
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 5px;
    transition: background 0.3s ease;
}

#prev:hover, #next:hover {
    background: rgba(255,255,255,0.3);
}

#prev {
    left: 10%;
}

#next {
    right: 10%;
}

#slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: white;
}

/* Welcome Section */
#aboutus {
    padding: 5rem 5%;
    background: white;
}

.about {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.welcome h1, .ouryear h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    line-height: 1.2;
    margin-top: 0;
}

.welcome {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.ouryear {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.youtube-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 70%;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    margin-top: 1rem;
    min-height: 400px;
}

.youtube-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.ouryear h1 span {
    font-size: 1.5rem;
    color: #666;
    font-weight: 400;
    display: block;
    margin-top: 0.5rem;
}

.ouryear p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Verse of the Day Section */
#dailybibleverse {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    padding: 5rem 5%;
    position: relative;
    overflow: hidden;
}

.dailybibleverse {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.verseoftheday h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
    text-align: center;
}

#dailyVersesWrapper {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    font-size: 1.3rem;
    line-height: 1.6;
    color: #333;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    position: relative;
}

#dailyVersesWrapper span {
    font-size: 4rem;
    color: #1e3c72;
    position: absolute;
    top: -10px;
    left: 20px;
}

#dailyVersesWrapper a {
  color: orangered;
}

.bibleimg img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Team Section */
#theteam {
    padding: 5rem 5%;
    background: white;
}

.theteam {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.teamcontainer, .servicetime, .zoomlink {
    text-align: center;
}

.teamcontainer h1, .servicetime h1, .zoomlink h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.line {
    width: 60px;
    height: 4px;
    background: #ff6b35;
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.serviceline {
    width: 60px;
    height: 4px;
    background: #ff6b35;
    margin: 0 0 2rem 0;
    border-radius: 2px;
}

.teampix img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.teamtext h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.teamtext p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.servicedays {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.servicedays h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.servicedays p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.zoomlink h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.zoomlink p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.zoomlink a {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.zoomlink a:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* About RCCG Section */
#aboutrccg {
    background: linear-gradient(135deg, #8B4513, #A0522D);
    padding: 5rem 5%;
}

.aboutrccg {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.goimg {
    background: url('../images/eadeboye.jpeg') no-repeat center center;
    background-size: cover;
    height: 500px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.rccg h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.rccg p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: white;
    text-align: justify;
}

/* Contact Section */
#contactus {
    padding: 5rem 5%;
    background: white;
    border-top: 3px solid #1e3c72;
}

.contactus {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.address h1, .donation h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e3c72;
}

.contactline, .donationline {
    width: 60px;
    height: 4px;
    background: #ff6b35;
    margin-bottom: 2rem;
    border-radius: 2px;
}

.address ul {
    list-style: none;
}

.address li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #666;
}
.address i {
    color: #1e3c72;
    min-width: 24px;
    font-size: 1.5em;
}
.address a, .address p {
    margin: 0;
    padding: 0;
    display: inline;
}

.address a {
    color: #1e3c72;
    text-decoration: none;
}

.address a:hover {
    text-decoration: underline;
}

.donation p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.donation span {
    font-style: italic;
    color: #1e3c72;
}

.donation h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.donation ul {
    list-style: none;
}

.donation li {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

/* Footer */
footer {
    background: #f8f9fa;
    padding: 2rem;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    border-top: 1px solid #e9ecef;
}

/* Additional enhancements */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    margin: 0 auto;
    width: 80%;
    max-width: 800px;
}

/* Focus states for accessibility */
a:focus, button:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    header, footer, #prev, #next, #slider-dots {
        display: none;
    }
    
    body {
        background: white;
    }
    
    .slide {
        position: static;
        opacity: 1;
        height: auto;
        padding: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 3%;
    }
    
    .logo h1 {
        font-size: 1rem;
    }
    
    .navlist {
        display: none;
    }
    
    .menu-btn {
        display: block;
    }
    
    .slide h1 {
        font-size: 2.5rem;
    }
    
    .slide h2 {
        font-size: 2rem;
    }
    
    .slide p {
        font-size: 1rem;
    }
    
    .about, .dailybibleverse, .theteam, .aboutrccg, .contactus {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .welcome, .ouryear {
        text-align: center;
        align-items: center;
    }
    
    .welcome h1, .ouryear h1 {
        text-align: center;
    }
    
    .ouryear p {
        text-align: left;
    }
    
    .youtube-container {
        min-height: 300px;
        padding-bottom: 56.25%;
    }
    
    .welcome h1, .ouryear h1, .verseoftheday h1, .teamcontainer h1, 
    .servicetime h1, .zoomlink h1, .rccg h1, .address h1, .donation h1 {
        font-size: 2rem;
    }
    
    .goimg {
        height: 300px;
    }
    
    #prev, #next {
        bottom: 30px;
        padding: 8px 16px;
        font-size: 0.9rem;
    }
    
    #prev {
        left: 5%;
    }
    
    #next {
        right: 5%;
    }
}

@media (max-width: 480px) {
    .slide h1 {
        font-size: 2rem;
    }
    
    .slide h2 {
        font-size: 1.5rem;
    }
    
    .slide {
        padding: 0 5%;
    }
    
    .about, .dailybibleverse, .theteam, .aboutrccg, .contactus {
        padding: 3rem 3%;
    }
    
    .teampix img {
        width: 150px;
        height: 150px;
    }
    
    .goimg {
        height: 250px;
    }
}

/* Animation for slides */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.slide.showing {
    animation: fadeIn 0.5s ease-in-out;
}

/* Additional animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations to sections */
.welcome, .ouryear {
    animation: slideInLeft 0.8s ease-out;
}

.verseoftheday, .bibleimg {
    animation: slideInUp 0.8s ease-out;
}

.teamcontainer, .servicetime, .zoomlink {
    animation: slideInUp 0.8s ease-out;
}

.goimg, .rccg {
    animation: slideInRight 0.8s ease-out;
}

.address, .donation {
    animation: slideInUp 0.8s ease-out;
}

/* Hover effects */
.teampix img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.servicedays:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.zoomlink a:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Loading animation */
@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.5; }
    100% { opacity: 1; }
}

.loading {
    animation: pulse 1.5s infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #ff6b35;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #e55a2b;
}

/* About Us Page Styles */
#sectionlanding {
    margin-top: 80px;
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.sectioncontainer {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.sectionclassone h1, .sectionclasstwo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1e3c72;
    line-height: 1.2;
}

.sectionline {
    width: 60px;
    height: 4px;
    background: #1e3c72;
    margin-bottom: 2rem;
    border-radius: 2px;
}

.sectionclassone p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: justify;
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.sectionservicedays {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #1e3c72;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

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

.sectionservicedays h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1e3c72;
}

.sectionservicedays p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0.3rem;
}

.sectionzoomlink {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 15px;
    color: white;
}

.sectionzoomlink h1 {
    color: white;
    margin-bottom: 1rem;
}

.sectionzoomlink h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.sectionzoomlink p {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.sectionzoomlink a {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.sectionzoomlink a:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Responsive Design for About Us Page */
@media (max-width: 768px) {
    .sectioncontainer {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .sectionclassone h1, .sectionclasstwo h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .sectionline {
        margin: 0 auto 2rem;
    }
    
    .sectionclassone p {
        text-align: left;
    }
    
    .sectionzoomlink {
        text-align: center;
    }
}

@media (max-width: 480px) {
    #sectionlanding {
        padding: 3rem 3%;
    }
    
    .sectioncontainer {
        gap: 2rem;
    }
    
    .sectionclassone h1, .sectionclasstwo h1 {
        font-size: 1.8rem;
    }
    
    .sectionclassone p {
        font-size: 1rem;
    }
}

/* Ministries Page Specific Styles */
.sectionclassone h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e3c72;
    margin: 2rem 0 1rem 0;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.sectionclassone h4:first-of-type {
    margin-top: 0;
}

/* Events Page Specific Styles */
.watchthisspace {
    display: block;
    margin: 2rem auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

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

/* Contact Page Specific Styles */
.map {
    width: 100%;
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.map iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 15px;
}

/* Mission & Vision Page Specific Styles */
.bullet-points {
    list-style: none;
    padding: 0;
}

.bullet-points li {
    position: relative;
    padding: 1rem 0 1rem 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    border-left: 4px solid #1e3c72;
    background: white;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.bullet-points li:hover {
    background: #e9ecef;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.bullet-points li::before {
    content: '▶';
    position: absolute;
    left: 0.5rem;
    top: 1rem;
    color: #ff6b35;
    font-size: 0.8rem;
}

/* Our Beliefs Page Specific Styles */
.belief-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    border-left: 5px solid #1e3c72;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.belief-section h3 {
    color: #1e3c72;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.belief-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Our Values Page Specific Styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-top: 4px solid #ff6b35;
    transition: all 0.3s ease;
}

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

.value-card h4 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Our History Page Specific Styles */
.history-timeline {
    position: relative;
    padding-left: 2rem;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #1e3c72, #ff6b35);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #1e3c72;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 1.5rem;
    width: 12px;
    height: 12px;
    background: #ff6b35;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #1e3c72;
}

.timeline-item h4 {
    color: #1e3c72;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-item p {
    color: #555;
    line-height: 1.6;
}

/* Enhanced Page Headers */
.page-header {
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: white;
    padding: 3rem 5%;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Enhanced Content Sections */
.content-section {
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f0f2f5, #e3e6ea);
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced Sidebar */
.enhanced-sidebar {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #1e3c72;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.enhanced-sidebar h2 {
    color: #1e3c72;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

/* Responsive Enhancements for All Pages */
@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .belief-section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .timeline-item {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .map iframe {
        height: 300px;
    }
    
    .bullet-points li {
        padding: 0.8rem 0 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .bullet-points li::before {
        left: 0.3rem;
        top: 0.8rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 2rem 3%;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .content-section {
        padding: 2rem 3%;
    }
    
    .enhanced-sidebar {
        padding: 1.5rem;
    }
    
    .map iframe {
        height: 250px;
    }
}

/* Animation Enhancements */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Apply animations to page elements */
.sectionclassone {
    animation: slideInFromLeft 0.8s ease-out;
}

.sectionclasstwo {
    animation: slideInFromRight 0.8s ease-out;
}

.bullet-points li {
    animation: fadeInUp 0.6s ease-out;
}

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

.value-card {
    animation: fadeInUp 0.6s ease-out;
}

.timeline-item {
    animation: slideInFromLeft 0.6s ease-out;
}

.belief-section {
    animation: fadeInUp 0.6s ease-out;
}
