* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #07111d;
    color: #ffffff;
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

:root {
    --navy: #07111d;
    --navy-light: #0d1a29;
    --gold: #c89b4f;
    --gold-light: #dfbb78;
    --white: #ffffff;
    --text: #bfc5cc;
}


/* =========================================
   HERO
========================================= */

.about-hero {

    min-height: 620px;

    position: relative;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(5,12,21,.95),
            rgba(5,12,21,.55),
            rgba(5,12,21,.35)
        ),
        url("images/about-banner.jpg");

    background-size: cover;
    background-position: center;

    overflow: hidden;
}

.about-hero::after {

    content: "";

    position: absolute;

    left: 0;
    right: 0;
    bottom: 0;

    height: 150px;

    background: linear-gradient(
        transparent,
        var(--navy)
    );
}

.hero-content {

    position: relative;
    z-index: 2;

    width: 90%;
    max-width: 1200px;

    margin: auto;

    animation: heroFade 1.2s ease forwards;
}

.eyebrow {

    color: var(--gold-light);

    font-size: 13px;

    letter-spacing: 4px;

    font-weight: 500;
}

.hero-content h1 {

    font-family: 'Cinzel', serif;

    font-size: clamp(45px, 6vw, 78px);

    font-weight: 400;

    line-height: 1.15;

    margin: 20px 0;
}

.hero-content h1 span {

    color: var(--gold-light);
}

.hero-content p {

    max-width: 550px;

    color: #d3d6da;

    font-size: 17px;

}

.hero-line {

    width: 80px;

    height: 2px;

    background: var(--gold);

    margin-top: 35px;
}


/* =========================================
   ABOUT
========================================= */

.about-section {

    padding: 110px 0;

    background: var(--navy);
}

.about-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;

    align-items: center;
}


/* IMAGE */

.about-image {

    position: relative;

    padding: 15px;
}

.about-image::before {

    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 65%;
    height: 65%;

    border-top: 1px solid var(--gold);
    border-left: 1px solid var(--gold);
}

.about-image img {

    width: 100%;

    height: 500px;

    object-fit: cover;

    position: relative;

    z-index: 1;
}

.experience-box {

    position: absolute;

    right: -15px;
    bottom: 35px;

    z-index: 2;

    display: flex;

    gap: 15px;

    align-items: center;

    background: var(--navy);

    border: 1px solid var(--gold);

    padding: 20px 25px;

}

.experience-box strong {

    font-family: 'Cinzel', serif;

    font-size: 42px;

    color: var(--gold);
}

.experience-box span {

    font-size: 12px;

    line-height: 1.5;

    text-transform: uppercase;

    letter-spacing: 1px;
}


/* CONTENT */

.section-label {

    display: block;

    color: var(--gold);

    font-size: 12px;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 15px;
}

.about-content h2,
.section-heading h2,
.mission-content h2,
.cta-content h2 {

    font-family: 'Cinzel', serif;

    font-weight: 400;

    line-height: 1.3;

}

.about-content h2 {

    font-size: clamp(35px, 4vw, 52px);

    margin-bottom: 20px;
}

.about-content h2 span,
.section-heading h2 span,
.mission-content h2 span,
.cta-content h2 span {

    color: var(--gold-light);
}

.gold-line {

    width: 65px;

    height: 2px;

    background: var(--gold);

    margin: 25px 0;
}

.about-content p {

    color: var(--text);

    margin-bottom: 20px;
}

.about-content .intro {

    font-size: 17px;

    color: #e1e2e4;
}


/* BUTTON */

.gold-button {

    display: inline-flex;

    align-items: center;

    gap: 15px;

    margin-top: 20px;

    padding: 14px 25px;

    background: var(--gold);

    color: #08111b;

    text-decoration: none;

    text-transform: uppercase;

    font-size: 12px;

    font-weight: 600;

    letter-spacing: 1px;

    transition: .4s;
}

.gold-button:hover {

    background: #ffffff;

    transform: translateY(-3px);
}

.gold-button i {

    transition: .3s;
}

.gold-button:hover i {

    transform: translateX(5px);
}


/* =========================================
   VISION
========================================= */

.vision-section {

    padding: 110px 0;

    background:
        linear-gradient(
            rgba(8,17,29,.96),
            rgba(8,17,29,.96)
        ),
        url("images/pattern.jpg");

}

.section-heading {

    text-align: center;

    max-width: 750px;

    margin: 0 auto 60px;
}

.section-heading h2 {

    font-size: clamp(35px, 4vw, 50px);
}

.gold-line.center {

    margin: 25px auto;
}

.vision-card {

    max-width: 850px;

    margin: auto;

    padding: 50px;

    display: flex;

    align-items: center;

    gap: 40px;

    background: #0d1a29;

    border: 1px solid rgba(200,155,79,.3);

    position: relative;

    overflow: hidden;
}

.vision-card::after {

    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    border: 1px solid rgba(200,155,79,.2);
}

.vision-icon {

    min-width: 90px;
    height: 90px;

    display: flex;

    align-items: center;
    justify-content: center;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 32px;
}

.card-number {

    color: var(--gold);

    font-size: 12px;

    letter-spacing: 2px;
}

.vision-card h3 {

    font-family: 'Cinzel', serif;

    font-size: 30px;

    margin: 5px 0 10px;
}

.vision-card p {

    color: var(--text);

    font-size: 18px;
}


/* =========================================
   MISSION
========================================= */

.mission-section {

    position: relative;

    padding: 120px 0;

    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(5,12,21,.97),
            rgba(5,12,21,.8)
        ),
        url("images/mission.jpg");

    background-size: cover;

    background-position: center;
}

.mission-content {

    max-width: 850px;
}

.mission-content h2 {

    font-size: clamp(38px, 5vw, 60px);
}

.mission-content > p {

    color: #c5cad0;

    font-size: 17px;

    max-width: 750px;

    margin-bottom: 40px;
}

.mission-points {

    display: grid;

    grid-template-columns: repeat(3,1fr);

    gap: 25px;
}

.mission-point {

    padding: 25px;

    background: rgba(13,26,41,.8);

    border: 1px solid rgba(200,155,79,.25);

    transition: .4s;
}

.mission-point:hover {

    transform: translateY(-8px);

    border-color: var(--gold);
}

.mission-point > i {

    color: var(--gold);

    font-size: 28px;

    margin-bottom: 15px;
}

.mission-point h4 {

    font-family: 'Cinzel', serif;

    font-size: 18px;

    margin-bottom: 8px;
}

.mission-point p {

    color: var(--text);

    font-size: 13px;

    line-height: 1.7;
}


/* =========================================
   VALUES
========================================= */

.values-section {

    padding: 110px 0;

    background: #07111d;
}

.values-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    gap: 20px;
}

.value-card {

    text-align: center;

    padding: 40px 25px;

    background: #0d1a29;

    border: 1px solid rgba(200,155,79,.2);

    transition: .4s;
}

.value-card:hover {

    transform: translateY(-10px);

    border-color: var(--gold);

}

.value-icon {

    width: 70px;
    height: 70px;

    margin: 0 auto 25px;

    display: flex;

    justify-content: center;
    align-items: center;

    border: 1px solid var(--gold);

    color: var(--gold);

    font-size: 25px;
}

.value-card h3 {

    font-family: 'Cinzel', serif;

    font-size: 20px;

    margin-bottom: 12px;
}

.value-card p {

    color: var(--text);

    font-size: 13px;
}


/* =========================================
   CTA
========================================= */

.about-cta {

    position: relative;

    padding: 120px 0;

    text-align: center;

    background:
        linear-gradient(
            rgba(6,13,22,.88),
            rgba(6,13,22,.94)
        ),
        url("images/cta.jpg");

    background-size: cover;

    background-position: center;
}

.cta-content {

    position: relative;

    z-index: 2;
}

.cta-content h2 {

    max-width: 800px;

    margin: auto;

    font-size: clamp(38px, 5vw, 60px);
}

.cta-content p {

    max-width: 650px;

    margin: 25px auto;

    color: #c5c9ce;
}


/* =========================================
   ANIMATION
========================================= */

@keyframes heroFade {

    from {

        opacity: 0;

        transform: translateY(30px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}


/* =========================================
   TABLET
========================================= */

@media(max-width: 992px) {

    .about-grid {

        grid-template-columns: 1fr;

        gap: 60px;
    }

    .about-image {

        max-width: 700px;

        margin: auto;
    }

    .mission-points {

        grid-template-columns: 1fr 1fr;
    }

    .values-grid {

        grid-template-columns: 1fr 1fr;
    }

}


/* =========================================
   MOBILE
========================================= */

@media(max-width: 600px) {

    .about-hero {

        min-height: 550px;
    }

    .about-section,
    .vision-section,
    .mission-section,
    .values-section,
    .about-cta {

        padding: 75px 0;
    }

    .about-image img {

        height: 380px;
    }

    .experience-box {

        right: 0;

        bottom: 20px;

        padding: 15px;
    }

    .experience-box strong {

        font-size: 30px;
    }

    .vision-card {

        padding: 30px;

        flex-direction: column;

        text-align: center;
    }

    .mission-points {

        grid-template-columns: 1fr;
    }

    .values-grid {

        grid-template-columns: 1fr;
    }

    .hero-content h1 {

        font-size: 40px;
    }

}