    /* ---- hero  ---- */
    .hero-section {
        position: relative;
        height: 760px;
        overflow: hidden;
    }
 
    .hero-section img.hero-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
 
    .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.50);
    }
 
    .hero-content {
        position: absolute;
        top: 50%;
        left: 8%;
        transform: translateY(-50%);
        color: #fff;
        max-width: 550px;
        z-index: 2;
    }
 
    .hero-content h1 {
        font-size: 78px;
        line-height: 1.05;
        font-weight: 700;
        margin-bottom: 20px;
        color: #fff;
    }
 
    .hero-subtitle {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 25px;
        color: #fff;
    }
 
    .hero-subtitle span {
        color: #c8a96e;
    }
 
    .hero-line {
        width: 60px;
        height: 3px;
        background: #c8a96e;
        margin-bottom: 30px;
    }
 
    .hero-description {
        font-size: 16px;
        line-height: 1.9;
        color: rgba(255,255,255,0.85);
    }
 
    /* ---- about ---- */
    .home-about {
        padding: 60px 0;
        background: #fff;
    }
 
    .home-about .about-img {
        width: 100%;
        border-radius: 8px;
        object-fit: cover;
        height: 100%;
        min-height: 320px;
    }
 
    .home-about small {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 0.12em;
        text-transform: uppercase;
        color: #c8a96e;
        display: block;
        margin-bottom: 10px;
    }
 
    .home-about h2 {
        font-size: 26px;
        font-weight: 700;
        margin-bottom: 16px;
        color: #222;
    }
 
    .home-about p {
        font-size: 14px;
        color: #555;
        line-height: 1.85;
        margin-bottom: 14px;
        text-align: justify;
    }
 
    .home-about .dark-btn {
        display: inline-block;
        padding: 10px 24px;
        background: #111;
        color: #fff;
        border-radius: 6px;
        font-size: 13px;
        font-weight: 500;
        text-decoration: none;
        margin-top: 6px;
    }
 
    .home-about .dark-btn:hover {
        background: #333;
        color: #fff;
    }
 
    /* ---- mission cards ---- */
    .mission-section {
        padding: 50px 0;
        background: #f9f9f9;
    }
 
    .mission-card {
        background: #fff;
        border-radius: 8px;
        padding: 28px;
        box-shadow: 0 4px 18px rgba(0,0,0,0.04);
        margin-bottom: 24px;
        height: 100%;
    }
 
    .mission-card h3 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 12px;
        color: #111;
    }
 
    .mission-card p {
        font-size: 13px;
        color: #666;
        line-height: 1.8;
        margin: 0;
        text-align: justify;
    }
 
    /* ---- current projects ---- */
    .home-projects {
        padding: 60px 0;
        background: #fff;
    }
 
    .home-projects .section-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 32px;
    }
 
    .home-projects .section-header h2 {
        font-size: 24px;
        font-weight: 700;
        margin: 0;
        color: #222;
    }
 
    .home-projects .section-header a.see-all {
        font-size: 13px;
        font-weight: 600;
        color: #111;
        border: 1px solid #111;
        padding: 6px 16px;
        border-radius: 4px;
        text-decoration: none;
    }
 
    .home-projects .section-header a.see-all:hover {
        background: #111;
        color: #fff;
    }
 
    .proj-row {
        display: flex;
        flex-wrap: wrap;
    }
 
    .proj-row > [class*='col-'] {
        display: flex;
        margin-bottom: 28px;
    }
 
    .proj-card {
        background: #fff;
        border: none;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 18px rgba(0,0,0,0.04);
        transition: all 0.2s ease;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
 
    .proj-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }
 
    .proj-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
        display: block;
        flex-shrink: 0;
    }
 
    .proj-card .proj-info {
        padding: 18px;
        flex: 1;
    }
 
    .proj-card .proj-info h4 {
        font-size: 15px;
        font-weight: 600;
        margin: 0 0 8px 0;
        color: #111;
    }
 
    .proj-card .proj-info p {
        font-size: 13px;
        color: #666;
        line-height: 1.65;
        margin: 0;
    }
 
    /* ---- news ---- */
    .home-news {
        padding: 60px 0;
        background: #f9f9f9;
    }
 
    .home-news .section-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 32px;
    }
 
    .home-news .section-header h2 {
        font-size: 24px;
        font-weight: 700;
        margin: 0;
        color: #222;
    }
 
    .home-news .section-header a.see-all {
        font-size: 13px;
        font-weight: 600;
        color: #111;
        border: 1px solid #111;
        padding: 6px 16px;
        border-radius: 4px;
        text-decoration: none;
    }
 
    .home-news .section-header a.see-all:hover {
        background: #111;
        color: #fff;
    }
 
    .news-row {
        display: flex;
        flex-wrap: wrap;
    }
 
    .news-row > [class*='col-'] {
        display: flex;
        margin-bottom: 28px;
    }
 
    .news-card {
        background: #fff;
        border: none;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 18px rgba(0,0,0,0.04);
        transition: all 0.2s ease;
        display: flex;
        flex-direction: column;
        width: 100%;
    }
 
    .news-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    }

    .news-card-image {
        position: relative;
        width: 100%;
        height: 180px;
        background: #f7f7f7;
        border-bottom: 1px solid #eee;
        overflow: hidden;
        flex-shrink: 0;
    }

    .news-card img {
        position: relative;
        z-index: 1;
        width: 100%;
        height: 180px;
        object-fit: cover;
        display: block;
        flex-shrink: 0;
    }
 
    .news-card .news-body {
        padding: 18px;
        display: flex;
        flex-direction: column;
        flex: 1;
    }
 
    .news-card .news-date {
        font-size: 12px;
        color: #999;
        margin-bottom: 8px;
    }
 
    .news-card h4 {
        font-size: 15px;
        font-weight: 600;
        margin: 0 0 8px 0;
        color: #111;
    }
 
    .news-card p {
        font-size: 13px;
        color: #666;
        line-height: 1.65;
        margin: 0 0 12px 0;
        flex: 1;
    }
 
    .news-card a.read-more {
        font-size: 13px;
        font-weight: 600;
        color: #111;
        text-decoration: none;
        margin-top: auto;
    }
 
    .news-card a.read-more:hover {
        color: #c8a96e;
    }
 
    /* ---- why choose us ---- */
    .home-values {
        padding: 50px 0;
        background: #fff;
    }
 
    .home-values h2 {
        font-size: 24px;
        font-weight: 700;
        text-align: center;
        margin-bottom: 36px;
        color: #222;
    }
 
    .value-item {
        text-align: center;
        padding: 0 16px;
        margin-bottom: 24px;
    }
 
    .value-item .value-icon {
        font-size: 28px;
        margin-bottom: 12px;
        color: #c8a96e;
    }
 
    .value-item h4 {
        font-size: 14px;
        font-weight: 700;
        margin: 0 0 8px 0;
        color: #111;
    }
 
    .value-item p {
        font-size: 13px;
        color: #666;
        line-height: 1.7;
        margin: 0;
    }
 
    /* ---- cta ---- */
    .cta-section {
        background: #f9f9f9;
        padding: 50px 0;
        text-align: center;
    }
 
    .cta-section h3 {
        font-size: 22px;
        font-weight: 700;
        color: #111;
        margin-bottom: 10px;
    }
 
    .cta-section p {
        font-size: 14px;
        color: #555;
        margin-bottom: 24px;
    }
 
    .cta-section .btn-cta {
        display: inline-block;
        padding: 12px 30px;
        background: #111;
        color: #fff;
        border-radius: 6px;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
    }
 
    .cta-section .btn-cta:hover {
        background: #fff;
        color: #111;
    }

    .cta-section {
        background: #f9f9f9;
        padding: 50px 0 0 0; 
        text-align: center;
    }
