﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #fefefe;
    color: #1e293b;
    overflow-x: hidden;
}

/* ========== CREATIVE PAGE HEADING (MEP STYLE) ========== */
.page-heading {
    /*background: linear-gradient(125deg, #0a2a3b 0%, #1c4e6e 55%, #0f3a50 100%);
    padding: 90px 0 100px;*/
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    margin-bottom: 50px;
}

/*.page-heading::before {
    content: "⚙️🔧💡";
    font-size: 180px;
    position: absolute;
    bottom: -30px;
    right: 20px;
    opacity: 0.08;
    pointer-events: none;
    white-space: nowrap;
    letter-spacing: 25px;
}*/

    /*.page-heading::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 10% 30%, rgba(255,215,140,0.1) 0%, transparent 70%);
        pointer-events: none;
    }*/

.header-text h6 {
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    background: rgba(255,245,200,0.2);
    display: inline-block;
    padding: 6px 20px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
    color: #ffe5b4;
    font-weight: 600;
    margin-bottom: 20px;
}

.header-text h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    text-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* About section - fresh layout */
.about-mep-section {
    margin-bottom: 70px;
}

.about-card {
    background: white;
    border-radius: 48px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s;
}

.about-image-wrapper {
    background: linear-gradient(145deg, #eef5fa, #ffffff);
    padding: 30px;
    text-align: center;
}

    .about-image-wrapper img {
        max-width: 100%;
        border-radius: 32px;
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }

.about-content {
    padding: 40px 40px 40px 20px;
}

.section-badge {
    display: inline-block;
    background: #e6f0f9;
    color: #1c5a7a;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.about-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: #0f2c3d;
}

.about-text {
    color: #334155;
    line-height: 1.65;
    margin-bottom: 24px;
    text-align: justify;
}

.mep-stats {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 30px 0 20px;
}

.stat-item {
    text-align: center;
    background: #f8fafc;
    padding: 12px 20px;
    border-radius: 60px;
    min-width: 110px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #1c5e8c;
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    color: #475569;
}

/* core values / MEP pillars */
.pillars-section {
    margin: 70px 0;
}

.pillar-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 25px -8px rgba(0,0,0,0.05);
    border: 1px solid #eef2f8;
    height: 100%;
}

    .pillar-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 30px -12px rgba(28,94,140,0.15);
        border-color: #cbdde9;
    }

.pillar-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #eef5fc, #e1edf7);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

    .pillar-icon i {
        font-size: 36px;
        color: #1c5e8c;
    }

.pillar-card h4 {
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f2c3d;
}

/* recent customers section styling (matches creative fresh look) */
.recent-listing {
    margin: 60px 0 40px;
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

    .section-heading h2 {
        font-weight: 800;
        font-size: 2.3rem;
        color: #0f2c3d;
    }

    .section-heading h6 {
        color: #5a7e9c;
        font-weight: 500;
        letter-spacing: 1px;
    }

/* custom listing item style (used in partial) */
.listing-item {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
    overflow: hidden;
}

    .listing-item .left-image {
        flex: 0 0 35%;
    }

        .listing-item .left-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .listing-item .right-content {
        flex: 0 0 65%;
        padding: 20px 25px;
    }

@media (max-width: 768px) {
    .listing-item .left-image, .listing-item .right-content {
        flex: 0 0 100%;
    }

    .about-content {
        padding: 30px;
    }

    .header-text h2 {
        font-size: 2rem;
    }
}

.main-white-button a {
    background: #1c5e8c;
    color: white;
    padding: 8px 24px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
}
