/* ==========================================
        ABOUT PAGE — MOBILE VIEW
        0px - 767px
========================================== */

@media (max-width: 767px) {
           body {
        font-family: 'Poppins', sans-serif;
    }
      

/* ================= HEADER ================= */

    #about-header {

        width: 100%;

        position: fixed;

        top: 0;
        left: 0;

        z-index: 1000;
    }


    /* ================= NAVBAR ================= */

    .navbar {

        width: 100%;
        height: 70px;

        display: flex;

        justify-content: space-between;
        align-items: center;

       padding: 0 18px;

        background: #0d2448;
    }


    /* ================= LOGO ================= */

    .logo h2 {

        color: #ffffff;

        font-size: 1.2rem;

        font-weight: 700;
    }


    .logo span {

        color: #63b2ff;
    }


    /* ================= DESKTOP NAVIGATION ================= */

    .nav-links {

        display: none;
    }


    /* ================= HAMBURGER ================= */

    .hamburger {

        display: block;

        border: none;

        background: none;

        color: #ffffff;

        font-size: 1.8rem;

        cursor: pointer;
        margin-right: 30px;
    }


    /* ================= MOBILE MENU ================= */

    .mobile-menu {

        position: fixed;

        top: 0;
        right: -100%;

        width: 75%;
        height: 100vh;

        background: #12386b;

        display: flex;

        flex-direction: column;

        padding: 30px;

        transition: right 0.4s ease;

        z-index: 1001;
    }


    /* ================= OPEN MENU ================= */

    .mobile-menu.active {

        right: 0;
    }


    /* ================= CLOSE BUTTON ================= */

    .close-menu {

        align-self: flex-end;

        border: none;

        background: none;

        color: #ffffff;

        font-size: 2rem;

        cursor: pointer;

        margin-bottom: 40px;
    }


    /* ================= MENU LINKS ================= */

    .mobile-menu a {

        text-decoration: none;

        color: #ffffff;

        font-size: 1.2rem;

        margin: 15px 0;

        transition: 0.3s;
    }


    .mobile-menu a:hover {

        color: #63b2ff;

        padding-left: 10px;
    }


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

.about-hero {

    width: 100%;

    min-height: auto;

    background: linear-gradient(
        180deg,
        #06469a 0%,
        #032b65 45%,
        #001f4f 100%
    );

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    padding: 90px 7% 45px;

    box-sizing: border-box;
}


/* ==========================================
        ABOUT IMAGE — MOBILE NEON GLASS
========================================== */

.about-image {
    width: 100%;
    max-width: 380px;
    height: 430px;
    position: relative;

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

    margin-top: 25px;
    margin-bottom: 20px;

    box-sizing: border-box;

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

    border: 2px solid rgba(150, 210, 255, 0.8);

    border-radius: 30px;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    box-shadow:
        0 0 10px rgba(99, 178, 255, 0.8),
        0 0 25px rgba(99, 178, 255, 0.5),
        0 0 50px rgba(15, 98, 215, 0.35);

    overflow: hidden;
}


/* ==========================================
        BLUE GLOW
========================================== */

.about-image::before {
    content: "";

    position: absolute;

    width: 220px;
    height: 220px;

    top: 80px;
    right: -20px;

    border-radius: 50%;

    background: #006eff;

    opacity: 0.35;

    filter: blur(8px);

    box-shadow:
        0 0 40px #006eff,
        0 0 80px #006eff;

    z-index: 0;
}


/* ==========================================
        SECOND BLUE GLOW
========================================== */

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

    position: absolute;

    width: 150px;
    height: 150px;

    bottom: -40px;
    left: -35px;

    border-radius: 50%;

    background: #008cff;

    opacity: 0.4;

    filter: blur(8px);

    box-shadow:
        0 0 30px #008cff,
        0 0 60px #008cff;

    z-index: 0;
}


/* ==========================================
        PORTRAIT
========================================== */

.about-image img {
    width: 100%;
    max-width: 430px;
    height: auto;

    display: block;

    position: relative;
    z-index: 2;

    object-fit: contain;

    transition: transform 0.4s ease;
}


/* ==========================================
        IMAGE HOVER
========================================== */

.about-image:hover img {
    transform: scale(1.03);
}

/* ==========================================
        ABOUT CONTENT
========================================== */

.about-content {

    width: 100%;

    color: #ffffff;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* ==========================================
        ABOUT HEADING
========================================== */

.about-content h1 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 2.7rem;

    font-weight: 700;

    line-height: 1.2;
}


/* ==========================================
        ABOUT SUBHEADING
========================================== */

.about-content h2 {

    margin: 0 0 28px;

    color: #2688ff;

    font-size: 1.35rem;

    font-weight: 600;

    line-height: 1.4;
}


/* ==========================================
        ABOUT PARAGRAPHS
========================================== */

.about-content > p {

    width: 100%;

    margin: 0 0 28px;

    color: #ffffff;

    font-size: 1rem;

    line-height: 1.8;

    text-align: center;
}


/* ==========================================
        EXPERIENCE + LOCATION
========================================== */

.about-info {

    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 8px;
}


/* ==========================================
        INFO BOX
========================================== */

.info-box {

    min-height: 220px;

    padding: 30px 15px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: rgba(40, 100, 180, 0.25);

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.05);
}


/* ==========================================
        INFO ICON
========================================== */

.info-icon {

    width: 88px;
    height: 88px;

    border-radius: 50%;

    display: flex;

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

    background: #0877f9;

    margin-bottom: 22px;
}


.info-icon i {

    color: #ffffff;

    font-size: 2.2rem;
}


/* ==========================================
        INFO TITLE
========================================== */

.info-box h3 {

    margin: 0 0 12px;

    color: #2688ff;

    font-size: 1.2rem;

    font-weight: 600;
}


/* ==========================================
        INFO TEXT
========================================== */

.info-box p {

    margin: 0;

    color: #ffffff;

    font-size: 1.1rem;

    font-weight: 600;
}


/* ==========================================
        CALL TO ACTION
========================================== */

.about-cta {

    width: 100%;

    min-height: 400px;

    box-sizing: border-box;

    padding: 60px 7% 70px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    position: relative;

    overflow: hidden;

    background: #011a3a;

    color: #ffffff;
}


/* ==========================================
        CTA BACKGROUND SHAPES
========================================== */

.about-cta::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 150px;

    left: -100px;
    bottom: 80px;

    background: #062b61;

    border-radius: 50%;

    transform: rotate(25deg);
}


.about-cta::after {

    content: "";

    position: absolute;

    width: 300px;
    height: 150px;

    right: -100px;
    bottom: 80px;

    background: #062b61;

    border-radius: 50%;

    transform: rotate(-25deg);
}


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

.cta-icon,
.about-cta h2,
.about-cta p,
.cta-btn {

    position: relative;

    z-index: 2;
}


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

.cta-icon {

    margin-bottom: 25px;
}


.cta-icon i {

    color: #0877f9;

    font-size: 3.5rem;
}


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

.about-cta h2 {

    margin: 0 0 20px;

    color: #ffffff;

    font-size: 2rem;

    font-weight: 700;
}


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

.about-cta p {

    max-width: 450px;

    margin: 0 0 30px;

    color: #ffffff;

    font-size: 1rem;

    line-height: 1.8;
}


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

.cta-btn {

    display: inline-block;

    padding: 15px 55px;

    background: #0877f9;

    color: #ffffff;

    text-decoration: none;

    border-radius: 7px;

    font-size: 1rem;

    font-weight: 600;

    transition: 0.3s;
}


.cta-btn:hover {

    background: #0665d6;

}
}

/* ==========================================
        SMALL PHONES
        0px - 400px
========================================== */

@media (max-width: 400px) {

    .navbar {
        height: 80px;
    }

    .logo h2 {
        font-size: 1rem;
    }

    .hamburger {
        font-size: 1.7rem;
        
    }

    .about-hero {
        padding-left: 6%;
        padding-right: 6%;
    }

    .about-image {
        width: 100%;
        max-width: 330px;
        height: 370px;

        position: relative;

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

        margin-top: 20px;
        margin-bottom: 15px;

        box-sizing: border-box;

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

        border: 2px solid rgba(150, 210, 255, 0.8);

        border-radius: 26px;

        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);

        box-shadow:
            0 0 8px rgba(99, 178, 255, 0.8),
            0 0 20px rgba(99, 178, 255, 0.5),
            0 0 40px rgba(15, 98, 215, 0.35);

        overflow: hidden;
    }


    .about-image::before {
        content: "";

        position: absolute;

        width: 180px;
        height: 180px;

        top: 70px;
        right: -30px;

        border-radius: 50%;

        background: #006eff;

        opacity: 0.35;

        filter: blur(8px);

        box-shadow:
            0 0 30px #006eff,
            0 0 60px #006eff;

        z-index: 0;
    }


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

        position: absolute;

        width: 120px;
        height: 120px;

        bottom: -30px;
        left: -30px;

        border-radius: 50%;

        background: #008cff;

        opacity: 0.4;

        filter: blur(8px);

        box-shadow:
            0 0 25px #008cff,
            0 0 50px #008cff;

        z-index: 0;
    }


    .about-image img {
        width: 100%;
        max-width: 360px;
        height: auto;

        display: block;

        position: relative;
        z-index: 2;

        object-fit: contain;

        transition: transform 0.4s ease;
    }


    .about-image:hover img {
        transform: scale(1.03);
    }


    .about-content h1 {
        font-size: 2.3rem;
    }

    .about-content h2 {
        font-size: 1.15rem;
    }

    .about-content > p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-info {
        gap: 12px;
    }

    .info-box {
        min-height: 200px;
        padding: 25px 10px;
    }

    .info-icon {
        width: 75px;
        height: 75px;
    }

    .info-icon i {
        font-size: 1.8rem;
    }

    .info-box h3 {
        font-size: 1rem;
    }

    .info-box p {
        font-size: 0.95rem;
    }

    .about-cta h2 {
        font-size: 1.7rem;
    }

    .cta-btn {
        padding: 14px 45px;
    }
}

/* ==========================================
        ABOUT PAGE — TABLET VIEW
        768px - 1024px
========================================== */

@media (min-width: 768px) and (max-width: 1024px) {
      body {
    font-family: 'Poppins', sans-serif;
    background: #031638;
        color: #ffffff;
        overflow-x: auto;
}

main {
    width: 100%;
    min-height: 100vh;
    background: #031638;
}


    /* ================= HEADER ================= */

    #about-header {

        width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:1000;
    }


    /* ================= NAVBAR ================= */
.navbar {
    width: 100%;
    height: 75px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    background: #0d2448;
}


    /* ================= LOGO ================= */

    .logo h2 {

        color: #ffffff;

        font-size: 1.45rem;

        font-weight: 700;
    }


    .logo span {

        color: #63b2ff;
    }


    /* ================= NAVIGATION ================= */

    .nav-links {

        display: flex;

        align-items: center;

        gap: 25px;

        list-style: none;
         overflow-x: auto;
         padding-right: 5rem;
    }


    .nav-links a {

        text-decoration: none;

        color: #ffffff;

        font-size: 0.95rem;

        font-weight: 500;

        transition: 0.3s;
    }


    .nav-links a:hover {

        color: #63b2ff;
    }


    .nav-links .active {

        color: #63b2ff;
    }


    /* NO UNDERLINE */

    .nav-links a.active::after {

        display: none;
    }


    /* ================= HAMBURGER ================= */

    .hamburger {

        display: none;
    }


    /* ================= MOBILE MENU ================= */

    .mobile-menu {

        display: none;
    }


.about-hero {
    width: 110%;

     min-height: 100vh;

    display: flex;
    flex-direction: column;

    align-items: center;
    text-align: center;

    box-sizing: border-box;

    padding: 100px 7% 60px;

    background:
        radial-gradient(
            circle at 50% 20%,
            rgba(15, 98, 215, 0.35),
            transparent 35%
        ),
        linear-gradient(
            180deg,
            #020b1c,
            #061b3d,
            #020b1c
        );

    color: #ffffff;
}


/* ==========================================
        ABOUT IMAGE — TABLET NEON GLASS
========================================== */

.about-image {

    width: 380px;
    max-width: 90%;
    height: 430px;

    position: relative;

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

    margin-top: 25px;
    margin-bottom: 35px;

    box-sizing: border-box;

    /* Glass background */
    background: rgba(255, 255, 255, 0.07);

    /* Neon border */
    border: 2px solid rgba(150, 210, 255, 0.8);

    border-radius: 30px;

    /* Glass effect */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    /* Neon glow */
    box-shadow:
        0 0 10px rgba(99, 178, 255, 0.8),
        0 0 25px rgba(99, 178, 255, 0.5),
        0 0 50px rgba(15, 98, 215, 0.35);

    overflow: hidden;
}


/* ==========================================
        BLUE GLOW
========================================== */

.about-image::before {

    content: "";

    position: absolute;

    width: 230px;
    height: 230px;

    top: 80px;
    right: 0;

    border-radius: 50%;

    background: #006eff;

    opacity: 0.35;

    filter: blur(8px);

    box-shadow:
        0 0 40px #006eff,
        0 0 80px #006eff;

    z-index: 0;
}


/* ==========================================
        SECOND BLUE GLOW
========================================== */

.about-image::after {

    content: "";

    position: absolute;

    width: 150px;
    height: 150px;

    bottom: -40px;
    left: -35px;

    border-radius: 50%;

    background: #008cff;

    opacity: 0.4;

    filter: blur(8px);

    box-shadow:
        0 0 30px #008cff,
        0 0 60px #008cff;

    z-index: 0;
}


/* ==========================================
        PORTRAIT
========================================== */

.about-image img {

    width: 100%;
    max-width: 390px;

    height: auto;

    display: block;

    position: relative;

    z-index: 2;

    object-fit: contain;

    transition: transform 0.4s ease;
}


/* ==========================================
        IMAGE HOVER
========================================== */

.about-image:hover img {

    transform: scale(1.03);
}


/* ==========================================
        ABOUT CONTENT
========================================== */

.about-content {

    width: 90%;

    max-width: 750px;

    display: flex;

    flex-direction: column;

    align-items: center;

    color: #ffffff;
}


/* ==========================================
        ABOUT HEADING
========================================== */

.about-content h1 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 3.2rem;

    font-weight: 700;

    line-height: 1.2;
}


/* ==========================================
        ABOUT SUBHEADING
========================================== */

.about-content h2 {

    margin: 0 0 30px;

    color: #2688ff;

    font-size: 1.55rem;

    font-weight: 600;

    line-height: 1.4;
}


/* ==========================================
        ABOUT PARAGRAPHS
========================================== */

.about-content > p {

    width: 100%;

    max-width: 720px;

    margin: 0 0 28px;

    color: #ffffff;

    font-size: 1.05rem;

    line-height: 1.85;

    text-align: center;
}


/* ==========================================
        EXPERIENCE + LOCATION
========================================== */

.about-info {

    width: 100%;

    max-width: 750px;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    margin-top: 10px;
}


/* ==========================================
        INFO BOX
========================================== */

.info-box {

    min-height: 230px;

    padding: 35px 25px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    background: rgba(40, 100, 180, 0.25);

    border-radius: 18px;

    border: 1px solid rgba(255, 255, 255, 0.05);
}


/* ==========================================
        INFO ICON
========================================== */

.info-icon {

    width: 90px;

    height: 90px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 22px;

    border-radius: 50%;

    background: #0877f9;
}


.info-icon i {

    color: #ffffff;

    font-size: 2.3rem;
}


/* ==========================================
        INFO TITLE
========================================== */

.info-box h3 {

    margin: 0 0 12px;

    color: #2688ff;

    font-size: 1.3rem;

    font-weight: 600;
}


/* ==========================================
        INFO TEXT
========================================== */

.info-box p {

    margin: 0;

    color: #ffffff;

    font-size: 1.15rem;

    font-weight: 600;
}


/* ==========================================
        CALL TO ACTION
========================================== */

.about-cta {
    width: 110%;

    min-height: 400px;

    padding: 65px 7% 75px;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    position: relative;

    overflow: hidden;

    background: #011a3a;

    color: #ffffff;
}


/* ==========================================
        CTA BACKGROUND SHAPES
========================================== */

.about-cta::before {

    content: "";

    position: absolute;

    width: 420px;

    height: 190px;

    left: -140px;

    bottom: 80px;

    background: #062b61;

    border-radius: 50%;

    transform: rotate(25deg);
}


.nav-links a.active {
    color: #3b94ff;
}


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

.cta-icon,
.about-cta h2,
.about-cta p,
.cta-btn {

    position: relative;

    z-index: 2;
}


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

.cta-icon {

    margin-bottom: 25px;
}


.cta-icon i {

    color: #0877f9;

    font-size: 3.8rem;
}


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

.about-cta h2 {

    margin: 0 0 20px;

    color: #ffffff;

    font-size: 2.3rem;

    font-weight: 700;
}


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

.about-cta p {

    max-width: 600px;

    margin: 0 0 32px;

    color: #ffffff;

    font-size: 1.1rem;

    line-height: 1.8;
}


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

.cta-btn {

    display: inline-block;

    padding: 16px 60px;

    background: #0877f9;

    color: #ffffff;

    text-decoration: none;

    border-radius: 7px;

    font-size: 1.05rem;

    font-weight: 600;

    transition: 0.3s;
}


.cta-btn:hover {

    background: #0665d6;
}

}

/* ==========================================
        ABOUT PAGE — DESKTOP VIEW
        1025px AND ABOVE
========================================== */

@media (min-width: 1025px) {
           body {
        font-family: 'Poppins', sans-serif;
    }


  /* ================= HEADER ================= */

    #about-header {

        width: 100%;

        position: fixed;

        top: 0;
        left: 0;

        z-index: 1000;
    }


    /* ================= NAVBAR ================= */

    .navbar {

        width: 100%;
        height: 80px;

        display: flex;

        justify-content: space-between;
        align-items: center;

        padding: 0 10%;

        background: #0d2448;
    }


    /* ================= LOGO ================= */

    .logo h2 {

        color: #ffffff;

        font-size: 1.7rem;

        font-weight: 700;
    }


    .logo span {

        color: #63b2ff;
    }


    /* ================= NAVIGATION ================= */

    .nav-links {

        display: flex;

        align-items: center;

        gap: 45px;

        list-style: none;

        padding-right: 20rem;
    }


    .nav-links a {

        text-decoration: none;

        color: #ffffff;

        font-size: 1.05rem;

        font-weight: 500;

        transition: 0.3s;
    }


    .nav-links a:hover {

        color: #63b2ff;
    }


    .nav-links .active {

        color: #63b2ff;
    }


    /* NO UNDERLINE */

    .nav-links a.active::after {

        display: none;
    }


    /* ================= HAMBURGER ================= */

    .hamburger {

        display: none;
    }


    /* ================= MOBILE MENU ================= */

    .mobile-menu {

        display: none;
    }


.about-hero {
    width: 100%;
    min-height: 650px;

    display: grid;

    grid-template-columns: 45% 55%;

    align-items: center;

    box-sizing: border-box;

    padding: 100px 7% 60px;

    background:
        radial-gradient(
            circle at 20% 50%,
            rgba(15, 98, 215, 0.35),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #020b1c,
            #061b3d,
            #020b1c
        );

    color: #ffffff;
}

/* ==========================================
        ABOUT IMAGE — NEON GLASS
========================================== */

.about-image {

    width: 100%;
    max-width: 520px;
    height: 560px;

    position: relative;

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

    box-sizing: border-box;

    /* Glass background */
    background: rgba(255, 255, 255, 0.07);

    /* Neon border */
    border: 2px solid rgba(150, 210, 255, 0.8);

    border-radius: 35px;

    /* Glass effect */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    /* Neon glow */
    box-shadow:
        0 0 10px rgba(99, 178, 255, 0.8),
        0 0 30px rgba(99, 178, 255, 0.5),
        0 0 60px rgba(15, 98, 215, 0.35);

    overflow: hidden;
}


/* ==========================================
        BLUE GLOW BEHIND PORTRAIT
========================================== */

.about-image::before {

    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    top: 100px;
    right: 10px;

    border-radius: 50%;

    background: #006eff;

    opacity: 0.35;

    filter: blur(10px);

    box-shadow:
        0 0 50px #006eff,
        0 0 100px #006eff;

    z-index: 0;
}


/* ==========================================
        SECOND BLUE GLOW
========================================== */

.about-image::after {

    content: "";

    position: absolute;

    width: 200px;
    height: 200px;

    bottom: -70px;
    left: -60px;

    border-radius: 50%;

    background: #008cff;

    opacity: 0.4;

    filter: blur(10px);

    box-shadow:
        0 0 40px #008cff,
        0 0 80px #008cff;

    z-index: 0;
}


/* ==========================================
        PORTRAIT
========================================== */

.about-image img {

    width: 100%;
    max-width: 520px;

    height: auto;

    display: block;

    position: relative;

    z-index: 2;

    object-fit: contain;

    transition: transform 0.4s ease;
}


/* ==========================================
        IMAGE HOVER
========================================== */

.about-image:hover img {

    transform: scale(1.03);
}

/* ==========================================
        ABOUT CONTENT
========================================== */

.about-content {

    width: 100%;

    max-width: 680px;

    padding: 50px 0 50px 30px;

    box-sizing: border-box;

    color: #ffffff;
}


/* ==========================================
        ABOUT HEADING
========================================== */

.about-content h1 {

    margin: 0 0 12px;

    color: #ffffff;

    font-size: 3.6rem;

    font-weight: 700;

    line-height: 1.2;
}


/* ==========================================
        ABOUT SUBHEADING
========================================== */

.about-content h2 {

    margin: 0 0 28px;

    color: #2688ff;

    font-size: 1.55rem;

    font-weight: 600;

    line-height: 1.4;
}


/* ==========================================
        ABOUT PARAGRAPHS
========================================== */

.about-content > p {

    max-width: 650px;

    margin: 0 0 22px;

    color: #ffffff;

    font-size: 1rem;

    line-height: 1.8;

    text-align: left;
}


/* ==========================================
        EXPERIENCE + LOCATION
========================================== */

.about-info {

    width: 100%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;

    margin-top: 30px;
}


/* ==========================================
        INFO BOX
========================================== */

.info-box {

    min-height: 125px;

    padding: 20px;

    box-sizing: border-box;

    display: flex;

    align-items: center;

    gap: 18px;

    background: rgba(40, 100, 180, 0.28);

    border-radius: 15px;

    border: 1px solid rgba(255, 255, 255, 0.05);
}


/* ==========================================
        INFO ICON
========================================== */

.info-icon {

    flex-shrink: 0;

    width: 65px;

    height: 65px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #0877f9;
}


.info-icon i {

    color: #ffffff;

    font-size: 1.7rem;
}


/* ==========================================
        INFO TITLE
========================================== */

.info-box h3 {

    margin: 0 0 7px;

    color: #7ebaff;

    font-size: 1rem;

    font-weight: 500;
}


/* ==========================================
        INFO TEXT
========================================== */

.info-box p {

    margin: 0;

    color: #ffffff;

    font-size: 1rem;

    font-weight: 600;
}


/* ==========================================
        CALL TO ACTION
========================================== */

.about-cta {

    width: 100%;

    min-height: 360px;

    padding: 60px 7%;

    box-sizing: border-box;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    text-align: center;

    position: relative;

    overflow: hidden;

    background: #011a3a;

    color: #ffffff;
}


/* ==========================================
        CTA BACKGROUND SHAPES
========================================== */

.about-cta::before {

    content: "";

    position: absolute;

    width: 550px;

    height: 220px;

    left: -180px;

    bottom: 70px;

    background: #062b61;

    border-radius: 50%;

    transform: rotate(25deg);
}


.nav-links a.active {
    color: #3b94ff;
}


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

.cta-icon,
.about-cta h2,
.about-cta p,
.cta-btn {

    position: relative;

    z-index: 2;
}


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

.cta-icon {

    margin-bottom: 18px;
}


.cta-icon i {

    color: #0877f9;

    font-size: 3.2rem;
}


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

.about-cta h2 {

    margin: 0 0 15px;

    color: #ffffff;

    font-size: 2.3rem;

    font-weight: 700;
}


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

.about-cta p {

    max-width: 600px;

    margin: 0 0 28px;

    color: #ffffff;

    font-size: 1rem;

    line-height: 1.7;
}


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

.cta-btn {

    display: inline-block;

    padding: 15px 50px;

    background: #0877f9;

    color: #ffffff;

    text-decoration: none;

    border-radius: 7px;

    font-size: 1rem;

    font-weight: 600;

    transition: 0.3s;
}


.cta-btn:hover {

    background: #0665d6;

}

}

/* ================= IMAGE LOADER ================= */

.image-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    border: 4px solid rgba(255, 255, 255, 0.25);
    border-top: 4px solid #63b2ff;
    border-radius: 50%;
    animation: imageSpin 0.8s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 1;
}

/* Hide image until it successfully loads */
.about-image img {
    opacity: 0;
}

/* Show image after successful loading */
.about-image img.loaded {
    opacity: 1;
}

@keyframes imageSpin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}