/* styles.css */
/* 🔹 Mobile Styles (Max Width 768px - Tablets & Phones) */
@media (max-width: 768px) {
    .two-column {
        display: flex !important;
        flex-direction: column-reverse;
    }

    /* 🔥 Make Navbar Mobile-Friendly */
    .navbar {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }
    .nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin: 0;
        padding: 0;
    }
    .nav-links li {
        margin: 1rem 0 0 0;
    }
    .logo-ripple {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-bottom: 1rem;
    }
    .logo-ripple img {
        margin-left: auto;
        margin-right: auto;
        display: block;
        transform: translateX(16px); /* Adjust as needed */
    }
    #hero {
        padding: 3rem 1rem;
    }

    .hero-content {
        max-width: 90%;
        padding: 1.5rem;
    }

    /* 🔹 Improve Section Spacing */
    section {
        padding: 2rem 1rem;
    }

    /* 🔹 Footer Adjustments */
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-container div {
        margin-bottom: 1rem;
    }

    /* 🔹 Reduce Footer Padding */
    footer {
        padding: 2rem 1rem;
    }

    .team-member {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .team-member-image {
        margin-bottom: 1.5rem;
    }
    
    .team-member-info h3 {
        margin-left: auto;
        margin-right: auto;
    }
    .blog-post .blog-content {
        flex-direction: column;
      }
    
      .blog-image {
        max-width: 100%;
        margin-top: 1rem;
    }
}


h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

body {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-size: 18px;
    line-height: 1.75;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #EAEAEA;
    color: #0a1a3f;
}
.home #hero {
    height: 350px;
    padding: 0;
    position: relative;
    display: flex;
    align-items: flex-end; /* moves banner to bottom */
    justify-content: center;
    background: url('https://pub-eacbe54e9d9b435886bc63a53986cbb3.r2.dev/bg-001.png') no-repeat center center/cover;
}
.home .hero-content {
    max-height: 100%;
    padding: 1rem;
}
.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.content {
    flex: 1; /* This pushes the footer down if there's not enough content */
}

/* 🔹 HEADER */
header {
    position: relative;
    background-color: #511187;
    color: white;
    padding: 0;
    margin: 0;
}

/* 🔥 NAVBAR STYLING */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #511187; /* solid */
    color: white;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 0;
    box-shadow: none;
}

/* 🔹 Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 0;
    margin: 0;
    margin-left: 2rem; /* Adjust as needed for spacing */
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    padding: 5px 10px;
    transition: color 0.3s ease-in-out;
}

/* 🔹 Fancy Hover Effect */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -5px;
    width: 0;
    height: 3px;
    background: #511187; /* Purple accent */
    transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.nav-links a:hover {
    color: #9B2C2C;
}

/* Submenu blog */
.submenu {
    background-color: #9B2C2C;
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 1rem 0;
}
  
  .submenu .nav-links {
    gap: 4rem;
}
  
  .submenu .nav-links a {
    color: white;
}
  
  .submenu .nav-links a:hover {
    color: #FFE066;
}
  
  
/* 🔥 HEADER OVERLAY */
.hero-overlay-graphic {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 150px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
    filter: grayscale(100%) contrast(1.2);
}

.hero-overlay-graphic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#hero {
    background: url('https://pub-eacbe54e9d9b435886bc63a53986cbb3.r2.dev/bg-001.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
}
.hero-spacer {
    height: 100%;
}
.hero-content {
    max-width: 800px;
    margin: auto;
    background: #0a1a3f;
    padding: 2rem;
    border-radius: 10px;
}
.hero-banner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #511187; /* Purple */
    color: white;
    font-size: 1.5rem;
    font-family: "Lucida Calligraphy", cursive, sans-serif;
    font-weight: normal;
    padding: 0.75rem 1rem;
    text-align: center;
    z-index: 5;
}

.cta-button {
    display: inline-block;
    background: #9B2C2C;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    margin-top: 10px;
}

.cta-button:hover {
    background: #5A3E9B;
}

section {
    padding: 3rem 2rem;
    text-align: center;
}


#contact {
    background-color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}
#contact h2 {
    font-size: 2rem;
    color: #0a1a3f;
    margin-bottom: 2rem;
}
#contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    background: white;
    padding: 2rem;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

#contact-form label {
    margin-top: 10px;
    font-weight: bold;
    color: #0a1a3f;
}

#contact-form input, #contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #999;
    border-radius: 5px;
}

button {
    background: #0a1a3f;
    color: white;
    padding: 10px;
    border: none;
    margin-top: 15px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background: #9B2C2C;
}

.hidden {
    display: none;
}
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: none;
}

/* 🔹 Footer Styling */
footer {
    background-color: #0a1a3f;
    color: white;
    padding: 3rem 1.5rem;
    font-size: 0.95rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr; /* Wider first column */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* 🔹 Footer Links (Fix Blue Color Issue) */
footer a {
    color: #e0e0e0; /* Light gray for better readability */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease-in-out;
}

footer a:hover {
    color: #511187; /* Purple hover effect */
    text-decoration: underline;
}

/* 🔹 Quick Links Formatting */
.footer-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-container ul li {
    margin-bottom: 0.5rem;
}
footer .legal {
    font-size: 0.8rem;
    color: #ffffff;
}
.footer-quick-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-quick-links ul li {
    display: block;
    margin-bottom: 0.5rem;
}



.social-links a i {
    font-size: 1.4rem;
    color: #e0e0e0;
    transition: color 0.3s;
}

.social-links a:hover i {
    color: #511187;
}

#news-section {
    background: #fff;
    padding: 3rem 2rem;
    text-align: left;
}

.two-column {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
    align-items: start;
}

.two-column .column {
    background: #f5f5f5;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

#about-news a {
    color: #0a1a3f;
    text-decoration: none;
    font-weight: bold;
}

#about-news a:hover {
    text-decoration: underline;
    color: #511187;
}

.press-media {
    background: #ffffff;
    border-left: 4px solid #9B2C2C;
    padding: 1.5rem 1.5rem 1.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.press-media h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #0a1a3f;
}

/* 🔥 Custom hover colors for social icons */
.social-links a:nth-child(1):hover i {
    color: #9B2C2C; /* Red */
}
.social-links a:nth-child(2):hover i {
    color: #336699; /* Navy Blue */
}
.social-links a:nth-child(3):hover i {
    color: #511187; /* Purple */
}

.logo-ripple {
    display: inline-block;
    padding: 0;
    border-radius: 0;
    overflow: visible;
    position: relative;
}

/* 🔹 Logo */

.logo-ripple img:hover {
    transform: scale(1.1);
    display: inline-block;
}

.logo-ripple img {
    display: block;
    height: 110px;
    border-radius: 10px; /* Or none if you want it square */
    z-index: 2;
    position: relative;
}

#mission-section h2,
#vision-section h2,
#values-section h2 {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    font-weight: normal;
    color: #336699;
    margin-bottom: 1rem;
}
.column h2 {
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    font-weight: normal;
    font-size: 2rem; /* Optional: adjust for size */
    color: #0a1a3f;  /* Optional: update based on your design */
    margin-bottom: 1rem;
}
.values-wrapper {
    background-color: transparent;
    box-shadow: none;
    padding: 0 0 2rem 0;
    text-align: left;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}
.values-wrapper .value-block:first-child h2 {
    margin-top: 0;
}
.value-block {
    border-left: 6px solid #511187; /* Purple accent */
    padding-left: 1.5rem;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
    padding-right: 1rem;
    background-color: #ffffff;
    text-align: left;
    margin-bottom: 25px;
    padding-left: 10px;
}

.value-block h2 {
    text-align: left; /* <-- Add this if not already set */
    font-family: inherit; /* Ensures it follows .values-wrapper's font */
    font-weight: 500;
    font-size: 1.6rem;
    color: #336699;
    display: flex;
    gap: 0.5rem;
    margin-top: 0;
    align-items: center;
}

.value-block i {
    color: #9B2C2C; /* Deep red icons for contrast */
    font-size: 1.4rem;
}

.value-block p {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.6;
    margin: 0;
}
.reach-values {
    text-align: left;
    border-radius: 10px;
    font-size: 1.3rem;
}

.reach-values h3 {
    font-size: 1.5rem;
    color: #336699;
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.reach-letter {
    margin-bottom: 2rem;
}

.reach-letter h4 {
    color: #9B2C2C;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
    font-family: 'Segoe UI', 'Helvetica Neue', sans-serif;
}

.reach-letter ul {
    margin-left: 1rem;
    padding-left: 1rem;
    list-style: disc;
}

.reach-letter ul li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}
.mail-link {
    margin: 1rem 0 0 0;
    align-self: center;
    color: #ffffff;
}

.mail-link:hover {
    color: #9B2C2C;
}
/* Team Section Styles */
.team-section {
    padding: 3rem 0;
    background-color: #f9f9f9;
}

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

.team-section h1 {
    text-align: center;
    margin-bottom: 1rem;
    color: #333;
}

.section-intro {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #333;
}

.team-members {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.team-member {
    display: flex;
    gap: 2rem;
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    align-items: center;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.team-member-image {
    flex-shrink: 0;
    width: 180px;
    height: 220px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-info {
    flex: 1;
    text-align: left;
}

.team-member-info h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #511187;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.team-member-info p {
    color: #333;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.values-wrapper,
.reach-letter h4 {
    font-family: inherit;
}

.reach-letter ul li {
    color: #333;
    font-size: 1.1rem;
}

.reach-letter h4 {
    color: #336699;
    font-weight: 600;
}

.blog-container {
    max-width: 900px;
    margin: 2rem auto;
    padding: 1rem;
}

.blog-post {
    background-color: #fff;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.blog-post .text {
    text-align: left;
}

.blog-image img {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.blog-image-large {
  max-width: 50%;
}
