/* Case Study Page - Minimal CSS */

:root {
    --primary: #1e40af;
    --text-dark: #111827;
    --text-gray: #6b7280;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

.container {
    max-width: 100%;
    padding: 0 47px;
}

.header-info-button {
    background: #084C94;
    color: #FFFFFF;
    border-radius: 20px;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-heading {
    width: 100%;
    display: flex;
    font-size: 15px;
    font-family: Poppins;
    font-weight: 600;
}

.header-value {
    font-size: 12px;
}

.client-profile-button {
    background: #0000000D;
    border-radius: 45px;
    color: #000000;
    padding: 10px 20px;
    max-width: max-content;
    margin: auto;
    font-weight: 600;
}

.info-subtitle-highlights {
    font-family: Poppins;
    font-weight: 700;
    font-size: 16px;
    color: #3C3C3C;
}

.info-footer-subheading {
    font-family: Poppins;
    font-weight: 400;
    font-size: 16px;
    color: #3C3C3C;
}

.header-inf-main {
    display: flex;
    gap: 20px;
}

/* Header */
.case-study-header {
    color: white;
    padding: 20px 0 50px;
    background: #EEF4FA;
}

.header-info-button img {
    width: 20px;
    height: 20px;
}

.header-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.main-title .liniear-color {
    font-family: Poppins;
    font-weight: 700;
    font-size: 40px;
    background: linear-gradient(90deg, #084C94 0%, #0073F2 50%, #084C94 100%), linear-gradient(0deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.main-title .highlight {
    color: #101828 !important;
    font-family: Poppins;
    font-weight: 700;
    font-size: 40px;
}

.subtitle {
    font-size: 18px;
    opacity: 0.9;
    margin: 25px 0px;
    color: #4A5565;
    line-height: 35px;
}

.revenue-growth {
    color: #084C94;
    font-weight: bold;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

.btn-primary {
    background: white;
    color: var(--primary);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.header-cta {
    display: flex;
    gap: 15px;
}

.header-image {
    align-self: stretch;
}

.image-wrapper {
    height: 100%;
    display: flex;
    justify-content: flex-end;
}

.image-wrapper img {
    width: 75%;
    height: 100%;
    border-radius: 30px;
    border: 10px solid #FFFFFF;
    box-shadow: 0px 31.22px 62.43px -14.98px #00000040;
}

/* Sections */
.client-info {
    padding: 20px 0;
}

.success-story-btn {
    display: flex;
    color: black;
    gap: 10px;
    padding: 5px;
    border: 1px solid #084C94;
    max-width: 27%;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
}

.success-story-text {
    color: #084C94;
    font-family: Poppins;
    font-weight: 600;
    font-size: 17.48px;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-badge {
    display: inline-block;
    padding: 6px 16px;
    background: #0000000D;
    color: #000000;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}


.color-blue {
    color: #0073F2;
}

.section-title {
    text-align: center;
    font-size: 50px;
    font-weight: 700;
    margin: 20px 0px 10px 0px;
    line-height: 45px;
    color: #000000;
}

.info-footer {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
    gap: 20px;
    box-shadow: 0px 4px 4px 0px #00000040;
    border-radius: 20px;
    margin: 20px 0;
    padding: 20px;
    max-width: 80%;
    margin: 30px auto;
}

.about-sub-title {
    font-family: Poppins;
    font-weight: 400;
    font-size: 18.97px;
    text-align: center;
    color: #6A7282;
    margin: 0px 0px 35px 0px;
}

.section-description {
    font-size: 20px;
    color: #4A5565;
    margin: 10px auto;
    text-align: center;
}

/* Client Info */
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 80%;
    margin: auto;
}

.info-card {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 12.49px 30.73px 0.25px #0000001A;
    border: 1.25px solid #F3F4F6;
}

.info-footer-heading {
    font-family: Poppins;
    font-weight: 700;
    font-size: 23.97px;
}

.info-icon {
    width: 48px;
    height: 48px;
    background: #084C940D;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.info-title {
    font-size: 12px;
    font-weight: 600;
    color: #6A7282;
    margin-bottom: 8px;
}

.info-description {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 0 !important;
}

/* Pain Points */
.pain-points,
.project-objectives {
    background: #EEF4FA;
    padding: 30px 0;
}

.project-objectives {
    padding: 0 0 30px;
}

.obstacles-grid {
    display: flex;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 25px;
    max-width: 80%;
    margin: auto;
    flex-wrap: wrap;
    justify-content: center;
}

.obstacle-card {
    padding: 20px;
    background: white;
    border-radius: 15px;
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    box-shadow: 0px 10px 15px -3px #0000001A;
    border: 1px solid #000000;
    width: calc(50% - 12.5px);
}

.obstacle-number {
    position: absolute;
    right: 20px;
    font-size: 35px;
    font-weight: 800;
    color: #f3f4f6;
}

.obstacle-title {
    font-size: 16px;
    font-weight: 600;
    font-family: Poppins;
    color: #000000;
}

.obstacle-description {
    color: var(--text-gray);
}

/* Objectives */
.objectives-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 80%;
    margin: auto;
}

.objective-card {
    padding: 30px;
    border: 2px solid var(--border);
    border-radius: 20px;
    background: linear-gradient(to right, #ffffff 50%, #e8f4ff 100%);
    box-shadow: 0px 4.99px 7.49px -4.99px #0000001A;
}

.objective-icon {
    width: 50px;
    height: 50px;
    margin: 0 0 10px;
    background: #0073F2;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.objective-icon img {
    width: 25px;
    height: 25px;
}

.objective-title {
    font-size: 16px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}

.outcomes-section .obstacle-title {
    font-family: Poppins;
    font-weight: 400;
    color: #364153;
}

.objective-description {
    color: var(--text-gray);
}

/* Solutions */
.volza-solution {
    background: #EEF4FA;
}

.solutions-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 80%;
    margin: auto;
}

.solutions-content {
    background: url('https://www.volza.com/images/casestudypage/background-map.webp');
    margin: 0 -47px;
    border: 1px solid gray;
    border-radius: 20px;
    padding: 30px 47px;
}

.result-icon {
    width: 40px;
    height: 40px;
    background: #0073f2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
}

.solution-card {
    padding: 15px;
    background: linear-gradient(to right, #ffffff 50%, #e8f4ff 100%);
    border-radius: 20px;
    width: calc(33.33% - 30px);
    box-shadow: 0px 11.5px 17.26px -3.45px #0000001A;
}

.solution-card-large:nth-last-child(-n+2) {
    width: calc(50% - 30px);
}

.solution-icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    background: #084C94;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-icon img {
    width: 20px;
    height: 20px;
}

.solution-title {
    font-size: 20px;
    font-weight: 600;
    margin: 10px 0;
}

.growth-btn {
    background: #DCFCE7;
    font-family: Poppins;
    font-weight: 400;
    font-size: 13px;
    color: #008236;
    padding: 6px 10px;
    border-radius: 20px;
}

.result-grouth-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.solution-description {
    color: var(--text-gray);
    line-height: 1.8;
}

/* timeline css */

.timeline {
    position: relative;
    max-width: 80%;
    margin: auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-color: #bfdbfe;
    height: 100%;
}

.timeline-item {
    position: relative;
    margin-bottom: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.content-left {
    width: 41.666%;
    text-align: left;
    padding-right: 32px;
}

.content-right {
    width: 41.666%;
    text-align: right;
    padding-left: 32px;
}

.content-empty {
    width: 41.666%;
}

.badge {
    position: relative;
    z-index: 10;
    background-color: #1e40af;
    color: white;
    padding: 8px 16px;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.content-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}

.content-text {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .title {
        font-size: 36px;
    }

    .timeline-line {
        left: 37px;
        top: 0 !important;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 105px;
    }

    .content-left,
    .content-right {
        width: 100%;
        text-align: left;
        padding: 0;
        margin-bottom: 16px;
    }

    .content-empty {
        display: none;
    }

    .badge {
        position: absolute;
        left: 0px;
        top: 0;
        padding: 8px 10px !important;
        font-size: 12px !important;
    }

    .cta-title {
        font-size: 28px !important;
    }

    .cta-description {
        font-size: 14px !important;
        padding: 0px 0px 10px 0px;
        margin-bottom: 0 !important;
    }

    .testimonial-content {
        max-width: 100% !important;
    }

    .testimonial .container {
        padding: 20px 10px !important;
    }

    .testimonial-quote {
        display: flex;
        line-height: 18px;
        gap: 10px;
        align-items: flex-start;
    }

    .testimonial-author {
        display: none;
    }

    .testimonial-text {
        font-size: 14px !important;
        text-align: left;
        margin-bottom: 0 !important;
        display: flex;
    }
    .trusted-logos {
        gap: 30px;
    }

    .trusted-logo {
        width: 110px;
        height: 45px;
    }
    .hero-section {
        height: 60vh;
        min-height: 320px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-content {
        text-align: center;
        max-width: 900px;
        padding: 0 20px;
    }

    .section-title {
        font-size: 25px !important;
        line-height: normal !important;
    }
    .vertical-height-40vh{
        height: 20vh;
    }
    .story-footer{
        display: block !important;
    }
    .float-right {
        float: right !important;
    }
    .margin-top-bottom-10px{
        margin: 10px 0 !important;
    }
    .margin-top-3px{
        margin-top: 3px !important;
    }
    .trust-logos img {
    padding: 0 20px !important;
    }
}

/* Results */
.results-impact {
    background: #FFFFFF;
    color: #000000;
    padding: 20px 0;
}

.results-grid {
    display: flex;
    gap: 30px;
    max-width: 80%;
    margin: auto;
    justify-content: center;
    flex-wrap: wrap;
}

.obstacle-content {
    display: flex;
    gap: 10px;
    align-items: center;
}

.result-card {
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid #2D2D2D;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0px 3.82px 3.82px 0px #00000040;
    text-align: left;
    width: calc(33.3333% - 30px);
}

.results-impact .section-badge {
    display: flex;
    max-width: fit-content;
    margin: auto;
    align-items: center;
    justify-content: center;
}

.results-impact .section-badge img {
    width: 16px;
    height: 16px;
}

.result-number {
    font-size: 25px;
    font-weight: 600;
    color: #0073F2;
}

.result-label {
    font-family: Poppins;
    font-weight: 400;
    font-size: 15px;
    line-height: 22.93px;
}

.month-period {
    display: flex;
    align-items: center;
    gap: 10px;
}

.month-period div {
    color: #6A7282;
    font-size: 13px;
    font-family: Poppins;
}

.result-description {
    color: #4A5565;
}

/* Outcomes */
.qualitative-outcomes {
    background: #EEF4FA;
}

.implementation-timeline {
    background: #EEF4FA;
    padding: 20px 0;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.outcome-card {
    padding: 30px;
    background: white;
    border-radius: 8px;
    display: flex;
    gap: 20px;
}

.outcome-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.outcome-text {
    color: var(--text-dark);
}

.outcomes-section .obstacle-card {
    border: none;
    box-shadow: 0px 4.99px 7.49px -4.99px #0000001A;
    box-shadow: 0px 12.49px 18.73px -3.75px #0000001A;
}

/* Testimonial */
.testimonial-content {
    max-width: 40%;
    margin: 0 auto;
    text-align: center;
    background: white;
    border-top: 1px solid #F3F4F6;
    box-shadow: 0px 26.01px 52.02px -12.49px #00000040;
    border-radius: 24px;
    padding: 20px;
}

.testimonial .container {
    padding: 30px 47px;
}

.testimonial-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.testimonial-text-adjusted {
    width: 100%;
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.testimonial-text img {
    width: 40px;
    height: 40px;
}

.testimonial-text {
    flex-wrap: nowrap !important;
}

.testimonial-text-adjusted span {
    margin: 15px 0 0 8px;
    text-align: left;
    color: #364153;
    font-family: Poppins;
    font-weight: 500;
    font-size: 17px;
}

.testimonial-text-adjusted span img {
    margin-bottom: -20px;
}

.testimonial-author-bottom {
    width: 100%;
    padding: 0 48px;
    display: flex;
    gap: 20px;
}

.author-info p {
    margin-bottom: 0 !important;
}

.testimonial-author {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    margin-left: 10px;
}

.testimonial-author-main {
    display: block;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.cta-section .cta-content {
    padding: 0 47px;
    max-width: calc(85% - 47px);
    margin: auto;
}

.testimonial-author .solution-icon {
    border-radius: 50% !important;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
}

.author-title {
    color: var(--text-gray);
}

.author-info {
    text-align: left;
}

/* CTA */
.cta-section,
.testimonial {
    background: #EEF4FA;
    padding: unset !important;
}

.cta-section .container {
    padding: 50px 0;
    background: url("https://www.volza.com/images/casestudypage/redy-to-grow-back.webp");
    color: white;
    text-align: center;
    border-radius: 20px;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-description {
    font-size: 20px;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.cta-note {
    margin-top: 20px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .header-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 30px !important;
        margin: 20px 0px 10px 0px;
    }

    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.testimonial-author-bottom .solution-icon {
    border-radius: 50% !important;
}

.btn {
    border-radius: 12px;
}

@media (max-width: 900px) {
    .main-title {
        font-size: 20px;
    }

    .section-title {
        font-size: 28px !important;
        margin: 20px 0px 10px 0px;
    }

    .section-description {
        font-size: 17px;
        color: var(--text-gray);
        margin: 10px 0px;
    }

    .section-description {
        margin-bottom: 20px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .info-description {
        text-align: center;
    }

    .testimonial-author-bottom img {
        width: 30px !important;
        height: 30px !important;
    }

    .info-grid,
    .obstacles-grid,
    .objectives-grid,
    .outcomes-grid {
        grid-template-columns: 1fr;
    }

    .cta-section .cta-content {
        padding: 10px 0px !important;
        max-width: 100% !important;
    }

    .header-cta,
    .cta-buttons {
        flex-direction: column;
    }

    section {
        padding: 10px 0;
    }

    .case-study-header {
        padding: 0 !important;
    }

    .container {
        padding: 0 15px !important;
    }

    .timeline {
        max-width: 100% !important;
    }

    .result-card {
        width: 100% !important;
        border: 1px solid #0000001A;
        box-shadow: 5px 10px 15px -3px #0000001A;
    }

    .aval-fashion-mobile {
        background: url('https://www.volza.com/images/casestudypage/case-study-aval-fashion.webp');
        background-size: 100% 100%;
        background-position: top center;
        background-repeat: no-repeat;
        padding-bottom: 15px !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .info-footer-subheading {
        font-size: 14px;
        margin: 0px;
        line-height: 26px;
        text-align: left;
        font-weight: 400;
    }

    .info-footer {
        margin: 10px auto 0;
    }

    .objective-card {
        padding: 30px 10px 15px 10px;
        border: 2px solid var(--border);
        border-radius: 20px;
        background: linear-gradient(to right, #ffffff 50%, #e8f4ff 100%);
        box-shadow: 0px 4.99px 7.49px -4.99px #0000001A;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .objective-title {
        font-size: 20px;
        font-weight: 600;
    }

    .section-description-qualitative-outcomes {
        font-weight: 600;
    }

    .objective-description {
        text-align: center;
        font-size: medium;
    }

    .avik-pharmaceutical-mobile {
        background: url('https://www.volza.com/images/casestudypage/case-study-avik-pharma.webp');
        background-size: 100% 100%;
        background-position: top center;
        background-repeat: no-repeat;
        padding-bottom: 15px !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .malishka-enterprise-mobile {
        background: url('https://www.volza.com/images/casestudypage/case-study-malishka-enterprise.webp');
        background-size: 100% 100%;
        background-position: top center;
        background-repeat: no-repeat;
        padding-bottom: 15px !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .case-study-kak-impex-mobile {
        background-size: 100% 100%;
        background-position: top center;
        background-repeat: no-repeat;
        padding-bottom: 15px !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .case-study-bch-mobile {
        background: url('https://www.volza.com/images/casestudypage/case-study-business-coordination-house.webp');
        background-size: 100% 100%;
        background-position: top center;
        background-repeat: no-repeat;
        padding-bottom: 15px !important;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }

    .main-title .highlight {
        font-size: 20px;
    }

    .header-info-button {
        border-radius: 10px;
        padding: 7px;
        min-width: 100px;
    }

    .info-card {
        padding: 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .about-sub-title {
        font-size: 16px !important;
        margin: 0px 0px 20px 0px;
    }

    .info-footer {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        text-align: center;
        gap: 20px;
        border-radius: 20px;
        padding: 10px;
        margin: 15px auto 0px;
        box-shadow: none;
    }

    .info-footer,
    .obstacles-grid,
    .info-grid,
    .objectives-grid,
    .solutions-grid,
    .results-grid {
        max-width: 100% !important;
        gap: 20px;
    }

    .testimonial-text-adjusted {
        width: 100% !important;
    }

    .subtitle {
        color: black !important;
        font-size: 14px;
        line-height: 25px;
        margin: 10px 0px 25px 0px;
    }

    .main-title .liniear-color {
        font-size: 25px;
    }

    .header-inf-main {
        flex-wrap: wrap;
    }

    .info-footer-heading {
        font-weight: 600;
        font-family: Poppins;
        font-size: 20px;
        text-align: center;
        color: #000000;
    }

    .testimonial-text-adjusted img {
        width: 25px;
        height: 25px;
    }

    .testimonial-text-adjusted span {
        margin: 5px 0 0 4px;
        font-size: 14px;
    }

    .testimonial-text-adjusted span img {
        margin-bottom: -10px;
    }

    .testimonial-author-bottom {
        padding: 15px 0px 0 25px;
        gap: 15px;
    }

    .timeline-item {
        margin-bottom: 0 !important;
    }

    .obstacle-content {
        flex-wrap: wrap !important;
        display: flex;
        gap: 10px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .obstacle-title {
        font-size: 14px !important;
        width: 85% !important;
        font-weight: 600;
        text-align: center;
    }

    .solutions-content {
        margin: 0 -15px !important;
        padding: 30px 10px !important;
        border-radius: 0px;
        border: none !important;
    }

    .solution-card,
    .solution-card-large:nth-last-child(-n+2) {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .solution-description {
        text-align: center;
    }

    .section-title-mob {
        margin: 0px 0px 10px 0px !important;
    }

    .obstacle-card {
        flex-direction: column;
        border: none;
        width: 100% !important; 
    }

    .solution-title {
        text-align: center;
    }

    .ending-blockquote {
        height: 30px;
        position: absolute;
        padding-left: 5px;
    }

    .testimonial-author {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 18px;
        width: fit-content;
        margin: 25px 0px 0px 0px;
    }

    .author-name {
        font-size: 15px;
        font-weight: 700;
        margin-bottom: 2px
    }

    .author-title {
        margin: 0 0 5px;
    }
    .cta-section-index {
        flex-direction: column-reverse;
        text-align: center;
        width: 95% !important;
    }

    .cta-section .container {
        background-size: 493% 137% !important;
    }

    .cta-section {
        padding: 16px 15px !important;
    }

    .cta-left {
        width: 100% !important;
        padding: 18px 18px 35px 18px !important;
    }

    .cta-right {
        width: 100% !important;
        height: 300px !important;
        margin-bottom: 25px;
        border-radius: 12px;
    }

    .breadcrumb-casestudy {
        margin: 10px 0px 10px 0px !important;
    }

    .content-title {
        font-size: 16px !important;
    }

    .results-impact .section-header {
        margin: 0 0 10px !important;
        background: #FFFFFF;
        padding: 0 !important;
    }

    .pain-points,
    .project-objectives {
        padding: 10px 0 !important;
    }

    .outcomes-section .section-header {
        margin-bottom: 20px !important;
    }

    .trusted-companies-cont {
        padding: 0px;
    }

    .trusted-section {
        padding: 20px 10px !important;
    }

    .trusted-title-main {
        font-weight: 700;
        font-size: 20px;
        line-height: 100%;
        text-align: center;
        color: #00407c;
        padding: 7px 0px 30px 0px;
    }

    .breadcrumb-casestudy-index {
        position: relative;
        text-align: left;
        width: -webkit-fill-available;
        right: 15px !important;
        top: 0px !important;
    }
    .cta-left h2 {
        font-weight: 400 !important;
        font-style: normal;
        font-size: 24px !important;
        line-height: 30px;
        text-align: start;
    }

    .cta-left p {
        font-weight: 400;
        font-style: normal;
        font-size: 14px !important;
        line-height: 20px;
        text-align: start;
    }

    .cta-left p br {
        display: none;
    }
    .cta-left h2 br {
        display: none;
    }
}

.hero-section {
    width: 100%;
    height: 80vh;
    min-height: 360px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4),
            rgba(0, 0, 0, 0.4)), url("https://www.volza.com/images/casestudypage/index-page-hero-section.webp");
    /* ← put URL here */
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
     flex-direction: column;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0px 23px 100px 0px;
}

.tag {
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 18px;
    border-radius: 50px;
    backdrop-filter: blur(6px);
    display: inline-block;
    margin-bottom: 20px;
    font-size: 14px;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
}

/* Responsive Breakpoints */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 40px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .hero-content {
        text-align: center;
        max-width: 900px;
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: 46vh;
        min-height: 300px;
    }

    .tag {
        font-size: 12px;
        padding: 5px 14px;
    }

    .hero-content h1 {
        font-size: 26px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-content {
        text-align: center;
        max-width: 900px;
        padding: 0 20px;
    }
    .story-image-wrapper img {
        height: 160px;
    }

    .story-content p {
        min-height: auto;
    }
    .trusted-logo {
        width: 90px;
        height: 40px;
    }
    .cta-left h2 {
        font-size: 28px;
    }

    .cta-btn {
        padding: 10px 22px;
        font-size: 15px;
    }

    .breadcrumb-casestudy {
        margin: 10px 0px 10px 0px !important;
    }
}


.success-stories-section {
    background: #eef4fa;
    padding: 50px 20px;
    justify-content: center;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.section-title {
    text-align: center;
    font-size: 35px;
    font-weight: 600;
    line-height: 40px;
    color: #1d1d1f;
}

/* GRID */
.stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 30px;
    justify-content: center;
}

/* CARD */
.story-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

/* IMAGE */
.story-image-wrapper {
    position: relative;
}

.story-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* LABEL CHIP */
.story-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #084C94;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

/* CONTENT */
.story-content {
    padding: 20px;
}
.vertical-height-40vh{
    height: 20vh;
}

.story-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.story-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    min-height: 100px;
}

/* FOOTER */
.story-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.story-btn {
    background: #0069f2;
    color: #fff;
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 16px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.2s;
}

.story-btn:hover {
    background: #004bd1;
}

.story-date {
    font-size: 13px;
    color: #666;
}

/* Section wrapper */
.trusted-section {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
    margin: 0 !important;
    line-height: 38px;
}

.trusted-title {
    font-size: 28px;
    font-weight: 700;
    color: #0d3c78;
    margin-bottom: 40px;
}

/* Logo container */
.trusted-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.hero-success-icon {
    top: 4px;
    position: relative;
}

/* Logo box */
.trusted-logo {
    width: 140px;
    height: 50px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.95);
    transition: 0.2s ease-in-out;
}

.trusted-logo:hover {
    filter: brightness(1);
}

/* Individual logos with CSS image paths */
.logo-bcg {
    background-image: url("https://www.volza.com/images/casestudypage/boston-consulting-group-icon.webp");
}

.logo-deloitte {
    background-image: url("https://www.volza.com/images/casestudypage/deloitte.webp");
}

.logo-intel {
    background-image: url("https://www.volza.com/images/casestudypage/Intel.webp");
}

.logo-itc {
    background-image: url("https://www.volza.com/images/casestudypage/itc-icon.webp");
}

.logo-kpmg {
    background-image: url("https://www.volza.com/images/casestudypage/kpmg-icon.webp");
}

.logo-ernst {
    background-image: url("https://www.volza.com/images/casestudypage/ernst-icon.webp");
}


/* Outer section */

.trust-logos img {
    height: 100%;
    padding: 0 80px;
}

.trust-logos {
    width: 100% !important;
    margin-bottom: 0 !important;
}

.trust-logos-wrapper {
    margin-bottom: 0 !important;
}

.cta-section-index {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #0d4c8b;
    border-radius: 20px;
    overflow: hidden;
    margin: 50px 0;
    width: 80%;
    padding: 0%;
}

/* Left Side Content */
.cta-left {
    width: 50%;
    color: #ffffff;
    padding: 40px;
}

.cta-left h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-left p {
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-btn {
    display: inline-block;
    background: #ffffff;
    color: #0d4c8b;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    transition: 0.2s ease-in-out;
}

.cta-btn:hover {
    background: #e7e7e7;
}

/* Right Side Background Image */
.cta-right {
    width: 50%;
    height: 100%;
    background-image: url("https://www.volza.com/images/casestudypage/footer-group-icon.webp");
    /* Put your image here */
    background-size: cover;
    background-position: center;
}

/* Responsive */
@media (max-width: 900px) {
    .cta-section-index {
        flex-direction: column-reverse;
        text-align: center;
        width: 95%;
    }

    .cta-section {
        padding: 16px 15px !important;
    }

    .cta-left {
        width: 100%;
        padding: 18px;
    }

    .cta-right {
        width: 100%;
        height: 300px;
        margin-bottom: 25px;
        border-radius: 12px;
    }

    .breadcrumb-casestudy {
        margin: 10px 0px 10px 0px !important;
    }

    .content-title {
        font-size: 16px !important;
    }

    .pain-points,
    .project-objectives {
        padding: 10px 0 !important;
    }

    .outcomes-section .section-header {
        margin-bottom: 20px !important;
    }
}

@media (max-width: 480px) {
    .cta-left h2 {
        font-size: 28px;
    }

    .cta-btn {
        padding: 10px 22px;
        font-size: 15px;
    }

    .breadcrumb-casestudy {
        margin: 10px 0px 10px 0px !important;
    }
}

.cta-wrapper {
    display: flex;
    justify-content: center;
    background: #eef4fa;
}

.highlight-text {
    color: #0057A4;
    /* strong blue like in your image */
    font-weight: 700;
    /* bold */
}

.breadcrumb-casestudy {
    margin: 0px 0px 14px 0px;
}

.breadcrumb-li-without-link {
    color: black;
}

.header-text .subtitle {
    max-width: 90%;
}

.starting-blockquote {
    height: 30px;
}

.ending-blockquote {
    height: 30px;
    position: absolute;
    margin: 6px 5px;
}

@media screen and (max-width: 1400px) {
    .header-content {
        gap: 0px;
    }

    .image-wrapper img {
        width: 85%;
    }
    .vertical-height-40vh{
        height: 25vh;
    }
    .pd-20px {
    padding: 12px !important;
    }
}

@media screen and (max-width: 1385px) {
    .header-content {
        gap: 60px;
    }

    .image-wrapper img {
        width: 100%;
    }

    .success-story-btn {
        max-width: 33%;
    }
}

@media screen and (max-width: 1200px) and (min-width: 900px) {

    .info-grid,
    .info-footer,
    .obstacles-grid,
    .objectives-grid,
    .objectives-grid,
    .solutions-grid,
    .results-grid {
        width: 100%;
        max-width: 100%;
    }
    .vertical-height-40vh{
        height: 30vh;
    }
    .section-header-quantitative-outcomes {
        margin-bottom: 10px !important;
    }
}

@media screen and (max-width: 1280px) and (min-width: 720px) {
    .vertical-height-40vh{
        height: 30vh;
    }
}

.verticle-align-center{
    vertical-align: middle !important;
}
.float-right {
        float: none;
}
.pd-20px{
    padding: 20px;
}
.trust-logos-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    animation: 13s linear infinite marquee !important;
    width: max-content;
}

.breadcrumb-casestudy-index {
    position: relative;
    text-align: left;
    width: -webkit-fill-available;
    right: 155px;
    top: 30px;
}

.trust-logos-scroll {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    animation: 13s linear infinite marquee !important;
    width: max-content !important;
}

.section-title-index {
    margin: 20px 0px 50px 0px;
}
.text-color-dark-blue {
    color: #0073f2 !important;
}
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 22px;
  align-items: stretch;        
  grid-auto-rows: 1fr;        
}

.story-card {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(20,40,60,0.06);
}

.story-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;               
  color: inherit;
  text-decoration: none;
}

.story-image-wrapper {
  flex: 0 0 auto;             
}
.story-image-wrapper img {
  width: 100%;
  height: 220px;              
  object-fit: cover;
  display: block;
}

.story-content {
  flex: 1 1 auto;             
  padding: 20px;
  box-sizing: border-box;
  height: auto !important;
  min-height: 0;              
}

.story-footer {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  box-sizing: border-box;
}

.story-btn { /* your button style */ }
.story-date { color:#777; font-size:14px; }

.breadcrumb,
.breadcrumb-casestudy,
.breadcrumb-casestudy-index {
    display: flex !important;
    justify-content: flex-start !important;
    align-items: center;
    text-align: left !important;
    flex-wrap: wrap; /* allows wrapping on mobile */
    padding-left: 0;
    margin-left: 0;
}
.breadcrumb li {
    list-style: none;
    margin-right: 8px;
    text-align: left !important;
    font-size: 14px !important;
    font-weight: 400;
}
.text-color-white{
color:white !important;
font-size: 14px !important;
}
.indexpage .link-ref::after {
   color: white !important;
}

.trust-logos-wrapper {
    overflow: hidden;
    width: 100%;
    -webkit-overflow-scrolling: touch;
}

.trust-logos-scroll {
    display: flex;
    align-items: center;
    animation: scroll-left 40s linear infinite;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
}


.trust-logos-scroll img {
    max-height: 50px;
    margin: 0 30px;
    object-fit: contain;
    -webkit-transform: translateZ(0);
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.trust-logos-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  animation: 50s linear infinite marquee !important;
  width: max-content;
  min-width: 200vw; /* Ensures enough width for smooth scroll */
}

.align-self-first-baseline
{
    align-self: first baseline !important;
    margin-left: 30px !important;
}

.profile-container{
    display: flex;
    gap: 5px;
}