/* =========================================================
   ABOUT PAGE - SEA MARINE SOLUTION
========================================================= */


/* =========================================================
   GLOBAL RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;

    margin: 0;
    padding: 0;

    overflow-x: hidden;

    background: #061827;
    color: #ffffff;

    font-family: "Poppins", sans-serif; 
    
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
}

section {
    width: 100%;
    max-width: 100%;
}


/* =========================================================
   PAGE BANNER
========================================================= */

.page-banner {
    position: relative;

    width: 100%;
    min-height: 430px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 140px 20px 80px;

    overflow: hidden;

    background:
        linear-gradient(
            rgba(3, 16, 30, 0.72),
            rgba(3, 16, 30, 0.88)
        ),
        url("../Photo/Sea Marine/Aboutimage.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        rgba(0, 30, 60, 0.50),
        rgba(0, 0, 0, 0.40)
    );
}

.banner-content {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}

.banner-content h1 {
   
    position: relative;
    z-index: 2;

    max-width: 100%;

    margin-bottom: 25px;

    color: #ffffff;

    font-size: clamp(42px, 6vw, 72px);
    font-weight: 800;

    line-height: 1.12;
    letter-spacing: -1px;

    background:
        linear-gradient(
            90deg,
            #ffffff,
            #00c6ff
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


.banner-content p {
    
    position: relative;
    z-index: 2;

    width: min(100%, 700px);

    margin: 0 auto;

    color: #cbd8e5;

    font-size: 18px;

    line-height: 1.8;
    
    /*color: #d9edf8;

    font-size: clamp(15px, 2vw, 22px);

    line-height: 1.7; */
}


/* =========================================================
   ABOUT COMPANY
========================================================= */

.about-company {
    width: 100%;

    padding: 100px 5%;

    background:
        radial-gradient(
            circle at top right,
            rgba(0, 157, 255, 0.10),
            transparent 35%
        ),
        #071a2b;
}

.about-container {
    width: 100%;
    max-width: 1300px;

    margin: 0 auto;

    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    align-items: center;

    gap: 70px;
}


/* =========================================================
   ABOUT IMAGE
========================================================= */

.about-image {
    width: 100%;
    min-width: 0;

    overflow: hidden;

    border-radius: 20px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.about-image img {
    width: 100%;
    height: 450px;

    object-fit: cover;
    object-position: center;

    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}


/* =========================================================
   ABOUT TEXT
========================================================= */

.about-text {
    width: 100%;
    min-width: 0;
}

.about-text h5 {
    margin-bottom: 12px;

    color: #1bb8ff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
}

.about-text h2 {
    margin-bottom: 20px;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 50px);
    font-weight: 700;

    line-height: 1.25;
}

.blue-line {
    width: 80px;
    height: 4px;

    margin-bottom: 25px;

    border-radius: 50px;

    background: linear-gradient(
        90deg,
        #00aaff,
        #48cfff
    );
}

.about-text p {
    margin-bottom: 18px;

    color: #c8d9e6;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   FEATURE LIST
========================================================= */

.feature-list {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 15px;

    margin-top: 30px;
}

.feature-list div {
    display: flex;

    align-items: center;

    min-width: 0;

    gap: 12px;

    padding: 14px 15px;

    color: #ffffff;

    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 10px;

    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.feature-list div:hover {
    transform: translateY(-4px);

    background: rgba(0, 170, 255, 0.12);
}

.feature-list i {
    flex-shrink: 0;

    color: #1bb8ff;

    font-size: 20px;
}


/* =========================================================
   MISSION SECTION
========================================================= */

.mission {
    width: 100%;

    padding: 100px 5%;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 25px;

    background: #04121f;
}

.mission-card {
    min-width: 0;

    padding: 45px 30px;

    text-align: center;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 20px;

    transition:
        transform 0.4s ease,
        box-shadow 0.4s ease,
        border-color 0.4s ease;
}

.mission-card:hover {
    transform: translateY(-10px);

    border-color: rgba(27, 184, 255, 0.50);

    box-shadow: 0 20px 45px rgba(0, 145, 255, 0.15);
}

.mission-card > i {
    width: 75px;
    height: 75px;

    display: inline-flex;

    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    color: #ffffff;

    background: linear-gradient(
        135deg,
        #009dff,
        #28c4ff
    );

    border-radius: 50%;

    font-size: 30px;

    box-shadow: 0 10px 25px rgba(0, 157, 255, 0.30);
}

.mission-card h3 {
    margin-bottom: 15px;

    color: #ffffff;

    font-size: 24px;

    line-height: 1.3;
}

.mission-card p {
    color: #c9d9e5;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-us {
    width: 100%;

    padding: 100px 5%;

    text-align: center;

    background:
        radial-gradient(
            circle at center,
            rgba(0, 145, 255, 0.08),
            transparent 50%
        ),
        #071a2b;
}

.why-us > h5 {
    margin-bottom: 12px;

    color: #1bb8ff;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 3px;
}

.why-us > h2 {
    margin-bottom: 25px;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 50px);

    line-height: 1.25;
}


/* =========================================================
   ANCHOR DIVIDER
========================================================= */

.anchor {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 15px;

    margin-bottom: 50px;
}

.anchor span {
    width: 80px;
    height: 2px;

    background: linear-gradient(
        90deg,
        transparent,
        #1bb8ff
    );
}

.anchor span:last-child {
    background: linear-gradient(
        90deg,
        #1bb8ff,
        transparent
    );
}

.anchor i {
    color: #1bb8ff;

    font-size: 26px;
}


/* =========================================================
   WHY GRID
========================================================= */

.why-grid {
    width: 100%;
    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 20px;
}

.why-box {
    min-width: 0;

    padding: 35px 22px;

    text-align: left;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);

    border-radius: 16px;

    transition:
        transform 0.35s ease,
        background 0.35s ease;
}

.why-box:hover {
    transform: translateY(-8px);

    background: rgba(0, 170, 255, 0.10);
}

.why-box h3 {
    margin-bottom: 15px;

    color: #1bb8ff;

    font-size: 35px;

    line-height: 1;
}

.why-box h4 {
    margin-bottom: 12px;

    color: #ffffff;

    font-size: 20px;

    line-height: 1.35;
}

.why-box p {
    color: #c8d8e4;

    font-size: 14px;

    line-height: 1.7;
}


/* =========================================================
   CTA SECTION
========================================================= */

.cta {
    width: 100%;

    padding: 100px 20px;

    text-align: center;

    background:
        linear-gradient(
            rgba(0, 110, 185, 0.85),
            rgba(0, 65, 120, 0.92)
        ),
        #006eaf;
}

.cta h2 {
    width: 100%;
    max-width: 900px;

    margin: 0 auto 18px;

    color: #ffffff;

    font-size: clamp(30px, 4vw, 52px);

    line-height: 1.25;
}

.cta p {
    margin-bottom: 30px;

    color: rgba(255, 255, 255, 0.90);

    font-size: 17px;

    line-height: 1.7;
}

.cta .btn1 {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 180px;

    padding: 15px 30px;

    color: #006aa8;

    background: #ffffff;

    border-radius: 50px;

    font-size: 16px;
    font-weight: 700;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.cta .btn1:hover {
    transform: translateY(-4px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .about-container {
        gap: 40px;
    }

    .about-image img {
        height: 400px;
    }

    .mission {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    body {
        overflow-x: hidden;
    }


    /* PAGE BANNER */

    .page-banner {
        min-height: 320px;

        padding: 110px 20px 60px;

        background-position: center;
    }

    .banner-content h1 {
        font-size: 38px;
    }

    .banner-content p {
        font-size: 15px;
    }


    /* ABOUT */

    .about-company {
        padding: 60px 20px;
    }

    .about-container {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .about-image {
        border-radius: 16px;
    }

    .about-image img {
        width: 100%;
        height: 280px;

        object-fit: cover;
    }

    .about-text {
        text-align: left;
    }

    .about-text h5 {
        font-size: 12px;

        letter-spacing: 2px;
    }

    .about-text h2 {
        font-size: 30px;
    }

    .about-text p {
        font-size: 14px;

        line-height: 1.75;
    }


    /* FEATURES */

    .feature-list {
        grid-template-columns: 1fr;

        gap: 12px;
    }

    .feature-list div {
        width: 100%;

        padding: 14px;
    }


    /* MISSION */

    .mission {
        padding: 60px 20px;

        grid-template-columns: 1fr;

        gap: 18px;
    }

    .mission-card {
        padding: 35px 20px;

        border-radius: 16px;
    }


    /* WHY US */

    .why-us {
        padding: 60px 20px;
    }

    .why-us > h5 {
        font-size: 12px;

        letter-spacing: 2px;
    }

    .why-us > h2 {
        font-size: 30px;
    }

    .anchor {
        margin-bottom: 35px;
    }

    .anchor span {
        width: 45px;
    }

    .why-grid {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .why-box {
        padding: 28px 20px;
    }


    /* CTA */

    .cta {
        padding: 70px 20px;
    }

    .cta h2 {
        font-size: 30px;
    }

    .cta p {
        font-size: 15px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .page-banner {
        padding-left: 15px;
        padding-right: 15px;
    }

    .banner-content h1 {
        font-size: 32px;
    }

    .about-company,
    .mission,
    .why-us {
        padding-left: 15px;
        padding-right: 15px;
    }

    .about-image img {
        height: 230px;
    }

    .about-text h2,
    .why-us > h2,
    .cta h2 {
        font-size: 27px;
    }

    .mission-card,
    .why-box {
        padding-left: 17px;
        padding-right: 17px;
    }

}


/* =========================================================
   TOUCH DEVICE
========================================================= */

@media (hover: none) and (pointer: coarse) {

    .about-image:hover img {
        transform: none;
    }

    .mission-card:hover,
    .why-box:hover,
    .feature-list div:hover {
        transform: none;
    }

}