/* ================================================================
   style-2.css — About Page Specific Styles
   Page: about.php
   NOTE: All common styles (variables, buttons, nav, footer,
   why-cards, cta-band, reveal animations, section labels,
   section headings) are already in main.css. This file
   contains ONLY styles unique to the About page.
================================================================ */

/* ---------------------------------------------------------------
   PAGE BANNER
--------------------------------------------------------------- */
.arun_about-banner {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.arun_about-banner-bg {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(140deg, rgba(40, 22, 108, 0.92) 0%, rgba(17, 24, 32, 0.60) 55%, rgba(0, 146, 221, 0.25) 100%),
        url('../img/arun_about_bn.jpg') center / cover no-repeat;
    animation: bannerZoom 18s ease-in-out infinite alternate;
}

@keyframes bannerZoom {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.05);
    }
}

.arun_about-banner-inner {
    position: relative;
    z-index: 2;
    padding: 120px 0 64px;
    color: var(--white);
}

/* Breadcrumb inside banner */
.arun_about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
    font-size: 0.82rem;
}

.arun_about-breadcrumb li {
    color: rgba(255, 255, 255, 0.55);
}

.arun_about-breadcrumb li i {
    font-size: 0.7rem;
}

.arun_about-breadcrumb a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color 0.2s;
}

.arun_about-breadcrumb a:hover {
    color: var(--saffron-lt);
}

.arun_about-breadcrumb li[aria-current="page"] {
    color: var(--white);
    font-weight: 600;
}

.arun_about-banner-title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin: 8px 0 18px;
}

.arun_about-banner-title em {
    font-style: italic;
    color: var(--saffron-lt);
}

.arun_about-banner-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.72);
    max-width: 500px;
    line-height: 1.7;
    font-weight: 300;
}

/* ---------------------------------------------------------------
   ABOUT INTRO SECTION
--------------------------------------------------------------- */
.arun_about-intro {
    padding: var(--section-gap) 0;
    background: var(--cream);
}

/* Image wrapper */
.arun_about-img-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.arun_about-img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--card-radius);
    display: block;
    box-shadow: 0 24px 60px rgba(40, 22, 108, 0.14);
}

/* Floating badge on image */
.arun_about-img-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--saffron);
    color: var(--white);
    border-radius: 14px;
    padding: 18px 22px;
    text-align: center;
    box-shadow: 0 10px 32px rgba(0, 146, 221, 0.3);
}

.arun_about-img-badge .badge-num {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
}

.arun_about-img-badge .badge-num sup {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

.arun_about-img-badge .badge-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 5px;
}

@media (max-width: 575px) {
    .arun_about-img-badge {
        right: 10px;
        bottom: 10px;
    }
}

/* Body paragraphs */
.arun_about-para {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--mid);
    margin-bottom: 16px;
}

/* Key highlight pills */
.arun_about-highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid #E0EDF5;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.arun_about-highlight:hover {
    border-color: var(--saffron);
    box-shadow: 0 4px 16px rgba(0, 146, 221, 0.1);
}

.arun_about-highlight i {
    color: var(--saffron);
    font-size: 1rem;
    flex-shrink: 0;
}

/* ---------------------------------------------------------------
   STATS BAND
--------------------------------------------------------------- */
.arun_about-stats {
    padding: 64px 0;
    background: var(--teal);
}

.arun_about-stat-card {
    padding: 10px;
}

.arun_about-stat-num {
    font-family: var(--font-head);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.arun_about-stat-num sup {
    font-size: 1.2rem;
    color: var(--saffron-lt);
}

.arun_about-stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.58);
    letter-spacing: 0.05em;
}

/* ---------------------------------------------------------------
   WHY CHOOSE US (uses arun_example-why-card from main.css)
   Only the section background is specific here.
--------------------------------------------------------------- */
.arun_about-why {
    padding: var(--section-gap) 0;
    background: var(--cream);
}