.elementor-24 .elementor-element.elementor-element-3ef3a59{--display:flex;}/* Start custom CSS for html, class: .elementor-element-9396dc1 */[data-theme="light"] .about-description,
[data-theme="light"] .about-content p,
[data-theme="light"] .section-heading p,
[data-theme="light"] .highlight-card p,
[data-theme="light"] .mvv-card p,
[data-theme="light"] .service-box p,
[data-theme="light"] .about-cta-card p{

    color:#5F6F81 !important;

}

[data-theme="dark"] .about-description,
[data-theme="dark"] .about-content p,
[data-theme="dark"] .section-heading p,
[data-theme="dark"] .highlight-card p,
[data-theme="dark"] .mvv-card p,
[data-theme="dark"] .service-box p,
[data-theme="dark"] .about-cta-card p{

    color:#A8B4C3 !important;

}

[data-theme="light"] .mvv-card .value-list li{
    color:#5F6F81 !important;
}

[data-theme="dark"] .mvv-card .value-list li{
    color:#A8B4C3 !important;
}

/*==================================
        ABOUT HERO
==================================*/

.about-hero{

    max-width:900px;

    margin:0 auto;

    padding:120px 20px 80px;

    text-align:center;

}

.about-badge{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(224,147,58,.08);

    border:1px solid rgba(224,147,58,.25);

    color:#E0933A;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:28px;

}

.about-title{

    font-size:clamp(46px,6vw,72px);

    font-weight:800;

    line-height:1.08;

    margin-bottom:30px;

    color:var(--foreground);

}

.about-description{

    max-width:760px;

    margin:auto;

    font-size:20px;

    line-height:1.9;

    color:var(--muted);

}

/*==================================
        WHO WE ARE
==================================*/

.about-section{

    padding:90px 20px;

}

.about-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:1.3fr .9fr;

    gap:60px;

    align-items:center;

}

.section-tag{

    display:inline-flex;

    padding:10px 18px;

    border-radius:50px;

    margin-bottom:24px;

    background:rgba(224,147,58,.08);

    border:1px solid rgba(224,147,58,.25);

    color:var(--accent);

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

}

.about-content h2{

    font-size:48px;

    line-height:1.15;

    margin-bottom:28px;

    color:var(--foreground);

}

.about-content p{

    color:var(--muted);

    font-size:18px;

    line-height:1.9;

    margin-bottom:22px;

}

.about-highlight{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.highlight-card{

    background:var(--surface);

    border:1px solid var(--border);

    border-radius:22px;

    padding:35px;

    backdrop-filter:blur(14px);

    transition:.35s;

}

.highlight-card:hover{

    transform:translateY(-8px);

    border-color:rgba(224,147,58,.45);

    box-shadow:0 20px 50px rgba(0,0,0,.18);

}

.highlight-card h3{

    color:var(--foreground);

    margin-bottom:16px;

    font-size:24px;

}

.highlight-card p{

    color:var(--muted);

    line-height:1.8;

}

/* Responsive */

@media(max-width:992px){

.about-grid{

grid-template-columns:1fr;

gap:40px;

}

.about-content h2{

font-size:38px;

}

}

/*==================================
MISSION VISION VALUES
==================================*/

.mvv-section{

    padding:100px 20px;

}

.section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.section-heading h2{

    font-size:clamp(38px,5vw,58px);

    line-height:1.15;

    margin:20px 0;

    color:var(--foreground);

}

.section-heading p{

    font-size:18px;

    line-height:1.8;

    color:var(--muted);

}

.mvv-grid{

    max-width:1200px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;

}

.mvv-card{

    position:relative;

    padding:38px;

    border-radius:24px;

    background:var(--surface);

    border:1px solid var(--border);

    overflow:hidden;

    transition:.35s ease;

}

.mvv-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:4px;

    background:linear-gradient(
        90deg,
        #E0933A,
        #FFD166
    );

    transform:scaleX(0);

    transform-origin:left;

    transition:.45s;

}

.mvv-card:hover{

    transform:translateY(-10px);

    border-color:rgba(224,147,58,.45);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.mvv-card:hover::before{

    transform:scaleX(1);

}

.card-number{

    font-size:42px;

    font-weight:800;

    color:rgba(224,147,58,.25);

    margin-bottom:18px;

}

.mvv-card h3{

    font-size:28px;

    margin-bottom:18px;

    color:var(--foreground);

}

.mvv-card p{

    color:var(--muted);

    line-height:1.8;

    font-size:17px;

}

.value-list{

    list-style:none;

    margin:0;

    padding:0;

}

.value-list li{

    position:relative;

    padding-left:22px;

    margin-bottom:14px;

    color:var(--muted);

}

.value-list li::before{

    content:"";

    position:absolute;

    left:0;

    top:11px;

    width:8px;

    height:8px;

    border-radius:50%;

    background:#E0933A;

}

@media(max-width:992px){

.mvv-grid{

grid-template-columns:1fr;

}

}

/*==================================
FINAL CTA
==================================*/

.about-cta{

    padding:100px 20px 120px;

}

.about-cta-card{

    max-width:1100px;

    margin:auto;

    padding:70px 60px;

    border-radius:30px;

    background:var(--surface);

    border:1px solid var(--border);

    backdrop-filter:blur(20px);

    text-align:center;

    position:relative;

    overflow:hidden;

}

/* Top Glow */

.about-cta-card::before{

    content:"";

    position:absolute;

    top:-180px;

    left:50%;

    transform:translateX(-50%);

    width:420px;

    height:420px;

    background:radial-gradient(
        rgba(224,147,58,.18),
        transparent 70%
    );

    pointer-events:none;

}

.about-cta-card h2{

    font-size:clamp(40px,5vw,62px);

    line-height:1.15;

    margin:24px 0;

    color:var(--foreground);

}

.about-cta-card p{

    max-width:760px;

    margin:0 auto;

    color:var(--muted);

    font-size:18px;

    line-height:1.9;

}

.about-cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:45px;

    flex-wrap:wrap;

}

.about-cta-buttons .btn{

    min-width:220px;

}

@media(max-width:768px){

.about-cta{

padding:80px 20px;

}

.about-cta-card{

padding:45px 28px;

}

.about-cta-card h2{

font-size:34px;

}

.about-cta-buttons{

flex-direction:column;

}

.about-cta-buttons .btn{

width:100%;

}

}

.theme-toggle{
cursor:pointer;
}/* End custom CSS */