.baby-brand-table th {
    width: 100%;
}

.contact_acto_main_form_container {
    display: none;
}




.case-study-section {
    max-width: 1400px;
    margin: 0 auto;

    padding: 1px 20px;
}

.tailord-main-heading p {
    text-align: left;
    font-size: 18px;
    color: #6d6e76;
    font-weight: 400;

}

.tailord-main-heading {
    max-width: none;

}


/* ===== SECTION 1: Project Overview ===== */
.overview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    background: #ffffff;

    padding: 31px 60px;
    border-radius: 20px;

    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.overview-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}

.overview-text h3 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.7s ease-out 0.2s;
}




.overview-img {
    /* border-radius: 16px; */
    overflow: hidden;

    transform: scale(1);
    transition: transform 0.5s ease;
}



.overview-img img {
    width: 100%;
    height: 505px;

    display: block;
    transition: transform 0.8s ease;
}

/* ✅ Only image zoom */
.overview-img:hover img {
    transform: scale(1.03);
}


/* ===== SECTION 2: Key Highlights ===== */
.highlights-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: start;
    background: #f3f3f3;
    padding: 0px 60px;
    border-radius: 20px;

    margin-top: 60px;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.highlights-wrapper.visible {
    opacity: 1;
    transform: translateY(0);
}



.download-btn:hover::before {
    left: 100%;
}

/* Responsive */
@media (max-width: 1024px) {

    .overview-wrapper,
    .highlights-wrapper {
        grid-template-columns: 1fr;

        padding: 0px 9px;
        gap: 50px;
    }

    .overview-img img {
        height: auto;
    }
}

@media (max-width: 768px) {
    .case-study-section {

        padding: 0.1px;

    }

    .tailord-main-heading h2 {
        font-size: 36px;
    }

    .overview-wrapper,
    .highlights-wrapper {
        padding: 40px 25px;
    }

    .metric-item {
        padding: 8px 0px;
    }

    .metric-number {
        font-size: 50px;
    }

    .overview-img img {
        height: auto;
    }
}

@media (max-width: 480px) {
    .tailord-main-heading h2 {
        font-size: 30px;
    }

    .overview-text h3 {
        font-size: 26px;
    }

    .metric-item {
        flex-direction: column;
    }

    .metric-number {
        min-width: auto;
        margin-bottom: 0px;
    }

    .download-btn {
        width: 100%;
        text-align: center;
    }

    .overview-img img {
        height: auto;
    }
}

.case-study-second-sec {
    background: #f3f3f3;
}

/* Diagonal Separator Styles */
.diagonal-separator {
    height: 100px;
    /* Controls the height of the diagonal section */
    background: #f3f3f3;
    position: relative;
    margin-top: 10px;
}

.diagonal-separator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Create the diagonal cut using clip-path (for simplicity and cross-browser) */
    clip-path: polygon(0 0, 100% 0, 100% 100px, 0 0);
    background: white;
    /* Color of the section above */
}

.diagonal-separator-reverse {
    height: 100px;
    background: white;
    /* Color of the section below */
    position: relative;
}

.diagonal-separator-reverse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Inverted diagonal cut */
    clip-path: polygon(0 0, 100% 0, 0 100px);
    background: #f3f3f3;
}

.sub-heading {
    color: #290660;

}

.the-challange-heading {
    font-size: 22px !important;

}

.key-highlight {
    /* margin-top:0px !important; */
    font-weight: 600;
}

@media (max-width: 768px) {
    .key-highlight {
        padding: 20px 25px !important;
        margin-top: 0px !important;
    }
}


.key-paragraph {
    color: #4a5568 !important;
    font-weight: 400 !important;
    font-size: 17px !important;
}


/* cta */
.about-us-btn {


    margin: auto;
    display: block;
}

input.shelf-cta-btn {
    background-color: #290660;
    padding: 12px;
}

/* btn */
/* Tablet (≤992px) */
@media (max-width: 992px) {
    .w-25.shelf-cta-btn.shelf-cta.about-us-btn.mt-5 {
        width: 40% !important;
    }
}

/* Mobile (≤768px) */
@media (max-width: 768px) {
    .w-25.shelf-cta-btn.shelf-cta.about-us-btn.mt-5 {
        width: 60% !important;
    }
}

/* Small Mobile (≤480px) */
@media (max-width: 480px) {
    .w-25.shelf-cta-btn.shelf-cta.about-us-btn.mt-5 {
        width: 60% !important;
    }
}


/* new */
/* Highlights List Styles */
.highlights-list-container {
    padding: 0;
}

.highlights-list {
    list-style: disc;
    padding-left: 25px;
    margin: 0;
}

.highlight-item {
    margin-bottom: 25px;
}

.highlight-title {
    color: #290660;
    margin-bottom: 8px;
    font-size: 18px;
    text-align: left;
}

.highlight-title strong {
    font-weight: 600;
}

.highlight-description {
    color: #4a5568;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .highlights-list {
        padding-left: 20px;
    }

    .highlight-title {
        font-size: 20px;
    }

    .highlight-description {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .highlights-list {
        padding-left: 15px;
    }

    .highlight-title {
        font-size: 18px;
    }

    .highlight-description {
        font-size: 15px;
    }
}

.key-paragraph {
    color: #4a5568 !important;
    font-weight: 400 !important;
    font-size: 17px !important;
}

#Download-btn {
    scroll-margin-top: 50px;
}

/* ============================================== */

/* Responsive */
/* @media (max-width: 991px) {

    .overview-wrapper,
    .highlights-wrapper {
        grid-template-columns: 1fr 1fr;
        padding: 30px 20px;
        gap: 40px;
    }

    .overview-img img {
        height: auto;
    }
}

@media (max-width: 768px) {
    .case-study-section {
        padding: 0.1px;
    }

    .tailord-main-heading h2 {
        font-size: 36px;
    }

    .overview-wrapper,
    .highlights-wrapper {
        padding: 30px 20px;
    }
} */