@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary-blue: #004b7a;
    --dark-blue: #022336;
    --whatsapp-green: #00B67A;
    --button-blue: #1e88e5;
    --text-white: #ffffff;
    --form-bg: #182F3E;
}

.matrix-banner_section {
    /* background: linear-gradient(135deg, #004b7a 0%, #022336 100%); */
    background: linear-gradient(86.83deg, #1A77BE -16.73%, #1B3443 94.55%);
    min-height: 100vh;
    height: auto;
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 !important;
    overflow: hidden;
}

.container-boxed {
    /* max-width: 1320px; */
    /* max-width: 1530px; */
    margin: 0 auto;
    padding: 0 15px;
}

.banner-header {
    padding: 2.5rem 0;
    width: 100%;
    z-index: 20;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.whatsapp-btn {
    background-color: var(--whatsapp-green);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    /* font-size: 0.95rem; */
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    color: white;
}

.phone-btn {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    /* font-size: 0.95rem; */
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
    color: white;
}

.banner-main-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    padding-bottom: 7rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-left-content {
    color: white;
}

.hero-left-content h1 {
    /* font-family: 'Outfit', sans-serif; */
    /* font-size: 4rem; */
    font-size: 3.5rem;
    /* font-weight: 700; */
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 2.5rem;
    color: white !important;
}

.trust-badges {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.badge-item img {
    /* height: 100px; */
    height: auto;
    max-height: 8vw;
    width: auto;
    object-fit: contain;
}

.hero-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    /* font-size: 1.1rem; */
    /* font-size: 1rem; */
    font-size: 0.95rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 !important;
}

.hero-checklist li::after {
    display: none !important;
}

.check-icon {
    color: var(--whatsapp-green);
    font-weight: bold;
    flex-shrink: 0;
}

.hero-right-content {
    display: flex;
    justify-content: flex-end;
}

/* Form Styles */
.scope-form-card {
    background: var(--form-bg);
    /* padding: 2.5rem; */
    padding: 2rem;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

h3.scope-form-card-title {
    color: white;
    font-size: 1.8rem;
    font-weight: 600;
    /* margin-bottom: 2rem; */
    text-align: left;
}

.form-row {
    margin-bottom: 1.25rem;
}

.form-group-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-input {
    width: 100%;
    background: white;
    border: none;
    padding: 0.9rem 1.2rem !important;
    border-radius: 8px;
    font-size: 1rem !important;
}

.phone-group {
    display: flex;
    gap: 0.5rem;
}

.country-select {
    width: 100px;
    background: white;
    padding: 0.8rem !important;
    border-radius: 8px;
    border: none;
    font-size: 1rem !important;
}

.form-textarea {
    width: 100%;
    background: white;
    border: none;
    padding: 1rem 1.2rem !important;
    border-radius: 8px;
    height: 100px;
    font-size: 1rem !important;
}

.submit-btn {
    width: 100%;
    background-color: var(--button-blue);
    color: white;
    border: none;
    padding: 1.1rem !important;
    border-radius: 8px;
    font-size: 1.2rem !important;
    font-weight: 600 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: background 0.3s ease;
    min-width: unset !important;
}

.submit-btn:hover {
    background-color: #1565c0;
}

.form-footer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-top: 1rem;
    text-align: center;
}

/* Bottom Wave */
.banner-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 5;
}

.banner-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}


/* FAQ Accordion Styles */
.faq-section {
    background-color: #ffffff;
    padding: 50px 0 100px;
}

.faq-title-panel .h2-title {
    text-align: center;
}

.faq-accro-section {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #CCCCCC;
    border-radius: 5px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: var(--button-blue);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.faq-header {
    padding: 16px 20px;
    column-gap: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s ease;
}

.faq-header:hover {
    background: #f8fafc;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 500;
    color: #1e293b;
    margin: 0;
}

.faq-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-body {
    max-height: 1000px;
    /* Increased to allow more content */
}

.faq-content {
    padding: 1rem 3rem 2rem 1.5rem;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}


.hero-banner-mob-hdng{
    display: none;
    font-size: 24px;
    margin-bottom: 0px;
    width: 100%;
    text-align: center;
    color: #fff;
}

/* Responsive */
@media (max-width: 1440px) {

    .faq-question,
    .faq-content {
        font-size: 1rem;
    }

    h3.scope-form-card-title {
        font-size: 1.4rem;
    }

    .hero-left-content h1 {
        font-size: 2.7rem;
        line-height: 1.3;
    }

}


@media (max-width: 1366px) {
    .hero-left-content h1 {
        font-size: 2.7rem;
        line-height: 1.3;
    }
}



@media (max-width: 1200px) {
    .hero-left-content h1 {
        /* font-size: 3rem; */
        font-size: 2rem;
    }

    .badge-item img {
        max-height: 65px;
    }

    h3.scope-form-card-title {
        font-size: 1.4rem;
    }

    .swsTagItem {
        padding: 5px 15px;
        min-width: 134px;
        min-height: 40px;
    }

    .swsTagItemText {
        font-size: 14px;
    }

    .sectorsWeSpecializeInner {
        padding-top: 65px;
        padding-bottom: 65px;
    }

    .counter-block {
        row-gap: 20px;
    }

    .counter-box {
        flex: 0 0 25.66%;
        max-width: 25.66%;
    }

}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-right-content {
        justify-content: center;
    }

    .matrix-banner_section {
        min-height: auto;
        padding-bottom: 8rem !important;
    }

    .hero-left-content {
        text-align: center;
    }

    .hero-left-content h1 {
        font-size: 2.5rem;
    }

    .trust-badges {
        justify-content: center;
    }

    .hero-checklist {
        display: inline-block;
        text-align: left;
    }



    .header-inner {
        flex-direction: column;
    }

    .banner-main-content .hero-right-content {
        order: 0;
    }

    .banner-main-content .hero-left-content {
        order: 1;
    }

    .swsTagItem {
        padding: 5px 15px;
        min-width: 115px;
    }
    .swsTagItem .swsTagItemText {
        font-size: 12px;
    }
}



@media (max-width: 767px) {
    #app-slider .slider-item {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .matrix-service_section {
        padding-bottom: 30px;
    }


    .header-inner {
        flex-direction: row;
    }

    .phone-btn {
        border: none;
        background: transparent;
        padding: 7px 20px;
        font-size: 12px;
    }

    .phone-btn img {
        display: none;
    }

    h3.scope-form-card-title {
        font-size: 1.2rem;
        text-align: center;
    }

    .matrix-banner_section {
        padding-bottom: 0rem !important;
    }

    .banner-main-content {
        padding-bottom: 60px;
    }

    .counter-box {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 7px;
    }
}

@media (max-width: 576px) {
    /* .header-actions {
        display: none;
    } */

    .header-actions .whatsapp-btn {
        display: none;
    }

    .hero-left-content h1 {
        font-size: 1.5rem;
    }

    .form-group-split {
        grid-template-columns: 1fr;
    }

    .scope-form-card {
        padding: 1.5rem;
    }

    .faq-question {
        font-size: 0.95rem !important;
    }

    .faq-content {
        font-size: 0.9rem !important;
        line-height: 1.4 !important;
    }

    .swsTagItem {
        padding: 5px 10px;
        min-width: 135px;
    }

    .faq-section {
        padding: 70px 0 80px;
    }
    .matrix-banner_section {
        padding-bottom: 70px !important;
    }

    .hero-banner-mob-hdng{
        display: inline-block;
    }
    .hero-left-content h1{
        display: none;
    }

    .badge-item img {
        max-height: 118px;
    }

}

@media (max-width: 480px) {}

