:root {
            --primary-color: #E6C98E;
            --secondary-color: #8B4513;
            --dark-color: #333;
            --light-color: #f9f9f9;
            --accent-color: #5D4037;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
            color: var(--dark-color);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        /* Navigation */
        .navbar {
            background-color: var(--secondary-color);
            padding: 15px 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.2rem;
        }
        
        .logo-img {
            width: 50px;
            height: 50px;
            margin-right: 12px;
            border-radius: 50%;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 25px;
            position: relative;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--primary-color);
        }
        
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
            z-index: 1;
            border-radius: 5px;
            padding: 10px 0;
        }
        
        .dropdown:hover .dropdown-content {
            display: block;
        }
        
        .dropdown-content li {
            margin: 0;
            padding: 8px 15px;
        }
        
        .dropdown-content a {
            color: var(--dark-color);
            display: block;
        }
        
        .dropdown-content a:hover {
            color: var(--primary-color);
            background-color: #f1f1f1;
        }
        
        .menu-icon {
            display: none;
            cursor: pointer;
            color: white;
            font-size: 24px;
            padding: 10px;
        }
        
        /* Hero Section */
        .hero-section {
            text-align: center;
            padding: 100px 20px;
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/church\ 1.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            position: relative;
        }
        
        .hero-section h1 {
            font-size: 2.8rem;
            margin-bottom: 20px;
            animation: fadeIn 1.5s ease-out;
        }
        
        .hero-section p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: var(--primary-color);
            color: var(--dark-color);
            padding: 12px 30px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            margin: 10px;
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            background-color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }
        
        /* Video Section */
        .video-container {
            max-width: 800px;
            margin: 60px auto;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .video-container iframe {
            width: 100%;
            height: 450px;
            border: none;
        }
        
        /* Section Headers */
        .section-header {
            font-size: 1.8rem;
            color: #2c3e50;
            text-align: center;
            margin-top: 2rem;
            margin-bottom: 1rem;
            position: relative;
            font-weight: bold;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }
.ad-banner {
    background-color: #f5f5f5;
    padding: 5px 0;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

.ad-banner img {
    border-radius: 5px;
    transition: transform 0.3s;
}

.ad-banner img:hover {
    transform: scale(1.01);
}
        
        /* Monthly Program Box */
        .program-box-container {
            max-width: 900px;
            margin: 2rem auto;
            padding: 1.5rem;
            background: #fefefe;
            border-radius: 15px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .program-box-container:hover {
            transform: scale(1.01);
        }
        
        .program-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            list-style: none;
            padding: 0;
            margin: 1rem 0 0;
        }
        
        .program-item {
            background-color: #3498db;
            color: white;
            padding: 0.6rem 1.2rem;
            border-radius: 30px;
            font-size: 1rem;
            box-shadow: 0 4px 10px rgba(52, 152, 219, 0.2);
            transition: background 0.3s ease;
        }
        
        .program-item:hover {
            background-color: #2980b9;
        }
        
        /* Weekly Program Box */
        .program-box ul {
            list-style: none;
            padding: 0;
            margin: 1rem 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }
        
        .program-box .program-item {
            background-color: #2ecc71;
            color: white;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            box-shadow: 0 3px 8px rgba(46, 204, 113, 0.2);
            transition: background-color 0.3s ease;
        }
        
        .program-box .program-item:hover {
            background-color: #27ae60;
        }
        
        /* Annual Celebration Notes */
      .image-notes-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('images/church\ 5.jpg');
    background-size: cover;
    background-position: center;
    padding: 2rem 1rem;
    border-radius: 15px;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    color: white; /* Add white text color for better contrast */
}

/* Update the existing circular image to have a white border */
.circular-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
    border: 3px solid white; /* Add white border */
}
        
        .image-notes-wrapper {
            text-align: center;
        }
        
        .image-notes-wrapper p {
            font-size: 1.2rem;
            font-weight: bold;
            color: #2c3e50;
            margin: 1rem 0;
        }
        
        .notes-container {
            margin: 1rem auto;
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 1rem;
        }
        
        .animated-notes {
            list-style: none;
            padding: 0;
            margin: 0 1rem;
            text-align: left;
        }
        
        .animated-notes li {
            background-color: #ecf0f1;
            margin-bottom: 0.5rem;
            padding: 0.5rem 1rem;
            border-left: 5px solid #8e44ad;
            border-radius: 8px;
            font-size: 1rem;
            transition: background-color 0.3s ease;
        }
        
        .animated-notes li:hover {
            background-color: #dfe6e9;
        }
        
        /* Horizontal Stats Section */
        .horizontal-stats {
            padding: 60px 0;
            background: linear-gradient(135deg, #8B4513, #5D4037);
            color: white;
            overflow: hidden;
            position: relative;
        }
        
        .stats-track {
            display: flex;
            width: max-content;
            animation: scroll 30s linear infinite;
        }
        
        .stats-group {
            display: flex;
            gap: 40px;
            padding: 0 40px;
        }
        
        .stat-item {
            min-width: 200px;
            text-align: center;
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s ease;
        }
        
        .stat-item:hover {
            transform: scale(1.05) translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--primary-color);
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(to right, #E6C98E, #ffffff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .stat-label {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            font-size: 1.1rem;
        }
        
        .stat-label i {
            font-size: 1.8rem;
            color: var(--primary-color);
        }
        
        /* Purpose, Mission, Vision Section */
        .pmv-section {
            padding: 80px 0;
            background-color: var(--light-color);
			 margin: 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            color: var(--secondary-color);
            position: relative;
            font-size: 2rem;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background-color: var(--primary-color);
        }
        
        .pmv-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            padding: 0 20px;
        }
        
        .pmv-card {
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            text-align: center;
            transition: transform 0.3s;
        }
        
        .pmv-card:hover {
            transform: translateY(-10px);
        }
        
        .pmv-icon {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .pmv-card h3 {
            color: var(--secondary-color);
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        /* Footer Styles */
        .modern-footer {
            background-color: #1a1a1a;
            color: #ffffff;
            padding: 10px 0 30px;
            font-family: 'Poppins', sans-serif;
            position: relative;
            margin-top: 80px;
        }
        
        .footer-wave {
            position: absolute;
            top: -50px;
            left: 0;
            width: 100%;
            height: 50px;
            overflow: hidden;
        }
        
        .footer-wave svg {
            width: 100%;
            height: 100%;
        }
        
        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 60px;
            margin-bottom: 50px;
        }
        
        .footer-brand {
            display: flex;
            flex-direction: column;
        }
        
        .footer-logo {
            margin-bottom: 25px;
            display: inline-block;
        }
        
        .footer-logo img {
            width: 100%;
            max-width: 160px;
            height: auto;
            transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .footer-logo:hover img {
            transform: scale(1.08);
        }
        
        .footer-description {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            line-height: 1.7;
            margin-bottom: 30px;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .social-link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.05);
            color: #ffffff;
            font-size: 16px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .social-link::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .social-link:hover::after {
            opacity: 1;
        }
        
        .social-link i {
            position: relative;
            z-index: 1;
        }
        
        .social-link:hover {
            color: #1a1a1a;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(230, 201, 142, 0.3);
        }
        
        .footer-links-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
        }
        
        .footer-title {
            font-size: 18px;
            font-weight: 600;
            color: #ffffff;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
        }
        
        .footer-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            border-radius: 3px;
        }
        
        .footer-nav {
            list-style: none;
        }
        
        .footer-nav li {
            margin-bottom: 15px;
        }
        
        .footer-nav a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .link-arrow {
            color: var(--primary-color);
            font-weight: bold;
            transition: transform 0.3s ease;
        }
        
        .footer-nav a:hover {
            color: var(--primary-color);
        }
        
        .footer-nav a:hover .link-arrow {
            transform: translateX(5px);
        }
        
        .footer-contact {
            list-style: none;
        }
        
        .footer-contact li {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            color: #ffffff;
            font-size: 18px;
            margin-top: 3px;
        }
        
        .contact-text {
            display: flex;
            flex-direction: column;
            gap: 3px;
        }
        
        .contact-text span, 
        .contact-text a {
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            line-height: 1.5;
            transition: color 0.3s ease;
        }
        
        .contact-text a:hover {
            color: var(--primary-color);
        }
        
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .footer-copyright {
            color: rgba(255, 255, 255, 0.5);
            font-size: 14px;
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        .animate-fade {
            animation: fadeIn 1s ease-out forwards;
            opacity: 0;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .hero-section h1 {
                font-size: 2.3rem;
            }
            
            .video-container iframe {
                height: 400px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 50px;
            }
        }
        
        @media (max-width: 768px) {
            .menu-icon {
                display: block;
            }
            
            .nav-links {
                display: none;
                position: absolute;
                top: 80px;
                left: 0;
                width: 100%;
                background-color: var(--secondary-color);
                flex-direction: column;
                padding: 20px 0;
                box-shadow: 0 5px 10px rgba(0,0,0,0.1);
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                margin: 10px 0;
                text-align: center;
                padding: 10px;
            }
            
            .dropdown-content {
                position: static;
                display: none;
                width: 80%;
                margin: 10px auto 0;
                box-shadow: none;
                background-color: rgba(255,255,255,0.1);
            }
            
            .dropdown-content li {
                padding: 5px;
            }
            
            .dropdown-content a {
                color: white;
            }
            
            .dropdown:hover .dropdown-content {
                display: none;
            }
            
            .dropdown.active .dropdown-content {
                display: block;
            }
            
            .hero-section {
                padding: 80px 20px;
            }
            
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .hero-section p {
                font-size: 1.1rem;
            }
            
            .stats-group {
                gap: 20px;
                padding: 0 20px;
            }
            
            .stat-item {
                min-width: 160px;
                padding: 20px 15px;
            }
            
            .stat-number {
                font-size: 2.2rem;
            }
            
            .stat-label {
                font-size: 1rem;
            }
            
            .stat-label i {
                font-size: 1.5rem;
            }
            
            .footer-links-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 30px;
            }
        }
        
        @media (max-width: 576px) {
            .video-container iframe {
                height: 250px;
            }
            
            .hero-section h1 {
                font-size: 1.8rem;
            }
            
            .section-title {
                font-size: 1.6rem;
            }
            
            .cta-button {
                display: block;
                margin: 10px auto;
                max-width: 250px;
            }
            
            .footer-links-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-wave {
                top: -30px;
                height: 30px;
            }
            
            .modern-footer {
                padding-top: 60px;
            }
        }
        /* Programs side-by-side layout */
        .programs-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            max-width: 1200px;
            margin: 2rem auto;
        }
        
        .program-box-container {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            margin: 0;
        }
              /* Updated Program Header Styles */
              .section-header {
            font-size: 1.8rem;
            text-align: center;
            margin: 1.5rem 0;
            position: relative;
            padding-bottom: 15px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        /* Monthly Program Header */
        .program-box-container:first-child .section-header {
            color: #8B4513; /* Brown color */
            text-shadow: 1px 1px 2px rgba(139, 69, 19, 0.2);
        }
        
        .program-box-container:first-child .section-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #8B4513, #E6C98E);
            border-radius: 2px;
        }
        
        /* Weekly Program Header */
        .program-box-container:last-child .section-header {
            color: #5D4037; /* Darker brown */
            text-shadow: 1px 1px 2px rgba(93, 64, 55, 0.2);
        }
        
        .program-box-container:last-child .section-header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #5D4037, #BCAAA4);
            border-radius: 2px;
        }
        
        /* Program Items */
        .program-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.75rem;
            list-style: none;
            padding: 0;
            margin: 1.5rem 0 0;
        }
        
        /* Monthly Program Items */
        .program-box-container:first-child .program-item {
            background: linear-gradient(135deg, #8B4513, #A0522D);
            color: white;
            padding: 0.7rem 1.3rem;
            border-radius: 30px;
            font-size: 1rem;
            box-shadow: 0 4px 8px rgba(139, 69, 19, 0.2);
            transition: all 0.3s ease;
            border: 1px solid #E6C98E;
        }
        
        .program-box-container:first-child .program-item:hover {
            background: linear-gradient(135deg, #A0522D, #8B4513);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(139, 69, 19, 0.3);
        }
        
        /* Weekly Program Items */
        .program-box-container:last-child .program-item {
            background: linear-gradient(135deg, #5D4037, #795548);
            color: white;
            padding: 0.8rem 1rem;
            border-radius: 10px;
            box-shadow: 0 4px 8px rgba(93, 64, 55, 0.2);
            transition: all 0.3s ease;
            border: 1px solid #BCAAA4;
        }
        
        .program-box-container:last-child .program-item:hover {
            background: linear-gradient(135deg, #795548, #5D4037);
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(93, 64, 55, 0.3);
        }
        
        .program-box-container:last-child .program-item strong {
            color: #D7CCC8;
        }
        
        /* Container for both programs */
        .programs-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
            max-width: 1200px;
            margin: 2rem auto;
            padding: 0 20px;
        }
        
        .program-box-container {
            flex: 1;
            min-width: 300px;
            max-width: 500px;
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }
        
        .program-box-container:hover {
            transform: translateY(-5px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .programs-container {
                flex-direction: column;
                align-items: center;
                gap: 2rem;
            }
            
            .program-box-container {
                width: 100%;
            }
            
            .section-header {
                font-size: 1.5rem;
            }
        }
        
        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--secondary-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--primary-color);
            transform: translateY(-5px);
        }
        
        /* Improved stats section */
        .horizontal-stats {
            position: relative;
            overflow: hidden;
        }
        
        .stats-track {
            display: flex;
            width: max-content;
            animation: none; /* Remove the automatic scrolling */
        }
        
        .stats-group {
            display: flex;
            gap: 40px;
            padding: 0 40px;
            width: 100%;
            justify-content: center;
        }
        
        .stat-item {
            min-width: 200px;
            text-align: center;
            padding: 25px;
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            transition: all 0.3s ease;
            transform-style: preserve-3d;
        }
        
        .stat-item:hover {
            transform: scale(1.05) translateY(-5px) rotateY(10deg);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .stat-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(230, 201, 142, 0.1), transparent);
            border-radius: 12px;
            z-index: -1;
            transform: translateZ(-1px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .programs-container {
                flex-direction: column;
                align-items: center;
            }
            
            .program-box-container {
                width: 90%;
            }
            
            .stats-group {
                flex-wrap: wrap;
                gap: 20px;
            }
            
            .stat-item {
                min-width: 150px;
                padding: 20px;
            }
        }
        /* Registration Form */
        .registration-section {
            max-width: 800px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .form-container {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 30px;
            color: var(--secondary-color);
            font-size: 2rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-color);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--accent-color);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        .form-row {
            display: flex;
            gap: 20px;
        }
        
        .form-row .form-group {
            flex: 1;
        }
        
        .btn-submit {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: block;
            margin: 30px auto 0;
        }
        
        .btn-submit:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        select.form-control {
            appearance: none;
            background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 15px center;
            background-size: 15px;
        }
        .contact-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }
        
        .contact-info {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .contact-form {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 30px;
            color: var(--secondary-color);
            font-size: 2rem;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-color);
        }
        
        .contact-method {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }
        
        .contact-icon {
            background: var(--primary-color);
            color: var(--secondary-color);
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .contact-details h3 {
            color: var(--accent-color);
            margin-bottom: 5px;
        }
        
        .contact-details p, 
        .contact-details a {
            color: #555;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-details a:hover {
            color: var(--secondary-color);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--accent-color);
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--primary-color);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .btn-submit {
            background: var(--secondary-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: inline-block;
        }
        
        .btn-submit:hover {
            background: var(--primary-color);
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        /* Map Section */
        .map-section {
            max-width: 1200px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .map-container {
            height: 400px;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        /* Content-specific styles that match index.html */
        .content-container {
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .content-post {
            background: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 30px;
        }
        
        .content-post h2 {
            color: var(--secondary-color);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .content-post h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 3px;
            background: var(--primary-color);
        }
        
        .content-post p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--dark-color);
            margin-bottom: 20px;
        }
        
        .content-post img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .content-post img:hover {
            transform: scale(1.02);
        }
        
        /* Image float styles */
        .img-float-left {
            float: left;
            margin-right: 20px;
            margin-bottom: 20px;
            max-width: 50%;
        }
        
        .img-float-right {
            float: right;
            margin-left: 20px;
            margin-bottom: 20px;
            max-width: 50%;
        }
        
        .clearfix::after {
            content: "";
            display: table;
            clear: both;
        }
        
        @media (max-width: 768px) {
            .img-float-left,
            .img-float-right {
                float: none;
                max-width: 100%;
                margin: 20px 0;
            }
        }
        .centered-text {
            text-align: center;
            font-size: 23px;
            margin: 30px 0;
        }
        .education-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            padding: 20px;
            max-width: 1200px;
            margin: 0 auto;
        }
        .education-card {
            width: 300px;
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        .card-image {
            height: 180px;
            overflow: hidden;
        }
        .card-img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        .education-card h3 {
            padding: 15px 15px 5px;
            color: #2c3e50;
        }
        .education-card p {
            padding: 0 15px 15px;
            color: #555;
        }
        .btn {
            display: inline-block;
            margin: 0 15px 15px;
            padding: 8px 15px;
            background: #E6C98E;
            color: white;
            border-radius: 4px;
            text-decoration: none;
        }
        .btn:hover {
            background: #1a252f;
        }
        .photo-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;  /* This makes the image cover the area without distortion */
        }
        .bank-item {
            display: flex;
            align-items: center;
            margin: 15px 0;
            padding: 15px;
            background: #ecf0f1;
            border-radius: 10px;
            transition: background-color 0.3s ease;
        }

        .bank-item:hover {
            background: #dfe6e9;
        }

        .bank-item img {
            width: 50px;
            height: 50px;
            margin-right: 15px;
            border-radius: 50%;
        }

        .account-info {
            flex: 1;
            position: relative;
            font-size: 1.1em;
        }

        .copy-btn {
            background: #3498db;
            border: none;
            color: white;
            cursor: pointer;
            padding: 7px 12px;
            border-radius: 5px;
            font-size: 0.9em;
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            transition: background 0.3s ease;
        }

        .copy-btn:hover {
            background: #2980b9;
        }

        .qr-container {
            text-align: center;
        }

        .qr-container img {
            width: 220px;
            height: 220px;
            margin: 20px 0;
            border-radius: 10px;
            transition: transform 0.3s ease-in-out;
        }

        .qr-container img:hover {
            transform: scale(1.05);
        }

        .qr-container p {
            font-size: 1.1em;
            color: #2c3e50;
        }

        /* Floating Donation Button */
        .floating-donate-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #3498db;
            color: white;
            border: none;
            padding: 15px 30px;
            font-size: 1.2em;
            border-radius: 50%;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
            cursor: pointer;
            z-index: 1000;
            transition: background-color 0.3s ease;
        }

        .floating-donate-btn:hover {
            background-color: #2980b9;
        }

        /* Toast message styles */
        .toast {
            position: fixed;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background-color: #28a745;
            color: white;
            padding: 10px 20px;
            border-radius: 5px;
            font-size: 1em;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            opacity: 0;
            animation: fadeIn 0.5s forwards;
        }

        @keyframes fadeIn {
            0% { opacity: 0; }
            100% { opacity: 1; }
        }
        .photo-gallery-section {
    padding: 80px 0;
    background: #ffffff;
}

.photo-slider-section {
    padding: 80px 0;
    background: #ffffff;
}

.photo-slider-section h2 {
    text-align: center;
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 40px;
}

.photo-slider {
    overflow: hidden; /* Hide the overflow */
    position: relative;
    width: 70%;
    max-width: 1200px;
    margin: 0 auto;
}

.photo-track {
    display: flex;
    width: 200%;
    animation: slidePhotos 20s linear infinite; /* Continuous animation */
}

.photo-item {
    flex: 0 0 10%; /* Each photo takes up 20% of the width */
    margin: 0 15px;
}

.photo-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.photo-item img:hover {
    transform: scale(1.05);
}

/* Keyframes for sliding photos left to right */
@keyframes slidePhotos {
    0% {
        transform: translateX(0); /* Start at the beginning */
    }
    100% {
        transform: translateX(-50%); /* End after sliding half the width */
    }
}
.donation-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

.donation-header {
    text-align: center;
    margin: 40px 0;
}

.donation-header h1 {
    color: #2c3e50;
    font-size: 2rem;
    margin-bottom: 10px;
}

.donation-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.donation-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

@media (max-width: 768px) {
    .donation-methods {
        grid-template-columns: 1fr;
    }
}

.method-card {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.method-title {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.method-title i {
    font-size: 24px;
    color: #3498db;
    margin-right: 15px;
}

.method-title h2 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.bank-details {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.bank-logo {
    width: 50px;
    height: 50px;
    margin-right: 15px;
    border-radius: 50%;
}

.account-info {
    flex: 1;
}

.bank-name {
    font-weight: bold;
    color: #2c3e50;
}

.account-number {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.copy-btn {
    background: #3498db;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
}

.copy-btn:hover {
    background: #2980b9;
}

.qr-section {
    text-align: center;
    margin-top: 20px;
}

.qr-code {
    width: 180px;
    height: 180px;
    margin: 0 auto 15px;
}

.qr-note {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.photo-gallery {
    margin: 50px 0;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.photo-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}
/* Psalm Page Styles */
.psalm-page {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
  }
  
  .psalm-main {
    display: flex;
    flex: 1;
  }
  
  .month-nav {
    width: 250px;
    background: #f5f5f5;
    padding: 20px;
    overflow-y: auto;
  }
  
  .month-nav h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    padding-bottom: 5px;
    border-bottom: 1px solid #ddd;
  }
  
  .month-list {
    list-style: none;
    padding: 0;
  }
  
  .month-list li {
    margin-bottom: 8px;
  }
  
  .month-list a {
    display: block;
    padding: 8px 10px;
    color: #34495e;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
  }
  
  .month-list a:hover {
    background: #E6C98E;
    color: white;
  }
  
  .psalm-content {
    flex: 1;
    padding: 20px 30px;
    overflow-y: auto;
  }
  
  .month-section {
    margin-bottom: 30px;
  }
  
  .month-title {
    color: #2c3e50;
    padding-bottom: 5px;
    border-bottom: 2px solid #E6C98E;
    margin-bottom: 15px;
  }
  
  .psalm {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 5px;
  }
  
  .psalm-title {
    color: #E6C98E;
    margin-bottom: 10px;
    font-weight: bold;
  }
  
  .psalm-text {
    line-height: 1.8;
    white-space: pre-line;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .psalm-main {
      flex-direction: column;
    }
    
    .month-nav {
      width: 100%;
      padding: 15px;
    }
    
    .month-list {
      display: flex;
      overflow-x: auto;
      gap: 10px;
    }
    
    .month-list li {
      margin-bottom: 0;
      white-space: nowrap;
    }
  }
  .coming-soon {
    font-size: 1.5rem;
    color: #7f8c8d;
    margin: 50px 0;
    padding: 20px;
    border: 1px dashed #ccc;
    border-radius: 5px;
    display: inline-block;
  }
         /* Bible Page Layout */
         .bible-main {
            display: flex;
            min-height: calc(100vh - 200px);
        }
        
        /* Chapter Navigation Sidebar */
        .chapter-nav {
            width: 250px;
            background: #f5f5f5;
            padding: 20px;
            border-right: 1px solid #ddd;
        }
        
        .chapter-nav h3 {
            color: #5D4037;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #E6C98E;
            font-size: 1.3rem;
        }
        
        .chapter-list {
            list-style: none;
            padding: 0;
        }
        
        .chapter-list li {
            margin-bottom: 10px;
        }
        
        .chapter-list a {
            display: block;
            padding: 10px 15px;
            background-color: #8B4513;
            color: white;
            text-decoration: none;
            border-radius: 5px;
            transition: all 0.3s;
        }
        
        .chapter-list a:hover,
        .chapter-list a.active {
            background-color: #E6C98E;
            color: #2c3e50;
            transform: translateX(5px);
        }
        
        /* Bible Content Area */
        .bible-content {
            flex: 1;
            padding: 20px 30px;
        }
        
        .bible-post {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 4px solid #8B4513;
        }
        
        .bible-post h2 {
            color: #5D4037;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #E6C98E;
        }
        
        .bible-post p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
        }
        
        .bible-post img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        /* Navigation arrows */
        .nav-arrows {
            display: flex;
            justify-content: space-between;
            margin-top: 30px;
        }
        
        .nav-arrow {
            display: inline-flex;
            align-items: center;
            padding: 10px 20px;
            background-color: #8B4513;
            color: white;
            text-decoration: none;
            border-radius: 30px;
            transition: all 0.3s;
        }
        
        .nav-arrow:hover {
            background-color: #E6C98E;
            color: #2c3e50;
        }
        
        .nav-arrow i {
            margin: 0 5px;
        }
        
        /* Hamburger menu for mobile */
        .hamburger {
            display: none;
            cursor: pointer;
            position: fixed;
            top: 20px;
            left: 20px;
            z-index: 1000;
            background-color: #8B4513;
            padding: 10px;
            border-radius: 5px;
        }
        
        .hamburger .line {
            width: 30px;
            height: 3px;
            background-color: white;
            margin: 5px 0;
            transition: all 0.3s ease;
        }
        
        .hamburger.active .line:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        
        .hamburger.active .line:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active .line:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            .bible-main {
                flex-direction: column;
            }
            
            .chapter-nav {
                width: 100%;
                padding: 15px;
                border-right: none;
                border-bottom: 1px solid #ddd;
                display: none;
            }
            
            .chapter-nav.active {
                display: block;
            }
            
            .chapter-list {
                display: flex;
                overflow-x: auto;
                gap: 10px;
                padding-bottom: 10px;
            }
            
            .chapter-list li {
                margin-bottom: 0;
                white-space: nowrap;
            }
            
            .chapter-list a {
                padding: 8px 12px;
            }
            
            .bible-content {
                padding: 20px;
            }
            
            .hamburger {
                display: block;
            }
        }
          /* Current Events Section */
          .events-section {
            max-width: 1000px;
            margin: 40px auto;
            padding: 0 20px;
        }
        
        .event-card {
            background-color: white;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            border-top: 4px solid #8B4513;
        }
        
        .event-card h2 {
            color: #5D4037;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #E6C98E;
        }
        
        .event-card p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #333;
        }
        
        .event-card img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            margin: 20px 0;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .event-card img:hover {
            transform: scale(1.02);
        }
        
        /* Date badge */
        .event-date {
            display: inline-block;
            background-color: #8B4513;
            color: white;
            padding: 5px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        /* Back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: #8B4513;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        }
        
        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: #E6C98E;
            transform: translateY(-5px);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .event-card {
                padding: 20px;
            }
        }
.upgraded-notes-section {
  position: relative;
  background-image: url('images/church 5.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 6rem 1.5rem;
  color: #fff;
  overflow: hidden;
}

.notes-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20, 20, 20, 0.7); /* dark overlay for readability */
  z-index: 0;
}

.notes-container {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: auto;
  text-align: center;
  backdrop-filter: blur(3px);
}

.notes-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #FFD700;
  margin-bottom: 3rem;
  text-shadow: 0 2px 5px rgba(0,0,0,0.5);
  border-bottom: 4px solid #FFD700;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.notes-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  text-align: left;
}

.notes-columns ul {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 1.8rem 2rem;
  box-shadow: 0 6px 16px rgba(0,0,0,0.3);
  width: 300px;
  color: #fff;
  transition: transform 0.3s ease;
}

.notes-columns ul:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.2);
}

.notes-columns li {
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  line-height: 1.6;
}

.notes-columns i {
  color: #FFD700;
  font-size: 1.2rem;
}
.footer-social a {
  text-decoration: none;
}
.index-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 20px;
}

.index-box {
    background-color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin: 20px;
    text-align: center;
    width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.index-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.index-box a {
    text-decoration: none;
    color: #8B4513;
    font-size: 1.2rem;
    font-weight: bold;
    display: block;
    margin-bottom: 10px;
}

.index-box a:hover {
    color: #002f87;
}

.icon {
    font-size: 3rem;
    color: #8B4513;
    margin-bottom: 15px;
}
/* Styling for the image section */
.image-notes-section {
  position: relative;
  display: flex;
  justify-content: flex-end; /* Align content to the right */
  height: 350px;
  width: 100%; /* Ensure the section takes full width */
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
}

/* Overlay effect */
.notes-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* Slightly darker overlay */
  z-index: 1;
}

/* Container for the text */
.notes-container {
  position: relative;
  z-index: 2;
  padding-left: 30px;
  padding-right: 30px;
  color: #fff;
  max-width: 650px;
  width: 100%;
  margin-left: auto;
  margin-right: auto; /* Center the container */
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: left; /* Align text to the left */
  background-color: rgba(0, 0, 0, 0.7); /* Dark background with slight transparency */
  border-radius: 15px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6); /* Subtle shadow for depth */
}

/* Title of the notes */
.notes-title {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #f2a900; /* Gold color for the title */
  text-align: center;
  font-weight: bold;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Add a slight shadow to make it stand out */
}

/* Notes content styling */
.notes-columns {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* Styling for the list items */
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.1rem;
  color: #f1f1f1; /* Light color for text */
  line-height: 1.6;
}

li i.fas {
  margin-right: 10px;
  color: #f2a900; /* Gold color for icons */
}

/* Optional: Add a border for visual separation */
.notes-content {
  border-left: 5px solid #f2a900; /* Gold-colored border */
  padding-left: 20px;
  background-color: rgba(0, 0, 0, 0.5); /* Lighter background for the content */
  border-radius: 10px;
}

/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
  /* For tablet and smaller screens */
  .image-notes-section {
    height: auto;
    padding: 20px;
  }

  .notes-container {
    max-width: 100%;
    padding: 10px;
    text-align: center;
  }

  .notes-title {
    font-size: 1.8rem; /* Adjust title size */
  }

  .notes-columns {
    flex-direction: column; /* Stack the content on smaller screens */
  }
}

@media screen and (max-width: 480px) {
  /* For mobile screens */
  .image-notes-section {
    height: 300px; /* Reduce height on very small screens */
  }

  .notes-title {
    font-size: 1.6rem; /* Adjust title size */
  }

  .notes-columns {
    padding: 0;
    text-align: center;
  }

  .notes-content {
    border-left: none; /* Remove border on smaller screens */
  }
}
/* Mobile-first design */
    .stats-track {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: nowrap;  /* Prevent wrapping */
        width: 100%;
    }

    .stat-item {
        flex: 1 1 45%; /* On mobile, each item will take 45% of the width */
        text-align: center;
        padding: 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-sizing: border-box;
    }

    /* For mobile view (<= 767px) */
    @media (max-width: 767px) {
        .stat-item {
            flex: 1 1 35%; /* Adjusts the width of each item to 35% on small screens */
            max-width: 35%;  /* Prevent items from overflowing */
            padding: 15px; /* Reduces the padding on small screens */
        }

        .stat-number {
            font-size: 2rem; /* Smaller numbers on mobile */
        }

        .stat-label span {
            font-size: 0.9rem; /* Smaller text for mobile */
        }
    }

    /* For larger screens (>= 768px) */
    @media (min-width: 768px) {
        .stat-item {
            flex: 1 1 45%; /* Items take up 45% of the space */
        }

        .stat-number {
            font-size: 2.5rem; /* Numbers size on larger screens */
        }

        .stat-label span {
            font-size: 1rem;
        }
    }
