/* =========================================================
   ABOUT PAGE
========================================================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #263238;
    line-height: 1.7;
    background: #ffffff;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

img {
    max-width: 100%;
    display: block;
}


/* =========================================================
   COMMON
========================================================= */

.section-label {
    display: inline-block;
    color: #1565A8;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-heading h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #0B2345;
    margin-bottom: 18px;
}

.section-heading h2 span {
    color: #1565A8;
}

.section-heading p {
    font-size: 17px;
    color: #68747c;
}


/* =========================================================
   HERO
========================================================= */

.about-hero {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background:
        url("/images/about/peter-hansen-MeGmdPNe36w-unsplash.jpg")
        center center / cover no-repeat;
}

.about-hero-bg {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(5, 22, 45, 0.90),
            rgba(5, 22, 45, 0.55),
            rgba(5, 22, 45, 0.20)
        );
}

.about-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 60%,
            rgba(5, 22, 45, 0.45)
        );
}

.about-hero-content {
    position: relative;
    z-index: 2;
    color: #ffffff;
}

.about-hero-content .hero-label {
    display: inline-block;

    padding: 8px 16px;

    border-left: 3px solid #C79532;

    background: rgba(255,255,255,0.08);

    color: #ffffff;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 2px;
}

.about-hero-content h1 {
    max-width: 800px;

    margin-top: 25px;

    font-size: 64px;
    line-height: 1.08;
    font-weight: 700;
}

.about-hero-content h1 span {
    color: #C79532;
}

.about-hero-content p {
    max-width: 650px;

    margin-top: 25px;

    font-size: 20px;

    color: #e6edf3;
}

.hero-line {
    width: 80px;
    height: 4px;

    margin-top: 30px;

    background: #C79532;
}


/* =========================================================
   INTRO
========================================================= */

.about-intro {
    padding: 100px 0;
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 80px;
    align-items: center;
}

.intro-image {
    position: relative;
}

.intro-image img {
    width: 100%;
    height: 500px;

    object-fit: cover;

    border-radius: 12px;
}

.intro-image::after {
    content: "";

    position: absolute;

    width: 120px;
    height: 120px;

    right: -25px;
    bottom: -25px;

    border-right: 5px solid #1565A8;
    border-bottom: 5px solid #1565A8;

    border-radius: 0 0 10px 0;

    z-index: -1;
}

.image-badge {
    position: absolute;

    left: 25px;
    bottom: 25px;

    padding: 18px 22px;

    background: #0B2345;
    color: #ffffff;

    border-radius: 6px;

    display: flex;
    flex-direction: column;
}

.image-badge strong {
    color: #C79532;
    font-size: 17px;
}

.image-badge span {
    font-size: 11px;
    letter-spacing: 1px;
}

.intro-content h2 {
    font-size: 43px;
    line-height: 1.2;

    color: #0B2345;

    margin-bottom: 25px;
}

.intro-content h2 span {
    color: #1565A8;
}

.intro-content p {
    color: #59656d;

    font-size: 17px;

    margin-bottom: 18px;
}

.company-details {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 30px;
}

.company-details div {
    padding: 18px;

    border-left: 3px solid #1565A8;

    background: #F5F7F9;
}

.company-details span {
    display: block;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 1.5px;

    color: #78858e;
}

.company-details strong {
    display: block;

    margin-top: 5px;

    color: #0B2345;

    font-size: 14px;
}


/* =========================================================
   STATS
========================================================= */

.about-stats {
    background: #0B2345;
    padding: 45px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;

    padding: 10px 20px;

    border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item strong {
    display: block;

    color: #C79532;

    font-size: 34px;
    line-height: 1.2;
}

.stat-item span {
    display: block;

    margin-top: 5px;

    color: #d7e0e7;

    font-size: 14px;
}


/* =========================================================
   WHAT WE DO
========================================================= */

.what-we-do {
    padding: 100px 0;
    background: #F6F8FA;
}

.career-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

.career-card {
    position: relative;

    background: #ffffff;

    border-radius: 12px;

    overflow: hidden;

    box-shadow: 0 10px 35px rgba(11,35,69,0.08);

    transition: transform 0.3s ease,
                box-shadow 0.3s ease;
}

.career-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(11,35,69,0.14);
}

.career-number {
    position: absolute;

    z-index: 3;

    top: 18px;
    left: 18px;

    width: 42px;
    height: 42px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #C79532;
    color: #ffffff;

    font-size: 13px;
    font-weight: 700;
}

.career-image {
    height: 270px;
    overflow: hidden;
}

.career-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.5s ease;
}

.career-card:hover .career-image img {
    transform: scale(1.05);
}

.career-content {
    padding: 28px;
}

.career-content h3 {
    color: #0B2345;

    font-size: 26px;

    margin-bottom: 10px;
}

.career-content p {
    color: #69757d;

    font-size: 15px;

    margin-bottom: 18px;
}

.career-content a {
    color: #1565A8;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;
}


/* =========================================================
   HOW WE HELP
========================================================= */

.how-we-help {
    padding: 100px 0;

    background: #0B2345;
}

.section-heading.light .section-label {
    color: #C79532;
}

.section-heading.light h2 {
    color: #ffffff;
}

.section-heading.light h2 span {
    color: #C79532;
}

.process-grid {
    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 25px;
}

.process-item {
    padding: 30px;

    border: 1px solid rgba(255,255,255,0.12);

    background: rgba(255,255,255,0.04);

    border-radius: 10px;

    transition: 0.3s;
}

.process-item:hover {
    background: rgba(255,255,255,0.08);

    transform: translateY(-5px);
}

.process-icon {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #C79532;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    margin-bottom: 25px;
}

.process-item h3 {
    color: #ffffff;

    font-size: 21px;

    margin-bottom: 10px;
}

.process-item p {
    color: #b9c6d0;

    font-size: 14px;
}


/* =========================================================
   ELIGIBILITY
========================================================= */

.eligibility {
    padding: 100px 0;
}

.eligibility-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}

.eligibility-content h2 {
    font-size: 45px;
    line-height: 1.2;

    color: #0B2345;

    margin-bottom: 20px;
}

.eligibility-content h2 span {
    color: #1565A8;
}

.eligibility-content > p {
    color: #68747c;

    font-size: 17px;

    margin-bottom: 30px;
}

.eligibility-list {
    margin-bottom: 30px;
}

.eligibility-item {
    display: flex;

    gap: 15px;

    margin-bottom: 20px;
}

.eligibility-item > span {
    flex-shrink: 0;

    width: 28px;
    height: 28px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #EAF3FA;

    color: #1565A8;

    font-weight: 700;
}

.eligibility-item strong {
    display: block;

    color: #0B2345;

    margin-bottom: 2px;
}

.eligibility-item p {
    color: #68747c;

    font-size: 14px;
}

.eligibility-image {
    position: relative;
}

.eligibility-image img {
    width: 100%;
    height: 520px;

    object-fit: cover;

    border-radius: 12px;
}

.floating-card {
    position: absolute;

    right: -20px;
    bottom: 30px;

    padding: 20px 25px;

    background: #ffffff;

    box-shadow: 0 12px 30px rgba(0,0,0,0.15);

    border-radius: 7px;

    display: flex;
    flex-direction: column;
}

.floating-card strong {
    color: #1565A8;

    font-size: 12px;

    letter-spacing: 1px;
}

.floating-card span {
    color: #0B2345;

    font-size: 18px;

    font-weight: 700;
}


/* =========================================================
   BUTTONS
========================================================= */

.primary-btn {
    display: inline-block;

    padding: 14px 28px;

    background: #1565A8;
    color: #ffffff;

    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s;
}

.primary-btn:hover {
    background: #0B2345;
}

.outline-btn {
    display: inline-block;

    padding: 12px 27px;

    border: 2px solid #ffffff;

    color: #ffffff;

    border-radius: 5px;

    text-decoration: none;

    font-size: 14px;
    font-weight: 700;

    transition: 0.3s;
}

.outline-btn:hover {
    background: #ffffff;
    color: #0B2345;
}


/* =========================================================
   TRAINING
========================================================= */

.training {
    padding: 100px 0;

    background: #F6F8FA;
}

.training-grid {
    display: grid;

    grid-template-columns: repeat(5, 1fr);

    gap: 18px;
}

.training-card {
    min-height: 190px;

    padding: 25px 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background: #ffffff;

    border-radius: 8px;

    border-top: 4px solid #1565A8;

    box-shadow: 0 8px 25px rgba(11,35,69,0.07);

    transition: 0.3s;
}

.training-card:hover {
    transform: translateY(-5px);

    border-top-color: #C79532;
}

.training-card strong {
    color: #1565A8;

    font-size: 26px;

    margin-bottom: 12px;
}

.training-card span {
    color: #69757d;

    font-size: 13px;
}


/* =========================================================
   GLOBAL OPPORTUNITIES
========================================================= */

.global-opportunities {
    position: relative;

    padding: 100px 0;

    color: #ffffff;

    background:
        url("/images/about/f379288c754fd7780459f0b754d29184.jpg")
        center / cover no-repeat;
}

.global-overlay {
    position: absolute;
    inset: 0;

    background: rgba(5,22,45,0.88);
}

.global-content {
    position: relative;
    z-index: 2;

    text-align: center;
}

.global-content .section-label {
    color: #C79532;
}

.global-content h2 {
    font-size: 44px;

    line-height: 1.2;

    max-width: 750px;

    margin: 0 auto 20px;
}

.global-content h2 span {
    color: #C79532;
}

.global-content > p {
    max-width: 750px;

    margin: auto;

    color: #d0dae2;

    font-size: 17px;
}

.ports-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    max-width: 850px;

    margin: 45px auto 0;
}

.ports-grid div {
    padding: 25px;

    text-align: left;

    background: rgba(255,255,255,0.07);

    border: 1px solid rgba(255,255,255,0.12);

    border-radius: 8px;
}

.ports-grid strong {
    display: block;

    color: #C79532;

    margin-bottom: 8px;

    font-size: 15px;
}

.ports-grid span {
    color: #d0dae2;

    font-size: 14px;
}


/* =========================================================
   MISSION & VISION
========================================================= */

.mission-vision {
    padding: 100px 0;

    background: #ffffff;
}

.mv-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;
}

.mv-card {
    padding: 50px;

    min-height: 280px;

    border-radius: 10px;

    position: relative;

    overflow: hidden;
}

.mv-card span {
    position: absolute;

    top: 20px;
    right: 25px;

    font-size: 70px;

    font-weight: 700;

    opacity: 0.08;
}

.mv-card h2 {
    font-size: 32px;

    margin-bottom: 18px;
}

.mv-card p {
    max-width: 500px;

    font-size: 16px;
}

.mission-card {
    background: #F1F5F8;
    color: #263238;
}

.mission-card h2 {
    color: #1565A8;
}

.vision-card {
    background: #0B2345;
    color: #ffffff;
}

.vision-card h2 {
    color: #C79532;
}

.vision-card p {
    color: #d2dce4;
}


/* =========================================================
   CTA
========================================================= */

.about-cta {
    padding: 100px 20px;

    text-align: center;

    background:
        linear-gradient(
            135deg,
            #1565A8,
            #0B2345
        );

    color: #ffffff;
}

.about-cta .section-label {
    color: #C79532;
}

.about-cta h2 {
    max-width: 750px;

    margin: auto;

    font-size: 48px;

    line-height: 1.2;
}

.about-cta h2 span {
    color: #C79532;
}

.about-cta p {
    margin: 20px auto 30px;

    color: #d9e3ea;

    font-size: 17px;
}

.cta-buttons {
    display: flex;

    justify-content: center;

    gap: 15px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1000px) {

    .about-hero-content h1 {
        font-size: 52px;
    }

    .intro-grid,
    .eligibility-grid {
        grid-template-columns: 1fr;

        gap: 50px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        margin-top: 20px;
    }

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

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .training-card:last-child {
        grid-column: span 2;
    }

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


@media (max-width: 700px) {

    .about-hero {
        min-height: 500px;
    }

    .about-hero-content h1 {
        font-size: 39px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-intro,
    .what-we-do,
    .how-we-help,
    .eligibility,
    .training,
    .global-opportunities,
    .mission-vision,
    .about-cta {
        padding: 70px 0;
    }

    .intro-content h2,
    .eligibility-content h2 {
        font-size: 34px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .intro-image img {
        height: 350px;
    }

    .company-details {
        grid-template-columns: 1fr;
    }

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

    .stat-item {
        border-right: none;
    }

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

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

    .training-card:last-child {
        grid-column: auto;
    }

    .eligibility-image img {
        height: 380px;
    }

    .floating-card {
        right: 15px;
    }

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

    .global-content h2 {
        font-size: 34px;
    }

    .mv-card {
        padding: 35px 25px;
    }

    .about-cta h2 {
        font-size: 36px;
    }

    .cta-buttons {
        flex-direction: column;

        align-items: center;
    }

    .primary-btn,
    .outline-btn {
        width: 100%;
        max-width: 300px;

        text-align: center;
    }
}


@media (max-width: 480px) {

    .about-hero-content h1 {
        font-size: 32px;
    }

    .about-hero-content p {
        font-size: 14px;
    }

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

    .stat-item {
        border-bottom: 1px solid rgba(255,255,255,0.12);

        padding: 18px;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .career-image {
        height: 220px;
    }

    .career-content {
        padding: 22px;
    }

    .intro-image::after {
        display: none;
    }

    .image-badge {
        left: 15px;
        bottom: 15px;
    }

    .about-cta h2 {
        font-size: 30px;
    }
}