@import url('https://fonts.googleapis.com/css2?family=Tuffy:ital,wght@0,400;0,700;1,400;1,700&display=swap');

:root {
    --background-color: #ffffff;
    --background-color-black: #000000;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --accent-color: #ffb300;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --btn-hover: #000000;
    --color-text: rgb(0, 0, 0);
}



html {
    scroll-padding-top: 100px;
    scroll-behavior: smooth;

}


body {
    background-color: var(--background-color);
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;

}

/* Header styles - make sure header is responsive */
header.header {
    padding: 15px 0;
    background-color: rgba(0, 0, 0, 0.9);
    transition: all 0.3s ease;
    border-bottom: 2px solid #2d2d2d;
}

.container-fluid {
    padding: 0 20px;
}

.logo img {
    max-height: 40px;
    width: auto;
}

main {
    padding-top: 100px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 100px 0px 0px 0px;
    color: var(--color-text);
}

.case_heading {
    padding: 10px;
    font-size: 40px;
    font-weight: 800;
    /* color: white; */
}


.tabs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 10px;
}


.button-link {
    width: 100%;

    background-color: var(--accent-color);
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0 2px 5px #8d8c8ce7;
    color: #25373f;
    text-align: center;
    transition: transform .2s ease-in-out;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    align-items: center;
    align-content: center;

}

.button-link:hover {
    background-color: black;
    color: #ffb300;
}

/* .case_images {

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px;
} */

.imageSlider img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    /* filter: grayscale(100%); */
    /* transition: filter .5s ease; */
}

.sliderTrack {
    display: flex;
    transition: transform 0.5s ease;
    background-color: #000000;
}

.imageSlider {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

.swipe_case_image {
    width: 100%;
    height: 400px;
    object-fit: contain;
    border-radius: 12px;
 
}





/* 
.case_images img:hover {
    filter: grayscale(0%);
} */

.problem_statement {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-top: 20px;
}

.title {

    font-size: 30px;
    font-weight: 600;
    border-bottom: 2px solid #2d2d2d;
    margin-top: 20px;
}

.content {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 400;
    text-align: justify;
    border-radius: 10px;
    /* background-color: #3c3c3ca1; */
    padding: 20px;
    line-height: 2;
}

.challenge {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-top: 20px;
}



.solution {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-top: 20px;
}



.solution_content {
    margin-top: 10px;
    font-size: 16px;
    font-weight: 14px;
    text-align: justify;
}

.key_features {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-top: 20px;
}





.benefits {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-top: 20px;
}

.benefits_container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.benefits_content {
    background-color: var(--background-color);
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 8px #0003;
    transition: all 300ms;
    gap: 10px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);

}


.benefits_content:hover {
    background-color: #b9b8b8;
    scale: 1.03;
    border: 0.75px solid #ffb300;
}


.benefits_sub_title {
    display: flex;
    min-height: 60px;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #707070;
    margin-bottom: 10px;
}

.benefits_desc {
    font-size: 16px;
    text-align: justify;
}

.conclusion {
    display: flex;
    flex-direction: column;
    padding: 10px;
    margin-top: 20px;
}














@media(min-width: 629px) and (max-width: 1115.5px) {
    .button-link {
        height: 70px;
    }
}

@media (max-width: 829.5px) {

    /* .swipe_case_image {
        height: 400px;
    } */



}




@media (max-width: 629.5px) {
    .tabs {
        flex-direction: column;

    }

    .button-link {
        font-size: 12px;
    }

    .case_heading {
        font-size: 30px;
    }

    .title {
        font-size: 24px;
    }

    /* .swipe_case_image {
        height: 300px;
    } */



}

@media (max-width: 440px) {
    .case_heading {
        font-size: 24px;
    }

    .title {
        font-size: 18px;
    }

    .benefits_desc {
        font-size: 12px;
    }

    .content {
        font-size: 12px;
    }

    .benefits_container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    /* .swipe_case_image {
        height: 200px;
    } */


}









/* Footer responsiveness */
footer.footer {
    padding: 40px 0 10px;
}

.footer-top {
    padding-bottom: 20px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer_icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.footer-links h4 {
    font-size: 16px;
    margin-bottom: 15px;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    font-size: 14px;
}

.copyright {
    font-size: 13px;
    padding: 10px 0;
}