/* ==========================================================
   ABOUT HOME
========================================================== */

.about-home{

    background:#fff;

}

.about-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:80px;

    align-items:center;

}

.about-image{

    position:relative;

}

.about-image img{

    width:100%;

    border-radius:24px;

    box-shadow:var(--shadow-lg);

}

.experience-box{

    position:absolute;

    right:0;

    bottom:0;

    width:220px;

    background:none;

    color:#fff;

    padding:30px;

    border-radius:20px;

    text-align:center;

    box-shadow:var(--shadow-lg);

}

.experience-box h2{

    font-size:48px;

    color:#fff;

    margin-bottom:10px;

}

.experience-box p{

    color:#fff;

    font-size:15px;

}

.about-content p{

    color:var(--gray);

    margin-bottom:20px;

    line-height:1.8;

}

.about-features{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:18px;

    margin-top:35px;

    margin-bottom:35px;

}

.feature{

    display:flex;

    align-items:center;

    gap:12px;

    font-weight:600;

    color:var(--dark);

}

.feature i{

    color:var(--success);

    font-size:20px;

}
/* ==========================================================
   MISSION & VISION
========================================================== */

.mission-vision-grid{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;

}

.mission-card{

    background:#fff;

    padding:45px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s ease;

}

.mission-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.card-icon{

    width:70px;
    height:70px;

    border-radius:50%;

    background:var(--primary);

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:25px;

}

.card-icon i{

    color:#fff;

    font-size:28px;

}

.mission-card h3{

    font-size:28px;

    margin-bottom:20px;

    color:var(--dark);

}

.mission-card p{

    color:#666;

    line-height:1.9;

    text-align:justify;

}
@media(max-width:768px){

.mission-vision-grid{

    grid-template-columns:1fr;

}

.mission-card{

    padding:30px;

}

}
/* ==========================================================
   ABOUT HERO
========================================================== */

.about-hero{

    background: linear-gradient(135deg, #08284d, #0d4ea6);

    color: #fff;

    text-align: center;

    padding: 120px 0 80px;

}

.about-hero .page-subtitle{

    display: inline-block;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;

    text-transform: uppercase;

    color: rgba(255,255,255,.85);

    margin-bottom: 15px;

}

.about-hero h1{

    font-size: 52px;

    font-weight: 700;

    margin-bottom: 20px;

}

.about-hero p{

    max-width: 700px;

    margin: auto;

    font-size: 20px;

    color: rgba(255,255,255,.9);

}

@media (max-width:768px){

    .about-hero{

        padding: 90px 0 60px;

    }

    .about-hero h1{

        font-size: 36px;

    }

    .about-hero p{

        font-size: 17px;

    }

}
/* ==========================================================
   COMPANY GOALS
========================================================== */

.bg-light{

    background:#f8fafc;

}

.about-content{

    max-width:900px;

    margin:0 auto;

    text-align:center;

}

.about-content p{

    font-size:18px;

    line-height:1.9;

    color:var(--text-light);

    margin-bottom:25px;

}

.about-content p:last-child{

    margin-bottom:0;

}
.about-content{

    max-width:950px;

    margin:auto;

    background:#fff;

    padding:60px;

    border-radius:24px;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

}
/* ==========================================================
   ORGANIZATION STRUCTURE
========================================================== */

.organization-image{

    display:flex;

    justify-content:center;

    align-items:center;

    margin-top:60px;

    width:100%;

}

.organization-image img{

    display:block;

    width:100%;

    max-width:1100px;

    height:auto;

    margin:0 auto;

    border-radius:20px;

    background:#fff;

    padding:25px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}
.organization-image img:hover{

    transform:translateY(-5px);

    box-shadow:0 30px 60px rgba(0,0,0,.12);

}
/* ==========================================================
   ENGINEERING PROCESS
========================================================== */

.process-section{

    background:#f8fafc;

}

/* ===========================
   GRID
=========================== */

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:60px;

}

/* ===========================
   CARD
=========================== */

.process-card{

    position:relative;

    background:#fff;

    padding:40px 30px;

    border-radius:20px;

    border:1px solid #e8edf4;

    box-shadow:0 15px 35px rgba(0,0,0,.06);

    transition:.35s;

    overflow:hidden;

}

.process-card:hover{

    transform:translateY(-10px);

    box-shadow:0 25px 50px rgba(0,0,0,.12);

}

/* ===========================
   NUMBER
=========================== */

.process-number{

    width:70px;

    height:70px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:24px;

    font-weight:700;

    margin-bottom:25px;

    box-shadow:0 10px 25px rgba(3,127,252,.25);

}

/* ===========================
   TITLE
=========================== */

.process-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:var(--dark);

}

/* ===========================
   DESCRIPTION
=========================== */

.process-card p{

    color:var(--text-light);

    line-height:1.8;

    font-size:16px;

}
/* ==========================================================
   FAQ
========================================================== */

.faq-section{

    background:#f8fafc;

}

/* ===========================
   CONTAINER
=========================== */

.faq-container{

    max-width:900px;

    margin:60px auto 0;

    display:flex;

    flex-direction:column;

    gap:20px;

}

/* ===========================
   FAQ ITEM
=========================== */

.faq-item{

    background:#fff;

    border-radius:18px;

    padding:30px;

    border:1px solid #e8edf4;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s;

}

.faq-item:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

/* ===========================
   QUESTION
=========================== */

.faq-item h3{

    font-size:22px;

    color:var(--dark);

    margin-bottom:15px;

    display:flex;

    align-items:center;

    gap:12px;

}

.faq-item h3::before{

    content:"?";

    width:34px;

    height:34px;

    border-radius:50%;

    background:var(--primary);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:700;

    font-size:18px;

    flex-shrink:0;

}

/* ===========================
   ANSWER
=========================== */

.faq-item p{

    color:var(--text-light);

    line-height:1.8;

    margin-left:46px;

}