﻿/* ===== HERO SECTION ===== */

.hero-section {
    background-color: #f8f7f4;
    padding: 100px 0;
}

.hero-logo {
    max-width: 180px;
    width: 100%;
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #111;
    margin-bottom: 25px;
}

.hero-description {
    max-width: 850px;
    margin: 0 auto 40px auto;
    font-size: 1rem;
    line-height: 1.9;
    color: #444;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: #111;
    color: #fff;
    padding: 14px 26px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .hero-btn-primary:hover {
        background: #fff;
        color: #111;
        border: 1px solid #111;
    }

.hero-btn-secondary {
    border: 1px solid #111;
    color: #111;
    padding: 14px 26px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

    .hero-btn-secondary:hover {
        background: #111;
        color: #fff;
    }

/* Mobile */

@media (max-width: 768px) {

    .hero-section {
        padding: 70px 0;
    }

    .hero-logo {
        max-width: 140px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.92rem;
        line-height: 1.7;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}
.what-we-do-section {
    background: #ffffff;
    padding: 90px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #111;
}

.section-subtitle {
    color: #666;
    line-height: 1.8;
    font-size: .95rem;
}

.pillar-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 35px;
    height: 100%;
    transition: .3s;
}

    .pillar-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(0,0,0,.06);
    }

.pillar-number {
    font-size: 14px;
    letter-spacing: 2px;
    color: #999;
    margin-bottom: 15px;
}

.pillar-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.pillar-card ul {
    padding-left: 18px;
    margin: 0;
}

.pillar-card li {
    margin-bottom: 10px;
    color: #444;
    font-size: .92rem;
}
.industries-section {
    background: #f8f7f4;
    padding: 90px 0;
}

.industry-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.industry-chip {
    padding: 14px 24px;
    border: 1px solid #dcdcdc;
    background: #fff;
    border-radius: 50px;
    font-size: .92rem;
    transition: .3s;
}

    .industry-chip:hover {
        background: #111;
        color: #fff;
        cursor: default;
    }
/* ===== WHY WORK WITH US ===== */

.why-us-section {
    background: #ffffff;
    padding: 90px 0;
}

.why-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 30px 20px;
    height: 100%;
    transition: .3s ease;
}

    .why-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,.06);
    }

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: #f8f7f4;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .why-icon i {
        font-size: 28px;
        color: #111;
    }

.why-card h5 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-card p {
    font-size: .9rem;
    color: #555;
    line-height: 1.7;
}
/* ===== RESOURCES ===== */

.resources-section {
    background: #f8f7f4;
    padding: 90px 0;
}

.resource-card {
    display: block;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 30px;
    text-decoration: none;
    color: #111;
    height: 100%;
    transition: .3s ease;
}

    .resource-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0,0,0,.06);
        color: #111;
    }

    .resource-card i {
        font-size: 32px;
        margin-bottom: 15px;
        display: block;
    }

    .resource-card h6 {
        font-size: 1rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .resource-card span {
        font-size: .85rem;
        color: #777;
    }

.ecosystem-section {
    background: #ffffff;
    padding: 90px 0;
}

.ecosystem-card {
    border: 1px solid #e5e5e5;
    padding: 40px;
    text-align: center;
    background: #fff;
}

    .ecosystem-card h4 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .ecosystem-card p {
        margin: 0;
        color: #666;
    }

.ecosystem-arrow i {
    font-size: 36px;
    color: #999;
}
.faq-section{
    background:#f8f7f4;
    padding:90px 0;
}

.faq-number{
    display:inline-block;
    min-width:40px;
    color:#999;
    font-weight:600;
}

.accordion-item{
    background:transparent;
    border-bottom:1px solid #e5e5e5;
}

.accordion-button{
    background:none !important;
    box-shadow:none !important;
    padding:25px 0;
    font-weight:500;
}

.accordion-body{
    padding:0 0 25px 40px;
    color:#555;
    line-height:1.8;
}
.final-cta-section {
    background: #111;
    color: #fff;
    padding: 100px 0;
}

.cta-title {
    font-size: 2.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-description {
    max-width: 700px;
    margin: 0 auto 35px;
    color: #d0d0d0;
}

.cta-btn {
    display: inline-block;
    background: #fff;
    color: #111;
    text-decoration: none;
    padding: 14px 30px;
    transition: .3s;
}

    .cta-btn:hover {
        background: #f0f0f0;
        color: #111;
    }

.cta-email {
    margin-top: 25px;
}

    .cta-email a {
        color: #fff;
        text-decoration: none;
    }
html,
body {
    overflow-x: hidden;
}