

/* ================= ROOT COLORS ================= */
:root {
    --primary-green: #2fbf71;
    --dark-green: #1f8f52;
    --accent-lime: #7ed957;
    --dark-bg: #0f0f0f;
    --white: #ffffff;
    --light-bg: #f4f5f5;
}


/* ================= HERO ================= */
.hero {
    position: relative;
    width: 100%;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 80px 8%;
    color: #fff;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* gradient overlay now set via inline style on .hero */

/* All hero children sit above the overlay */
.hero > * {
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

/* ================= GLOBAL ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fff;
}

/* ================= HERO SECTION ================= */






.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
}

.breadcrumb {
    font-size: 16px;
    font-weight: 500;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.85;
    transition: 0.3s ease;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    margin: 0 8px;
    opacity: 0.6;
}

/* ================= SERVICES SECTION ================= */
.services-section {
    padding: 80px 8%;
    background: var(--light-bg);
}

.container {
    display: flex;
    gap: 50px;
    align-items: stretch;
}

/* LEFT CARD */
.services-left {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    flex: 0 0 380px;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title i {
    color: var(--primary-green);
    font-size: 20px;
}

/* SERVICE LIST */
.service-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-radius: 12px;
    background: var(--dark-green);
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.service-item i {
    font-size: 14px;
}

.service-item:hover {
    background: var(--dark-green-hover);
}

.service-item.active {
    background: var(--primary-green);
    color: var(--white);
}

/* RIGHT IMAGE */
.services-right {
    flex: 1;
    display: flex;
    align-items: center;
}

.services-right img {
    width: 100%;
    height: auto;          /* IMPORTANT */
    object-fit: contain;   /* prevents cropping */
    border-radius: 16px;
    display: block;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {

    .container {
        flex-direction: column;
    }

    .services-left {
        flex: 100%;
    }

    .services-right {
        height: 400px;
    }

    .hero h1 {
        font-size: 48px;
    }
}

/* Mobile */
@media (max-width: 600px) {

    

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: 36px;
    }

    .breadcrumb {
        font-size: 14px;
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }

    .services-section {
        padding: 50px 5%;
    }

    .services-left {
        padding: 25px;
    }

    .service-item {
        padding: 16px 18px;
        font-size: 14px;
    }

    .services-right {
        height: 300px;
    }
}



/* ================= COMBINED SECTION ================= */

.cta-details-section {
    padding: 90px 8%;
    background: #ffffff;
}

.cta-details-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

/* LEFT SIDE */
.cta-left {
    flex: 1;
    
}

.cta-card {
    background: #0f3f3b;
    color: #fff;
    padding: 60px 50px;
    border-radius: 20px;
    text-align: center;
}

.cta-logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
    margin-bottom: 25px;
}

.cta-card h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary-green);
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-btn:hover {
    opacity: 0.9;
}

/* RIGHT SIDE */
.cta-right {
    flex: 1.3;
}

.cta-right h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #222;
}

.cta-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 40px;
}

/* FEATURE BOX */
.feature-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f4f5f5;
    padding: 22px 28px;
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #374151;
}

.feature-box i {
    color: var(--primary-green);
    font-size: 18px;
}

@media (max-width: 992px) {

    .cta-details-container {
        flex-direction: column;
        gap: 50px;
    }

    .cta-card {
        padding: 40px 30px;
    }

    .cta-right h2 {
        font-size: 28px;
    }

    .cta-right p {
        font-size: 15px;
    }

    .feature-box {
        font-size: 16px;
        padding: 18px 20px;
    }

    .cta-logo img {
        max-width: 140px;
    }
}


@media (max-width: 992px) {

    .cta-details-container {
        flex-direction: column;
        gap: 50px;
    }

    .cta-card {
        padding: 40px 30px;
    }

    .cta-right h2 {
        font-size: 28px;
    }

    .cta-right p {
        font-size: 15px;
    }

    .feature-box {
        font-size: 16px;
        padding: 18px 20px;
    }

    .cta-logo img {
        max-width: 140px;
    }
}


@media (max-width: 992px) {

    /* SERVICES SECTION ORDER */
    .services-right {
        order: 1;
    }

    .cta-right {
        order: 2;
    }

    .services-left {
        order: 3;
    }

    /* Make sure parent allows ordering */
    .container,
    .cta-details-container {
        display: flex;
        flex-direction: column;
    }
}



/* ================= EXPERTISE SECTION ================= */

.expertise-section {
    padding: 90px 8%;
    background: #ffffff;
}

.expertise-container {
    max-width: 900px;
}

.expertise-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.expertise-desc {
    font-size: 17px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 50px;
}

.skill {
    margin-bottom: 35px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 16px;
}

.percent {
    color: var(--primary-green);
    font-weight: 600;
}

.progress-bar {
    width: 100%;
    height: 18px;
    background: #e5e7eb;
    border-radius: 6px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    width: 0;
    background: #6b7280;
    border-radius: 6px;
    transition: width 1.5s ease-in-out;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .expertise-section {
        padding: 60px 5%;
    }

    .expertise-section h2 {
        font-size: 28px;
    }

    .expertise-desc {
        font-size: 15px;
    }

}



/* ================= QUOTE SECTION ================= */

.quote-section {
    padding: 90px 8%;
    background: #f4f5f5;
}

.quote-container {
    max-width: 900px;
}

.quote-section h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 40px;
}

.quote-form {
    width: 100%;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.form-group label {
    margin-bottom: 8px;
    font-size: 15px;
    color: #374151;
}

.form-group input,
.form-group textarea {
    padding: 14px 0;
    border: none;
    border-bottom: 1px solid #d1d5db;
    background: transparent;
    font-size: 16px;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-bottom: 1px solid var(--primary-green);
}

.submit-btn {
    padding: 14px 30px;
    background: var(--primary-green);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    opacity: 0.9;
}
@media (max-width: 768px) {

    .expertise-section h2,
    .quote-section h2 {
        font-size: 28px;
    }

    .expertise-desc {
        font-size: 15px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

}







