* {
    font-family: poppins, sans-serif;
    box-sizing: border-box;
    outline: none;
}

.banner {
    padding: 0px 20px 20px 20px;
}

.banner-container {
    background-image: url("../img/guardian-customer-story/banner-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 50px;
    border-radius: 20px;
}

.banner-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    border-radius: 30px;
    background-color: #E2D5FF;
    width: fit-content;
    margin-bottom: 40px;
}

.banner-inner-div {
    min-width: 10px;
    min-height: 10px;
    background-color: #703FED;
    border-radius: 50%;
}

.banner-inner-para {
    color: #703FED;
    font-size: 14px;
    margin-bottom: 0px;
}

.banner-heading {
    font-size: 50px;
    color: #FFFFFF;
    font-weight: 500;
}

.banner-para {
    font-size: 18px;
    color: #FFFFFF;
    margin-bottom: 0px;
    line-height: 28px;
}

.overview {
    background-image: url("../img/guardian-customer-story/overview-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0px;
    height: 500px;
    display: flex;
    align-items: center;
}

.section-heading {
    font-size: 40px;
    color: #953DF9;
    font-weight: 500;
}

.section-para {
    font-size: 14px;
    color: #303030;
    margin-bottom: 0px;
    line-height: 25px;
}

.sales {
    background-image: url("../img/guardian-customer-story/challenges-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%, contain;
    padding: 70px 0px;
    height: 1150px;
    display: flex;
    align-items: center;
}

.customer {
    background-image: url("../img/guardian-customer-story/solutions-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%, contain;
    padding: 70px 0px;
    height: 1110px;
    display: flex;
    align-items: center;
}

.sales .section-heading {
    color: #953DF9;
}

.customer .section-heading {
    color: #FFF;
}

.tabs-container {
    margin-top: 20px;
}

.tabs-header {
    display: flex;
    gap: 40px;
    border-bottom: 1px solid #E0E0E0;
    margin-bottom: 30px;
}

.tab-item {
    padding: 10px 0;
    font-size: 18px;
    font-weight: 500;
    color: #303030;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.tab-item.active {
    color: #703FED;
}

.tab-item.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #703FED;
    border-radius: 3px;
}

.customer .tab-item,
.customer .tab-item.active {
    color: #FFF;
}

.customer .tab-item.active::after {
    background-color: #FFF;
}

.tab-content {
    display: none;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0px;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.content-split {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.content-left {
    flex: 1;
}

.content-right {
    flex: 0 0 300px;
}

.tab-intro {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #303030;
}

.customer .tab-intro {
    color: #FFF;
}

.purple-bullets {
    list-style: none;
    padding: 0;
}

.purple-bullets li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 15px;
    font-size: 14px;
    line-height: 1.5;
    color: #303030;
}

.customer .purple-bullets li {
    color: #FFF;
}

.purple-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: #703FED;
    border-radius: 50%;
}

.customer .purple-bullets li::before {
    background-color: #FFF;
}

.tab-footer {
    margin-top: 30px;
    margin-bottom: 0px;
    font-size: 15px;
    color: #303030;
}

.section-title {
    font-size: 40px;
    color: #fff;
    font-weight: 500;
}

.customer .tab-footer {
    color: #FFF;
}

.solution-wrapper {
    background: transparent;
}

.solution-intro {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
}

.solution-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 15px;
    background-color: #E2D5FF;
    color: #703FED;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
    width: fit-content;
}

.solution-pill div {
    min-width: 10px;
    min-height: 10px;
    background-color: #703FED;
    border-radius: 50%;
}

.custom-accordion {
    margin-top: 20px;
}

.accordion-item {
    border: none;
    margin-bottom: 0;
    background-color: transparent !important;
}

.customer .accordion-item:first-child {
    border-bottom: 2px solid #E2D5FF;
}

.accordion-header {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.customer .accordion-header,
.accordion-header.active {
    color: #FFF;
}

.accordion-header.active {
    color: #FFF;
}

.accordion-header i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.accordion-body {
    padding: 0 0 20px 0;
    display: none;
    background-color: transparent !important;
}

.dash-bullets {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.dash-bullets li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
}

.customer .dash-bullets li {
    color: #FFF;
}

.dash-bullets li::before {
    content: '-';
    position: absolute;
    left: 0;
    color: #703FED;
}

.customer .dash-bullets li::before {
    color: #FFF;
}

.accordion-footer {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.customer .accordion-footer {
    color: #FFF;
}

.container {
    max-width: 1820px;
}

@media (max-width: 1920px) {
    .container {
        max-width: 1600px;
    }

    .sales, .customer{
        height: 1000px;
    }
}

@media (max-width: 1700px) {
    .container {
        max-width: 1440px;
    }

    .sales, .customer{
        height: 900px;
    }
}

@media (max-width: 1520px) {
    .container {
        max-width: 1250px;
    }

    .sales, .customer{
        height: 800px;
    }
}

@media (max-width: 1320px) {
    .container {
        max-width: 1000px;
    }

    .header-container{
        max-width: 100%;
    }

    .sales, .customer{
        height: 100%;
    }
}

@media (max-width: 991px) {
    .section-number {
        font-size: 100px;
    }

    .overview,
    .sales,
    .customer {
        height: auto;
    }

    .sales,
    .customer {
        background-position: left;
        background-size: cover;
    }

    .mar-b {
        margin-bottom: 40px;
    }

    .content-split {
        flex-direction: column;
    }

    .content-right {
        order: -1;
        margin-bottom: 30px;
        flex: 0 0 auto;
    }

    .lightbulb-img {
        max-width: 150px;
    }
}

.section-para-white {
    font-size: 14px;
    line-height: 25px;
    color: #fff;
    margin-bottom: 0px;
}

.impact {
    background-image: url("../img/guardian-customer-story/impact-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 0px;
}

.results {
    background-color: #F5EDFF;
    padding: 70px 0px 40px 0px;
}

.results-div {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 25px;
    background-color: #fff;
    color: #703FED;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
    width: fit-content;
}

.results-div div {
    min-width: 10px;
    min-height: 10px;
    background-color: #703FED;
    border-radius: 50%;
}

.results-inner-div {
    padding: 30px 20px;
    border-radius: 15px;
    background-color: #fff;
    height: 100%;
}

.results-inner-div img {
    margin-bottom: 20px;
}

.results-para {
    font-size: 14px;
    color: #703FED;
    line-height: 25px;
    margin-bottom: 0px;
}

.read-more-container {
    padding: 70px 0px;
}

.read-more-div {
    background-image: url("../img/guardian-customer-story/read-more-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 30px;
    border-radius: 20px;
}

.btn-read-more {
    background-color: #EDE7FB;
    color: #703FED;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 30px;
}

.btn-read-more:hover {
    text-decoration: none;
}

.testimonial {
    background-image: url("../img/guardian-customer-story/testimonial-container-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100% 100%, contain;
    padding: 70px 0px;
}

.testimonial-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 25px;
    background-color: #fff;
    color: #703FED;
    border: 1px solid #703FED;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 20px;
    width: fit-content;
}

.testimonial-container div {
    min-width: 10px;
    min-height: 10px;
    background-color: #703FED;
    border-radius: 50%;
}

.testimonial-div {
    background-image: url("../img/guardian-customer-story/testimonial-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px;
    border-radius: 15px;
    position: relative;
}

.testimonial-para {
    font-size: 15px;
    color: #fff;
    line-height: 25px;
}

.testimonial-para-1 {
    font-size: 17px;
    color: #fff;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 10px;
}

.testimonial-para-2 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 0px;
}

.testimoial-div-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.img-comma-1 {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 50px;
}

.img-comma-2 {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 50px;
}

.video-section {
    padding: 70px 0px;
}

.video-div {
    background-image: url("../img/guardian-customer-story/video-bg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 30px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 576px) {
    .testimoial-div-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .testimonial-div {
        padding: 70px 20px;
    }

    .banner-container {
        padding: 70px 20px;
    }

    .video-div {
        padding: 70px 20px;
    }
}