:root{
    --primary:#78b54b;
    --primary-dark:#5b9833;
    --dark:#222222;
    --light:#f8f9fa;
    --border:#e5e7eb;
    --orange:#f97316;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,Arial,sans-serif;
    color:#222;
    overflow-x:hidden;
}
.nav-link{
    font-size:0.9rem !important;
}
/* ===================
HEADER
=================== */

.main-header{
    background:#fff;
    border-bottom:1px solid var(--border);
    position:sticky;
    top:0;
    z-index:999;
}

.navbar{
    min-height:90px;
}

.logo-box{
    width:70px;
    height:70px;
    border-radius:12px;
    overflow:hidden;
    border:1px solid #ddd;
    background:#fff;
}

.logo-box img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.brand-title{
    font-size:22px;
    font-weight:700;
    margin:0;
}

.brand-subtitle{
    font-size:14px;
    color:#888;
}

.navbar-nav .nav-link{
    color:#333;
    font-weight:500;
    margin-left:15px;
    transition:.3s;
}

.navbar-nav .nav-link:hover{
    color:var(--primary);
}

.navbar-nav .active{
    color:var(--primary) !important;
}

/* ===================
HERO
=================== */

.hero-section{
    height:600px;
    position:relative;
    background:url('/assets/img/hero.jpg') center center;
    background-size:cover;
    display:flex;
    align-items:center;
    justify-content:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(108, 171, 60, 0.82);
}

.hero-content{
    position:relative;
    z-index:10;
    text-align:center;
    color:#fff;
}

.hero-content h1{
    font-size:3.75rem;
    font-weight:700;
    line-height:1.15;
    margin-bottom:25px;
}

.hero-content p{
    font-size:30px;
    line-height:1.5;
    margin-bottom:40px;
}

.hero-btns{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.custom-btn{
    min-width:220px;
    padding:14px 30px;
    font-weight:600;
    border-radius:10px;
}

/* ===================
STATS
=================== */

.stats-section{
    /* padding:90px 0; */
    background:#fff;
}

.stat-card{
    text-align:center;
    padding:25px;
}

.stat-icon{
    width:90px;
    height:90px;
    /* background:#f4f9ef; */
    border-radius:50%;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:20px;
}

.stat-icon i{
    font-size:38px;
    color:var(--primary);
}

.stat-card h2{
    font-size:54px;
    font-weight:800;
    color:#111;
    margin-bottom:8px;
}

.stat-card h5{
    font-size:24px;
    font-weight:700;
    margin-bottom:10px;
}

.stat-card p{
    color:#777;
    font-size:15px;
}

/* ===================
RESPONSIVE
=================== */


/* =====================
COMMON SECTION TITLE
===================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:40px;
    font-weight:800;
    color:#222;
    margin-bottom:15px;
}

.section-title p{
    font-size:1.125rem;
    color:#666;
}

/* =====================
PORTFOLIO
===================== */

.portfolio-section{
    padding:100px 0;
    background:#f9fafb;
}

.portfolio-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:15px 10px;
    text-align:center;
    height:100%;
    transition:.35s;
}

.portfolio-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.portfolio-icon{
    width:85px;
    height:85px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    /* background:#eef7e6; */
    display:flex;
    align-items:center;
    justify-content:center;
}

.portfolio-icon i{
    font-size:34px;
    color:#78b54b;
}

.portfolio-card h5{
    font-size:15px;
    font-weight:600;
}

.portfolio-card p{
    color:#777;
    font-size:15px;
}

/* =====================
WHY US
===================== */

.why-section{
    padding:100px 0;
    background:#fff;
}

.why-card{
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:40px 30px;
    text-align:center;
    background:#fff;
    height:100%;
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}

.why-icon{
    width:90px;
    height:90px;
    margin:auto;
    margin-bottom:25px;
    border-radius:50%;
    background:#eef7e6;

    display:flex;
    align-items:center;
    justify-content:center;
}

.why-icon i{
    font-size:38px;
    color:#78b54b;
}

.why-card h4{
    font-size:26px;
    font-weight:700;
    margin-bottom:15px;
}

.why-card p{
    font-size:16px;
    color:#777;
    line-height:1.8;
}
/* ==========================
CTA SECTION
========================== */

.cta-section{
    background:#78b54b;
    padding:50px 0;
    color:#fff;
}

.cta-section h2{
    font-size:2.25rem;
    font-weight:700;
    margin-bottom:20px;
}

.cta-section p{
    font-size:1.25rem;
    line-height:1.8;
    margin-bottom:35px;
    opacity:.95;
}

.cta-btn{
    padding:16px 40px;
    border-radius:12px;
    font-size:18px;
    font-weight:700;
    min-width:220px;
}

/* ==========================
FOOTER
========================== */
.footer-section{
    background:#f7f7f7;
    padding:70px 0 30px;
    border-top:1px solid #e5e5e5;
}

.footer-company h4{
    font-size:1rem;
    font-weight:700;
    color:#1f2937;
    margin-bottom:20px;
}

.footer-company p{
    color:#6b7280;
    line-height:1.8;
    font-size:0.8rem;
    margin-bottom:25px;
}

.footer-heading{
    font-size:1rem;
    font-weight:600;
    margin-bottom:25px;
    color:#1f2937;
}

.footer-links{
    padding:0;
    margin:0;
    list-style:none;
}

.footer-links li{
    margin-bottom:8px;
    color:#6b7280;
    font-size:0.8rem
}

.footer-links a{
    text-decoration:none;
    color:#6b7280;
}

.footer-links a:hover{
    color:#68a83c;
}

.contact-info{
    padding:0;
    margin:0;
    list-style:none;
}

.contact-info li{
    margin-bottom:8px;
    color:#6b7280;
    display:flex;
    align-items:flex-start;
    gap:12px;
    font-size:0.8rem;
}

.contact-info i{
    color:#6b7280;
    width:18px;
    margin-top:3px;
}

.social-icons{
    display:flex;
    gap:12px;
}

.social-icons a{
    width:44px;
    height:44px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
}

.instagram{
    background:linear-gradient(
        45deg,
        #f58529,
        #dd2a7b,
        #8134af
    );
}

.facebook{
    background:#1877f2;
}

.youtube{
    background:#ff0000;
}

.footer-divider{
    margin-top:50px;
    margin-bottom:25px;
    border-color:#ddd;
}

.copyright{
    text-align:center;
    color:#6b7280;
    font-size:16px;
}
.about-hero{
    background:#78b54b;
    padding:90px 0;
    color:#fff;
}

.about-hero h1{
    font-size:3rem;
    font-weight:700;
}

.about-hero p{
    font-size:1.25rem;
}

.journey-section{
    padding:80px 0;
    background:#fff;
}

.section-heading{
    font-size:1.875rem;
    font-weight:700;
    text-align:center;
    margin-bottom:40px;
}

.journey-section p{
    color:#666;
    line-height:2;
    font-size:15px;
}

.mission-section{
    padding:80px 0;
    background:#f5f7f2;
}

.mission-card{
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:15px;
    padding:40px;
    text-align:center;
    height:100%;
}

.mission-icon{
    font-size:50px;
    color:#78b54b;
    margin-bottom:20px;
}

.leadership-section{
    padding:90px 0;
}

.leader-card{
    border:1px solid #e5e5e5;
    border-radius:15px;
    padding:50px;
    text-align:center;
}

.leader-avatar{
    width:100px;
    height:100px;
    border-radius:50%;
    background:#edf5e8;
    color:#78b54b;
    font-size:40px;
    font-weight:700;
    line-height:100px;
    margin:auto auto 25px;
}

.leader-card h6{
    color:#f97316;
    margin-bottom:25px;
}

.work-section{
    background:#f5f7f2;
    padding:80px 0;
}

.work-item{
    border-left:5px solid #78b54b;
    padding-left:20px;
    margin-bottom:40px;
}

.work-item h5{
    font-weight:700;
}
.property-hero{
    background:#79b84c;
    padding:90px 0;
    text-align:center;
    color:#fff;
}

.property-hero h1{
font-size: 3rem;
  font-weight: 700;
}

.property-hero p{
    font-size: 1.25rem;
    max-width:900px;
    margin:auto;
}

.property-section{
    padding:40px 0;
}

.property-image{
    border-radius:20px;
    width:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.property-section h2{
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom:20px;
}

.property-desc{
    color:#666;
    font-size:1.125rem;
    margin-bottom:25px;
}

.property-card{
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:30px;
    margin-bottom:25px;
}

.property-card h4{
    font-size:28px;
    font-weight:700;
    margin-bottom:20px;
}

.property-card ul,
.property-card ol{
    padding-left:20px;
}

.property-card li{
    margin-bottom:12px;
    color:#666;
}
/* ======================
PROCESS HERO
====================== */

.process-hero{
    background:#78b54b;
    padding:90px 0;
    color:#fff;
}

.process-hero h1{
font-size: 3rem;
  font-weight: 700;
}

.process-hero p{
    font-size: 1.25rem;
    max-width:850px;
    margin:auto;
    
}

/* ======================
PROCESS SECTION
====================== */

.process-section{
    padding:80px 0;
    background:#f8faf8;
}

.process-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:35px;
    display:flex;
    align-items:flex-start;
    gap:30px;
    margin-bottom:30px;
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.process-icon{
    width:70px;
    height:70px;
    min-width:70px;
    border-radius:50%;
    background:#eef7e8;
    display:flex;
    align-items:center;
    justify-content:center;
}

.process-icon i{
    font-size:30px;
    color:#78b54b;
}

.step-text{
    color:#f97316;
    font-size:14px;
    font-weight:700;
    letter-spacing:1px;
    display:block;
    margin-bottom:10px;
}

.process-content h3{
    font-size: 1.5rem;
    font-weight:700;
    margin-bottom:15px;
}

.process-content p{
    color:#666;
    font-size: 1.125rem;
    line-height:1.8;
    margin:0;
}
/* =====================
CONTACT HERO
===================== */

.contact-hero{
    background:#78b54b;
    padding:90px 0;
    color:#fff;
}

.contact-hero h1{
font-size: 3rem;
  font-weight: 700;
  
}

.contact-hero p{
    font-size: 1.25rem;
    max-width:850px;
    margin:auto;
    line-height:1.8;
}

/* =====================
CONTACT SECTION
===================== */

.contact-section{
    padding:90px 0;
    background:#f8faf8;
}

.contact-info-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:30px;
    margin-bottom:25px;

    display:flex;
    align-items:flex-start;
    gap:20px;
}

.contact-icon{
    width:55px;
    height:55px;
    min-width:55px;

    border-radius:50%;
    background:#eef7e8;

    display:flex;
    align-items:center;
    justify-content:center;
}

.contact-icon i{
    color:#6cab3c;
    font-size:24px;
}

.contact-info-card h5{
    font-size: 1.5rem;
    font-weight:700;
    margin-bottom:10px;
}

.contact-info-card p{
    color:#666;
    line-height:1.8;
    margin:0;
}

.contact-form-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:18px;
    padding:40px;
}

.contact-form-card h2{
    font-size: 1.5rem;
    font-weight:700;
    margin-bottom:35px;
}

.contact-form-card label{
    font-weight:600;
    margin-bottom:10px;
}

.contact-form-card .form-control{
    height:55px;
    border-radius:10px;
    border:1px solid #ddd;
}

.contact-form-card textarea.form-control{
    height:auto;
}

.contact-btn{
    background:#6cab3c;
    color:#fff;
    padding:14px 35px;
    border-radius:10px;
    font-weight:600;
}

.contact-btn:hover{
    background:#5b9833;
    color:#fff;
}

/* =====================
RESPONSIVE
===================== */

@media(max-width:992px){

    .contact-hero h1{
        font-size: 3rem;
    }

    .contact-form-card h2{
        font-size:34px;
    }

}

@media(max-width:768px){

    .contact-hero{
        padding:70px 20px;
    }

    .contact-hero h1{
font-size: 3rem;
    }

    .contact-hero p{
        font-size: 1.25rem;
    }

    .contact-section{
        padding:60px 0;
    }

    .contact-info-card{
        padding:25px;
    }

    .contact-form-card{
        padding:25px;
    }

    .contact-form-card h2{
        font-size:28px;
    }

}
/* ======================
RESPONSIVE
====================== */

@media(max-width:992px){

    .property-hero h1{
        font-size:48px;
    }

    .property-section h2{
        font-size:36px;
    }

}

@media(max-width:768px){

    .property-hero{
        padding:70px 20px;
    }

    .property-hero h1{
        font-size:34px;
    }

    .property-hero p{
        font-size:18px;
    }

    .property-section{
        padding:60px 0;
    }

    .property-section h2{
        font-size:28px;
    }

    .property-desc{
        font-size:16px;
    }

    .property-card{
        padding:20px;
    }

}
/* Mobile */

@media(max-width:768px){

    .footer-section{
        text-align:center;
    }

    .contact-info li{
        justify-content:center;
    }

    .social-icons{
        justify-content:center;
    }

    .footer-company h4{
        font-size:28px;
    }

    .footer-heading{
        margin-top:20px;
        font-size:24px;
    }
}

.contact-list{
    list-style:none;
    padding:0;
    margin:0;
}

.contact-list li{
    margin-bottom:15px;
    color:#ccc;
    display:flex;
    align-items:flex-start;
    gap:10px;
}

.contact-list i{
    color:#78b54b;
    margin-top:4px;
}

.footer-divider{
    border-color:#444;
    margin:50px 0 25px;
}

.copyright{
    text-align:center;
    color:#6b7280;
    font-size:0.8rem;
}
@media(max-width:992px){

    .hero-content h1{
        font-size:50px;
    }

    .hero-content p{
        font-size:22px;
    }

}

@media(max-width:768px){

    .hero-section{
        height:500px;
    }

    .hero-content h1{
        font-size:38px;
    }

    .hero-content p{
        font-size:18px;
    }

    .custom-btn{
        width:100%;
    }

    .hero-btns{
        flex-direction:column;
    }

}

@media(max-width:576px){

    .hero-content h1{
        font-size:30px;
    }

    .hero-content p{
        font-size:16px;
    }

    .brand-title{
        font-size:18px;
    }

    .logo-box{
        width:55px;
        height:55px;
    }

}
@media(max-width:768px){

    .portfolio-section,
    .why-section{
        padding:70px 0;
    }

    .section-title h2{
        font-size:32px;
    }

    .section-title p{
        font-size:16px;
    }

    .portfolio-card,
    .why-card{
        padding:30px 20px;
    }

}
@media(max-width:992px){

    .cta-section h2{
        font-size:40px;
    }

    .cta-section p{
        font-size:18px;
    }

}

@media(max-width:768px){

    .cta-section{
        padding:80px 0;
    }

    .cta-section h2{
        font-size:30px;
        line-height:1.4;
    }

    .cta-section p{
        font-size:16px;
    }

    .footer{
        text-align:center;
    }

    .contact-list li{
        justify-content:center;
    }

    .footer-title{
        font-size:28px;
    }

}
@media(max-width:992px){

    .process-hero h1{
        font-size:48px;
    }

    .process-content h3{
        font-size:28px;
    }

}

@media(max-width:768px){

    .process-hero{
        padding:70px 20px;
    }

    .process-hero h1{
        font-size:36px;
    }

    .process-hero p{
        font-size:18px;
    }

    .process-card{
        flex-direction:column;
        padding:25px;
        gap:20px;
    }

    .process-icon{
        width:60px;
        height:60px;
        min-width:60px;
    }

    .process-icon i{
        font-size:24px;
    }

    .process-content h3{
        font-size:24px;
    }

    .process-content p{
        font-size:16px;
    }

}