/* =========================================================
   PREMIUM ABOUT SHOWCASE
========================================================= */

.about-showcase-section{
    position:relative;
    overflow:hidden;
    padding:8rem 0;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7f9fc 45%,
            #eef4fb 100%
        );

    isolation:isolate;
}

/* background texture */

.about-grid{
    position:absolute;
    inset:0;

    background-image:
        linear-gradient(rgba(1,37,73,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(1,37,73,.025) 1px, transparent 1px);

    background-size:80px 80px;

    mask-image:
        radial-gradient(
            circle at center,
            black 25%,
            transparent 90%
        );

    z-index:-1;
}

/* ambient blobs */

.about-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(110px);
    z-index:-1;
}

.shape-1{
    width:420px;
    height:420px;

    top:-150px;
    left:-120px;

    background:rgba(205,1,34,.08);
}

.shape-2{
    width:360px;
    height:360px;

    bottom:-120px;
    right:-100px;

    background:rgba(1,37,73,.07);
}

/* layout */

.about-showcase-modern{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:6rem;
    position:relative;
    z-index:2;
}

/* badge */

.about-badge{
    display:inline-flex;
    align-items:center;

    padding:.75rem 1.2rem;

    border-radius:999px;

    background:rgba(205,1,34,.08);

    border:1px solid rgba(205,1,34,.14);

    color:#cd0122;

    font-size:.78rem;
    font-weight:600;

    text-transform:uppercase;
    letter-spacing:.08em;

    margin-bottom:1.6rem;
}

/* heading */

.about-showcase-content h2{
    font-size:clamp(2.2rem,3.5vw,3.4rem);

    line-height:1.08;

    letter-spacing:-0.04em;

    font-weight:700;

    color:#012549;

    margin-bottom:1.3rem;

    max-width:680px;
}

.about-showcase-content h2 span{
    color:#cd0122;
}

/* lead */

.about-lead{
    font-size:1.12rem;
    line-height:1.9;

    color:#4f6378;

    margin-bottom:1.6rem;

    max-width:640px;
}

/* body */

.about-text{
    font-size:1rem;
    line-height:1.95;

    color:#677b8f;

    margin-bottom:2rem;

    max-width:640px;
}

/* highlight card */

.about-highlight{
    display:flex;
    align-items:flex-start;
    gap:1.2rem;

    padding:1.7rem 1.8rem;

    border-radius:24px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.95),
            rgba(248,251,255,.95)
        );

    border:1px solid rgba(1,37,73,.05);

    box-shadow:
        0 18px 45px rgba(1,37,73,.06);
}

.about-highlight-line{
    width:4px;
    min-width:4px;

    border-radius:999px;

    align-self:stretch;

    background:
        linear-gradient(
            to bottom,
            #cd0122,
            #ff6078
        );
}

.about-highlight p{
    margin:0;

    color:#012549;

    font-size:.98rem;
    line-height:1.85;

    font-weight:500;
}

/* image */

.about-showcase-image{
    position:relative;
}

/* glow */

.image-glow{
    position:absolute;

    width:450px;
    height:450px;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    background:
        radial-gradient(
            circle,
            rgba(205,1,34,.16) 0%,
            rgba(205,1,34,.05) 40%,
            transparent 75%
        );

    filter:blur(65px);

    z-index:1;
}

/* frame */

.image-frame{
    position:relative;
    z-index:2;

    overflow:hidden;

    border-radius:32px;

    background:transparent;

    box-shadow:
        0 35px 90px rgba(1,37,73,.12);

    transition:.45s ease;
}

.image-frame::before{
    content:"";

    position:absolute;
    inset:0;

    border-radius:inherit;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.25),
            transparent
        );

    z-index:2;

    pointer-events:none;
}

.image-frame:hover{
    transform:translateY(-8px);
}

/* image */

.image-frame img{
    width:100%;
    display:block;

    border-radius:32px;

    transition:.7s ease;

    transform:scale(1);
}

.image-frame:hover img{
    transform:scale(1.04);
}

/* responsive */

@media (max-width:991px){

    .about-showcase-modern{
        grid-template-columns:1fr;
        gap:4rem;
    }

    .about-showcase-content{
        text-align:center;
    }

    .about-lead,
    .about-text{
        margin-left:auto;
        margin-right:auto;
    }

    .about-highlight{
        text-align:left;
    }
}

@media (max-width:600px){

    .about-showcase-section{
        padding:5rem 0;
    }

    .about-showcase-content h2{
        font-size:2.2rem;
    }

    .about-highlight{
        padding:1.4rem;
    }

    .image-frame,
    .image-frame img{
        border-radius:24px;
    }
}

/* =========================
   safety standards
========================= */

.safety-final{
    position:relative;
    padding:6rem 1rem;
    overflow:hidden;
    background:#0b1220;
}

/* BACKGROUND IMAGE */
.safety-bg{
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(11,18,32,.92) 45%, rgba(11,18,32,.55) 100%),
        url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d")
        center/cover no-repeat;

    filter: saturate(1.1);
    transform: scale(1.08);
    animation: bgZoom 14s ease-in-out infinite alternate;
}

/* GRID */
.safety-grid{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:0 auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:3rem;
    align-items:center;
}

/* LEFT VISUAL */
.visual{
    position:relative;
    width:100%;
    max-width:600px;
}

/* ✅ FIXED LEFT IMAGE AREA (TRANSPARENT LOOK) */
/* LEFT IMAGE WRAP */
.img-wrap{
    position: relative;
    width: 100%;
    height: 420px;
    border-radius: 18px;
    overflow: hidden;

    /* ✅ IMAGE HERE */
    background: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d")
    center/cover no-repeat;

    /* ✅ TRANSPARENT GLASS OVERLAY LOOK */
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}

/* soft dark overlay for better text contrast */
.img-wrap::before{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(11,18,32,0.15);
}

/* TEXT */
.floating-card h4{
    margin:0;
    font-size:1.1rem;
    font-weight:800;
    color:#0f172a;
}

.floating-card p{
    margin:3px 0 0;
    font-size:.75rem;
    color:#64748b;
}

/* RIGHT CONTENT */
.content{
    color:#fff;
}

.tag{
    display:inline-block;
    padding:.4rem .8rem;
    border-radius:999px;
    background:rgba(59,130,246,.15);
    color:#93c5fd;
    font-size:.75rem;
    font-weight:600;
    letter-spacing:.08em;
    text-transform:uppercase;
}

.content h2{
    font-size:2.4rem;
    line-height:1.2;
    margin:1rem 0;
    color:white;
}

.content p{
    color:rgba(255,255,255,.75);
    line-height:1.8;
    font-size:1.05rem;
}

/* POINTS */
.points{
    margin-top:1.5rem;
    display:flex;
    flex-direction:column;
    gap:.8rem;
}

.point{
    display:flex;
    align-items:center;
    gap:.6rem;
    color:rgba(255,255,255,.85);
    font-size:.95rem;
    transition:.3s ease;
}

.point:hover{
    transform:translateX(6px);
}

.dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#ef4444;
    box-shadow:0 0 0 3px rgba(239,68,68,.2);
}

/* ANIMATIONS */
@keyframes floatCard{
    0%,100%{ transform:translateY(0); }
    50%{ transform:translateY(-10px); }
}

@keyframes bgZoom{
    from{ transform:scale(1.08); }
    to{ transform:scale(1.15); }
}

/* RESPONSIVE */
@media(max-width:900px){
    .safety-grid{
        grid-template-columns:1fr;
    }

    .img-wrap{
        height:300px;
    }

    .content h2{
        font-size:1.8rem;
    }
}
/* =========================
   FINAL CTA SECTION
========================= */

.cta-sleek-section{
    position:relative;
    overflow:hidden;

    padding:4.5rem 1rem;

    background:
        linear-gradient(
            135deg,
            rgba(248,250,252,.88),
            rgba(241,245,249,.82)
        ),
        url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d");

    background-size:cover;
    background-position:center;
    background-attachment:fixed;
}

/* overlay */
.cta-sleek-section::before{
    content:"";
    position:absolute;
    inset:0;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.68),
            rgba(255,255,255,.48)
        );

    z-index:0;
}

/* premium glow */
.cta-glow{
    position:absolute;
    border-radius:50%;
    filter:blur(100px);
    opacity:.45;
    z-index:0;
}

.glow-left{
    width:320px;
    height:320px;

    background:rgba(205,1,34,.14);

    top:-120px;
    left:-100px;
}

.glow-right{
    width:320px;
    height:320px;

    background:rgba(1,37,73,.14);

    bottom:-120px;
    right:-100px;
}

/* =========================
   MAIN BOX
========================= */

.cta-sleek-box{
    position:relative;
    z-index:2;

    max-width:1180px;
    margin:auto;

    border-radius:30px;

    overflow:hidden;

    display:grid;
    grid-template-columns:1.15fr .85fr;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.82),
            rgba(255,255,255,.68)
        );

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.55);

    box-shadow:
        0 35px 80px rgba(15,23,42,.10);
}

/* left side */
.cta-sleek-box .cta-content{
    padding:3.2rem;
    position:relative;
}

/* right side */
.cta-actions{
    position:relative;

    padding:2.5rem;

    display:flex;
    flex-direction:column;
    justify-content:center;
    gap:1rem;

    background:
        linear-gradient(
            180deg,
            rgba(1,37,73,.97),
            rgba(3,50,95,.96)
        );
}

/* divider */
.cta-actions::before{
    content:"";
    position:absolute;

    top:50%;
    left:0;

    transform:translateY(-50%);

    width:1px;
    height:75%;

    background:rgba(255,255,255,.08);
}

/* top animated border */
.cta-sleek-box::before{
    content:"";
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:3px;

    background:
        linear-gradient(
            90deg,
            #cd0122,
            #012549,
            #cd0122
        );

    background-size:200% 100%;

    animation:lineMove 6s linear infinite;
}

@keyframes lineMove{
    100%{
        background-position:200% 50%;
    }
}

/* =========================
   TEXT AREA
========================= */

.cta-mini-title{
    display:inline-flex;
    align-items:center;
    gap:.5rem;

    padding:.55rem .95rem;

    border-radius:999px;

    background:rgba(205,1,34,.08);
    border:1px solid rgba(205,1,34,.10);

    color:#cd0122;

    font-size:.72rem;
    font-weight:700;

    letter-spacing:.08em;
    text-transform:uppercase;

    margin-bottom:1rem;
}

/* small dot */
.cta-mini-title::before{
    content:"";
    width:7px;
    height:7px;

    border-radius:50%;
    background:#cd0122;

    box-shadow:0 0 0 4px rgba(205,1,34,.12);
}

/* heading */
.cta-sleek-box h2{
    font-size:clamp(2rem,4vw,3rem);
    line-height:1.08;

    font-weight:700;
    letter-spacing:-.045em;

    color:#012549;

    margin-bottom:1rem;

    max-width:620px;
}

.cta-sleek-box h2 span{
    color:#cd0122;
}

/* paragraph */
.cta-sleek-box p{
    max-width:560px;

    font-size:1rem;
    line-height:1.8;

    color:#5f7286;

    margin:0;
}

/* =========================
   RIGHT PANEL CONTENT
========================= */

/* top mini card */
.cta-actions .info-box{
    padding:1rem 1.1rem;

    border-radius:16px;

    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:.92rem;
    line-height:1.7;
}

/* stats row */
.cta-actions .mini-stats{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:.8rem;
}

/* stat card */
.cta-actions .mini-card{
    padding:1rem;

    border-radius:16px;

    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);

    color:#fff;
}

.mini-card h4{
    margin:0 0 .2rem;
    font-size:1.15rem;
    color:white;
}

.mini-card span{
    font-size:.78rem;
    opacity:.7;
}

/* =========================
   BUTTONS
========================= */

.cta-btn-primary,
.cta-btn-secondary{
    width:100%;
    height:56px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:16px;

    position:relative;
    overflow:hidden;

    text-decoration:none;

    font-size:.88rem;
    font-weight:700;

    letter-spacing:.06em;
    text-transform:uppercase;

    transition:.35s ease;
}

/* shine effect */
.cta-btn-primary::before,
.cta-btn-secondary::before{
    content:"";
    position:absolute;

    top:0;
    left:-120%;

    width:100%;
    height:100%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,.18),
            transparent
        );

    transition:.7s;
}

.cta-btn-primary:hover::before,
.cta-btn-secondary:hover::before{
    left:120%;
}

/* primary */
.cta-btn-primary{
    background:#cd0122;
    color:#fff;

    box-shadow:
        0 18px 35px rgba(205,1,34,.22);
}

.cta-btn-primary:hover{
    transform:translateY(-4px);

    box-shadow:
        0 25px 45px rgba(205,1,34,.28);
}

/* secondary */
.cta-btn-secondary{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);

    color:#fff;
}

.cta-btn-secondary:hover{
    transform:translateY(-4px);

    background:rgba(255,255,255,.12);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:900px){

    .cta-sleek-box{
        grid-template-columns:1fr;
    }

    .cta-sleek-box .cta-content{
        padding:2.2rem 1.5rem 1rem;
    }

    .cta-actions{
        padding:1.5rem;
    }

    .cta-actions::before{
        display:none;
    }

    .cta-sleek-box h2{
        font-size:2rem;
    }
}