/* ==========================================
   About Page Banner
========================================== */

.about-page-banner{
    padding:72px 0;
    color:#fff;
    text-align:center;
    background:linear-gradient(135deg,#198754,#0d6efd);
}

.about-banner-kicker{
    display:inline-block;
    margin-bottom:11px;
    font-size:14px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    opacity:.95;
}

.about-page-banner h1{
    margin-bottom:16px;
    font-size:50px;
    font-weight:700;
}

.about-page-banner > .container > p{
    max-width:760px;
    margin:0 auto;
    font-size:18px;
    line-height:1.8;
    opacity:.95;
}

.about-breadcrumb{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:27px;
    font-size:14px;
}

.about-breadcrumb a{
    color:#fff;
    font-weight:600;
    text-decoration:none;
    transition:color .3s ease;
}

.about-breadcrumb a:hover{
    color:#ffd54f;
}

.about-breadcrumb i{
    font-size:10px;
    opacity:.75;
}


/* ==========================================
   Layout
========================================== */

.about-page-shell{
    padding:75px 0;
    background:#f6f8fb;
}

.about-content-panel{
    padding:40px;
    background:#fff;
    border:1px solid #e7ebf0;
    border-radius:20px;
    box-shadow:0 12px 32px rgba(15,23,42,.08);
}


/* ==========================================
   Sidebar
========================================== */

.about-sidebar{
    position:sticky;
    top:25px;
    overflow:hidden;
    background:#fff;
    border:1px solid #e7ebf0;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(15,23,42,.08);
}

.about-sidebar-header{
    display:flex;
    align-items:center;
    gap:14px;
    padding:22px;
    color:#fff;
    background:linear-gradient(135deg,#198754,#0d6efd);
}

.about-sidebar-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    width:48px;
    height:48px;
    color:#fff;
    font-size:20px;
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.22);
    border-radius:14px;
}

.about-sidebar-header span{
    display:block;
    margin-bottom:2px;
    font-size:11px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    opacity:.85;
}

.about-sidebar-header h2{
    margin:0;
    font-size:22px;
    font-weight:700;
}

.about-sidebar-nav{
    display:flex;
    flex-direction:column;
}

.about-sidebar-nav a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding:17px 19px;
    color:#344054;
    font-size:15px;
    font-weight:600;
    text-decoration:none;
    border-bottom:1px solid #edf0f4;
    transition:padding-left .3s ease,color .3s ease,background .3s ease;
}

.about-sidebar-nav a:last-child{
    border-bottom:0;
}

.about-nav-label{
    display:flex;
    align-items:center;
    gap:11px;
}

.about-nav-label > i{
    width:20px;
    color:#198754;
    text-align:center;
    transition:color .3s ease;
}

.about-nav-arrow{
    color:#98a2b3;
    font-size:12px;
    opacity:0;
    transform:translateX(-6px);
    transition:opacity .3s ease,transform .3s ease,color .3s ease;
}

.about-sidebar-nav a:hover{
    padding-left:24px;
    color:#198754;
    background:#f0faf5;
}

.about-sidebar-nav a:hover .about-nav-arrow{
    color:#198754;
    opacity:1;
    transform:translateX(0);
}

.about-sidebar-nav a.active{
    color:#fff;
    background:#198754;
}

.about-sidebar-nav a.active .about-nav-label > i,
.about-sidebar-nav a.active .about-nav-arrow{
    color:#fff;
}

.about-sidebar-nav a.active .about-nav-arrow{
    opacity:1;
    transform:translateX(0);
}

.about-sidebar-help{
    display:flex;
    align-items:flex-start;
    gap:12px;
    margin:18px;
    padding:16px;
    color:#344054;
    background:#f6f8fb;
    border-radius:14px;
}

.about-sidebar-help > i{
    margin-top:3px;
    color:#198754;
    font-size:22px;
}

.about-sidebar-help strong{
    display:block;
    margin-bottom:3px;
    color:#1f2937;
    font-size:14px;
}

.about-sidebar-help p{
    margin:0 0 7px;
    color:#667085;
    font-size:12px;
    line-height:1.5;
}

.about-sidebar-help a{
    color:#1a2db8;
    font-size:12px;
    font-weight:700;
    text-decoration:none;
}


/* ==========================================
   Shared Heading
========================================== */

.about-section-heading{
    margin-bottom:34px;
}

.about-section-heading > span{
    display:block;
    margin-bottom:8px;
    color:#198754;
    font-size:13px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.about-section-heading h2{
    position:relative;
    margin-bottom:13px;
    padding-bottom:16px;
    color:#1f2937;
    font-size:38px;
    font-weight:700;
}

.about-section-heading h2::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:64px;
    height:4px;
    background:linear-gradient(90deg,#198754,#0d6efd);
    border-radius:20px;
}

.about-section-heading p{
    max-width:720px;
    margin:0;
    color:#667085;
    font-size:16px;
    line-height:1.8;
}


/* ==========================================
   Company Profile
========================================== */

.about-company-image{
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    min-height:340px;
    padding:35px;
    overflow:hidden;
    background:linear-gradient(145deg,#f8fafc,#eef4f8);
    border:1px solid #e4e9ef;
    border-radius:20px;
}

.about-company-image::before{
    content:"";
    position:absolute;
    top:-70px;
    right:-70px;
    width:180px;
    height:180px;
    background:rgba(13,110,253,.08);
    border-radius:50%;
}

.about-company-image img{
    position:relative;
    z-index:1;
    max-height:220px;
    object-fit:contain;
}

.about-image-badge{
    position:absolute;
    right:18px;
    bottom:18px;
    left:18px;
    z-index:2;
    display:flex;
    align-items:center;
    gap:10px;
    padding:13px 15px;
    color:#fff;
    font-size:13px;
    font-weight:700;
    background:rgba(31,41,55,.92);
    border-radius:12px;
}

.about-image-badge i{
    color:#7ee2a8;
}

.about-company-copy h3{
    margin-bottom:18px;
    color:#198754;
    font-size:27px;
    font-weight:700;
    line-height:1.35;
}

.about-company-copy p{
    margin-bottom:15px;
    color:#667085;
    font-size:16px;
    line-height:1.85;
}

.about-company-highlights{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:12px;
    margin-top:22px;
}

.about-company-highlights span{
    display:flex;
    align-items:center;
    gap:9px;
    color:#344054;
    font-size:14px;
    font-weight:600;
}

.about-company-highlights i{
    color:#198754;
}

.about-stat-card{
    height:100%;
    padding:25px 18px;
    text-align:center;
    background:#fff;
    border:1px solid #e7ebf0;
    border-radius:16px;
    box-shadow:0 8px 24px rgba(15,23,42,.07);
    transition:transform .35s ease,box-shadow .35s ease;
}

.about-stat-card:hover{
    transform:translateY(-7px);
    box-shadow:0 16px 35px rgba(15,23,42,.12);
}

.about-stat-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:58px;
    height:58px;
    margin:0 auto 15px;
    color:#fff;
    font-size:22px;
    background:linear-gradient(135deg,#198754,#0d6efd);
    border-radius:16px;
}

.about-stat-card h3{
    margin-bottom:5px;
    color:#1f2937;
    font-size:30px;
    font-weight:700;
}

.about-stat-card p{
    margin:0;
    color:#667085;
    font-size:14px;
}


/* ==========================================
   Vision & Mission
========================================== */

.about-vm-card{
    position:relative;
    height:100%;
    padding:34px;
    overflow:hidden;
    background:#fff;
    border:1px solid #e6ebf1;
    border-radius:18px;
    box-shadow:0 10px 28px rgba(15,23,42,.08);
    transition:transform .35s ease,box-shadow .35s ease;
}

.about-vm-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(15,23,42,.13);
}

.about-vm-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:68px;
    height:68px;
    margin-bottom:22px;
    color:#fff;
    font-size:27px;
    background:linear-gradient(135deg,#198754,#0d6efd);
    border-radius:18px;
}

.about-card-number{
    position:absolute;
    top:20px;
    right:24px;
    color:#e8edf3;
    font-size:42px;
    font-weight:800;
}

.about-vm-card h3{
    margin-bottom:15px;
    color:#1f2937;
    font-size:25px;
    font-weight:700;
}

.about-vm-card p{
    margin:0;
    color:#667085;
    font-size:15px;
    line-height:1.85;
}

.about-values-strip{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:12px;
    margin-top:28px;
    padding:18px;
    background:#f6f8fb;
    border-radius:16px;
}

.about-values-strip span{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:12px;
    color:#344054;
    font-size:13px;
    font-weight:700;
    background:#fff;
    border:1px solid #e8ecf1;
    border-radius:12px;
}

.about-values-strip i{
    color:#198754;
}


/* ==========================================
   Services
========================================== */

.about-service-card{
    height:100%;
    padding:30px;
    background:#fff;
    border:1px solid #e7ebf0;
    border-radius:18px;
    box-shadow:0 9px 26px rgba(15,23,42,.07);
    transition:transform .35s ease,box-shadow .35s ease,border-color .35s ease;
}

.about-service-card:hover{
    transform:translateY(-8px);
    border-color:rgba(25,135,84,.3);
    box-shadow:0 18px 40px rgba(15,23,42,.13);
}

.about-service-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:64px;
    height:64px;
    margin-bottom:20px;
    color:#198754;
    font-size:25px;
    background:#ecf8f2;
    border-radius:17px;
    transition:color .35s ease,background .35s ease,transform .35s ease;
}

.about-service-card:hover .about-service-icon{
    color:#fff;
    background:linear-gradient(135deg,#198754,#0d6efd);
    transform:rotate(5deg);
}

.about-service-card h3{
    margin-bottom:13px;
    color:#1f2937;
    font-size:21px;
    font-weight:700;
    line-height:1.4;
}

.about-service-card p{
    margin:0;
    color:#667085;
    font-size:14px;
    line-height:1.8;
}


/* ==========================================
   Why Choose Us
========================================== */

.about-feature-card{
    display:flex;
    align-items:flex-start;
    gap:18px;
    height:100%;
    padding:26px;
    background:#fff;
    border:1px solid #e7ebf0;
    border-radius:17px;
    box-shadow:0 9px 25px rgba(15,23,42,.07);
    transition:transform .35s ease,box-shadow .35s ease;
}

.about-feature-card:hover{
    transform:translateY(-7px);
    box-shadow:0 17px 38px rgba(15,23,42,.12);
}

.about-feature-card > i{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    width:55px;
    height:55px;
    color:#fff;
    font-size:21px;
    background:linear-gradient(135deg,#198754,#0d6efd);
    border-radius:15px;
}

.about-feature-card h3{
    margin-bottom:9px;
    color:#1f2937;
    font-size:20px;
    font-weight:700;
}

.about-feature-card p{
    margin:0;
    color:#667085;
    font-size:14px;
    line-height:1.75;
}


/* ==========================================
   Industries
========================================== */

.about-industry-card{
    height:100%;
    padding:29px 24px;
    text-align:center;
    background:#fff;
    border:1px solid #e7ebf0;
    border-radius:18px;
    box-shadow:0 9px 26px rgba(15,23,42,.07);
    transition:transform .35s ease,box-shadow .35s ease,color .35s ease,background .35s ease;
}

.about-industry-card:hover{
    color:#fff;
    background:linear-gradient(135deg,#198754,#0d6efd);
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(15,23,42,.15);
}

.about-industry-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    width:68px;
    height:68px;
    margin:0 auto 19px;
    color:#198754;
    font-size:27px;
    background:#ecf8f2;
    border-radius:18px;
    transition:color .35s ease,background .35s ease,transform .35s ease;
}

.about-industry-card:hover .about-industry-icon{
    color:#fff;
    background:rgba(255,255,255,.17);
    transform:rotate(5deg);
}

.about-industry-card h3{
    margin-bottom:10px;
    color:#1f2937;
    font-size:19px;
    font-weight:700;
    transition:color .35s ease;
}

.about-industry-card p{
    margin:0;
    color:#667085;
    font-size:13px;
    line-height:1.7;
    transition:color .35s ease;
}

.about-industry-card:hover h3,
.about-industry-card:hover p{
    color:#fff;
}


/* ==========================================
   Quality Policy
========================================== */

.about-quality-hero{
    display:flex;
    align-items:flex-start;
    gap:22px;
    padding:30px;
    color:#fff;
    background:linear-gradient(135deg,#198754,#0d6efd);
    border-radius:18px;
    box-shadow:0 12px 30px rgba(13,110,253,.18);
}

.about-quality-icon{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
    width:72px;
    height:72px;
    color:#fff;
    font-size:30px;
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.22);
    border-radius:18px;
}

.about-quality-hero span{
    display:block;
    margin-bottom:5px;
    font-size:12px;
    font-weight:700;
    letter-spacing:1.5px;
    text-transform:uppercase;
    opacity:.85;
}

.about-quality-hero h3{
    margin-bottom:10px;
    font-size:27px;
    font-weight:700;
}

.about-quality-hero p{
    margin:0;
    font-size:15px;
    line-height:1.8;
    opacity:.95;
}

.about-quality-copy{
    margin:24px 0;
    padding:20px 22px;
    color:#667085;
    background:#f6f8fb;
    border-left:4px solid #198754;
    border-radius:0 12px 12px 0;
}

.about-quality-copy p{
    margin:0;
    line-height:1.8;
}

.about-quality-item{
    display:flex;
    align-items:center;
    gap:11px;
    height:100%;
    padding:16px 18px;
    color:#344054;
    font-size:14px;
    font-weight:700;
    background:#fff;
    border:1px solid #e6ebf1;
    border-radius:13px;
}

.about-quality-item i{
    color:#198754;
    font-size:18px;
}

.about-quality-quote{
    position:relative;
    margin:28px 0 0;
    padding:24px 25px 24px 58px;
    background:#f6f8fb;
    border-radius:15px;
}

.about-quality-quote > i{
    position:absolute;
    top:24px;
    left:23px;
    color:#198754;
    font-size:23px;
}

.about-quality-quote p{
    margin:0;
    color:#344054;
    font-size:17px;
    font-weight:600;
    line-height:1.7;
}


/* ==========================================
   Bottom CTA
========================================== */

.about-content-cta{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
    margin-top:40px;
    padding:25px 27px;
    color:#fff;
    background:#1f2937;
    border-radius:17px;
}

.about-content-cta span{
    display:block;
    margin-bottom:5px;
    color:#7ee2a8;
    font-size:11px;
    font-weight:700;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

.about-content-cta h3{
    margin-bottom:6px;
    font-size:22px;
    font-weight:700;
}

.about-content-cta p{
    margin:0;
    color:#d0d5dd;
    font-size:13px;
    line-height:1.6;
}

.about-content-cta-actions{
    display:flex;
    align-items:center;
    flex-shrink:0;
    gap:10px;
}

.about-primary-button,
.about-secondary-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:11px 18px;
    font-size:13px;
    font-weight:700;
    text-decoration:none;
    border-radius:28px;
    transition:transform .3s ease,color .3s ease,background .3s ease;
}

.about-primary-button{
    color:#1f2937;
    background:#fff;
}

.about-primary-button:hover{
    color:#198754;
    transform:translateY(-2px);
}

.about-secondary-button{
    color:#fff;
    border:1px solid rgba(255,255,255,.35);
}

.about-secondary-button:hover{
    color:#fff;
    background:rgba(255,255,255,.1);
}


/* ==========================================
   Responsive
========================================== */

@media(max-width:1199px){
    .about-content-panel{
        padding:32px;
    }

    .about-company-highlights{
        grid-template-columns:1fr;
    }

    .about-values-strip{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media(max-width:991px){
    .about-sidebar{
        position:static;
    }

    .about-sidebar-nav{
        display:grid;
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .about-sidebar-nav a{
        border-right:1px solid #edf0f4;
    }

    .about-sidebar-nav a:nth-child(even){
        border-right:0;
    }

    .about-sidebar-help{
        display:none;
    }
}

@media(max-width:767px){
    .about-page-banner{
        padding:54px 20px;
    }

    .about-page-banner h1{
        font-size:38px;
    }

    .about-page-banner > .container > p{
        font-size:16px;
    }

    .about-page-shell{
        padding:55px 0;
    }

    .about-content-panel{
        padding:24px;
        border-radius:16px;
    }

    .about-section-heading h2{
        font-size:31px;
    }

    .about-company-image{
        min-height:280px;
    }

    .about-company-copy h3{
        font-size:23px;
    }

    .about-values-strip{
        grid-template-columns:1fr;
    }

    .about-quality-hero{
        flex-direction:column;
    }

    .about-content-cta{
        align-items:flex-start;
        flex-direction:column;
    }

    .about-content-cta-actions{
        width:100%;
    }

    .about-primary-button,
    .about-secondary-button{
        flex:1;
    }
}

@media(max-width:575px){
    .about-page-banner h1{
        font-size:33px;
    }

    .about-sidebar-nav{
        grid-template-columns:1fr;
    }

    .about-sidebar-nav a{
        border-right:0;
    }

    .about-feature-card{
        flex-direction:column;
    }

    .about-company-highlights{
        grid-template-columns:1fr;
    }

    .about-content-cta-actions{
        align-items:stretch;
        flex-direction:column;
    }

    .about-primary-button,
    .about-secondary-button{
        width:100%;
    }
}
