/* ================= ABOUT HERO ================= */

.about-hero {
    position: relative;
    padding: 170px 0 120px;

    background:
        linear-gradient(
            rgba(0,0,0,0.50),
            rgba(0,0,0,0.50)
        ),
        url('/assets/img/about-hero-sec.jfif');

    background-size:cover;
    background-position: center;
    background-attachment: fixed;

    overflow: hidden;
}

/* OVERLAY */

.about-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
}

/* CONTENT */

.about-hero-content {
    position: relative;
    z-index: 2;

    max-width: 850px;
    margin: auto;

    text-align: center;
    color: #fff;
}

/* TAG */

.page-tag {
    display: inline-block;
    background: rgba(212,160,23,0.15);
    color: #d4a017;

    padding: 10px 24px;
    border-radius: 30px;

    margin-bottom: 25px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* HEADING */

.about-hero-content h1 {
    font-size: 62px;
    line-height: 1.2;
    margin-bottom: 28px;
}

/* PARAGRAPH */

.about-hero-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #d6d6d6;
}

/* ================= BREADCRUMB ================= */

/* .breadcrumb {
    margin-top: 35px;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    flex-wrap: wrap;
}

.breadcrumb a {
    color: #d4a017;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: #cfcfcf;
}

.breadcrumb p {
    color: #fff;
    margin: 0;
} */

/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {

    .about-hero {
        padding: 150px 0 100px;
    }

    .about-hero-content h1 {
        font-size: 48px;
    }

}

@media(max-width: 768px) {

    .about-hero {
        padding: 130px 0 90px;
        background-attachment: scroll;
    }

    .about-hero-content h1 {
        font-size: 38px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

}

@media(max-width: 480px) {

    .about-hero {
        padding: 120px 0 80px;
    }

    .page-tag {
        font-size: 13px;
        padding: 9px 20px;
    }

    .about-hero-content h1 {
        font-size: 30px;
        line-height: 1.4;
    }

    .about-hero-content p {
        font-size: 15px;
        line-height: 1.8;
    }

    .breadcrumb {
        gap: 8px;
    }

}

/* ================= COMPANY PROFILE ================= */

.company-profile-section {
    padding: 100px 0;
    background: #f8f8f8;
}

/* ================= TITLE ================= */

.profile-title {
    text-align: center;
    max-width: 850px;
    margin: auto auto 50px;
}

.profile-title h2 {
    font-size: 48px;
    color: #111;
    margin: 20px 0;
}

.profile-title p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

/* ================= WRAPPER ================= */

.profile-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* ================= CONTENT ================= */

.profile-content {
    flex: 1;
}

.profile-content h3 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #111;
    line-height: 1.4;
}

.profile-content p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 15px;
}

/* ================= SERVICES ================= */

.profile-services {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 35px;
}

.service-item {
    background: #fff;
    padding: 16px 18px;
    border-radius: 12px;

    font-weight: 600;
    color: #111;

    border: 1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 5px 15px rgba(0,0,0,0.05);

    transition: 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);

    background: #d4a017;
    color: #fff;
}

/* ================= IMAGE ================= */

.profile-image {
    flex: 1;
}

.profile-image img {
    width: 100%;
    border-radius: 25px;
    object-fit: cover;

    box-shadow:
        0 10px 35px rgba(0,0,0,0.12);
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {

    .profile-wrapper {
        flex-direction: column;
    }

    .profile-title h2 {
        font-size: 40px;
    }

    .profile-content h3 {
        font-size: 32px;
    }

}

@media(max-width: 768px) {

    .company-profile-section {
        padding: 80px 0;
    }

    .profile-title h2 {
        font-size: 34px;
    }

    .profile-content h3 {
        font-size: 28px;
    }

    .profile-services {
        grid-template-columns: 1fr;
    }

}

@media(max-width: 480px) {

    .profile-title h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    .profile-content h3 {
        font-size: 24px;
    }

    .service-item {
        font-size: 14px;
    }

}

/* ================= ABOUT COMPANY ================= */

.about-company-section {
    padding: 100px 0;
    background: linear-gradient(to right, #111111, #1c1c1c);
}

/* ================= TOP WRAPPER ================= */

.about-company-wrapper {
    display: flex;
    align-items: center;
    gap: 70px;
    margin-bottom: 60px;
}

/* ================= IMAGE ================= */

.about-company-images {
    flex: 1;
}

.main-image img {
    width: 100%;
    border-radius: 28px;
    object-fit: cover;

    box-shadow:
        0 15px 40px rgba(0,0,0,0.12);
}

/* ================= CONTENT ================= */

.about-company-content {
    flex: 1;
}

/* TAG */

.section-tag {
    display: inline-block;

    background: rgba(212,160,23,0.12);
    color: #d4a017;

    padding: 10px 22px;
    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 22px;
}

/* HEADING */

.about-company-content h2 {
    font-size: 48px;
    line-height: 1.3;

    color: #f8f8f8;

    margin-bottom: 25px;
}

/* TEXT */

.about-text {
    color: #bdb4b4;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 15px;
}

/* ================= FEATURE CARDS ================= */

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */

.about-feature-card {
    background: #fff;

    padding: 30px 24px;

    border-radius: 20px;

    border: 1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 8px 25px rgba(0,0,0,0.06);

    transition: 0.35s ease;

    position: relative;
    overflow: hidden;
}

/* TOP BORDER */

.about-feature-card::before {
    content: '';

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 4px;

    background: #d4a017;
}

/* HOVER */

.about-feature-card:hover {
    transform: translateY(-8px);

    box-shadow:
        0 18px 35px rgba(0,0,0,0.12);
}

/* HEADER */

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;

    margin-bottom: 20px;
}

/* ICON */

.feature-icon {
    width: 70px;
    height: 70px;

    min-width: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 18px;

    background: rgba(212,160,23,0.12);

    color: #d4a017;

    font-size: 32px;

    transition: 0.3s ease;
}

.about-feature-card:hover .feature-icon {
    background: #d4a017;
    color: #fff;
}

/* TITLE */

.about-feature-card h3 {
    font-size: 22px;
    color: #111;
    line-height: 1.4;
}

/* DESCRIPTION */

.about-feature-card p {
    color: #666;
    line-height: 1.9;
    font-size: 15px;
}

/* ================= BUTTON ================= */

.about-btn-wrapper {
    text-align: center;
    margin-top: 50px;
}

.about-btn {
    display: inline-block;
    background: #f8f8f8;
    color: #111;
    padding: 16px 38px;
    border: 2px solid #d4a017;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.about-btn:hover {
    background: #d4a017;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 1100px) {

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width: 992px) {

    .about-company-wrapper {
        flex-direction: column;
    }

    .about-company-content h2 {
        font-size: 40px;
    }

}

@media(max-width: 768px) {

    .about-company-section {
        padding: 80px 0;
    }

    .about-company-content h2 {
        font-size: 34px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

}

@media(max-width: 480px) {

    .about-company-content h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    .about-text {
        font-size: 14px;
    }

    .about-feature-card {
        padding: 25px 20px;
    }

    .feature-header {
        gap: 14px;
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        min-width: 60px;

        font-size: 28px;
    }

    .about-feature-card h3 {
        font-size: 20px;
    }

    .about-feature-card p {
        font-size: 14px;
    }

}

/* ================= VISION MISSION SECTION ================= */

.vision-mission-section {
    padding: 100px 0;
    background: #f8f9fc;
    overflow: hidden;
}

/* ================= TITLE ================= */

.vm-title {
    text-align: center;
    max-width: 800px;
    margin: auto auto 70px;
}

.section-tag {
    display: inline-block;

    background: rgba(212,160,23,0.12);
    color: #d4a017;

    padding: 10px 22px;
    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 22px;
}

.vm-title h2 {
    font-size: 48px;
    color: #111;
    margin-bottom: 20px;
}

.vm-title p {
    color: #666;
    line-height: 1.9;
    font-size: 16px;
}

/* ================= WRAPPER ================= */

.vm-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

/* ================= CARD ================= */

.vm-card {
    background: #fff;

    padding: 45px 40px;

    border-radius: 28px;

    position: relative;
    overflow: hidden;

    border: 1px solid rgba(0,0,0,0.05);

    box-shadow:
        0 10px 30px rgba(0,0,0,0.06);

    transition: 0.35s ease;
}

/* TOP BORDER */

.vm-card::before {
    content: '';

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: #d4a017;
}

/* HOVER */

.vm-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 40px rgba(0,0,0,0.12);
}

/* ================= ICON ================= */

.vm-icon {
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(212,160,23,0.12);

    color: #d4a017;

    border-radius: 22px;

    font-size: 42px;

    margin-bottom: 30px;

    transition: 0.3s ease;
}

.vm-card:hover .vm-icon {
    background: #d4a017;
    color: #fff;
}

/* ================= TEXT ================= */

.vm-card h3 {
    font-size: 34px;
    color: #111;
    margin-bottom: 20px;
}

.vm-card p {
    color: #666;
    line-height: 1.9;
    margin-bottom: 28px;
    font-size: 15px;
}

/* ================= LIST ================= */

.vm-card ul {
    list-style: none;
    padding: 0;
}

.vm-card ul li {
    margin-bottom: 16px;

    color: #111;
    font-weight: 600;

    display: flex;
    align-items: center;
    gap: 10px;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {

    .vm-wrapper {
        grid-template-columns: 1fr;
    }

    .vm-title h2 {
        font-size: 40px;
    }

}

@media(max-width: 768px) {

    .vision-mission-section {
        padding: 80px 0;
    }

    .vm-title h2 {
        font-size: 34px;
    }

    .vm-card {
        padding: 35px 28px;
    }

    .vm-card h3 {
        font-size: 28px;
    }

}

@media(max-width: 480px) {

    .vm-title h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    .vm-title p {
        font-size: 14px;
    }

    .vm-card {
        padding: 26px 20px;
    }

    /* ICON + TITLE INLINE */

    .vm-top {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 18px;
    }

    .vm-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
        border-radius: 14px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .vm-card h3 {
        font-size: 22px;
        margin-bottom: 0;
        line-height: 1.3;
    }

    .vm-card p {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 22px;
    }

    .vm-card ul li {
        font-size: 14px;
        margin-bottom: 14px;
    }

}

/* ================= WHY CHOOSE US ================= */

.why-choose-section {
    padding: 100px 0;
    background: #111;
    overflow: hidden;
}

/* ================= TITLE ================= */

.why-title {
    text-align: center;
    max-width: 850px;
    margin: auto auto 70px;
}

.section-tag {
    display: inline-block;

    padding: 10px 22px;

    border-radius: 30px;

    background: rgba(212,160,23,0.15);

    color: #d4a017;

    font-size: 14px;
    font-weight: 600;

    margin-bottom: 22px;
}

.why-title h2 {
    font-size: 52px;
    line-height: 1.3;

    color: #fff;

    margin-bottom: 25px;
}

.why-title p {
    color: #cfcfcf;

    line-height: 1.9;

    font-size: 16px;
}

/* ================= WRAPPER ================= */

.why-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* ================= IMAGE ================= */

.why-image {
    flex: 1;
    position: relative;
}

.why-image img {
    width: 100%;
    border-radius: 30px;
    display: block;
}

/* EXPERIENCE BOX */

.experience-box {
    position: absolute;

    bottom: -25px;
    right: -20px;

    background: #d4a017;

    width: 220px;

    padding: 30px;

    border-radius: 22px;

    color: #fff;

    box-shadow:
        0 15px 35px rgba(212,160,23,0.35);
}

.experience-box h3 {
    font-size: 52px;
    margin-bottom: 10px;
}

.experience-box p {
    line-height: 1.7;
}

/* ================= FEATURES ================= */

.why-features {
    flex: 1;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 25px;
}

/* CARD */

.why-card {
    background: rgba(255,255,255,0.04);

    border: 1px solid rgba(255,255,255,0.06);

    border-radius: 24px;

    padding: 30px;

    transition: 0.35s ease;
}

.why-card:hover {
    transform: translateY(-8px);

    background: rgba(255,255,255,0.08);
}

/* ICON */

.why-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: rgba(212,160,23,0.15);

    color: #d4a017;

    border-radius: 18px;

    font-size: 30px;

    margin-bottom: 22px;

    transition: 0.3s ease;
}

.why-card:hover .why-icon {
    background: #d4a017;
    color: #fff;
}

/* TEXT */

.why-card h3 {
    color: #fff;

    font-size: 24px;

    margin-bottom: 14px;

    line-height: 1.4;
}

.why-card p {
    color: #cfcfcf;

    line-height: 1.8;

    font-size: 15px;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 992px) {

    .why-wrapper {
        flex-direction: column;
    }

    .why-title h2 {
        font-size: 42px;
    }

}

@media(max-width: 768px) {

    .why-features {
        grid-template-columns: 1fr;
    }

    .why-title h2 {
        font-size: 34px;
    }

    .experience-box {
        width: 180px;
        padding: 22px;
    }

}

@media(max-width: 480px) {

    .why-choose-section {
        padding: 80px 0;
    }

    .why-title h2 {
        font-size: 28px;
        line-height: 1.4;
    }

    .why-title p {
        font-size: 14px;
    }

    .why-card {
        padding: 22px;
    }

    /* ICON + TITLE INLINE */

    .why-top {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 14px;
    }

    .why-icon {
        width: 52px;
        height: 52px;
        font-size: 24px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .why-card h3 {
        font-size: 19px;
        margin-bottom: 0;
        line-height: 1.4;
    }

    .why-card p {
        font-size: 14px;
        line-height: 1.6;
    }

    .experience-box {
        position: static;
        margin-top: 20px;
        width: 100%;
        text-align: center;
    }

}