
:root {
    --primary: #1a2a6c;
    --secondary: #b21f1f;
    --accent: #fdbb2d;
    --light: #f8f9fa;
    --dark: #0a0a23;
    --success: #1e8c65;
    --purple: #7b2cbf;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
    color: var(--dark);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(253, 187, 45, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(178, 31, 31, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(26, 42, 108, 0.05) 0%, transparent 30%);
    z-index: -1;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    line-height: 1.2;
}

.navbar {
    background: rgba(231, 229, 229, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
}

.navbar-brand {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.1rem;
    color: var(--primary) !important;
    position: relative;
}

.navbar-brand::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    border-radius: 2px;
}

.navbar-nav .nav-link {
    color: var(--dark) !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
    position: relative;
    font-size: 1.05rem;
}

.navbar-nav .nav-link:hover {
    color: var(--secondary) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    transition: width 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}
video#heroVideo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.6);

}
video#heroVideo::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
    
.hero {
    padding: 120px 0 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 187, 45, 0.15) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
    z-index: 1;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 20px;
}
.container img {
    max-width: 100%;
    height: auto;
}   
.hero h1 {
    font-size: 4.2rem;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    background: linear-gradient(to right, #fff, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: glow 2s infinite alternate;
}

/* @keyframes glow {
    from { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5); }
    to { text-shadow: 0 0 20px rgba(253, 187, 45, 0.7), 0 0 30px rgba(253, 187, 45, 0.5); }
} */

.hero p {
    font-size: 1.5rem;
    margin: 0 auto 45px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    line-height: 1.3;
    max-width: 700px;
}

.btn-watch-live {
    background: linear-gradient(135deg, var(--secondary), #8b1a1a);
    border: none;
    padding: 25px 50px;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50px;
    transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(178, 31, 31, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-watch-live::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-watch-live:hover::before {
    left: 100%;
}

.btn-watch-live:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(178, 31, 31, 0.6);
}

.btn-donate {
    background: linear-gradient(135deg, var(--accent), #e6a700);
    border: none;
    padding: 16px 45px;
    font-weight: 700;
    font-size: 1.3rem;
    border-radius: 50px;
    transition: all 0.4s;
    box-shadow: 0 8px 25px rgba(253, 187, 45, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-left: 25px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-donate::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-donate:hover::before {
    left: 100%;
}

.btn-donate:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(253, 187, 45, 0.6);
}

.section {
    padding: 40px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 25px;
}

.section-title h2 {
    font-size: 2.8rem;
    display: inline-block;
    background: linear-gradient(to right, var(--primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    border-radius: 10px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 30px;
    height: 100%;
    position: relative;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.03) 0%, rgba(178, 31, 31, 0.03) 100%);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
    z-index: 2;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card .card-body {
    padding: 35px;
}

.service-card h3 {
    margin-bottom: 25px;
    color: var(--primary);
    position: relative;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
    border-radius: 10px;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card ul li {
    display: flex;
    margin-bottom: 18px;
    align-items: flex-start;
}

.service-card ul li i {
    color: var(--secondary);
    margin-right: 15px;
    min-width: 28px;
    font-size: 1.1rem;
    margin-top: 4px;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 2.8rem;
    color: white;
    box-shadow: 0 10px 25px rgba(26, 42, 108, 0.3);
    position: relative;
    z-index: 1;
    transition: all 0.4s;
}

.feature-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--accent), var(--secondary));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.feature-card:hover .feature-icon::before {
    opacity: 1;
}

.feature-card {
    text-align: center;
    padding: 120px 30px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.feature-card h4 {
    margin: 25px 0 20px;
    color: var(--primary);
    font-size: 1.6rem;
}

.highlight-bg {
    background: linear-gradient(135deg, #f0f4ff 0%, #fff9e6 100%);
    position: relative;
    overflow: hidden;
}

.highlight-bg::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(253, 187, 45, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.highlight-bg::after {
    content: "";
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(178, 31, 31, 0.1) 0%, transparent 70%);
    z-index: 0;
}

.pastor-card {
    text-align: center;
    /* margin-bottom: 30px; */
    padding: 120px 20px 30px;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.pastor-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.pastor-img {
    width: 190px;
    height: 190px;
    object-fit: cover;
    margin: -95px auto 25px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
}

.gallery-img {
    height: 280px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 10px;
    transition: all 0.5s;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.gallery-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(26, 42, 108, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-img:hover::before {
    opacity: 1;
}

.gallery-img:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.payment-method {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.payment-method::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--secondary), var(--accent));
}

.payment-method:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.payment-method i {
    font-size: 4rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.text-secondary {
    color: red;
    font-weight: 600;
    font-size: 1.2rem;
}
.payment-method h4 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 1.7rem;
}

.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: rgba(255, 255, 255, 0.95);
    padding: 90px 0 50px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(253, 187, 45, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 85% 80%, rgba(178, 31, 31, 0.15) 0%, transparent 30%);
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
}

.footer h5 {
    color: white;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--accent), var(--secondary));
    border-radius: 10px;
}

.footer a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s;
    display: block;
    margin-bottom: 14px;
    font-weight: 500;
    position: relative;
    padding-left: 25px;
    font-size: 1.05rem;
}

.footer a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    color: var(--accent);
    font-size: 1.2rem;
}

.footer a:hover {
    color: white;
    transform: translateX(8px);
    padding-left: 30px;
}

.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: all 0.4s;
    text-decoration: none;
    font-size: 1.4rem;
    border: 2px solid transparent;
}

.social-icons a:hover {
    background: transparent;
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-8px) rotate(10deg);
}

.footer-contact p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
}

.footer-contact i {
    margin-right: 18px;
    min-width: 28px;
    color: var(--accent);
    font-size: 1.3rem;
    margin-top: 4px;
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 35px;
    margin-top: 60px;
    text-align: center;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.design-credit {
    color: var(--accent);
    font-weight: 700;
    font-style: italic;
    font-size: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(253, 187, 45, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.7; }
    50% { opacity: 1; }
    100% { opacity: 0.7; }
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 14px 32px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.4s;
    font-size: 1.15rem;
    background: white;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(26, 42, 108, 0.1), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-outline-custom:hover::before {
    left: 100%;
}

.btn-outline-custom:hover {
    color: white;
    background: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(26, 42, 108, 0.3);
}

.accordion-button {
    background-color: white;
    color: var(--primary);
    font-weight: 700;
    border: none;
    border-radius: 12px !important;
    padding: 18px 25px;
    font-size: 1.2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(26, 42, 108, 0.1), rgba(123, 44, 191, 0.1));
    color: var(--primary);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.accordion-button::after {
    background-image: url("image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231a2a6c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    width: 1.5rem;
    height: 1.5rem;
}

.accordion-body {
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 0 0 12px 12px;
    padding: 25px;
}

.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .copyright {
        flex-direction: column;
        text-align: center;
    }
    
    .design-credit {
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.6rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .btn-watch-live, .btn-donate {
        display: block;
        width: 100%;
        margin: 12px 0;
        margin-left: 0;
    }
    
    .section {
        padding: 30px 0;
    }
    
    .section-title h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 150px 0 90px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .feature-icon {
        width: 80px;
        height: 80px;
        font-size: 2.2rem;
    }
}



/* .blocks-wrapper img {
max-width: 100%;
height: auto;
display: block;
} */













/* @media (max-width: 992px) {
    .hero h1 {
        font-size: 3.2rem;
    }
} */















/* .aboutrccgnationwide{
    display: grid; grid-template-columns: 2fr 400px; gap: 20px; align-items: start; padding: 0 15px; border: 1px solid rgb(219, 218, 218);
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1); border-radius: 8px; margin: 5px; padding-top: 20px; background-color: #ffffff;
} */
#container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    border: 1px solid lightslategray;
}