/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --secondary-gold: #FFD700;
    --deep-blue: #1a237e;
    --dark-blue: #0d47a1;
    --light-blue: #e3f2fd;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --text-gray: #666666;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.2);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    padding: 1rem 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

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

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

.logo-container {
    display: flex;
    gap: 8px;
}

.logo-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--white);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.logo-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
}

.nav-logo h2 {
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 1.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.give-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.give-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold)) !important;
}

.give-btn::after {
    display: none !important;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 1rem 0;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    color: var(--dark-gray);
    padding: 0.5rem 1.5rem;
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--light-blue);
    color: var(--deep-blue);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 80px;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 90%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

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

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    animation: fadeInUp 1s ease 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.prev-btn,
.next-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--white);
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

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

.dot.active {
    background: var(--primary-gold);
    transform: scale(1.2);
}

/* Vision Mission Section */
.vision-mission {
    padding: 5rem 0;
    background: var(--light-gray);
}

.vision-mission .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.vision-card,
.mission-card,
.slogan-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vision-card::before,
.mission-card::before,
.slogan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
}

.vision-card:hover,
.mission-card:hover,
.slogan-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-gold);
    font-size: 2rem;
}

.vision-card h3,
.mission-card h3,
.slogan-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Programs Section */
.programs {
    padding: 5rem 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 10px;
    background: linear-gradient(90deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 2px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.program-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.program-image {
    height: 350px;
    overflow: hidden;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.1);
}

.program-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-content h3 {
    color: var(--deep-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.program-time,
.program-venue {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-description {
    margin: 1rem 0;
    line-height: 1.8;
    flex: 1;
}

.program-btn {
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.program-btn:hover {
    background: linear-gradient(135deg, var(--dark-blue), var(--deep-blue));
    transform: translateY(-2px);
}

/* Enhanced Bible Tools Section */
.bible-tools {
    padding: 5rem 0;
    background: var(--light-gray);
}

.bible-tools-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tool-nav-btn {
    background: var(--white);
    border: 2px solid var(--primary-gold);
    color: var(--deep-blue);
    padding: 1rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow);
}

.tool-nav-btn:hover,
.tool-nav-btn.active {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.tool-nav-btn i {
    font-size: 1.2rem;
}

.tool-content {
    display: none;
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: var(--shadow);
    animation: fadeInUp 0.5s ease;
}

.tool-content.active {
    display: block;
}

.tool-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.tool-header h3 {
    color: var(--deep-blue);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.date-display {
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

/* Daily Devotional Styles */
.devotional-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.verse-of-day {
    background: linear-gradient(135deg, var(--white), var(--white));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.verse-of-day h4 {
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.verse-of-day blockquote {
    font-size: 1.2rem;
    font-style: italic;
    margin: 1rem 0;
    line-height: 1.6;
}

.verse-of-day cite {
    color: var(--primary-white);
    font-weight: 600;
}

.devotional-reading {
    padding: 1rem;
}

.devotional-reading h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.devotional-reading p {
    color: var(--text-white);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.devotional-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.action-btn:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
}

/* Scripture Study Styles */
.scripture-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.scripture-search {
    background: var(--light-gray);
    padding: 1.5rem;
    border-radius: 10px;
}

.search-controls {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.scripture-select,
.scripture-input {
    padding: 0.8rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    flex: 1;
    min-width: 120px;
}

.search-btn {
    background: var(--deep-blue);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--dark-blue);
}

.scripture-display {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.scripture-text {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

.scripture-text h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.scripture-text blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin: 1rem 0;
    color: var(--text-gray);
}

.scripture-notes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.scripture-notes h4 {
    color: var(--deep-blue);
}

.scripture-notes textarea {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    resize: vertical;
    min-height: 150px;
}

.save-notes-btn {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.save-notes-btn:hover {
    background: var(--deep-blue);
}

/* Q&A Styles */
.qa-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.qa-search {
    display: flex;
    gap: 1rem;
}

.qa-search-input {
    flex: 1;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
}

.qa-search-btn {
    background: var(--deep-blue);
    color: var(--white);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.qa-categories {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.qa-cat-btn {
    background: var(--white);
    border: 2px solid var(--light-gray);
    color: var(--text-gray);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.qa-cat-btn:hover,
.qa-cat-btn.active {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.qa-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.qa-item {
    background: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.qa-item:hover {
    border-color: var(--primary-gold);
    box-shadow: var(--shadow);
}

.qa-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    background: var(--light-gray);
}

.qa-question h4 {
    color: var(--deep-blue);
    margin: 0;
}

.qa-toggle {
    background: none;
    border: none;
    color: var(--deep-blue);
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.qa-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    padding: 0 1.5rem;
}

.qa-item.active .qa-answer {
    max-height: 200px;
    padding: 1.5rem;
}

.qa-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.ask-question {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

.ask-question h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.ask-question textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    resize: vertical;
    margin-bottom: 1rem;
}

.submit-question-btn {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-question-btn:hover {
    background: var(--deep-blue);
}

/* Prayer Resources Styles */
.prayer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.prayer-categories {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.prayer-cat-btn {
    background: var(--white);
    border: 2px solid var(--light-gray);
    color: var(--text-gray);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.prayer-cat-btn:hover,
.prayer-cat-btn.active {
    background: var(--primary-gold);
    color: var(--white);
    border-color: var(--primary-gold);
}

.prayer-display {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 10px;
}

.prayer-text h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.prayer-content-text p {
    color: var(--text-gray);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1rem;
}

.prayer-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.prayer-action-btn {
    background: var(--deep-blue);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prayer-action-btn:hover {
    background: var(--dark-blue);
}

.personal-prayer {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--light-gray);
}

.personal-prayer h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.personal-prayer textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    resize: vertical;
    margin-bottom: 1rem;
}

.save-personal-prayer-btn {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.save-personal-prayer-btn:hover {
    background: var(--deep-blue);
}

/* Prayer Requests Section */
.prayer-requests {
    padding: 5rem 0;
    background: var(--white);
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.prayer-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1.1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
    transform: translateY(-2px);
}

/* Upcoming Programs Section */
.upcoming-programs {
    padding: 5rem 0;
    background: var(--light-gray);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.event-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    display: flex;
    gap: 1.5rem;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.event-date {
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    min-width: 85px;
    display: flex;
    flex-direction: column;
    justify-content: center;

}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 600;
}

.event-date .month {
    font-size: 0.9rem;
    opacity: 0.9;

}

.event-details h3 {
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.event-time,
.event-venue {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Bible Study Page Styles */
.bible-hero {
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
    padding: 8rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bible-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.bible-hero-content {
    position: relative;
    z-index: 2;
}

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

.bible-hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.bible-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Bible Tools Navigation */
.bible-tools-nav {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.tools-nav-wrapper {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tool-nav-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.5rem;
    background: var(--light-gray);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    text-decoration: none;
    color: var(--dark-gray);
}

.tool-nav-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.tool-nav-btn.active {
    background: var(--primary-gold);
    color: var(--white);
    box-shadow: var(--shadow);
}

.tool-nav-btn i {
    font-size: 1.5rem;
}

.tool-nav-btn span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Tool Sections */
.tool-section {
    display: none;
    padding: 4rem 0;
    background: var(--light-gray);
}

.tool-section.active {
    display: block;
}

.tool-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tool-header h2 {
    font-size: 2.5rem;
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.tool-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Search Interface */
.search-interface {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.search-methods {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.search-method {
    flex: 1;
    padding: 1.5rem;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-method:hover {
    border-color: var(--primary-gold);
}

.search-method.active {
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.search-method h3 {
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.reference-search,
.keyword-search {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    align-items: center;
}

.bible-select,
.bible-input {
    padding: 0.75rem 1rem;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 150px;
}

.bible-select:focus,
.bible-input:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.search-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-btn:hover {
    background: var(--deep-blue);
    transform: translateY(-2px);
}

/* Search Results */
.search-results {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.results-controls {
    display: flex;
    gap: 0.5rem;
}

.view-mode-btn {
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.view-mode-btn.active {
    background: var(--primary-gold);
    color: var(--white);
}

.welcome-message {
    text-align: center;
    padding: 3rem;
}

.welcome-message h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.quick-links {
    margin-top: 2rem;
}

.quick-links h5 {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.quick-link-btn {
    margin: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--light-blue);
    border: 2px solid var(--deep-blue);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--deep-blue);
}

.quick-link-btn:hover {
    background: var(--deep-blue);
    color: var(--white);
}

/* Scripture Results */
.scripture-result {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1rem;
}

.scripture-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.translation-badge {
    background: var(--primary-gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.scripture-text blockquote {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--deep-blue);
    border-left: 4px solid var(--primary-gold);
    padding-left: 1rem;
    margin: 1rem 0;
}

.scripture-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.action-btn {
    padding: 0.5rem 1rem;
    background: var(--white);
    border: 2px solid var(--primary-gold);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-gold);
    font-size: 0.9rem;
}

.action-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
}

/* Study Tools Grid */
.study-tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.study-tool-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.study-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.tool-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tool-icon i {
    font-size: 2rem;
    color: var(--white);
}

.study-tool-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.study-tool-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.highlight-controls,
.bookmark-controls,
.share-controls {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.highlight-btn,
.bookmark-btn,
.view-bookmarks-btn,
.share-btn,
.export-btn {
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.highlight-btn:hover,
.bookmark-btn:hover,
.view-bookmarks-btn:hover,
.share-btn:hover,
.export-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.highlight-btn.active {
    background: var(--primary-gold);
    color: var(--white);
}

/* Commentary Interface */
.commentary-interface {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.commentary-selector {
    margin-bottom: 2rem;
}

.commentary-selector h3 {
    margin-bottom: 1rem;
    color: var(--deep-blue);
}

.commentary-text {
    background: var(--light-gray);
    border-radius: 12px;
    padding: 2rem;
}

.commentary-text h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.commentary-reference {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Cross Reference Interface */
.cross-reference-interface {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.reference-input {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.reference-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.ref-category h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-gray);
}

.ref-item {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-gold);
}

/* Notes Interface */
.notes-interface {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.notes-sidebar {
    background: var(--light-gray);
    padding: 2rem;
}

.notes-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.new-note-btn {
    padding: 0.5rem 1rem;
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.note-item {
    background: var(--white);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.note-item:hover {
    border-left-color: var(--primary-gold);
}

.note-item.active {
    border-left-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.note-item h4 {
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
}

.note-date {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.notes-editor {
    padding: 2rem;
}

.editor-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.note-title-input {
    font-size: 1.5rem;
    font-weight: 600;
    border: none;
    border-bottom: 2px solid var(--light-gray);
    padding: 0.5rem 0;
    width: 100%;
    max-width: 400px;
}

.note-title-input:focus {
    outline: none;
    border-bottom-color: var(--primary-gold);
}

.editor-controls {
    display: flex;
    gap: 1rem;
}

.save-note-btn,
.delete-note-btn {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.save-note-btn {
    background: var(--primary-gold);
    color: var(--white);
}

.delete-note-btn {
    background: #dc3545;
    color: var(--white);
}

.note-content {
    width: 100%;
    min-height: 400px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    resize: vertical;
}

.note-content:focus {
    outline: none;
    border-color: var(--primary-gold);
}

/* Devotional Content */
.devotional-content {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.devotional-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--light-gray);
}

.devotional-date {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-blue);
}

.devotional-navigation {
    display: flex;
    gap: 1rem;
}

.nav-btn {
    padding: 0.5rem 1rem;
    background: var(--light-gray);
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-btn:hover {
    background: var(--primary-gold);
    color: var(--white);
}

.devotional-body {
    text-align: center;
}

.verse-of-day {
    margin-bottom: 3rem;
}

.verse-of-day h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.verse-of-day blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--deep-blue);
    border-left: 4px solid var(--primary-gold);
    padding-left: 2rem;
    margin: 1.5rem 0;
    text-align: left;
}

.verse-of-day cite {
    color: var(--primary-gold);
    font-weight: 600;
    font-style: normal;
}

.devotional-reflection {
    margin-bottom: 3rem;
    text-align: left;
}

.devotional-reflection h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.devotional-reflection p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.devotional-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Messages */
.message {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: var(--white);
    font-weight: 600;
    z-index: 10000;
    animation: slideIn 0.3s ease;
}

.message-success {
    background: #28a745;
}

.message-error {
    background: #dc3545;
}

.message-info {
    background: var(--primary-gold);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design for Bible Page */
@media (max-width: 768px) {
    .bible-hero h1 {
        font-size: 2.5rem;
    }
    
    .bible-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .tools-nav-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .tool-nav-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .search-methods {
        flex-direction: column;
    }
    
    .reference-search,
    .keyword-search {
        flex-direction: column;
    }
    
    .results-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .study-tools-grid {
        grid-template-columns: 1fr;
    }
    
    .reference-categories {
        grid-template-columns: 1fr;
    }
    
    .notes-interface {
        grid-template-columns: 1fr;
    }
    
    .notes-sidebar {
        order: 2;
    }
    
    .notes-editor {
        order: 1;
    }
    
    .devotional-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .devotional-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-gold);
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--secondary-gold);
    transform: translateY(-3px);
}

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

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

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

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

/* About Page Styles */
.about-hero {
    background: linear-gradient(rgba(26, 35, 126, 0.7), rgba(13, 71, 161, 0.7)), url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.our-story {
    padding: 5rem 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-gray);
}
.below p { border-color: aliceblue;
font-display:auto; color: darkblue; }
.story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.core-values {
    padding: 5rem 0;
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.value-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.leadership {
    padding: 5rem 0;
    background: var(--white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 3rem;
}

.leader-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.leader-image {
    height: 250px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.1);
}

.leader-info {
    padding: 2rem;
}

.leader-info h3 {
    color: var(--deep-blue);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.leader-role {
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.leader-social {
    display: flex;
    gap: 1rem;
}

.leader-social a {
    width: 40px;
    height: 40px;
    background: var(--deep-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.leader-social a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

.statistics {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.testimonials {
    padding: 5rem 0;
    background: var(--light-gray);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    display: contents;
    text-align: center;
}

.testimonial.active {
    display: block;
}

.testimonial-content {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--deep-blue);
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}


        .indicators {
            display: flex;
            gap: 12px;
        }

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

        .indicator.active {
            background: deep blue;
            transform: scale(1.2);
            box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
        }
/* Sermons Page Styles */
.sermons1-hero {
    background: linear-gradient(rgba(26, 35, 126, 0.7), rgba(13, 71, 161, 0.7)), url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.sermons1-nav {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: var(--shadow);
}

.sermons1-tabs {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.sermons1-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--text-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.sermons1-tab.active,
.sermons1-tab:hover {
    color: var(--deep-blue);
    border-color: var(--primary-gold);
    background: rgba(212, 175, 55, 0.1);
}

.sermons1-tab i {
    font-size: 1.5rem;
}

.sermons1-section {
    display: none;
    padding: 5rem 0;
}

.sermons1-section.active {
    display: block;
}

.sermons1-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-select,
.search-input {
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.filter-select:focus,
.search-input:focus {
    outline: none;
    border-color: var(--primary-gold);
}

.search-input {
    flex: 1;
    min-width: 200px;
}

.portfolio-section {
  margin: 3rem 0 2rem 0;
}
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.portfolio-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  padding: 1rem;
  width: 260px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.portfolio-item:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(9,132,227,0.12);
}
.portfolio-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.7rem;
  background: #e0e0e0;
}.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}
 .container {
      max-width: 1100px;
      margin: 2rem auto;
      padding: 0 1rem;
    }
    .videos-section {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 2.5rem;
    }
    .video-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 2px 12px rgba(0,0,0,0.07);
      flex: 1 1 350px;
      min-width: 320px;
      max-width: 500px;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 1.5rem 1rem 1rem 1rem;
      transition: box-shadow 0.2s;
    }
    .video-card:hover {
      box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    }
    .video-thumb {
      width: 100%;
      max-width: 400px;
      border-radius: 8px;
      margin-bottom: 1rem;
      aspect-ratio: 16/9;
      background: #e3e7ee;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .video-thumb img {
      width: 100%;
      height: auto;
      display: block;
    }
    .video-title {
      font-size: 1.3rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: #1a2236;
      text-align: center;
    }
    .video-desc {
      font-size: 1rem;
      color: #555;
      margin-bottom: 1rem;
      text-align: center;
    }
    .video-actions {
      display: flex;
      gap: 1rem;
      margin-bottom: 0.5rem;
    }
    .video-actions a {
      text-decoration: none;
      background: #1a2236;
      color: #fff;
      padding: 0.5rem 1.2rem;
      border-radius: 6px;
      font-weight: 500;
      transition: background 0.2s;
      font-size: 1rem;
    }
    .video-actions a:hover {
      background: #2d3652;
    }
    .download-guide {
      background: #e3e7ee;
      border-radius: 10px;
      padding: 1.5rem 1rem;
      margin-bottom: 2.5rem;
		
    }
    .download-guide h2 {
      margin-top: 0;
      font-size: 1.2rem;
      color: #1a2236;
		margin-left: inherit;
    }
    .download-guide ol {
      margin: 0 0 0 1.2rem;
      padding: 0;
      color: #333;
    }
    .btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 13px rgba(37, 99, 235, 0.3);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

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

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #2563eb;
    outline-offset: 2px;
}

/* Loading states */
.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Success/Error states for forms */
.form-group.success input,
.form-group.success textarea {
    border-color: #10b981;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
}

.form-group .error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
} 
     /* Additional styles for enhanced functionality */
     .video-card.saved {
       border: 2px solid #4CAF50;
     }
     
     .save-btn {
       background: #4CAF50 !important;
       margin-left: 0.5rem;
     }
     
     .save-btn:hover {
       background: #45a049 !important;
     }
     
     .save-btn.saved {
       background: #ff9800 !important;
     }
     
     .save-btn.saved:hover {
       background: #f57c00 !important;
     }
     
     .download-modal {
       display: none;
       position: fixed;
       z-index: 1000;
       left: 0;
       top: 0;
       width: 100%;
       height: 100%;
       background-color: rgba(0,0,0,0.5);
     }
     
     .download-modal-content {
       background-color: #fff;
       margin: 15% auto;
       padding: 2rem;
       border-radius: 10px;
       width: 80%;
       max-width: 500px;
       text-align: center;
     }
     
     .download-modal h2 {
       color: #1a2236;
       margin-bottom: 1rem;
     }
     
     .download-options {
       display: flex;
       flex-direction: column;
       gap: 1rem;
       margin: 1.5rem 0;
     }
     
     .download-option {
       padding: 1rem;
       border: 2px solid #e3e7ee;
       border-radius: 8px;
       cursor: pointer;
       transition: all 0.2s;
     }
     
     .download-option:hover {
       border-color: #1a2236;
       background: #f7f9fa;
     }
     
     .download-option.selected {
       border-color: #1a2236;
       background: #1a2236;
       color: #fff;
     }
     
     .modal-buttons {
       display: flex;
       gap: 1rem;
       justify-content: center;
       margin-top: 1.5rem;
     }
     
     .modal-buttons button {
       padding: 0.8rem 1.5rem;
       border: none;
       border-radius: 6px;
       cursor: pointer;
       font-weight: 500;
       transition: background 0.2s;
     }
     
     .modal-buttons .download-btn {
       background: #4CAF50;
       color: #fff;
     }
     
     .modal-buttons .download-btn:hover {
       background: #45a049;
     }
     
     .modal-buttons .cancel-btn {
       background: #f44336;
       color: #fff;
     }
     
     .modal-buttons .cancel-btn:hover {
       background: #da190b;
     }
.youtube-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.youtube-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}


.youtube-description {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.youtube-btn {
    background: #ff0000;
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.youtube-btn:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.youtube-channel {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--light-gray);
    border-radius: 15px;
}

.subscribe-btn {
    background: #ff0000;
    color: var(--white);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.subscribe-btn:hover {
    background: #cc0000;
    transform: translateY(-3px);
}

/* Gallery Page Styles */
.gallery-hero {
    background: linear-gradient(rgba(26, 35, 126, 0.7), rgba(13, 71, 161, 0.7)), url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.gallery-categories {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: var(--shadow);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-tab {
    padding: 0.8rem 1.5rem;
    border: 2px solid var(--deep-blue);
    background: transparent;
    color: var(--deep-blue);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.category-tab.active,
.category-tab:hover {
    background: var(--deep-blue);
    color: var(--white);
}

.gallery-grid {
    padding: 5rem 0;
    background: var(--light-gray);
}

.photos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.photo-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.photo-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-item:hover img {
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-overlay h3 {
    margin-bottom: 0.5rem;
}

.photo-overlay p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.view-btn {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: var(--secondary-gold);
    transform: scale(1.1);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-caption {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    color: var(--white);
    text-align: center;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.recent-events {
    padding: 5rem 0;
    background: var(--white);
}

.events-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.event-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.event-item::before {
    content: '';
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -3rem;
    width: 2px;
    background: var(--primary-gold);
}

.event-item:last-child::before {
    display: none;
}

.event-date {
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    min-width: 80px;
    height: fit-content;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
}

.event-date .month {
    font-size: 0.9rem;
    opacity: 0.9;
}

.event-content {
    flex: 1;
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

.event-content h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.event-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.event-gallery {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
}

.event-gallery img {
    width: 100px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.event-gallery img:hover {
    transform: scale(1.1);
}

/* Contact Page Styles */
.contact-hero {
    background: linear-gradient(rgba(26, 35, 126, 0.7), rgba(13, 71, 161, 0.7)), url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    margin-top: 80px;
}

.contact-info {
    padding: 5rem 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

/* Online Giving Section Styles */
.online-giving-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
}

.online-giving-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 10px;
}

.online-giving-section .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.giving-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.giving-method-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.giving-method-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.method-icon {
    font-size: 3rem;
    color: var(--primary-gold);
    margin-bottom: 20px;
}

.giving-method-card h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.payment-details {
    margin-bottom: 25px;
}

.payment-details p {
    margin: 8px 0;
    color: rgba(255, 255, 255, 0.9);
}

.payment-details strong {
    color: var(--primary-gold);
}

.payment-btn {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.payment-btn:hover {
    background: var(--secondary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.giving-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.giving-info h3 {
    color: var(--primary-gold);
    text-align: center;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.giving-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.reason-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.reason-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.reason-item i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    width: 30px;
}

.reason-item span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* First Comers Form Styles */
.first-comers-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.first-comers-section .section-title {
    text-align: center;
    margin-bottom: 10px;
}

.first-comers-section .section-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.first-comers-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.first-comers-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 10px;
}

.contact-form-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-form-container h2 {
    color: var(--deep-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-form-container p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.contact-map h3 {
    color: var(--deep-blue);
    font-size: 2rem;
    margin-bottom: 2rem;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.map-info h4 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.map-info p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.ministry-departments {
    padding: 5rem 0;
    background: var(--white);
}

.departments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.department-card {
    background: var(--light-gray);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.department-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.department-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-gold);
    font-size: 2rem;
}

.department-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
}

.department-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.department-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.department-btn:hover {
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
    transform: translateY(-2px);
}

.faq-section {
    padding: 5rem 0;
    background: var(--light-gray);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    color: var(--deep-blue);
    margin: 0;
}

.faq-question i {
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Online Giving Responsive */
    .giving-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .giving-reasons {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .first-comers-form-container {
        padding: 20px;
        margin: 0 20px;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--deep-blue);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-logo {
        gap: 10px;
    }

    .logo-container {
        gap: 5px;
    }

    .logo-circle {
        width: 40px;
        height: 40px;
    }

    .logo-img {
        width: 32px;
        height: 32px;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .tools-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .events-grid {
        grid-template-columns: 1fr;
    }

    .event-card {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .vision-card,
    .mission-card,
    .slogan-card {
        padding: 2rem 1.5rem;
    }

    .prayer-form {
        padding: 2rem 1.5rem;
    }
}

/* Flyers Section Styles */
.flyers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.flyer-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.flyer-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.flyer-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.flyer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.flyer-card:hover .flyer-image img {
    transform: scale(1.1);
}

.flyer-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(26, 35, 126, 0.9);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.flyer-content {
    padding: 25px;
}

.flyer-content h3 {
    color: var(--deep-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.flyer-time,
.flyer-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
}

.flyer-time i,
.flyer-location i {
    color: var(--primary-gold);
    width: 16px;
}

.flyer-description {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 20px;
}

.flyer-actions {
    display: flex;
    gap: 15px;
}

.flyer-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 0.9rem;
}

.flyer-btn.primary {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
}

.flyer-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.flyer-btn.secondary {
    background: var(--light-gray);
    color: var(--dark-gray);
    border: 1px solid var(--text-gray);
}

.flyer-btn.secondary:hover {
    background: var(--text-gray);
    color: var(--white);
}

/* Responsive Flyers */
@media (max-width: 768px) {
    .flyers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .flyer-actions {
        flex-direction: column;
    }
    
    .flyer-btn {
        justify-content: center;
    }
}

/* Online Giving System Styles */
.online-giving {
    background: linear-gradient(135deg, var(--light-blue), var(--white));
    padding: 80px 0;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.giving-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.giving-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.giving-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.giving-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.giving-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.giving-icon i {
    font-size: 2rem;
    color: var(--white);
}

.giving-card h3 {
    color: var(--deep-blue);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.giving-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

.giving-form-container {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
    overflow: hidden;
}

.giving-form {
    padding: 40px;
}

.giving-form h3 {
    color: var(--deep-blue);
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.amount-input-group {
    display: flex;
    gap: 15px;
    align-items: center;
}

.amount-input-group select {
    flex: 0 0 120px;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s ease;
}

.amount-input-group select:focus {
    border-color: var(--primary-gold);
    outline: none;
}

.amount-input-group input {
    flex: 1;
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.amount-input-group input:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.quick-amounts {
    margin: 20px 0;
}

.quick-amounts label {
    display: block;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--dark-gray);
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 10px;
}

.amount-btn {
    padding: 12px 15px;
    border: 2px solid var(--light-gray);
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.amount-btn:hover,
.amount-btn.active {
    border-color: var(--primary-gold);
    background: var(--primary-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.payment-methods {
    margin: 30px 0;
    padding: 25px;
    background: var(--light-gray);
    border-radius: 12px;
}

.payment-methods h4 {
    color: var(--deep-blue);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: 600;
}

.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: var(--white);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-option:hover {
    border-color: var(--primary-gold);
    transform: translateY(-2px);
}

.payment-option input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-gold);
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 500;
    color: var(--dark-gray);
    flex: 1;
}

.payment-option i {
    font-size: 1.2rem;
    color: var(--primary-gold);
    width: 20px;
}

.donate-btn {
    width: 100%;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.donate-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
}

.giving-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Responsive Online Giving */
@media (max-width: 1024px) {
    .giving-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .giving-info {
        order: 2;
    }
    
    .giving-form-container {
        order: 1;
    }
}

@media (max-width: 768px) {
    .online-giving {
        padding: 60px 0;
    }
    
    .giving-form {
        padding: 30px 20px;
    }
    
    .amount-input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .amount-input-group select {
        flex: none;
        width: 100%;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .payment-options {
        grid-template-columns: 1fr;
    }
    
    .giving-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .giving-form {
        padding: 25px 15px;
    }
    
    .amount-buttons {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .giving-stats {
        grid-template-columns: 1fr;
    }
    
    .donate-btn {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
}

/* Notification System */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-hover);
    padding: 20px;
    z-index: 10000;
    transform: translateX(400px);
    transition: all 0.3s ease;
    max-width: 400px;
    border-left: 4px solid var(--primary-gold);
}

.notification.show {
    transform: translateX(0);
}

.notification.success {
    border-left-color: #28a745;
}

.notification.error {
    border-left-color: #dc3545;
}

.notification.info {
    border-left-color: var(--primary-gold);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.notification-content i {
    font-size: 1.5rem;
    color: var(--primary-gold);
}

.notification.success .notification-content i {
    color: #28a745;
}

.notification.error .notification-content i {
    color: #dc3545;
}

.notification-content span {
    flex: 1;
    color: var(--dark-gray);
    font-weight: 500;
}

.notification-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-gray);
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.notification-close:hover {
    background: var(--light-gray);
    color: var(--dark-gray);
}

@media (max-width: 480px) {
    .notification {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
        transform: translateY(-100px);
    }
    
    .notification.show {
        transform: translateY(0);
    }
}

/* Enhanced Hero Sections for Pages */
.about-hero,
.sermons-hero,
.contact-hero,
.gallery-hero {
    height: 70vh;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero::before,
.sermons-hero::before,
.contact-hero::before,
.gallery-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 35, 126, 0.8), rgba(13, 71, 161, 0.7));
    z-index: 1;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease 0.3s both;
}

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

/* Responsive Hero Adjustments */
@media (max-width: 768px) {
    .about-hero,
    .sermons-hero,
    .contact-hero,
    .gallery-hero {
        height: 60vh;
        background-attachment: scroll;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .sermons-hero,
    .contact-hero,
    .gallery-hero {
        height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: 20px;
    border-radius: 15px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.close {
    color: var(--dark-gray);
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 2001;
    transition: color 0.3s ease;
}

.close:hover,
.close:focus {
    color: var(--primary-gold);
}

#videoPlayer {
    width: 100%;
    margin-top: 20px;
}

#videoPlayer iframe {
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Enhanced Button Styles */
.download-btn, .save-btn {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    margin: 0 5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.download-btn:hover, .save-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(212, 175, 55, 0.4);
    background: linear-gradient(135deg, var(--secondary-gold), var(--primary-gold));
}

.youtube-actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.youtube-actions .watch-btn,
.youtube-actions .download-btn,
.youtube-actions .save-btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

/* Enhanced Video Card Styles */
.video-card:hover .video-overlay {
    opacity: 1;
    background: rgba(26, 35, 126, 0.8);
}

/* Sermon Video Styles */
.sermon-video {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--light-gray);
    margin-bottom: 15px;
}

.sermon-video .video-embed {
    width: 100%;
    height: 100%;
}

.sermon-video .video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.sermon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.sermon-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.sermon-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
    white-space: nowrap;
}

.sermon-badge.premium {
    background: linear-gradient(135deg, #ffa502, #ff6348);
    color: var(--white);
}

.sermon-badge.featured {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
}

.sermon-badge.new {
    background: linear-gradient(135deg, #2ed573, #1e90ff);
    color: var(--white);
}

.sermon-badge.trending {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: var(--white);
}

.sermon-badge.special {
    background: linear-gradient(135deg, #a55eea, #8854d0);
    color: var(--white);
}

.sermon-speaker {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sermon-date {
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sermon-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 15px;
}

.sermon-actions .watch-btn.primary {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sermon-actions .watch-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(26, 35, 126, 0.4);
}

/* Enhanced Sermon Card Styles */
.sermon-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--light-gray);
}

.sermon-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.sermon-card .sermon-content {
    padding: 20px;
}

.sermon-card .sermon-description {
    color: var(--text-gray);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.sermon-card .sermon-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.sermon-card .tag {
    background: linear-gradient(135deg, var(--light-blue), #e8f4fd);
    color: var(--deep-blue);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid #d1e7fd;
}

/* Sermon Flyer Styles */
.sermon-flyer {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--light-gray);
    margin-bottom: 15px;
}

.sermon-flyer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sermon-flyer:hover img {
    transform: scale(1.05);
}

.sermon-flyer .flyer-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 20px;
    color: var(--white);
}

.flyer-stats {
    display: flex;
    gap: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.flyer-stats span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sermon-badge.ongoing {
    background: linear-gradient(135deg, #2ed573, #1e90ff);
    color: var(--white);
}

.sermon-badge.upcoming {
    background: linear-gradient(135deg, #ffa502, #ff6348);
    color: var(--white);
}

.sermon-badge.completed {
    background: linear-gradient(135deg, #a55eea, #8854d0);
    color: var(--white);
}

/* YouTube Video Styles */
.youtube-video {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--light-gray);
    margin-bottom: 15px;
}

.youtube-video .video-embed {
    width: 100%;
    height: 100%;
}

.youtube-video .video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.youtube-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.youtube-speaker {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.youtube-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.youtube-meta span {
    color: var(--text-gray);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.youtube-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 15px;
}

.youtube-actions .watch-btn.primary {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.youtube-actions .watch-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(26, 35, 126, 0.4);
}
.youtube-channel {
  background-color: #f0f0f0;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.youtube-channel h3 {
  color: #333;
  font-weight: bold;
  margin-bottom: 10px;
}

.youtube-channel p {
  color: #666;
  font-size: 16px;
  margin-bottom: 20px;
}

.youtube-channel a {
  text-decoration: none;
  color: #337ab7;
  transition: color 0.2s ease;
}

.youtube-channel a:hover {
  color: #23527c;
}

.youtube-channel i {
  font-size: 24px;
  margin-right: 10px;
}
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 15px;
}

.video-overlay .play-btn {
    background: var(--primary-gold);
    color: var(--white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay .play-btn:hover {
    transform: scale(1.1);
    background: var(--secondary-gold);
}

/* Advanced Video Styles */
.video-filters {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.video-filters .filter-select,
.video-filters .search-input {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.video-filters .filter-select:focus,
.video-filters .search-input:focus {
    border-color: var(--primary-gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.video-embed {
    position: relative;
    width: 100%;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    background: var(--light-gray);
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.video-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.video-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 10px;
    white-space: nowrap;
}

.video-badge.live {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: var(--white);
    animation: pulse 2s infinite;
}

.video-badge.featured {
    background: linear-gradient(135deg, var(--primary-gold), var(--secondary-gold));
    color: var(--white);
}

.video-badge.new {
    background: linear-gradient(135deg, #2ed573, #1e90ff);
    color: var(--white);
}

.video-badge.premium {
    background: linear-gradient(135deg, #ffa502, #ff6348);
    color: var(--white);
}

.video-badge.special {
    background: linear-gradient(135deg, #a55eea, #8854d0);
    color: var(--white);
}

.video-badge.trending {
    background: linear-gradient(135deg, #fd79a8, #e84393);
    color: var(--white);
}

.video-speaker {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.video-meta span {
    color: var(--text-gray);
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-stats {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 10px;
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 500;
}

.video-stats span {
    background: rgba(0, 0, 0, 0.7);
    padding: 4px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 3px;
}

.video-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 15px;
}

.video-actions .watch-btn.primary {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    color: var(--white);
    padding: 12px;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.video-actions .watch-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(26, 35, 126, 0.4);
}

.share-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 15px rgba(102, 126, 234, 0.4);
}

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

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

/* Responsive Video Grid */
@media (max-width: 768px) {
    .video-filters {
        flex-direction: column;
        align-items: stretch;
    }
    
    .video-filters .filter-select,
    .video-filters .search-input {
        width: 100%;
    }
    
    .video-actions {
        grid-template-columns: 1fr;
    }
    
    .video-header {
        flex-direction: column;
        gap: 10px;
    }
    
    .video-badge {
        align-self: flex-start;
        margin-left: 0;
    }
    
    .video-meta {
        flex-direction: column;
        gap: 8px;
    }
	
}
