﻿

/*==================================================
ABOUT HERO
==================================================*/

.about-hero {
    position: relative;
    height: 80vh;
    min-height: 650px;
    background-image: url('/images/about/about-banner.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( rgba(0,0,0,.75), rgba(0,0,0,.65) );
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 15px;
}

    .breadcrumb a {
        color: #d4af37;
        text-decoration: none;
    }

.hero-subtitle {
    display: inline-block;
    color: #d4af37;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-hero-content h1 {
    font-size: 60px;
    line-height: 1.2;
    margin-bottom: 25px;
}

.about-hero-content p {
    font-size: 20px;
    line-height: 2;
    color: rgba(255,255,255,.9);
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: #d4af37;
    color: #111;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: .3s;
}

    .btn-primary:hover {
        transform: translateY(-4px);
        background: #fff;
    }

.btn-secondary {
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: .3s;
}

    .btn-secondary:hover {
        background: #fff;
        color: #111;
    }

@media(max-width:992px) {

    .about-hero {
        min-height: 550px;
    }

    .about-hero-content h1 {
        font-size: 42px;
    }

    .about-hero-content p {
        font-size: 18px;
    }
}

@media(max-width:768px) {

    .about-hero {
        min-height: 500px;
    }

    .about-hero-content h1 {
        font-size: 32px;
    }

    .about-hero-content p {
        font-size: 16px;
    }
}

/*=====================================
ABOUT COMPANY
=====================================*/

.about-company {
    padding: 110px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-image {
    position: relative;
}

    .about-image img {
        width: 100%;
        border-radius: 24px;
        box-shadow: 0 25px 60px rgba(0,0,0,.18);
        transition: .4s;
    }

        .about-image img:hover {
            transform: scale(1.02);
        }

.section-subtitle {
    display: inline-block;
    color: #c9a227;
    font-weight: bold;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.about-content h2 {
    font-size: 42px;
    color: #111;
    margin-bottom: 30px;
    line-height: 1.4;
}

.about-content p {
    color: #666;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 22px;
}

.about-content strong {
    color: #111;
}

@media(max-width:992px) {

    .about-grid {
        grid-template-columns: 1fr;
    }
}

/*=====================================
VISION - MISSION - VALUES
=====================================*/

.company-values {
    padding: 110px 0;
    background: #fafafa;
}

.section-heading {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

    .section-heading span {
        color: #c9a227;
        font-weight: 700;
        letter-spacing: 1px;
    }

    .section-heading h2 {
        font-size: 42px;
        margin: 20px 0;
        color: #111;
    }

    .section-heading p {
        color: #666;
        line-height: 2;
    }

.values-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}

.value-card {
    background: #fff;
    border-radius: 20px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,.08);
    transition: .35s;
    border-top: 4px solid transparent;
}

    .value-card:hover {
        transform: translateY(-10px);
        border-color: #c9a227;
    }

.value-icon {
    width: 85px;
    height: 85px;
    margin: auto;
    border-radius: 50%;
    background: #111;
    color: #d4af37;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    margin-bottom: 30px;
}

.value-card h3 {
    margin-bottom: 20px;
    font-size: 26px;
}

.value-card p {
    color: #666;
    line-height: 2;
}

.value-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.value-card li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

    .value-card li:last-child {
        border: none;
    }

@media(max-width:992px) {

    .values-grid {
        grid-template-columns: 1fr;
    }
}

/*=====================================
DIGITAL TRANSFORMATION
=====================================*/

.digital-section {
    padding: 110px 0;
}

.digital-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 70px;
    align-items: center;
}

.digital-content h2 {
    font-size: 42px;
    margin: 20px 0 30px;
    color: #111;
}

.digital-content p {
    color: #666;
    line-height: 2;
    margin-bottom: 20px;
    font-size: 18px;
}

.digital-image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 55px rgba(0,0,0,.15);
}

.digital-features {
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 20px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fafafa;
    padding: 18px 20px;
    border-radius: 14px;
    transition: .3s;
}

    .feature-item:hover {
        transform: translateY(-4px);
        background: #111;
        color: #fff;
    }

    .feature-item i {
        width: 48px;
        height: 48px;
        background: #d4af37;
        color: #111;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 20px;
        flex-shrink: 0;
    }

    .feature-item span {
        font-weight: 600;
    }

@media(max-width:992px) {

    .digital-grid {
        grid-template-columns: 1fr;
    }

    .digital-features {
        grid-template-columns: 1fr;
    }
}

/*=====================================
CHAIRMAN
=====================================*/

.chairman-section {
    padding: 110px 0;
    background: #111;
    color: #fff;
}

.chairman-card {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 70px;
    align-items: center;
}

.chairman-image {
    text-align: center;
}

    .chairman-image img {
        width: 100%;
        border-radius: 20px;
        border: 6px solid #d4af37;
        box-shadow: 0 25px 60px rgba(0,0,0,.35);
    }

.chairman-content h2 {
    font-size: 42px;
    margin: 15px 0 5px;
}

.chairman-content h4 {
    color: #d4af37;
    margin-bottom: 35px;
    font-weight: 500;
}

.chairman-content blockquote {
    font-size: 22px;
    line-height: 2;
    font-style: italic;
    color: #f4f4f4;
    border-right: 4px solid #d4af37;
    padding-right: 25px;
    margin-bottom: 30px;
}

.chairman-content p {
    color: #d8d8d8;
    line-height: 2;
    margin-bottom: 35px;
}

.chairman-sign strong {
    display: block;
    font-size: 22px;
    color: #fff;
}

.chairman-sign span {
    color: #d4af37;
}

@media(max-width:992px) {

    .chairman-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .chairman-content blockquote {
        border-right: none;
        border-top: 4px solid #d4af37;
        padding-top: 20px;
        padding-right: 0;
    }

    .chairman-image {
        max-width: 350px;
        margin: auto;
    }
}

/*=====================================
ABOUT CTA
=====================================*/

.about-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg,#111,#1d1d1d);
    text-align: center;
    color: #fff;
}

.cta-subtitle {
    display: inline-block;
    color: #d4af37;
    font-weight: 700;
    margin-bottom: 18px;
    letter-spacing: 1px;
}

.about-cta h2 {
    max-width: 850px;
    margin: auto;
    font-size: 52px;
    line-height: 1.5;
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 4px 20px rgba(0,0,0,.35);
}

    .about-cta h2 span {
        color: #d4af37;
    }

.about-cta p {
    max-width: 760px;
    margin: 30px auto 45px;
    line-height: 2;
    color: #ddd;
    font-size: 18px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    min-width: 190px;
    padding: 16px 34px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: .35s;
}

.cta-primary {
    background: #d4af37;
    color: #111;
}

    .cta-primary:hover {
        background: #fff;
        transform: translateY(-4px);
    }

.cta-secondary {
    border: 2px solid #fff;
    color: #fff;
}

    .cta-secondary:hover {
        background: #fff;
        color: #111;
        transform: translateY(-4px);
    }

@media(max-width:768px) {

    .about-cta h2 {
        font-size: 30px;
    }

    .about-cta p {
        font-size: 16px;
    }
}