/* 
 * Professional Overrides for About Us and General Typography
 * Using Manrope for Headings and DM Sans/Inter for Body
 */

:root {
    --heading-font: 'Manrope', sans-serif;
    --body-font: 'Inter', sans-serif;
    --accent-font: 'DM Sans', sans-serif;
    --card-bg: #142125;
    --card-border: rgba(255, 255, 255, 0.05);
}

/* --- Global Professional Typography --- */
h1, h2, h3, h4, .title {
    font-family: var(--heading-font) !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
}

p, .desc, .lh-30 {
    font-family: var(--body-font);
    line-height: 1.7 !important;
    font-size: 17px !important;
    color: rgba(255, 255, 255, 0.85); /* Slightly softer than pure white for professional look */
}

/* --- Sub-title (Tags) Styling --- */
.sub-title {
    font-family: var(--accent-font) !important;
    text-transform: uppercase !important;
    letter-spacing: 2px !important;
    font-size: 14px !important;
    color: var(--primary) !important;
    font-weight: 700 !important;
    display: inline-block;
}

/* --- Section Spacing & Layout --- */
.tf-spacing-6 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

.about-inner {
    gap: 80px !important; /* Professional breathing room */
}

.heading-section .title {
    margin-top: 15px !important;
    margin-bottom: 25px !important;
    line-height: 1.2 !important;
}

/* --- Image Styling --- */
.section-about .image img,
.section-about img {
    border-radius: 24px !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    width: 100%;
    height: auto;
}

.section-about img:hover {
    transform: translateY(-5px);
}

/* --- Specific Section Tweaks --- */
.section-counting.about,
.section-about {
    background-color: var(--card-bg) !important;
    border-radius: 40px !important;
    margin: 60px auto !important;
    padding: 100px 60px !important;
    border: 1px solid var(--card-border);
    max-width: 1600px !important;
    width: 95% !important;
}

.about-inner {
    display: flex !important;
    width: 100% !important;
    gap: 100px !important;
}

.about-inner .left,
.about-inner .right {
    flex: 1 !important;
    min-width: 0;
}

.counter-item.style-2 {
    border-radius: 20px !important;
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.wg-counter .number-counter {
    color: var(--primary);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .about-inner {
        gap: 40px !important;
    }
    .tf-spacing-6 {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
}
