/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f6f9;
    color: #333;
    line-height: 1.6;
}

/* =========================
   GLOBAL CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

/* =========================
   HEADER
========================= */
header {
    background: #dae0ee;
    color: rgb(30, 46, 141);
    text-align: center;
    padding: 25px 0;
    font-size: 2em;
}

header h1 {
    margin-bottom: 8px;
}

.tagline {
    font-size: 25px;
    opacity: 0.9;
}

/* =========================
   NAVIGATION
========================= */
nav {
    background: #0427a8;
}

nav .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
 
}

nav a {
    color: white;
    text-decoration: none;
    padding: 15px 18px;
    display: block;
    transition: 0.3s;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 22px;
    margin-top: auto;
    margin-bottom: auto;
}

nav a:hover {
    background: #4e2d4d;
}

/* =========================
   HERO SECTION
========================= */
.hero {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(99, 99, 97, 0.6);
    text-align: center;
    color: white;
    padding: 30px;
    border-radius: 8px;
}

.hero-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* =========================
   BUTTONS
========================= */
.btn,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.btn {
    background: white;
    color: #0b3d91;
}

.btn:hover {
    background: #ddd;
}

.btn-primary {
    background: #f4b400;
    color: black;
}

.btn-primary:hover {
    background: #e0a200;
}

.btn-secondary {
    background: #0b3d91;
    color: white;
}

.btn-secondary:hover {
    background: #062a63;
}

/* =========================
   ABOUT SECTION
========================= */
.about-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding: 30px 0;
    align-items: center;
}

.logo-section {
    flex: 1;
    text-align: center;
}

.logo {
    max-width: 250px;
}

.mission-vision {
    flex: 2;
}

.mission-vision h2 {
    color: #0b3d91;
    margin-bottom: 10px;
}

.mission-vision p {
    margin-bottom: 25px;
}

/* =========================
   PROGRAMS
========================= */
.programs {
    text-align: center;
    padding: 1px 0;
}

.programs h2 {
    margin-bottom: 40px;
    color: #0b3d91;
}

.program-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.program-item {
    background: white;
    padding: 25px;
    width: 300px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.program-item h3 {
    margin-bottom: 15px;
    color: #0b3d91;
}


/* =========================
   FOOTER
========================= */
footer {
    background: #062a63;
    color: white;
    text-align: center;
    padding: 25px 0;
    margin-top: 40px;
}

footer p {
    font-size: 14px;
    margin: 5px 0;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

    nav .container {
        flex-direction: column;
        text-align: center;
    }

    .hero {
        height: 350px;
    }

    .hero-text h2 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .about-preview {
        flex-direction: column;
        text-align: center;
    }

    .program-item {
        width: 90%;
    }
}

/* ============================= */
/* ABOUT US PAGE STYLING */
/* ============================= */

.hero {
    position: relative;
    height: 700px;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    width: 90%;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero-text p {
    font-size: 1.2rem;
}

/* Section Headings */
main h2 {
    font-size: 2rem;
    margin-bottom: 15px;
   
}

main p {
    line-height: 1.7;
    font-size: 1rem;
    color: #333;
    text-align: center;
}

/* Core Pillars / Program Grid */
.program-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.program-item {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.program-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.program-item h3 {
    margin-bottom: 10px;
    color: #0b3d91;
} 

/* Highlight Section */
section[style*="background"] {
    background: #f4f6f9 !important;
    padding: 50px 30px;
    border-radius: 8px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    margin: 10px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn-primary {
    background-color: #0b3d91;
    color: white;
}

.btn-primary:hover {
    background-color: #062c6b;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

.btn-secondary:hover {
    background-color: #cfcfcf;
}

/* Responsive Adjustments */
@media (max-width: 768px) {

    .hero {
        height: 300px;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    main h2 {
        font-size: 1.5rem;
    }
}

/* ===============================
   LEADERSHIP PAGE STYLES ONLY
================================= */

/* Hero Section */
.leadership-hero {
    background: linear-gradient(rgb(247, 240, 239), rgba(227, 231, 236, 0.85));
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    height: 1200px;
}

.leadership-hero h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.leadership-hero p {
    font-size: 16px;
    opacity: 0.95;
}

/* Leadership Section */
.leadership-section {
    padding: 60px 0;
    text-align: center;

}

.leadership-section h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #0b3d91;
}

/* Grid Layout */
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 25px;
}

/* Leader Cards */
.leader-card {
    background: #ffffff;
    padding: 25px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 4px solid #0b3d91;
}

.leader-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 22px rgba(0,0,0,0.12);
}

.leader-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #222;
}

.position {
    font-weight: bold;
    color: #0b3d91;
    font-size: 14px;
    letter-spacing: 0.5px;
}

/* Mobile */
@media (max-width: 768px) {
    .leadership-hero {
        padding: 60px 15px;
    }

    .leadership-hero h2 {
        font-size: 24px;
    }

    .leadership-section {
        padding: 40px 0;
    }
}

/* =========================
   ANNOUNCEMENT SECTION
========================= */

.announcement-section {
    padding: 60px 0;
    background: #f9fafc;
}

.announcement-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-left: 6px solid #0b3d91;
}

.announcement-box h2 {
    margin-bottom: 20px;
    color: #0b3d91;
}

.announcement-box p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.event-details {
    margin: 20px 0;
    padding: 15px;
    background: #eef3fb;
    border-radius: 8px;
}

/* ===== CONTACT PAGE ===== */


.contact-info {
    flex: 1;
    background: #f4f7fc;
    padding: 20px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }
}


.contact-section {
    padding: 60px 0;
    text-align: center;
}

.contact-intro {
    max-width: 700px;
    margin: 20px auto;
}

.contact-card {
    background: #f4f7fc;
    padding: 30px;
    border-radius: 12px;
    max-width: 600px;
    margin: 30px auto;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.response-note {
    margin-top: 15px;
    font-style: italic;
    font-size: 0.95rem;
}

.contact-action {
    margin-top: 25px;
}

/******Google Form****/
.form-box{
    max-width:600px;
    margin:40px auto;
    padding:30px;
    text-align:center;
    background:#f4f4f4;
    border-radius:10px;
    box-shadow:0 5px 10px rgba(0,0,0,0.1);
}

.form-box h2{
    margin-bottom:10px;
}

.form-box p{
    margin-bottom:20px;
}

.form-button{
    display:inline-block;
    padding:12px 25px;
    background:#1a4fa3;
    color:white;
    text-decoration:none;
    border-radius:5px;
    font-weight:bold;
    transition:0.3s;
}

.form-button:hover{
    background:#0e2f66;
}