/* ======================================================
   About Page Enhancement Layer (OPTION B)
   Premium Floating Shapes + Blue Depth + Red Accents
   Non-destructive overlay on top of about.css
====================================================== */

/* ------------------------------------------
   1. HERO / BREADCRUMB HEADER UPGRADE
------------------------------------------- */

/* Glass Header (match homepage) */
.header__area.header-1 {
    background: rgba(255,255,255,0.06) !important;
    backdrop-filter: blur(14px) !important;
    border-bottom: 1px solid rgba(255,255,255,0.18);
}

/* Breadcrumb overlay enhancement */
.breadcrumb__area::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 80% 20%,
            rgba(244, 78, 25, 0.18),
            transparent 60%
        ),
        linear-gradient(
            180deg,
            rgba(0,0,0,0.55) 0%,
            rgba(0,0,0,0.40) 70%,
            rgba(0,0,0,0.55) 100%
        );
    pointer-events: none;
}

.breadcrumb__title {
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

/* ------------------------------------------
   2. ABOUT US MAIN SECTION IMPROVEMENT
------------------------------------------- */

.about-us {
    position: relative;
}

/* Floating organic blue shapes */
.about-us::before {
    content: "";
    position: absolute;
    width: 340px;
    height: 340px;
    top: -80px;
    left: -120px;
    background: radial-gradient(circle,
        rgba(0, 44, 95, 0.23),
        transparent 60%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

.about-us::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -60px;
    right: -80px;
    background: radial-gradient(circle,
        rgba(244, 78, 25, 0.18),
        transparent 70%);
    filter: blur(40px);
    z-index: 1;
    pointer-events: none;
}

/* Lift media cards */
.about-us__media img {
    border-radius: 14px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.10);
    transition: 0.35s ease;
}

.about-us__media img:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.16);
}

/* Circular rotating ring text */
.about-us__box .circle {
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.12);
}

.about-us__box img {
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

/* ------------------------------------------
   3. SECTION TITLE AESTHETIC UPGRADE
------------------------------------------- */

.section__title-wrapper h2.section__title {
    line-height: 1.25;
    letter-spacing: 0.5px;
}

.section__subtitle span {
    color: #F44E19 !important;
}

/* red underline */
.left-separetor, .right-separetor {
    height: 2.5px !important;
    background-color: #F44E19 !important;
}

/* ------------------------------------------
   4. VISION • MISSION • VALUES CARDS
------------------------------------------- */

.wmv-box {
    background: #ffffff;
    border-radius: 14px;
    padding: 32px 22px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: 0.35s ease;
}

/* floating soft blue background */
.wmv-box::before {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    top: -40px;
    right: -40px;
    background: radial-gradient(circle,
        rgba(0, 52, 105, 0.20),
        transparent 70%);
    filter: blur(30px);
    transition: 0.4s ease;
    z-index: -1;
}

/* red glow on hover */
.wmv-box:hover::before {
    background: radial-gradient(circle,
        rgba(244, 78, 25, 0.28),
        transparent 70%);
}

/* card lift */
.wmv-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

/* icons circle */
.icon-circle {
    background: rgba(255,255,255,0.85);
    padding: 16px;
    border-radius: 50%;
    width: 90px;
    height: 90px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.wmv-box:hover .icon-circle {
    transform: scale(1.08) rotate(3deg);
}

/* =======================================
   EXPERIENCE SECTION — RESPONSIVE UPGRADE
======================================== */

.experience {
    padding: 80px 0;
    position: relative;
}

.experience__box {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
}

/* Item styling */
.experience__item {
    display: flex;
    align-items: center;
    min-width: 230px;
    justify-content: center;
    text-align: center;
    padding: 15px 0;
}

/* Counter styling */
.experience__item-text-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
}

.experience__item h4 {
    font-size: 18px;
    color: #fff;
}

/* ------------ MOBILE RESPONSIVE FIXES ------------ */

@media (max-width: 1024px) {
    .experience__box {
        justify-content: center;
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .experience__item {
        width: 45%;
        margin-bottom: 20px;
    }
    .experience__item-text-title {
        font-size: 34px;
    }
}

@media (max-width: 576px) {
    .experience__item {
        width: 100%;
        margin-bottom: 25px;
    }
    .experience__item-text-title {
        font-size: 30px;
    }
    .experience__item h4 {
        font-size: 16px;
    }
}

/* ------------------------------------------
   6. WORKING PROCESS (Step Boxes)
------------------------------------------- */

.working-process__item {
    background: #ffffff;
    padding: 30px 22px;
    border-radius: 14px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: 0.34s ease;
    position: relative;
}

.working-process__item:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* red numeric badge */

.working-process__item-icon span {
    background: #F44E19 !important;
    color: #fff;
    padding: 8px 16px;
    border-radius: 40px;
    font-weight: 600;
}

/* icons nicer shadow */
.working-process__item-icon-img img {
    filter: drop-shadow(0 5px 12px rgba(0,0,0,0.18));
}

/* ============================
   PARTNERS SECTION — UPGRADED
===============================*/

.partners {
    background: linear-gradient(135deg, #f8fbff 0%, #eef4ff 100%);
    padding: 80px 0;
    position: relative;
}

/* soft floating blue glow */
.partners::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    top: -100px;
    left: -120px;
    background: radial-gradient(circle, rgba(0,60,120,0.15), transparent 70%);
    filter: blur(50px);
    z-index: 0;
}

.partner-card {
    position: relative;
    padding: 40px 30px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 12px 32px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.06);
    transition: 0.35s ease;
    overflow: hidden;
    z-index: 1;
}

/* blue floating background */
.partner-card::before {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    top: -40px;
    right: -40px;
    background: radial-gradient(circle, rgba(0,70,160,0.22), transparent 70%);
    filter: blur(20px);
    transition: 0.4s;
    z-index: -1;
}

/* hover red accent */
.partner-card:hover::before {
    background: radial-gradient(circle, rgba(244,78,25,0.25), transparent 70%);
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.14);
}

/* Typography */
.partner-name {
    font-size: 22px;
    font-weight: 700;
    color: #0a2a46;
    margin-bottom: 10px;
}

.partner-title {
    font-size: 16px;
    font-weight: 500;
    color: #606060;
}


/* ------------------------------------------
   8. RESPONSIVE POLISH
------------------------------------------- */

@media (max-width: 992px) {
    .about-us__media img {
        height: 260px;
        object-fit: cover;
    }
    .section__title {
        text-align: center;
    }
    .about-us__list {
        padding-left: 0 !important;
    }
}

@media (max-width: 768px) {
    .wmv-box {
        text-align: center;
    }
    .working-process__item {
        margin-top: 15px;
    }
}

@media (max-width: 576px) {
    .breadcrumb__title {
        font-size: 32px !important;
    }
    .section__title {
        font-size: 26px !important;
        line-height: 1.3;
    }
    .partner-card {
        padding: 24px !important;
    }
}
