/* -------------------------------- */
/* GLOBAL TYPOGRAPHY */
/* -------------------------------- */

body{
    font-family:'Inter',sans-serif;
    color:#374151;
    line-height:1.7;
    background:#ffffff;
}


/* -------------------------------- */
/* BREADCRUMB */
/* -------------------------------- */

.breadcrumb-bar{
    background:#f5f7fa;
    padding:12px 0;
    font-size:14px;
    color:#6b7280;
}


/* -------------------------------- */
/* SECTION TITLES */
/* -------------------------------- */

.section-title{
    font-size:36px;
    font-weight:700;
    color:#1e3a8a;
    margin-bottom:20px;
}

.section-padding{
    padding:90px 0;
}

.section-padding p{
    font-size:16px;
    line-height:1.8;
    color:#374151;
    margin-bottom:18px;
}


/* -------------------------------- */
/* SUB HEADINGS */
/* -------------------------------- */

.subheading{
    font-size:20px;
    font-weight:600;
    color:#111827;
    margin-top:20px;
    margin-bottom:10px;
}


/* -------------------------------- */
/* ABOUT IMAGE FRAME */
/* -------------------------------- */

.about-img-frame{
    display:inline-block;
    padding:12px;
    border:1px solid #e6ecf5;
    border-radius:18px;
    background:#ffffff;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
}

.about-img{
    width:100%;
    display:block;
    border-radius:12px;
    transition:transform .6s cubic-bezier(.2,.9,.3,1.1);
}

.about-img-frame:hover .about-img{
    transform:scale(1.08);
}


/* -------------------------------- */
/* CORE VALUES */
/* -------------------------------- */

.values-section{
    background:#eef3f8;
    padding:100px 0;
}

.value-row{
    margin-top:70px;
}

.value-row h4{
    font-size:26px;
    font-weight:700;
    color:#000;
    margin-bottom:16px;
    display:inline-block;
    border-bottom:3px solid #1e40af;
    padding-bottom:6px;
}

.value-row p{
    font-size:17px;
    line-height:1.8;
    color:#374151;
}

.value-sub{
    max-width:720px;
    margin:auto;
    font-size:18px;
    color:#374151;
}


/* -------------------------------- */
/* VISION / MISSION TEXT */
/* -------------------------------- */

.vision-section h6{
    font-size:18px;
    font-weight:600;
    color:#6b7280;
    margin-bottom:20px;
}

.vision-section h5{
    font-size:22px;
    font-weight:700;
    color:#1e3a8a;
    margin-top:20px;
    margin-bottom:10px;
}

.vision-section p{
    font-size:16px;
    color:#4b5563;
    line-height:1.8;
}


/* -------------------------------- */
/* VISION IMAGE LAYOUT */
/* -------------------------------- */

.vision-images{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
}

.vision-left{
    display:grid;
    grid-template-rows:1fr 1fr;
    gap:20px;
}

.vision-left img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.vision-right img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}


/* -------------------------------- */
/* TECHNOLOGY SECTION */
/* -------------------------------- */

.tech-section{
    background:#f4f7fb;
    padding:100px 0;
}

.tech-desc{
    font-size:17px;
    color:#374151;
    max-width:720px;
    margin:0 auto 50px auto;
}

.tech-slider{
    overflow:hidden;
    position:relative;
}

.tech-track{
    display:flex;
    gap:60px;
    width:max-content;
    animation:techScroll 28s linear infinite;
}

.tech-track img{
    height:38px;
    opacity:.75;
    transition:.3s;
}

.tech-track img:hover{
    opacity:1;
    transform:scale(1.1);
}

@keyframes techScroll{
    from{
        transform:translateX(0);
    }
    to{
        transform:translateX(-50%);
    }
}

.tech-slider::before,
.tech-slider::after{
    content:"";
    position:absolute;
    top:0;
    width:120px;
    height:100%;
    z-index:2;
}

.tech-slider::before{
    left:0;
    background:linear-gradient(to right,#f4f7fb,transparent);
}

.tech-slider::after{
    right:0;
    background:linear-gradient(to left,#f4f7fb,transparent);
}


/* -------------------------------- */
/* CTA SECTION */
/* -------------------------------- */

.cta-about{
    background:url("../images/footer_image.jpg") center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    color: #fff;
    padding: 90px 0;
    text-align: center;
    position: relative;
}

.cta-about::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.cta-about .container{
    position:relative;
    z-index:2;
}

.cta-about h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:10px;
}

.cta-about p{
    font-size:18px;
    margin-bottom:20px;
}

.btn-cta{
    display:inline-block;
    background:#ffffff;
    color:#1e40af;
    padding:14px 38px;
    border-radius:40px;
    font-weight:600;
    text-decoration:none;
    transition:.3s;
}

.btn-cta:hover{
    background:#1e40af;
    color:#fff;
}


/* -------------------------------- */
/* RESPONSIVE */
/* -------------------------------- */

@media (max-width:991px){

    .section-title{
        font-size:30px;
    }

    .value-row{
        text-align:center;
    }

    .tech-track{
        gap:40px;
    }

    .vision-images{
        grid-template-columns:1fr;
    }

}

@media (max-width:576px){

    .section-title{
        font-size:26px;
    }

    .value-row h4{
        font-size:22px;
    }

    .tech-track img{
        height:30px;
    }

}