.hero {
    position: relative;
    height: 100vh;
    background: url("../images/3.jpg") center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.65);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.hero h4 {
    font-size: 28px;
    margin-bottom: 10px;
}

.hero h4 span {
    color: orange;
    font-weight: 800;
}

.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
}
.capabilities {
    background: #0b0b0b;
    color: #ffffff;
    padding: 80px 20px;
}

.capabilities .container {
    max-width: 1200px;
    margin: auto;
}

.capabilities .intro {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.85;
    margin-bottom: 30px;
}

.capabilities h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.capabilities .sub-text {
    margin-bottom: 50px;
    opacity: 0.8;
}

/* GRID */
.cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

/* CARD */
.card {
    background: #111;
    padding: 40px;
    text-align: center;
    border-radius: 4px;
    transition: 0.3s;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.card p {
    font-size: 15px;
    opacity: 0.7;
    position: relative;
}

/* ORANGE LINE */
.card p::after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background: #ff6a00;
    margin: 15px auto 0;
}

/* HOVER */
.card:hover {
    transform: translateY(-5px);
    background: #1a1a1a;
}
.approach {
    background: #0b0b0b;
    color: #ffffff;
    padding: 30px 20px;
    text-align: center;
}

.approach .container {
    max-width: 1200px;
    margin: auto;
}

.approach h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 20px;
}

.approach .intro {
    opacity: 0.8;
    margin-bottom: 60px;
}

/* STEPS LAYOUT */
.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* STEP BOX */
.step {
    width: 260px;
}

/* NUMBER CIRCLE */
.number {
    width: 70px;
    height: 70px;
    background: #ff6a00;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

/* TEXT */
.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    font-size: 14px;
    opacity: 0.75;
}

/* ARROW */
.arrow {
    font-size: 40px;
    color: #ff6a00;
    font-weight: bold;
}
.usp {
    background: #0b0b0b;
    color: #ffffff;
    padding: 30px 20px;
}

.usp .container {
    max-width: 1200px;
    margin: auto;
}

/* HEADINGS */
.usp h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* USP GRID */
.usp-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

/* CARD */
.usp-card {
    background: #111;
    padding: 30px;
    border-radius: 6px;
}

.usp-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
}

/* NUMBER STYLE */
.usp-card h3 span {
    color: #ff6a00;
    font-weight: 800;
    margin-right: 10px;
}

/* LIST */
.usp-card ul {
    padding-left: 0;
    list-style: none;
}

.usp-card li {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.8;
    position: relative;
    padding-left: 20px;
}

/* CUSTOM BULLET */
.usp-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6a00;
}

/* BENEFITS */
.benefits {
    text-align: center;
}

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* BIG NUMBERS */
.benefit h3 {
    font-size: 60px;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px #ff6a00;
    margin-bottom: 10px;
}

/* TEXT */
.benefit p {
    font-size: 18px;
    font-weight: 600;
}
.industries {
    background: #0b0b0b;
    color: #ffffff;
    padding: 30px 20px;
}

.industries .container {
    max-width: 1200px;
    margin: auto;
}

.industries h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* GRID */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.industry-card {
    position: relative;
    height: 450px;
    overflow: hidden;
}

/* IMAGE */
.industry-img {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: 0.4s;
}

/* TITLE */
.industry-card h3 {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #ff6a00;
    font-size: 26px;
    font-weight: 800;
    z-index: 2;
}

/* BOTTOM OVERLAY */
.industry-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 20px;
    background: rgba(255,255,255,0.85);
    color: #0b0b0b;
    z-index: 2;
}

.industry-overlay p {
    font-size: 14px;
    line-height: 1.5;
}

/* HOVER EFFECT */
.industry-card:hover .industry-img {
    transform: scale(1.05);
}
.human-ai {
    position: relative;
    height: 700px;
    width: 100%;
    background: url("../images/robot.jpg") center no-repeat;
    background-size: contain;
    background-color:transparent;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* DARK BRUSH EFFECT (FAKE BUT CLEAN) */
.human-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0,0,0,0.2), rgba(0,0,0,0.9));
    z-index: 1;
}

/* TEXT */
.human-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.human-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
}

/* AI HIGHLIGHT */
.human-content span {
    color:#ff6a00;
}
.faq {
    background: #0b0b0b;
    color: #ffffff;
    padding: 30px 20px;
}

.faq .container {
    max-width: 900px;
    margin: auto;
}

.faq h2 {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 40px;
}

/* ITEM */
.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
}

/* QUESTION */
.faq-question {
    font-size: 18px;
    cursor: pointer;
    font-weight: 600;
    position: relative;
}

/* ANSWER */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.3s ease;
    font-size: 14px;
    margin-top: 10px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
}

/* CTA */
.faq-cta {
    text-align: center;
    margin-top: 80px;
}

.faq-cta h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.faq-cta span {
    color: #ff6a00;
}
.faq-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 12px;
    padding: 14px 32px;

    border-radius: 999px;
    font-size: 15px;

    border: 1.5px solid #ff7a00;

    white-space: nowrap;
}
@media (max-width: 1024px) {

    /* GLOBAL CONTAINER */
    .container {
        max-width: 95%;
    }

    /* HERO */
    .hero {
        height: 90vh;
    }

    .hero h1 {
        font-size: 40px;
    }

    .hero h4 {
        font-size: 24px;
    }

    .hero p {
        font-size: 16px;
    }

    /* CAPABILITIES */
    .capabilities {
        padding: 60px 15px;
    }

    .capabilities h2 {
        font-size: 30px;
    }

    .card {
        padding: 30px;
    }

    .card h3 {
        font-size: 22px;
    }

    /* APPROACH */
    .approach {
        padding: 60px 15px;
    }

    .approach h2 {
        font-size: 30px;
    }

    .step {
        width: 230px;
    }

    .number {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    /* USP */
    .usp {
        padding: 60px 15px;
    }

    .usp h2 {
        font-size: 30px;
    }

    .usp-card {
        padding: 25px;
    }

    .benefit h3 {
        font-size: 50px;
    }

    .benefit p {
        font-size: 16px;
    }

    /* INDUSTRIES */
    .industries {
        padding: 60px 15px;
    }

    .industries h2 {
        font-size: 30px;
    }

    .industry-card {
        height: 400px;
    }

    .industry-card h3 {
        font-size: 22px;
    }

    /* HUMAN AI */
    .human-ai {
        height: 550px;
    }

    .human-content h2 {
        font-size: 24px;
    }

    /* FAQ */
    .faq {
        padding: 60px 15px;
    }

    .faq h2 {
        font-size: 30px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-cta h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {

    /* GLOBAL */
    .container {
        max-width: 95%;
    }

    h2 {
        font-size: 26px !important;
    }

    /* HERO */
    .hero {
        height: 80vh;
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 30px;
        line-height: 1.3;
    }

    .hero h4 {
        font-size: 18px;
    }

    .hero p {
        font-size: 14px;
    }

    /* CAPABILITIES (KEEP 2 COL) */
    .cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .card {
        padding: 20px;
    }

    .card h3 {
        font-size: 18px;
    }

    .card p {
        font-size: 13px;
    }

    /* APPROACH (STACK + REMOVE ARROWS) */
    .steps {
        flex-direction: column;
        gap: 30px;
    }

     .arrow {
        display: block;        /* if you want them visible */
        transform: rotate(90deg);
        font-size: 30px;
    }

    .step {
        width: 100%;
        max-width: 400px;
    }

    /* USP (STACK) */
    .usp-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .usp-card {
        padding: 20px;
    }

    .usp-card h3 {
        font-size: 18px;
    }

    /* BENEFITS (2x2 GRID) */
    .benefit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .benefit h3 {
        font-size: 40px;
    }

    .benefit p {
        font-size: 14px;
    }

    /* INDUSTRIES (STACK) */
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .industry-card {
        height: 380px;
    }

    .industry-card h3 {
        font-size: 20px;
    }

    .industry-overlay p {
        font-size: 13px;
    }

    /* HUMAN AI */
    .human-ai {
        height: 400px;
        padding: 0 10px;
    }

    .human-content h2 {
        font-size: 20px;
        line-height: 1.3;
    }

    /* FAQ */
    .faq h2 {
        font-size: 26px;
    }

    .faq-question {
        font-size: 15px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .faq-cta h3 {
        font-size: 20px;
    }

    .btn-primary1 {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {

    /* GLOBAL */
    .container {
        max-width: 92%;
    }

    h2 {
        font-size: 22px !important;
        line-height: 1.3;
    }

    section {
        padding: 50px 10px !important;
    }

    /* HERO */
    .hero {
        height: 75vh;
        padding: 0 10px;
    }

    .hero h1 {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero h4 {
        font-size: 16px;
    }

    .hero p {
        font-size: 13px;
    }

    /* CAPABILITIES (STACK) */
    .cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .card {
        padding: 18px;
    }

    .card h3 {
        font-size: 17px;
    }

    .card p {
        font-size: 13px;
    }

    /* APPROACH (STACK CLEAN) */
    .steps {
        flex-direction: column;
        gap: 25px;
    }

    .step {
        width: 100%;
    }

    .number {
        width: 55px;
        height: 55px;
        font-size: 22px;
    }

    .step h3 {
        font-size: 17px;
    }

    .step p {
        font-size: 13px;
    }

    /* ARROWS (KEEP OR REMOVE — YOUR CALL) */
    .arrow {
        transform: rotate(90deg);
        font-size: 24px;
        margin: 5px 0;
    }

    /* USP (STACK) */
    .usp-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .usp-card {
        padding: 18px;
    }

    .usp-card h3 {
        font-size: 17px;
    }

    .usp-card li {
        font-size: 13px;
    }

    /* BENEFITS (STACK — NOT 2x2) */
    .benefit-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .benefit h3 {
        font-size: 36px;
    }

    .benefit p {
        font-size: 14px;
    }

    /* INDUSTRIES (STACK FULL WIDTH) */
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .industry-card {
        height: 300px;
    }

    .industry-card h3 {
        font-size: 18px;
    }

    .industry-overlay {
        padding: 15px;
    }

    .industry-overlay p {
        font-size: 12px;
    }

    /* HUMAN AI */
    .human-ai {
        height: 300px;
    }

    .human-content h2 {
        font-size: 18px;
    }

    /* FAQ */
    .faq h2 {
        font-size: 22px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 13px;
    }

    .faq-cta {
        margin-top: 50px;
    }

    .faq-cta h3 {
        font-size: 18px;
        line-height: 1.3;
    }

    .btn-primary1 {
        padding: 5px 18px;
        font-size: 12px;
    }
}