﻿/* =========================================
   ABOUT US PAGE HERO
========================================= */

.star-about-page-hero {
    position: relative;

    width: 100%;
    height: 300px;

    overflow: hidden;

    background: #092f4d;
}


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

.star-about-page-hero-bg {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background-image:
        linear-gradient(
            90deg,
            rgba(5, 39, 66, 0.90) 0%,
            rgba(5, 39, 66, 0.72) 38%,
            rgba(5, 39, 66, 0.20) 70%,
            rgba(5, 39, 66, 0.30) 100%
        ),
        url("../images/about-banner.png");

    background-size: cover;
    background-position: center;

    transform: scale(1.01);
}


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

.star-about-page-hero-container {
    position: relative;

    z-index: 2;

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

    height: 100%;

    margin: 0 auto;

    padding: 0 42px;

    display: flex;

    align-items: center;

    box-sizing: border-box;
}


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

.star-about-page-hero-content {
    width: 100%;
}


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

.star-about-page-hero h1 {
    position: relative;

    display: inline-block;

    margin: 0 0 14px;

    padding-bottom: 12px;

    color: #ffffff;

    font-family: "Montserrat", sans-serif;

    font-size: 52px;

    line-height: 1.1;

    font-weight: 700;

    letter-spacing: -1px;
}


/* =========================================
   ORANGE UNDERLINE
========================================= */

.star-about-page-hero h1::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 75px;
    height: 3px;

    background: var(--star-orange);

    border-radius: 10px;
}


/* =========================================
   BREADCRUMB
========================================= */

.star-about-breadcrumb {
    display: flex;

    align-items: center;

    gap: 9px;

    color: #ffffff;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.4;
}

.star-about-breadcrumb a {
    color: #ffffff;

    text-decoration: none;

    transition: color 0.25s ease;
}

.star-about-breadcrumb a:hover {
    color: var(--star-orange);
}

.star-about-breadcrumb span {
    color: #d7e1e8;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .star-about-page-hero {
        height: 270px;
    }

    .star-about-page-hero-container {
        padding: 0 25px;
    }

    .star-about-page-hero h1 {
        font-size: 44px;
    }
}


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

@media (max-width: 768px) {

    .star-about-page-hero {
        height: 230px;
    }

    .star-about-page-hero-bg {
        background-position: center;
    }

    .star-about-page-hero-container {
        padding: 0 20px;
    }

    .star-about-page-hero h1 {
        font-size: 36px;

        margin-bottom: 11px;

        padding-bottom: 10px;
    }

    .star-about-page-hero h1::after {
        width: 58px;
        height: 3px;
    }

    .star-about-breadcrumb {
        font-size: 11px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .star-about-page-hero {
        height: 210px;
    }

    .star-about-page-hero-container {
        padding: 0 15px;
    }

    .star-about-page-hero h1 {
        font-size: 31px;

        letter-spacing: -0.5px;
    }

    .star-about-breadcrumb {
        font-size: 10px;

        gap: 7px;
    }
}

/* =========================================
   ABOUT US - COMPANY OVERVIEW
========================================= */

.star-about-company {
    width: 100%;

    padding: 65px 0;

    background: #ffffff;

    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.star-about-company-container {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;

    padding: 0 42px;

    box-sizing: border-box;
}


/* =========================================
   GRID
========================================= */

.star-about-company-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        1.05fr
        1.05fr
        0.75fr;

    align-items: center;

    gap: 28px;

    box-sizing: border-box;
}


/* =========================================
   COMPANY CONTENT
========================================= */

.star-about-company-content {
    width: 100%;

    max-width: 520px;
}


/* =========================================
   LABEL
========================================= */

.star-about-company-label {
    display: flex;

    align-items: center;

    gap: 9px;

    margin-bottom: 10px;

    color: var(--star-orange);

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    line-height: 1.3;

    font-weight: 700;

    letter-spacing: 1.5px;

    text-transform: uppercase;
}

.star-about-company-label span {
    display: block;

    width: 24px;
    height: 3px;

    background: var(--star-orange);

    border-radius: 5px;
}


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

.star-about-company-content h2 {
    margin: 0 0 20px;

    color: var(--star-navy);

    font-family: "Montserrat", sans-serif;

    font-size: 38px;

    line-height: 1.12;

    font-weight: 700;

    letter-spacing: -0.7px;
}


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

.star-about-company-content p {
    max-width: 510px;

    margin: 0 0 17px;

    color: #40566a;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.75;

    font-weight: 400;
}

.star-about-company-content p:last-child {
    margin-bottom: 0;
}


/* =========================================
   COMPANY IMAGE
========================================= */

.star-about-company-image {
    width: 100%;

    overflow: hidden;

    border-radius: 9px;

    background: #edf3f7;

    box-sizing: border-box;
}

.star-about-company-image img {
    display: block;

    width: 100%;
    height: 285px;

    object-fit: cover;

    object-position: center;

    transition: transform 0.5s ease;
}

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


/* =========================================
   FEATURES
========================================= */

.star-about-company-features {
    width: 100%;
}


/* =========================================
   FEATURE ITEM
========================================= */

.star-about-company-feature {
    width: 100%;

    min-height: 78px;

    padding: 12px 0;

    display: flex;

    align-items: center;

    gap: 14px;

    border-bottom: 1px solid #e1e7eb;

    box-sizing: border-box;
}

.star-about-company-feature:first-child {
    padding-top: 0;
}

.star-about-company-feature:last-child {
    padding-bottom: 0;

    border-bottom: 0;
}


/* =========================================
   FEATURE ICON
========================================= */

.star-about-company-icon {
    width: 56px;
    height: 56px;

    flex: 0 0 56px;

    display: flex;

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

    border-radius: 50%;

    color: #ffffff;

    font-size: 21px;
}

.star-about-company-icon.orange {
    background: var(--star-orange);
}

.star-about-company-icon.navy {
    background: var(--star-navy);
}


/* =========================================
   FEATURE CONTENT
========================================= */

.star-about-company-feature-content {
    min-width: 0;
}

.star-about-company-feature-content h3 {
    margin: 0 0 4px;

    color: var(--star-navy);

    font-family: "Montserrat", sans-serif;

    font-size: 14px;

    line-height: 1.3;

    font-weight: 700;
}

.star-about-company-feature-content p {
    margin: 0;

    color: #566b7b;

    font-family: "Poppins", sans-serif;

    font-size: 10.5px;

    line-height: 1.5;

    font-weight: 400;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .star-about-company {
        padding: 55px 0;
    }

    .star-about-company-container {
        padding: 0 25px;
    }

    .star-about-company-grid {
        grid-template-columns:
            1fr
            1fr;

        gap: 35px;
    }

    .star-about-company-content {
        max-width: 100%;
    }

    .star-about-company-image {
        order: 2;
    }

    .star-about-company-features {
        order: 3;

        display: grid;

        grid-template-columns: 1fr 1fr;

        column-gap: 30px;
    }

    .star-about-company-feature {
        min-height: 80px;
    }

    .star-about-company-feature:first-child {
        padding-top: 12px;
    }

    .star-about-company-feature:nth-child(2) {
        border-bottom: 1px solid #e1e7eb;
    }

    .star-about-company-feature:nth-child(3),
    .star-about-company-feature:nth-child(4) {
        padding-bottom: 12px;
    }

    .star-about-company-content h2 {
        font-size: 34px;
    }
}


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

@media (max-width: 768px) {

    .star-about-company {
        padding: 50px 0;
    }

    .star-about-company-container {
        padding: 0 20px;
    }

    .star-about-company-grid {
        display: flex;

        flex-direction: column;

        gap: 28px;
    }

    .star-about-company-content {
        max-width: 100%;
    }

    .star-about-company-label {
        font-size: 11px;

        letter-spacing: 1.3px;
    }

    .star-about-company-content h2 {
        font-size: 29px;

        line-height: 1.15;

        letter-spacing: -0.4px;

        margin-bottom: 18px;
    }

    .star-about-company-content p {
        font-size: 12px;

        line-height: 1.7;
    }


    /* Image */

    .star-about-company-image {
        width: 100%;
    }

    .star-about-company-image img {
        height: 240px;
    }


    /* Features */

    .star-about-company-features {
        width: 100%;

        display: grid;

        grid-template-columns: 1fr 1fr;

        gap: 0 20px;
    }

    .star-about-company-feature {
        min-height: 82px;

        padding: 12px 0;

        gap: 10px;
    }

    .star-about-company-feature:first-child {
        padding-top: 12px;
    }

    .star-about-company-feature:last-child {
        padding-bottom: 12px;

        border-bottom: 0;
    }

    .star-about-company-icon {
        width: 45px;
        height: 45px;

        flex: 0 0 45px;

        font-size: 17px;
    }

    .star-about-company-feature-content h3 {
        font-size: 12px;
    }

    .star-about-company-feature-content p {
        font-size: 9px;

        line-height: 1.45;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .star-about-company {
        padding: 42px 0;
    }

    .star-about-company-container {
        padding: 0 15px;
    }

    .star-about-company-grid {
        gap: 24px;
    }

    .star-about-company-content h2 {
        font-size: 25px;
    }

    .star-about-company-content p {
        font-size: 11px;

        line-height: 1.65;
    }

    .star-about-company-image img {
        height: 205px;
    }

    .star-about-company-features {
        grid-template-columns: 1fr;
    }

    .star-about-company-feature {
        min-height: 70px;

        padding: 10px 0;
    }

    .star-about-company-icon {
        width: 42px;
        height: 42px;

        flex-basis: 42px;

        font-size: 16px;
    }

    .star-about-company-feature-content h3 {
        font-size: 11px;
    }

    .star-about-company-feature-content p {
        font-size: 9px;
    }
}

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

.star-vision-mission {
    width: 100%;

    padding: 0;

    background: #ffffff;

    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.star-vision-mission-container {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;

    padding: 0 42px;

    box-sizing: border-box;
}


/* =========================================
   MAIN GRID
========================================= */

.star-vision-mission-grid {
    width: 100%;

    display: grid;

    grid-template-columns:
        1fr
        1.2fr
        1fr;

    align-items: stretch;

    gap: 0;

    box-sizing: border-box;
}


/* =========================================
   VISION BOX
========================================= */

.star-vision-box {
    min-height: 335px;

    padding: 45px 40px;

    display: flex;

    align-items: center;

    gap: 22px;

    background: var(--star-navy);

    color: #ffffff;

    box-sizing: border-box;
}


/* =========================================
   MISSION BOX
========================================= */

.star-mission-box {
    min-height: 335px;

    padding: 45px 40px;

    display: flex;

    align-items: center;

    gap: 22px;

    background: #f5f2ec;

    color: var(--star-navy);

    box-sizing: border-box;
}


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

.star-vm-icon {
    width: 64px;
    height: 64px;

    flex: 0 0 64px;

    display: flex;

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

    border-radius: 50%;

    background: var(--star-orange);

    color: #ffffff;

    font-size: 25px;

    box-sizing: border-box;
}


/* Mission icon */

.star-mission-box .star-vm-icon {
    background: var(--star-navy);
}


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

.star-vm-content {
    min-width: 0;
}


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

.star-vm-content h2 {
    position: relative;

    display: inline-block;

    margin: 0 0 13px;

    padding: 0;

    font-family: "Montserrat", sans-serif;

    font-size: 31px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.5px;
}


/* Vision heading */

.star-vision-box .star-vm-content h2 {
    color: #ffffff;
}


/* Mission heading */

.star-mission-box .star-vm-content h2 {
    color: var(--star-navy);
}


/* =========================================
   ORANGE UNDERLINE
========================================= */

.star-vm-line {
    display: block;

    width: 55px;
    height: 3px;

    margin-bottom: 22px;

    background: var(--star-orange);

    border-radius: 8px;
}


/* =========================================
   PARAGRAPH
========================================= */

.star-vm-content p {
    margin: 0;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.75;

    font-weight: 400;
}


/* Vision paragraph */

.star-vision-box .star-vm-content p {
    color: #ffffff;
}


/* Mission paragraph */

.star-mission-box .star-vm-content p {
    color: #40566a;
}


/* =========================================
   CENTER IMAGE
========================================= */

.star-vm-image {
    width: 100%;

    min-height: 335px;

    overflow: hidden;

    background: #edf2f5;

    box-sizing: border-box;
}

.star-vm-image img {
    display: block;

    width: 100%;
    height: 100%;

    min-height: 335px;

    object-fit: cover;

    object-position: center;

    transition: transform 0.5s ease;
}

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


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .star-vision-mission-container {
        padding: 0 25px;
    }

    .star-vision-mission-grid {
        grid-template-columns: 1fr 1fr;
    }

    .star-vm-image {
        grid-column: 1 / -1;

        grid-row: 1;

        min-height: 280px;
    }

    .star-vm-image img {
        min-height: 280px;
    }

    .star-vision-box,
    .star-mission-box {
        min-height: 300px;

        padding: 35px 30px;
    }

    .star-vm-content h2 {
        font-size: 28px;
    }
}


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

@media (max-width: 768px) {

    .star-vision-mission-container {
        padding: 0 20px;
    }

    .star-vision-mission-grid {
        display: flex;

        flex-direction: column;
    }

    .star-vision-box,
    .star-mission-box {
        min-height: auto;

        padding: 35px 25px;

        gap: 18px;
    }

    .star-vm-image {
        order: 2;

        min-height: 240px;
    }

    .star-vision-box {
        order: 1;
    }

    .star-mission-box {
        order: 3;
    }

    .star-vm-image img {
        min-height: 240px;

        height: 240px;
    }

    .star-vm-icon {
        width: 52px;
        height: 52px;

        flex-basis: 52px;

        font-size: 20px;
    }

    .star-vm-content h2 {
        font-size: 26px;

        margin-bottom: 10px;
    }

    .star-vm-line {
        width: 48px;

        height: 3px;

        margin-bottom: 16px;
    }

    .star-vm-content p {
        font-size: 11.5px;

        line-height: 1.7;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .star-vision-mission-container {
        padding: 0 15px;
    }

    .star-vision-box,
    .star-mission-box {
        padding: 30px 20px;

        gap: 14px;

        align-items: flex-start;
    }

    .star-vm-icon {
        width: 45px;
        height: 45px;

        flex-basis: 45px;

        font-size: 17px;
    }

    .star-vm-content h2 {
        font-size: 23px;
    }

    .star-vm-content p {
        font-size: 10.5px;

        line-height: 1.65;
    }

    .star-vm-image,
    .star-vm-image img {
        min-height: 205px;

        height: 205px;
    }
}


/* =========================================
   WHY CHOOSE STAR
========================================= */

.star-why-choose {
    width: 100%;

    padding: 70px 0;

    background: #f3f7fa;

    box-sizing: border-box;
}


/* =========================================
   CONTAINER
========================================= */

.star-why-container {
    width: 100%;
    max-width: 1440px;

    margin: 0 auto;

    padding: 0 42px;

    box-sizing: border-box;
}


/* =========================================
   HEADING AREA
========================================= */

.star-why-heading {
    width: 100%;

    max-width: 720px;

    margin: 0 auto 40px;

    text-align: center;
}


/* =========================================
   LABEL
========================================= */

.star-why-label {
    display: block;

    margin-bottom: 7px;

    color: var(--star-orange);

    font-family: "Poppins", sans-serif;

    font-size: 12px;

    line-height: 1.3;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;
}


/* =========================================
   MAIN HEADING
========================================= */

.star-why-heading h2 {
    position: relative;

    display: inline-block;

    margin: 0;

    padding-bottom: 14px;

    color: var(--star-navy);

    font-family: "Montserrat", sans-serif;

    font-size: 36px;

    line-height: 1.2;

    font-weight: 700;

    letter-spacing: -0.6px;
}


/* =========================================
   HEADING UNDERLINE
========================================= */

.star-why-heading h2::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;
    height: 3px;

    background: linear-gradient(
        90deg,
        var(--star-orange) 0%,
        var(--star-orange) 82%,
        var(--star-navy) 82%,
        var(--star-navy) 100%
    );

    border-radius: 10px;
}


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

.star-why-heading p {
    max-width: 650px;

    margin: 20px auto 0;

    color: #40566a;

    font-family: "Poppins", sans-serif;

    font-size: 13px;

    line-height: 1.7;

    font-weight: 400;
}


/* =========================================
   FEATURE GRID
========================================= */

.star-why-grid {
    width: 100%;

    display: grid;

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

    gap: 15px;

    box-sizing: border-box;
}


/* =========================================
   FEATURE CARD
========================================= */

.star-why-card {
    position: relative;

    min-height: 260px;

    padding: 28px 24px;

    background: #ffffff;

    border: 1px solid #dfe7ec;

    border-radius: 6px;

    overflow: hidden;

    box-sizing: border-box;

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


/* =========================================
   TOP ORANGE LINE
========================================= */

.star-why-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background: var(--star-orange);
}


/* =========================================
   NUMBER
========================================= */

.star-why-number {
    position: absolute;

    top: 18px;
    right: 20px;

    color: #e7edf1;

    font-family: "Montserrat", sans-serif;

    font-size: 32px;

    line-height: 1;

    font-weight: 700;
}


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

.star-why-icon {
    width: 52px;
    height: 52px;

    margin-bottom: 22px;

    display: flex;

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

    background: var(--star-navy);

    color: #ffffff;

    border-radius: 5px;

    font-size: 21px;
}


/* =========================================
   CARD HEADING
========================================= */

.star-why-card h3 {
    margin: 0 0 10px;

    color: var(--star-navy);

    font-family: "Montserrat", sans-serif;

    font-size: 16px;

    line-height: 1.35;

    font-weight: 700;
}


/* =========================================
   CARD TEXT
========================================= */

.star-why-card p {
    margin: 0;

    color: #536979;

    font-family: "Poppins", sans-serif;

    font-size: 11.5px;

    line-height: 1.7;

    font-weight: 400;
}


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

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

    border-color: #cdd9e1;

    box-shadow: 0 12px 30px rgba(8, 45, 70, 0.10);
}

.star-why-card:hover .star-why-icon {
    background: var(--star-orange);
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 1100px) {

    .star-why-choose {
        padding: 60px 0;
    }

    .star-why-container {
        padding: 0 25px;
    }

    .star-why-heading {
        margin-bottom: 35px;
    }

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

    .star-why-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 15px;
    }

    .star-why-card {
        min-height: 230px;
    }
}


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

@media (max-width: 768px) {

    .star-why-choose {
        padding: 50px 0;
    }

    .star-why-container {
        padding: 0 20px;
    }

    .star-why-heading {
        margin-bottom: 30px;
    }

    .star-why-label {
        font-size: 11px;

        letter-spacing: 1.5px;
    }

    .star-why-heading h2 {
        font-size: 28px;

        padding-bottom: 11px;
    }

    .star-why-heading p {
        margin-top: 17px;

        font-size: 11.5px;

        line-height: 1.65;
    }

    .star-why-grid {
        grid-template-columns: 1fr 1fr;

        gap: 12px;
    }

    .star-why-card {
        min-height: 225px;

        padding: 22px 18px;
    }

    .star-why-icon {
        width: 45px;
        height: 45px;

        margin-bottom: 18px;

        font-size: 18px;
    }

    .star-why-card h3 {
        font-size: 13px;
    }

    .star-why-card p {
        font-size: 10px;

        line-height: 1.6;
    }

    .star-why-number {
        top: 14px;
        right: 14px;

        font-size: 25px;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .star-why-choose {
        padding: 42px 0;
    }

    .star-why-container {
        padding: 0 15px;
    }

    .star-why-heading {
        margin-bottom: 25px;
    }

    .star-why-heading h2 {
        font-size: 24px;
    }

    .star-why-heading p {
        font-size: 10.5px;
    }

    .star-why-grid {
        grid-template-columns: 1fr;
    }

    .star-why-card {
        min-height: auto;

        padding: 22px 18px;
    }

    .star-why-card p {
        font-size: 10px;
    }
}