﻿/* =========================================================
   EVENTSPHERE ABOUT PAGE
   Premium Professional UI
========================================================= */

:root {
    --about-primary: #0b3037;
    --about-primary-light: #134e5e;
    --about-accent: #1f8a9e;
    --about-accent-light: #e8f6f7;
    --about-dark: #102a30;
    --about-text: #52666b;
    --about-muted: #7b8f94;
    --about-light: #f5f9fa;
    --about-border: #e3edef;
    --about-gradient: linear-gradient( 135deg, #071f25 0%, #0b3037 52%, #134e5e 100% );
    --about-shadow: 0 15px 45px rgba(11, 48, 55, 0.09);
    --about-shadow-hover: 0 25px 55px rgba(11, 48, 55, 0.15);
}


/* =========================================================
   GENERAL
========================================================= */

.about-page {
    overflow: hidden;
}

.section-padding {
    padding: 95px 0;
}

.section-label {
    display: inline-block;
    color: var(--about-accent);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.page-heading {
    color: var(--about-dark);
    font-size: clamp(30px, 4vw, 44px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.2px;
    margin: 0 0 20px;
}


/* =========================================================
   INNER HERO
========================================================= */

.inner-hero {
    position: relative;
    min-height: 430px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient( circle at 88% 20%, rgba(72, 193, 207, .18), transparent 27% ), radial-gradient( circle at 10% 85%, rgba(255,255,255,.06), transparent 24% ), var(--about-gradient);
}


    /* grid pattern */

    .inner-hero::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: linear-gradient( rgba(255,255,255,.035) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.035) 1px, transparent 1px );
        background-size: 55px 55px;
        mask-image: linear-gradient( to bottom, black, transparent );
    }


    /* decorative circles */

    .inner-hero::after {
        content: "";
        position: absolute;
        width: 430px;
        height: 430px;
        right: -170px;
        top: -170px;
        border: 1px solid rgba(255,255,255,.07);
        border-radius: 50%;
        box-shadow: 0 0 0 65px rgba(255,255,255,.018), 0 0 0 130px rgba(255,255,255,.012);
    }


    .inner-hero .container {
        position: relative;
        z-index: 2;
        padding-top: 75px;
        padding-bottom: 75px;
    }


    /* hero label */

    .inner-hero span {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 15px;
        border: 1px solid rgba(255,255,255,.14);
        border-radius: 50px;
        background: rgba(255,255,255,.065);
        backdrop-filter: blur(10px);
        color: #9ce4e9;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 1.8px;
        margin-bottom: 20px;
    }


        /* little dot */

        .inner-hero span::before {
            content: "";
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #70d8df;
            box-shadow: 0 0 0 5px rgba(112,216,223,.10);
        }


    /* hero heading */

    .inner-hero h1 {
        max-width: 780px;
        color: #ffffff;
        font-size: clamp( 42px, 6vw, 68px );
        line-height: 1.06;
        font-weight: 850;
        letter-spacing: -2.8px;
        margin: 0 0 22px;
    }


    /* hero paragraph */

    .inner-hero p {
        max-width: 650px;
        color: rgba(255,255,255,.70);
        font-size: 17px;
        line-height: 1.8;
        margin: 0;
    }


/* =========================================================
   ABOUT INTRO SECTION
========================================================= */

.section-padding:first-of-type {
    background: #ffffff;
}


/* left content */

.section-padding .col-lg-6:first-child > p {
    max-width: 570px;
    color: var(--about-text);
    font-size: 15px;
    line-height: 1.85;
    margin-bottom: 18px;
}


/* =========================================================
   FEATURE BOX
========================================================= */

.about-feature-box {
    position: relative;
    padding: 12px;
    border-radius: 22px;
    background: linear-gradient( 145deg, #f7fbfc, #eef6f7 );
    border: 1px solid var(--about-border);
    box-shadow: var(--about-shadow);
}


    /* decorative line */

    .about-feature-box::before {
        content: "";
        position: absolute;
        top: 25px;
        bottom: 25px;
        left: 39px;
        width: 1px;
        background: linear-gradient( to bottom, transparent, #b9dce1 20%, #b9dce1 80%, transparent );
    }


/* =========================================================
   FEATURE ITEM
========================================================= */

.about-feature {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px 22px;
    border-radius: 15px;
    transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}


    /* hover */

    .about-feature:hover {
        background: #ffffff;
        transform: translateX(5px);
        box-shadow: 0 10px 30px rgba(11,48,55,.07);
    }


    /* icon */

    .about-feature > i {
        position: relative;
        z-index: 2;
        flex: 0 0 52px;
        width: 52px;
        height: 52px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 14px;
        background: linear-gradient( 135deg, #e8f6f7, #d8f0f3 );
        color: var(--about-accent);
        font-size: 19px;
        transition: .3s ease;
    }


    /* icon hover */

    .about-feature:hover > i {
        background: linear-gradient( 135deg, var(--about-primary), var(--about-primary-light) );
        color: #ffffff;
        transform: rotate(-5deg) scale(1.04);
        box-shadow: 0 8px 20px rgba(11,48,55,.16);
    }


    /* feature heading */

    .about-feature h4 {
        color: var(--about-dark);
        font-size: 17px;
        font-weight: 750;
        margin: 2px 0 7px;
    }


    /* feature paragraph */

    .about-feature p {
        color: var(--about-muted);
        font-size: 13px;
        line-height: 1.65;
        margin: 0;
    }


/* =========================================================
   MISSION SECTION
========================================================= */

.about-light-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: radial-gradient( circle at 15% 20%, rgba(31,138,158,.08), transparent 25% ), radial-gradient( circle at 85% 80%, rgba(19,78,94,.07), transparent 25% ), var(--about-light);
}


    /* decorative circle */

    .about-light-section::before {
        content: "";
        position: absolute;
        width: 330px;
        height: 330px;
        left: -180px;
        top: -170px;
        border-radius: 50%;
        border: 1px solid rgba(31,138,158,.09);
    }


    /* second circle */

    .about-light-section::after {
        content: "";
        position: absolute;
        width: 260px;
        height: 260px;
        right: -140px;
        bottom: -150px;
        border-radius: 50%;
        border: 1px solid rgba(31,138,158,.08);
    }


    /* mission content */

    .about-light-section .container {
        position: relative;
        z-index: 2;
    }


    .about-light-section .page-heading {
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 18px;
    }


.about-center-text {
    max-width: 650px;
    margin: 0 auto;
    color: var(--about-text);
    font-size: 15px;
    line-height: 1.85;
}


/* =========================================================
   SMALL ACCENT UNDER MISSION
========================================================= */

.about-light-section .page-heading::after {
    content: "";
    display: block;
    width: 45px;
    height: 3px;
    margin: 20px auto 0;
    border-radius: 10px;
    background: linear-gradient( 90deg, var(--about-primary), var(--about-accent) );
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 991.98px) {

    .section-padding {
        padding: 75px 0;
    }

    .inner-hero {
        min-height: 390px;
    }

        .inner-hero .container {
            padding-top: 65px;
            padding-bottom: 65px;
        }

        .inner-hero h1 {
            font-size: 52px;
            letter-spacing: -2px;
        }

    .about-feature-box {
        margin-top: 10px;
    }

    .about-light-section {
        padding: 80px 0;
    }
}


/* =========================================================
   RESPONSIVE — MOBILE
========================================================= */

@media (max-width: 767.98px) {

    .section-padding {
        padding: 60px 0;
    }

    .inner-hero {
        min-height: auto;
    }

        .inner-hero .container {
            padding-top: 65px;
            padding-bottom: 70px;
        }

        .inner-hero h1 {
            font-size: 42px;
            line-height: 1.08;
            letter-spacing: -1.8px;
        }

        .inner-hero p {
            font-size: 15px;
            line-height: 1.7;
        }

    .page-heading {
        font-size: 32px;
        letter-spacing: -.8px;
    }

    .about-feature-box {
        padding: 8px;
        border-radius: 18px;
    }

    .about-feature {
        gap: 14px;
        padding: 20px 16px;
    }

        .about-feature > i {
            flex: 0 0 46px;
            width: 46px;
            height: 46px;
            border-radius: 12px;
            font-size: 17px;
        }

    .about-feature-box::before {
        left: 31px;
    }

    .about-feature h4 {
        font-size: 16px;
    }

    .about-feature p {
        font-size: 12px;
    }

    .about-light-section {
        padding: 70px 20px;
    }
}


/* =========================================================
   RESPONSIVE — SMALL MOBILE
========================================================= */

@media (max-width: 575.98px) {

    .section-padding {
        padding: 52px 0;
    }

    .inner-hero .container {
        padding-top: 55px;
        padding-bottom: 60px;
    }

    .inner-hero span {
        font-size: 9px;
        letter-spacing: 1.4px;
        padding: 7px 12px;
    }

    .inner-hero h1 {
        font-size: 36px;
        letter-spacing: -1.4px;
        margin-bottom: 18px;
    }

    .inner-hero p {
        font-size: 14px;
    }

    .section-label {
        font-size: 10px;
        letter-spacing: 1.6px;
    }

    .page-heading {
        font-size: 29px;
    }

    .section-padding .col-lg-6:first-child > p {
        font-size: 14px;
        line-height: 1.75;
    }

    .about-feature {
        padding: 18px 13px;
    }

        .about-feature > i {
            flex-basis: 43px;
            width: 43px;
            height: 43px;
        }

    .about-feature-box::before {
        left: 29px;
    }

    .about-light-section {
        padding: 60px 18px;
    }

    .about-center-text {
        font-size: 14px;
    }
}
