:root {
    --background: #F7FAF7;
    --navy: #183B4E;
    --teal: #087A78;
    --coral: #F26B5B;
    --mint: #DDF1E8;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--background);
    color: var(--navy);
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

.navbar {
    min-height: 76px;
    padding: 0 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    border-bottom: 1px solid rgba(24, 59, 78, 0.1);
}

.logo {
    color: var(--navy);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--teal);
}

.nav-button {
    padding: 10px 18px;
    color: var(--white);
    background-color: var(--teal);
    border-radius: 8px;
}

.nav-button:hover {
    color: var(--white) ;
    background-color: #066967;
}

.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 4rem;
    padding: 70px 7%;
    min-height: calc(100vh - 76px);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 650px;
}

.hero-label {
    color: var(--coral);
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.08rem;
    margin-bottom: 12px;
    text-transform: uppercase; 
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero-description {
    font-size: 1.05rem;
    opacity: 0.8;
    max-width: 620px;
}

.hero-description p {
    margin-bottom: 8px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-top: 28px;
    align-items: center;
    flex-wrap: wrap;
}

.primary-button,
.secondary-button {
    display: inline-block;
    padding: 13px 22px;
    font-weight: bold;
    border-radius: 9px;
    transition: all 0.2s ease;
}

.primary-button {
    background-color: teal;
    color: white;
    border-color: teal;
}

.hero-visual {
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-circle {
    position: absolute;
    width: 420px;
    height: 420px;
    background-color: var(--mint);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.program-preview {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 380px;
    padding: 36px;
    background-color: var(--white);
    border: 1px solid rgba(24, 59, 78, 0.12);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(24, 59, 78, 0.12);
}

.program-preview > p {
    color: var(--coral);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.program-preview h2 {
    font-size: 2rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.program-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(24, 59, 78, 0.12);
}

.program-stats span {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    line-height: 1.3;
}

.about-container {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: center;
}

.about-section {
    background-color: var(--mint);
    padding: 90px 7%;
}



.about-left-miniheading {
    color: var(--coral);
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 0.08rem;
    margin-bottom: 25px;
}
.about-left-heading {
    color: var(--navy);
    font-weight: bold;
    font-size: 1.3rem;
    letter-spacing: 0.08rem;
    margin-bottom: 12px;
}

.about-right p {
    margin-bottom: 30px;
}

.about-right p:last-child {
    margin-bottom: 0;
}

.about-section {
    background-color: var(--mint);
    padding: 100px 7%;
}

.about-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
    align-items: start;
}

.about-left-miniheading {
    color: var(--coral);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.about-left-heading {
    color: var(--navy);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 520px;
}

.about-right {
    display: grid;
    gap: 18px;
}

.about-right > p {
    margin: 0;
    padding: 24px 26px;
    background-color: var(--white);
    color: var(--navy);
    font-size: 1rem;
    line-height: 1.75;
    border: 1px solid rgba(24, 59, 78, 0.1);
    border-left: 4px solid var(--coral);
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(24, 59, 78, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-right > p:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 34px rgba(24, 59, 78, 0.11);
}



.work-section {
    background-color: var(--background);
    padding: 100px 7%;
}

.work-heading {
    max-width: 720px;
    margin-bottom: 50px;
}

.section-label {
    color: var(--coral);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.work-heading h2 {
    color: var(--navy);
    font-size: 2.7rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 18px;
}

.work-description {
    color: var(--navy);
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.78;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.work-card {
    padding: 30px;
    background-color: var(--white);
    border: 1px solid rgba(24, 59, 78, 0.12);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(24, 59, 78, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.work-number {
    color: var(--coral);
    font-size: 0.85rem;
    font-weight: 700;
}

.work-card h3 {
    color: var(--navy);
    font-size: 1.35rem;
    line-height: 1.3;
    margin: 14px 0 12px;
}

.work-card h3 + p {
    color: var(--navy);
    line-height: 1.7;
    opacity: 0.78;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(24, 59, 78, 0.13);
}

.program-section {
    padding: 100px 7%;
    background-color: var(--navy);
    color: var(--white);
}

.program-container {
    max-width: 1400px;
    margin: 0 auto;
}

.program-heading {
    max-width: 900px;
    margin-bottom: 50px;
}

.program-section .section-label {
    color: var(--coral);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.program-heading h2 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.program-description {
    max-width: 850px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.05rem;
    line-height: 1.8;
}

.program-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.unit-card {
    padding: 32px;
    background-color: var(--white);
    color: var(--navy);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.16);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.unit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 42px rgba(0, 0, 0, 0.22);
}

.unit-number {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    background-color: var(--mint);
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 800;
}

.unit-card h3 {
    margin: 18px 0 12px;
    color: var(--navy);
    font-size: 1.35rem;
    line-height: 1.3;
}

.unit-card > p:last-child {
    color: rgba(24, 59, 78, 0.78);
    line-height: 1.7;
}

/* Makes the unit cards stack on smaller screens */
@media (max-width: 800px) {
    .program-section {
        padding: 75px 6%;
    }

    .program-heading h2 {
        font-size: 2.2rem;
    }

    .program-grid {
        grid-template-columns: 1fr;
    }
}

.team-section {
    padding: 100px 7%;
    background-color: var(--background);
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
}

.team-heading {
    max-width: 720px;
    margin-bottom: 50px;
}

.team-heading h2 {
    color: var(--navy);
    font-size: 2.8rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin: 12px 0 18px;
}

.team-description {
    color: rgba(24, 59, 78, 0.78);
    font-size: 1.05rem;
    line-height: 1.75;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.officer-card {
    padding: 18px 18px 26px;
    background-color: var(--white);
    border: 1px solid rgba(24, 59, 78, 0.1);
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(24, 59, 78, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.officer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(24, 59, 78, 0.13);
}

.officer-photo-placeholder,
.officer-photo {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    object-fit: cover;
}

.officer-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    background-color: var(--mint);
    font-size: 2.8rem;
    font-weight: 800;
}

.officer-card h3 {
    margin-top: 20px;
    color: var(--navy);
    font-size: 1.4rem;
}

.officer-role {
    color: var(--coral);
    font-size: 0.9rem;
    font-weight: 700;
    margin: 2px 0 10px;
}

.officer-card > p:last-child {
    color: rgba(24, 59, 78, 0.75);
    line-height: 1.65;
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-section {
        padding: 75px 6%;
    }

    .team-heading h2 {
        font-size: 2.2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    position: relative;
    min-height: calc(100vh - 76px);
    padding: 85px 7% 100px;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 15%, rgba(221, 241, 232, 0.95) 0 150px, transparent 152px),
        radial-gradient(circle at 92% 85%, rgba(242, 107, 91, 0.12) 0 190px, transparent 192px),
        linear-gradient(135deg, #f7faf7 0%, #f1f8f4 100%);
}

.contact-section::before {
    content: "";
    position: absolute;
    top: 55px;
    right: 8%;
    width: 90px;
    height: 90px;
    border: 18px solid rgba(8, 122, 120, 0.12);
    border-radius: 50%;
}

.contact-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(24, 59, 78, 0.09);
    border-radius: 30px;
    box-shadow: 0 24px 65px rgba(24, 59, 78, 0.1);
    backdrop-filter: blur(8px);
}

.contact-section .section-label {
    display: inline-block;
    margin-bottom: 14px;
    color: var(--coral);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.contact-section h1 {
    max-width: 780px;
    margin: 0 auto 20px;
    color: var(--navy);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.contact-description {
    max-width: 740px;
    margin: 0 auto 45px;
    color: rgba(24, 59, 78, 0.75);
    font-size: 1.05rem;
    line-height: 1.75;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    text-align: left;
}

.contact-card {
    position: relative;
    display: flex;
    min-height: 220px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 30px;
    overflow: hidden;
    color: var(--navy);
    text-decoration: none;
    background: #ffffff;
    border: 1px solid rgba(24, 59, 78, 0.09);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(24, 59, 78, 0.07);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.contact-card::after {
    content: "→";
    position: absolute;
    right: 25px;
    bottom: 22px;
    color: var(--teal);
    font-size: 1.5rem;
    font-weight: 700;
    transition: transform 0.25s ease;
}

.contact-card:hover {
    transform: translateY(-7px);
    border-color: rgba(8, 122, 120, 0.3);
    box-shadow: 0 18px 42px rgba(24, 59, 78, 0.14);
}

.contact-card:hover::after {
    transform: translateX(5px);
}

.contact-icon {
    display: grid;
    width: 52px;
    height: 52px;
    margin-bottom: 38px;
    place-items: center;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 800;
    background: var(--teal);
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(8, 122, 120, 0.22);
}

.contact-card p {
    margin: 0 0 8px;
    color: var(--coral);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.contact-card h2 {
    max-width: calc(100% - 25px);
    margin: 0;
    color: var(--navy);
    font-size: clamp(1.05rem, 1.7vw, 1.35rem);
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.email-card {
    background: linear-gradient(145deg, #ddf1e8, #f5fbf8);
}

.contact-card:nth-child(2) .contact-icon {
    background: var(--coral);
    box-shadow: 0 8px 18px rgba(242, 107, 91, 0.22);
}

.contact-note {
    max-width: 760px;
    margin: 32px auto 0;
    padding: 16px 22px;
    color: rgba(24, 59, 78, 0.72);
    font-size: 0.88rem;
    line-height: 1.6;
    background: rgba(221, 241, 232, 0.7);
    border-left: 4px solid var(--teal);
    border-radius: 9px;
    text-align: left;
}

@media (max-width: 900px) {
    .contact-container {
        padding: 45px 32px;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .contact-card {
        min-height: 180px;
    }

    .contact-icon {
        margin-bottom: 25px;
    }
}

@media (max-width: 600px) {
    .contact-section {
        padding: 50px 5% 70px;
    }

    .contact-container {
        padding: 38px 20px;
        border-radius: 22px;
    }

    .contact-section h1 {
        font-size: 2.35rem;
    }

    .contact-description {
        margin-bottom: 32px;
        font-size: 0.98rem;
    }

    .contact-card {
        min-height: 165px;
        padding: 24px;
    }
}
.contact-card:first-child h2 {
    white-space: nowrap;
    max-width: none;
}