:root {
    --primary: #F4B000;
    --secondary: #1E8E3E;
    --dark: #1c1c1c;
    --light: #f8f9fa;
}
body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.7;
}
h1, h2, h3, h4, h5 {
    font-weight: 700;
}
.section-title {
    position: relative;
    display: inline-block;
}
.section-title::after {
    content: '';
    width: 60px;
    height: 4px;
    background: var(--primary);
    display: block;
    margin: 8px auto 0;
    border-radius: 2px;
}

/* ================= COMPANY INTRO SECTION ================= */
.company-intro-section {
    background: #fff;
}
.section-title {
  color: #1E8E3E;
}
/* Image */
.about-image-wrap {
    position: relative;
}
.about-img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

/* Right content */
.about-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #F4B000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-title {
    font-size: clamp(27px, 4vw, 28px);
    font-weight: 700;
    color: #1E8E3E;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 5px;
    line-height: 1.2;
}

/* .about-title::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #F4B000;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 4px;
} */

.about-highlight-box {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 20px;
    background: #f8f9fa;
    border-left: 4px solid #F4B000;
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 8px;
}

.about-highlight-box span {
    font-size: 15px;
    color: #333;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
    text-align: justify;
}

/* Bottom details row */
.about-details-box {
    background: #f8f9fa;
    border-radius: 18px;
    padding: 10px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.04);
}

.about-details-box p {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
    text-align: justify;
}
.about-content,
.about-details-box{
    max-width:100%;
}

/* Feature card */
.about-feature-card {
    background: #fff;
    border-left: 4px solid #1E8E3E;
    border-radius: 14px;
    padding: 25px 22px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
    height: 100%;
}

.about-feature-card h5 {
    font-size: 22px;
    font-weight: 700;
    color: #1E8E3E;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.about-feature-card h5::after {
    content: "";
    width: 50px;
    height: 3px;
    background: #F4B000;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 3px;
}

.about-feature-card ul li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature-card ul li i {
    color: #1E8E3E;
    font-size: 16px;
}

/* Responsive */
@media (max-width: 991px) {
    .about-title {
        margin-top: 10px;
    }

    .about-details-box {
        padding: 10px;
    }
}

@media (max-width: 768px) {
    .company-intro-section {
        padding-top: 35px !important;
        padding-bottom: 35px !important;
    }


    .about-title {
        font-size: 27px;
    }

    .about-content p,
    .about-details-box p {
        font-size: 16px;
        text-align: left;
    }

    .about-highlight-box {
        padding: 12px 14px;
    }

    .about-details-box {
        padding: 22px 18px;
    }

    .about-feature-card {
        margin-top: 10px;
    }
}
/* ================= OUR CORE EXPERTISE ================= */
.services-section {
    background: #f8f9fa;
}
.section-heading-services{
   font-size: clamp(26px, 5vw, 36px);
    font-weight: 700;
    color: #134f24;
    position: relative;
    margin-bottom: 25px;
}
.section-heading-services::after {
    content: "";
    width: 70px;
    height: 4px;
    background: #F4B000;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 5px;
}
.service-card {
    background: #ffffff;
    padding: 40px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}
.icon-box {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: rgba(244,176,0,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-box i {
    font-size: 30px;
    color: #F4B000;
}
@media (max-width: 768px) {   
    .service-card {
        padding: 30px 20px;
    }
}
/* ================= OUR MISSION & VISION ================= */
.mission-vision-section {
    background: #f8f9fa;
}
.mv-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}
.mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.vision-card .mv-icon {
    background: rgba(30,142,62,0.1);
}
.vision-card h4 {
    color: #1E8E3E;
}
.mv-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.mv-header h4 {
    margin: 0;
}
.mission-card .mv-icon {
    background: rgba(244,176,0,0.15);
}
.mission-card h4 {
    color: #F4B000;
}
.mv-icon i {
    font-size: 24px;
    color: inherit;
}
.mv-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}
.mv-card p {
    color: #555;
    font-size: clamp(16px, 2.2vw, 17px);
    line-height: 1.7;
}
@media (max-width: 768px) {
    .mv-card {
        padding: 30px 20px;
    }
}
/*================ WHY CHOOSE US =================*/

.why-us-section{
    background:#f8f9fa;
}

.why-card{
    background:#fff;
    border-radius:15px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.35s;
    border-top:4px solid transparent;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
    border-top:4px solid #F4B000;
}

.why-icon{
    width:75px;
    height:75px;
    border-radius:50%;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(244,176,0,.12);
}

.why-icon i{
    font-size:34px;
    color:#1E8E3E;
}

.why-card h5{
    font-size:20px;
    font-weight:700;
    color:#1E8E3E;
    margin-bottom:15px;
    min-height:55px;
}

.why-card p{
    font-size:16px;
    color:#666;
    line-height:1.7;
    margin:0;
}

@media(max-width:991px){

.why-card{
    padding:30px 20px;
}

}

@media(max-width:768px){

.why-card{
    padding:28px 20px;
}

.why-icon{
    width:65px;
    height:65px;
}

.why-icon i{
    font-size:28px;
}

.why-card h5{
    font-size:20px;
    min-height:auto;
}

.why-card p{
    font-size:16px;
}

}
/* ================= LEADERSHIP SECTION ================= */
.leadership-section {
    background: #f8f9fa;
}

/* Main Leadership Card */
.leader-card {
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.leader-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    /* background: linear-gradient(90deg, #1E8E3E, #F4B000); */
}

.leader-card:hover {
    box-shadow: 0 18px 45px rgba(0,0,0,0.10);
}

/* Small Label */
.leader-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: #F4B000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

/* Name */
.leader-name {
    font-size: 34px;
    font-weight: 700;
    color: #1E8E3E;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Qualification */
.leader-qualification {
    font-size: 20px;
    font-weight: 500;
    color: #444;
    margin-bottom: 6px;
}

/* Highlight line */
.leader-highlight {
    font-size: 17px;
    font-weight: 600;
    color: #F4B000;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Description */
.leader-desc {
    font-size: 17px;
    line-height: 1.9;
    color: #444;
    margin-bottom: 18px;
    text-align: justify;
}

/* Contact Info */
.leader-contact {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.leader-contact p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #333;
    display: flex;
    align-items: center;
    gap: 8px;
}

.leader-contact strong {
    color: #1E8E3E;
}

.leader-contact p i {
    color: #1E8E3E;
    font-size: 15px;
}

/* ================= TEAM INFO BOX ================= */
.team-info-box {
    background: #f8f9fa;
    border-left: 4px solid #F4B000;
    padding: 30px 25px;
    border-radius: 14px;
    height: 100%;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.04);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 230px;
}

.team-info-box h4 {
    font-size: 24px;
    font-weight: 700;
    color: #1E8E3E;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 10px;
}

.team-info-box h4::after {
    content: "";
    width: 55px;
    height: 3px;
    background: #F4B000;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 3px;
}

.team-info-box ul li {
    font-size: 16px;
    color: #333;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.team-info-box ul li i {
    color: #1E8E3E;
    font-size: 15px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 991px) {
    .leader-card {
        padding: 35px 25px;
    }

    .leader-name {
        font-size: 28px;
    }

    .leader-qualification {
        font-size: 18px;
    }

    .leader-highlight {
        font-size: 16px;
    }

    .leader-desc {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .leadership-section {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .leader-card {
        padding: 28px 20px;
    }

    .leader-name {
        font-size: 24px;
    }

    .leader-qualification {
        font-size: 16px;
    }

    .leader-highlight {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .leader-desc {
        font-size: 16px;
        text-align: left;
    }

    .leader-contact p {
        font-size: 15px;
        flex-wrap: wrap;
    }

    .team-info-box {
        margin-top: 10px;
        padding: 22px 18px;
        min-height: auto;
    }

    .team-info-box h4 {
        font-size: 20px;
    }

    .team-info-box ul li {
        font-size: 16px;
    }

    .section-title,
    .section-heading-services{
        font-size:30px;
    }

    .about-highlight-box{
        flex-direction:column;
    }

    .about-img{
        margin-bottom:20px;
    }

    .about-title{
        margin-top:15px;
    }

    .team-info-box{
        text-align:left;
    }

    .service-card{
        margin-bottom:20px;
    }
}
/* ================= BUTTONS ================= */
.btn-primary {
    background-color: var(--secondary);
    border: none;
}
.btn-primary:hover {
    background-color: #166b2e;
}
.btn-warning {
    background-color: var(--primary);
    border: none;
    color: #000;
}
.btn-warning:hover {
    background-color: #d99a00;
}

.service-card,
.mv-card,
.leader-card,
.about-feature-card{

transition:.4s;
}

.service-card:hover,
.mv-card:hover,
.about-feature-card:hover{

transform:translateY(-8px);
}