/* General Reset and Typography */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #222;
    background: #fff;
}

h1, h2, h3 {
    margin-bottom: 1rem;
    font-weight: 700;
    color: #0e234a;
}

p {
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    background: url('./top_image.jpg') center/cover no-repeat;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero .overlay {
    padding: 2rem;
    max-width: 1600px;
    text-align: center;
    background: rgba(0, 0, 0, 0); /* transparent background */
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 900;
}

.hero p {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 400;
}

/* About Section */
.about {
    display: flex;
    flex-wrap: wrap;
    padding: 4rem 6rem; /* wider side padding */
    align-items: center;
    background: #f4f7fc;
    gap: 2rem;
}

.about .text {
    flex: 1;
    padding: 1rem 2rem 1rem 10rem; /* adjust if needed */
    min-width: 300px;
}
.about .image {
    flex: 1;
    padding: 1rem;
    text-align: center;
    max-width: 500px;
}

.about img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

blockquote {
    padding-left: 2rem;
    font-style: italic;
    margin: 1rem 0;
    color: #555;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-style: normal;
    font-size: 0.95rem;
    color: #555;
}

.about .author-img {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    object-fit: cover;
}



/* Programs Section */
.programs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 4rem 2rem;
    background: #0e234a;
    color: white;
}

.program {
    background: #1a2a5c;
    border-radius: 10px;
    padding: 3rem 2rem;
    flex: 0 1 300px;
    max-width: 320px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    color: white;
}

.program i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.program h3 {
    font-size: 1rem;
    text-transform: uppercase;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.program p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    margin-top: auto;
    padding: 0.7rem 1.5rem;
    background: #fff;
    color: #0e234a;
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: background 0.3s;
}

.btn:hover {
    background: #dfe6f3;
}

/* Footer Hero */
.footer-hero {
    text-align: center;
    padding: 3rem 2rem;
    background: #eee;
}

.footer-hero img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}


.footer-hero h2 {
    font-weight: 700;
    color: #0e234a;
    margin-top: 1rem;
}

.footer-hero p {
    color: #222;
    font-size: 0.95rem;
    margin: 0.5rem 0 1rem;
}

.footer-hero .social a {
    margin: 0 0.5rem;
    text-decoration: none;
    color: #0e234a;
    font-weight: bold;
    font-size: 1.2rem;
}

.footer-hero .social a i {
    margin-right: 0.3rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: #0e234a;
    color: white;
    font-size: 0.9rem;
}

