/* CSS for about page */

.about-breadcrumb {
    background-image: url('../img/about-1.webp');
    background-size: cover;
    background-position: center;
}

/* Base Section Styling */
.about-section {
    padding: 120px 0;
    background-color: #8787874f !important;
    color: rgba(255, 255, 255, 0.8) !important;
}

/* Headings & Text */


.about-section .section-label {
    color: var(--orange) !important;
}

.about-section .text-muted,
.about-section p {
    color: rgb(0 0 0 / 65%) !important;
}

/* Blockquote */
.about-section blockquote {
    background: rgba(255, 255, 255, 0.04) !important;
    padding: 1.8rem !important;
    border-radius: 8px !important;
    border-left: 4px solid var(--orange) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.02) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.02) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02) !important;
    box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
}

.about-section blockquote p,
.about-section .ext-abo-3 {
    color: rgb(0 0 0 / 90%) !important;
    font-size: 1.1rem !important;
    font-style: italic !important;
    margin: 0 !important;
}

/* About Grid Cards */
.about-card {
    background: rgb(68 68 68 / 72%) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 12px !important;
    padding: 2rem !important;
    height: 100% !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), background 0.4s, border-color 0.4s !important;
}

.about-card:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    transform: translateY(-8px) !important;
    border-color: rgba(239, 149, 41, 0.5) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4) !important;
}

.about-card .icon {
    width: 55px !important;
    height: 55px !important;
    background: rgba(239, 149, 41, 0.15) !important;
    color: var(--orange) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1.6rem !important;
    margin-bottom: 1.2rem !important;
    transition: transform 0.4s ease, background 0.4s, color 0.4s !important;
}

.about-card:hover .icon {
    transform: scale(1.15) !important;
    background: var(--orange) !important;
    color: #fff !important;
}

.about-card h5 {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700 !important;
    font-size: 1.2rem !important;
    color: #ffffff !important;
    margin-bottom: 0.8rem !important;
}

.about-card p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
}

/* Image Composition Restyling for Dark Mode */
.about-section .about-img-secondary,
.about-section .about-img-third {
    border: 6px solid #121212 !important;
    /* Seamless blending with background */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4) !important;
}

.about-section .about-img-main {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}

.about-section .about-img-stat {
    background: rgba(18, 18, 18, 0.95) !important;
    backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-left: 4px solid var(--orange) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5) !important;
}

.about-section .astat-num {
    color: #ffffff !important;
}

.about-section .astat-lbl {
    color: rgba(255, 255, 255, 0.6) !important;
}

@media screen and (max-width: 767px) {
    .about-section {
        padding: 40px 0;

    }

}