@import url("../Pages/buttons.css");
@import url("section-title.css");
@import url("../Pages/common.css");
@import url("../Pages/sub-page-hero.css");

/* ===== SECTION ===== */
.section {
    padding: 46px 20px;
}

.youtube-video-section {
    padding: 80px 0;
    background: #0b1020;
}

.video-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 24px;
    aspect-ratio: 16 / 9;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);

    iframe {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        border: 0;
    }
}

/* ===== ABOUT COMPANY ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    color: var(--color-muted);
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.8;
}

.about-image {
    position: relative;
    /* height: 400px; */
    background: var(--blue-90);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px #00266852;
    overflow: hidden;
}
/* ----------------------------------------------------- */

.impact-section {
    position: relative;
    padding: 96px 0;
    overflow: hidden;
}

.impact-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(0, 119, 255, .18),
            transparent 70%);
    top: -250px;
    left: -200px;
}

.impact-heading {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.impact-subtitle {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #4ea1ff;
    margin-bottom: 18px;
}

.impact-title {
    font-size: 54px;
    line-height: 1.15;
    font-weight: 700;
    color: #fff;
    max-width: 900px;
    margin: auto;
}

.impact-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 28px;
    position: relative;
    z-index: 2;
}

.impact-feature-card {
    position: relative;
    padding: 50px;
    border-radius: 34px;
    background:
        linear-gradient(145deg,
            rgba(255, 255, 255, .07),
            rgba(255, 255, 255, .03));
    border: 1px solid rgba(255, 255, 255, .08);
    min-height: 100%;
    overflow: hidden;
}

.impact-feature-card::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background:
        radial-gradient(circle,
            rgba(78, 161, 255, .2),
            transparent 70%);
    bottom: -150px;
    right: -100px;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(78, 161, 255, .12);
    border: 1px solid rgba(78, 161, 255, .25);
    color: #4ea1ff;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
}

.impact-feature-card h3 {
    font-size: 42px;
    line-height: 1.25;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 700;
}

.impact-feature-card p {
    color: rgba(255, 255, 255, .74);
    font-size: 17px;
    line-height: 1.9;
    margin-bottom: 40px;
}

.feature-highlight-list {
    display: flex;
    flex-direction: column;
    gap: 16px;

    .feature-highlight {
        display: flex;
        align-items: baseline;
        gap: 14px;
        font-size: 17px;
        color: #fff;

        .features-dots {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: #4ea1ff;
            box-shadow: 0 0 14px rgba(78, 161, 255, .8);
            flex-shrink: 0;
        }

        .highlighted {
            font-weight: 700;
        }
    }
}

/* -------------------------------------------------------- */
/* ===== STATS SECTION ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 0;
}

.stat-card {
    background: white;
    padding: 26px;
    border-radius: 15px;
    text-align: center;    
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--mantra-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(24, 95, 165, 0.15);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--grey-100);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-size: 28px;
    color: var(--mantra-blue);
}

.stat-number {
    font-size: 32px;
    font-weight: 600;
    color: var(--grey-900);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--grey-900);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ===== MISSION VISION ===== */

/* ===== IDENTITY SENSOR ===== */
.identity-sensor {
    background: white;
    border-radius: 20px;
    padding: 60px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    margin-bottom: 80px;
}

.identity-sensor p {
    color: var(--color-muted);
    margin-bottom: 18px;
    font-size: 16px;
    line-height: 1.8;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    gap: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #03469487, #0026680f);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: var(--mantra-blue);
}

.feature-content h4 {
    font-size: 16px;
    color: var(--mantra-blue);
    margin-bottom: 5px;
}

.feature-content p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* ===== RESPONSIVE ===== */

@media(max-width:991px) {
    .impact-section {
        padding: 46px 0;
    }

    .identity-sensor {
        margin-bottom: 18px;
    }

    .impact-layout {
        grid-template-columns: 1fr;
    }

    .impact-title {
        font-size: 42px;
    }

    .about-grid {
        grid-template-columns: 1fr;

        .about-image {
            order: -1;
        }
    }
}

@media(max-width:767px) {
    .impact-section {
        padding: 38px 0;
    }

    .impact-title {
        font-size: 34px;
    }

    .impact-feature-card {
        padding: 35px 28px;
    }

    .impact-feature-card h3 {
        font-size: 30px;
    }

    .impact-stats-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section {
        padding: 50px 20px;
    }

    .section h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .about-grid,
    .mission-vision {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* .about-image {
        height: 300px;
    } */

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 25px;
    }

    .identity-sensor {
        padding: 40px 25px;
    }

    .identity-sensor h3 {
        font-size: 24px;
    }

    .features-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .reach-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .section {
        padding: 30px 12px;
    }

    .section h2 {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .impact-section {
        padding: 32px 0;
    }

    .impact-feature-card {
        padding: 28px;

        p {
            font-size: 14px;
            line-height: 20px;
            margin-bottom: 32px;
        }
    }

    .identity-sensor {
        padding: 32px 20px;
    }

    .feature-highlight-list {
        gap: 8px;

        .feature-highlight {
            font-size: 14px;
        }
    }

    .identity-sensor p {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 20px;
    }

    .features-list {
        margin-bottom: 20px;
    }

    .feature-item {
        gap: 10px;
    }

    .feature-content {
        h4 {
            font-size: 14px;
            margin-bottom: 4px;
        }

        p {
            font-size: 12px;
        }
    }
}

/* =========================================================
   RESPONSIVE
   Only responsive adjustments - no design changes
   ========================================================= */

@media screen and (max-width: 1199.98px) {

    .page_header_section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .table_of_content_box,
    .blog_form_box {
        max-width: 100%;
    }

    .post-content img {
        max-width: 100%;
        height: auto;
    }

    .post-content {
        overflow-wrap: break-word;
    }
}


@media screen and (max-width: 991.98px) {

    .page_header_section {
        padding: 80px 0;
    }

    .table_of_content_box,
    .blog_form_box {
        max-width: 100%;
    }

    .post-content img,
    .post-content iframe,
    .post-content video {
        max-width: 100%;
    }

    .post-content table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .zcwf_col_help {
        max-width: 100%;
    }
}


@media screen and (max-width: 767.98px) {

    .page_header_section {
        padding: 60px 0;
    }

    .page_title_section>h1 {
        line-height: 1.3;
    }

    .breadcrumb {
        flex-wrap: wrap;
    }

    .table_of_content_box {
        display: none;
    }

    .blog_form_box {
        max-width: unset;
        width: 100%;
        float: unset;
        margin-bottom: 0;
    }

    .post-content {
        width: 100%;
        overflow-wrap: break-word;
    }

    .post-content img {
        max-width: 100%;
        height: auto;
    }

    .post-content iframe,
    .post-content video {
        max-width: 100%;
        height: auto;
    }

    .post-content table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .zcwf_col_help {
        float: none;
        margin-left: 0;
        max-width: 100%;
    }

    .Captcha_box img {
        max-width: 100%;
        height: auto;
    }

    .g-recaptcha {
        max-width: 100%;
        overflow: hidden;
    }
}


@media screen and (max-width: 575.98px) {

    .page_header_section {
        padding: 50px 0;
    }

    .page_title_section>h1 {
        line-height: 1.3;
    }

    .breadcrumb {
        width: 100%;
        flex-wrap: wrap;
    }

    .breadcrumb>li {
        padding: 0 5px;
    }

    .blog_section {
        overflow: hidden;
    }

    .blog_post_header_title,
    .post-content h1,
    .post-content h2,
    .post-content h3,
    .post-content h4 {
        overflow-wrap: break-word;
    }

    .post-content p,
    .post-content p.list_point {
        overflow-wrap: break-word;
    }

    .blog_form_box {
        width: 100%;
        max-width: 100%;
    }

    .form-group>.form-control {
        width: 100%;
        max-width: 100%;
    }

    .zcwf_col_help {
        float: none;
        margin-left: 0;
        max-width: 100%;
    }

    .Captcha_box {
        max-width: 100%;
        overflow: hidden;
    }

    .Captcha_box img {
        max-width: 100%;
        height: auto;
    }

    .g-recaptcha {
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }

    .reset_btn,
    .submit_btn {
        max-width: 100%;
    }

    .about-content p {
        margin-bottom: 4px;
        font-size: 14px;
        /* line-height: 1.8; */
    }
}


@media screen and (max-width: 380px) {

    .page_header_section {
        padding: 40px 0;
    }

    .breadcrumb>li {
        padding: 0 4px;
    }

    .post-content {
        overflow-wrap: anywhere;
    }

    .blog_form_box {
        width: 100%;
    }

    .Captcha_box img {
        max-width: 100%;
    }

    .g-recaptcha {
        transform: scale(0.77);
        -webkit-transform: scale(0.77);
        transform-origin: 0 0;
        -webkit-transform-origin: 0 0;
    }
}