:root {
    --primary-green: #394beb;
    --secondary-gold: #D4AF37;
    --light-gray: #f8f9fa;
    --dark-gray: #333;
    --accent-blue: #2c5e8c;
}
/* Ensure these exist in your style.css */
.focus-card {
    background: white;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    height: 100%;
    border: 1px solid #eee; /* Light border for the rectangular look */
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.focus-icon {
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: rgba(57, 75, 235, 0.1); /* Light blue background for icon */
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--primary-green);
    font-size: 2rem;
}

/* Specific Style for the Large Numbers */
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-green);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    margin-bottom: 10px;
}

/* Fix for descriptions inside the card */
.focus-card p {
    text-align: center !important;
    font-size: 0.9rem;
    line-height: 1.4;
}
body {
    font-family: 'Open Sans', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
}

/* Header & Navigation */
.header-top {
    background-color: var(--primary-green);
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}

.header-top a {
    color: white;
    text-decoration: none;
    margin-right: 15px;
}

.header-top a:hover {
    color: var(--secondary-gold);
}

.language-switcher a {
    color: white;
    text-decoration: none;
    padding: 2px 8px;
    border-radius: 3px;
}

.language-switcher a.active {
    background-color: rgba(255, 255, 255, 0.2);
    font-weight: bold;
}

.language-switcher .separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.5);
}

.navbar {
    background-color: white !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 15px 0;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-green) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--dark-gray) !important;
    margin: 0 5px;
    transition: color 0.3s;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-green) !important;
}

/* Dropdown menu styles */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 100, 0, 0.85), rgba(0, 100, 0, 0.9)), 
                url('https://images.unsplash.com/photo-1508361001413-7a9dca21d08a?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 120px 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 30px;
}

/* Section Titles */
.section-title {
    color: var(--primary-green);
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 80px;
    height: 4px;
    background-color: var(--secondary-gold);
}

.section-title.center:after {
    left: 50%;
    transform: translateX(-50%);
}

/* Focus Cards */
.focus-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
    height: 100%;
    margin-bottom: 30px;
    padding: 30px 20px;
    text-align: center;
}

.focus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.focus-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* Stats Section */
.stats-section {
    background-color: var(--primary-green);
    color: white;
    padding: 80px 0;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--secondary-gold);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Ministry Cards */
.ministry-card {
    background-color: white;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 30px;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.ministry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.ministry-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.ministry-list {
    list-style: none;
    padding: 0;
}

.ministry-list li {
    margin-bottom: 10px;
    padding-left: 0;
}

/* Leaders Section */
.leader-card {
    text-align: center;
    margin-bottom: 30px;
}

.leader-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 5rem;
    color: var(--primary-green);
}

.leader-card .position {
    color: #666;
    font-style: italic;
}

/* Blog Cards */
.blog-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.blog-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.blog-content {
    padding: 20px;
}

.blog-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

/* Contact Section */
.contact-info, .contact-form {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-item i {
    color: var(--primary-green);
    margin-right: 15px;
    margin-top: 5px;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 60px 0 20px;
}

footer h5 {
    color: var(--secondary-gold);
    margin-bottom: 25px;
    font-size: 1.2rem;
}

footer a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

footer a:hover {
    color: white;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--secondary-gold);
    margin-top: 5px;
}

.social-icons a {
    font-size: 1.2rem;
    margin-right: 15px;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    border-radius: 5px 0 0 5px;
    border: none;
    padding: 12px 15px;
}

.newsletter-form button {
    background-color: var(--primary-green);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 0 5px 5px 0;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #004d00;
}

.copyright {
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 40px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    padding: 12px 30px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #004d00;
    border-color: #004d00;
}

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .dropdown-submenu .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .header-top {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .header-top .d-flex {
        flex-direction: column;
        gap: 10px;
    }
}