@charset "utf-8";

.heading {
    width: 70%;
    margin: 100px auto 50px auto;
}

    .heading h1 {
        font-size: clamp(20px, 4vw, 38px);
        color: whitesmoke;
        margin: 0px auto 30px auto;
        text-align: center;
        animation: pageLoad 1.5s;
        position: relative;
    }

        .heading h1 span {
            color: whitesmoke;
            background-color: rgb(100, 35, 169);
            padding: 0px 10px 0px 10px;
            position: relative;
        }

        .heading h1::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 1.5px;
            transform: translateY(-50%);
            top: 50%;
            background: rgb(100, 35, 169);
            z-index: -0;
            left: 0;
        }

    .heading p {
        font-size: clamp(10px,20px,25px);
        text-align: center;
        color: #6c7279;
        text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.2);
    }

    .heading p span {
        color :#8A56AC;
        font-weight : bold;
    }

/* General styles */
section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background-color: white;
    min-height: 50vh;
    margin: 0px 0px 50px 0px;
    padding: 0;
}

.container {
    width: 90%;
    padding: 20px 30px;
    height: auto;
}

.tab-box {
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-bottom: 2px solid #ddd;
    position: relative;
    margin: 0px 0px 30px 0px;
}

    .tab-box .tab-btn, .tab-btn2 {
        font-size: clamp(8px,13px,20px);
        font-weight: 600;
        color: #666;
        background: none;
        border: none;
        padding: 12px 20px;
        cursor: pointer;
        text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.1);
        transition: color 0.3s ease;
    }

        .tab-box .tab-btn:hover,
        .tab-box .tab-btn.active,
        .tab-box .tab-btn2:hover,
        .tab-box .tab-btn2.active {
            color: #333;
        }

.line, .line2 {
    position: absolute;
    bottom: -2px;
    left: 0;
    height: 3px;
    background-color: #3498db;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.content-container, .content-container2 {
    display: none;
    align-items: center;
    justify-content: center;
}

    .content-container.active, .content-container2.active {
        display: flex;
    }

.content, .content2 {
    margin: 0px 20px 0px 0px;
    animation: fade-in 0.5s ease forwards;
}

.content h2, .content2 h2 {
    margin: 0px 0px 15px 0px;
    color: #333;
    font-size: clamp(20px,35px,45px);
    text-align: left;
}

.content p, .content2 p {
    color: #555;
    line-height: 1.6;
    text-align: justify;
    font-size: clamp(5px,4vw,15px);
}

.image-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.image-container2 {
    width : 200%;
    margin : 0 auto;
    max-width : 900px;
}

.image-container img, .image-container2 img {
    max-width: 100%;
    animation: fade-in 0.5s ease forwards;
}

.image-parent {
    position: relative;
    width: 100%; /* Ensure the container scales with the layout */
    margin: 0 auto; /* Center the container */
}

.image-child1 {
    width: 100%; /* Make the first image responsive */
    height: auto; /* Maintain aspect ratio */
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}

.image-child2 {
    position: absolute;
    bottom: -20px; /* Position at the bottom */
    right: -20px; /* Position at the right */
    width: 48%; /* Make the overlay image smaller */
    height: auto;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease; /* Smooth resizing transitions */
    border: 1.5px solid whitesmoke;
}

.imgs {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}

/* Keyframe animation */
@keyframes fade-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.testimonial {
    position: relative;
    width: 100%;
    padding: 0 0 50px 0;
    overflow: hidden;
}

    .testimonial .image {
        height: auto;
        width: 50%;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    }

    .testimonial .image2 {
        height: auto;
        width: 70%;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
    }

.image-flex {
    display: flex;
    justify-content : center;
    width : 35%;
    gap : 10px
}

.image-side {
    width: 100%;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}

    .testimonial .slide {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        row-gap: 30px;
        height: 100%;
        width: 100%;
    }

.slide p {
    text-align: center;
    padding: 0 160px;
    font-size: clamp(10px,14px,18px);
    font-weight: 400;
    color: #333;
    line-height : 1.5;
}

.slide .details {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.slide .video {
    width: 80%;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.1);
}

.details .name {
    font-size: clamp(15px,20px,25px);
    font-weight: bold;
    color: #333;
    text-align : center;
}

/* swiper button css */
.swiper-btn {
    height: 50px;
    width: 50px;
    border-radius: 50%;
    transition: all 0.8s ease;
}

    .swiper-btn svg {
        stroke: #333333;
        transition : all 0.75s ease;
    }

    .swiper-btn:hover svg {
        stroke: #6090ff;
        filter: drop-shadow(0px 0px 10px #6090ff);
    }

.swiper-pagination-bullet {
    background-color: rgba(0, 0, 0, 0.8);
}

.swiper-pagination-bullet-active {
    background-color: #6090ff;
}

/* Validation Report Section */
.ModelValidation {
    max-width: 700px;
    margin: 0 auto;
    border : 2px solid #ddd;
    border-radius : 15px;
    padding : 10px;
}

    .ModelValidation h2 {
        border-bottom: 2px solid #ddd;
        padding-bottom: 10px;
        font-size : 18px;
    }

.main-list {
    padding-left: 0;
    list-style-type: none;
}

    .main-list > li {
        margin-bottom: 10px;
        position: relative;
        overflow: hidden;
        color : #555;
    }

    .main-list h3 {
        margin-bottom: 5px;
        color: #2c3e50;
    }

    .main-list p {
        font-size : 15px;
        text-align : left;
        line-height : 1.6;
        color : #555;
    }

.sub-list {
    padding-left: 20px;
    list-style : square;
    font-size : 15px;
}

.slide1 {
    min-height: 40vh;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 80px 0px 60px 0px;
}

.slide1-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 4rem;
    margin: 0 auto;
}

.slide1-content {
    flex: 1;
    font-size: 20px;
    margin: 0px 30px 0px 0px;
}

    .slide1-content h1 {
        font-size: clamp(15px, 23px, 30px);
        margin: 0px 0px 20px 0px;
        line-height: 1.5;
        text-align: left;
        color: black;
    }

    .slide1-content p {
        font-size: clamp(10px, 5vw, 15px);
        line-height: 2;
        text-align: justify;
    }

.slide1-image {
    flex: 1;
    max-width: 1000px;
    border: 2px solid black;
}

    .slide1-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .slide1-image.reveal {
        position: relative;
        transform: translateX(200px);
        opacity: 0;
        filter: blur(2px);
        transition: all 1s ease;
    }

        .slide1-image.reveal.visible {
            position: relative;
            transform: translateX(0px);
            opacity: 1;
            filter: blur(0px);
            transition: all 1s ease;
        }

.left1.reveal {
    position: relative;
    transform: translateX(-200px);
    opacity: 0;
    filter: blur(2px);
    transition: all 1s ease;
}

    .left1.reveal.visible {
        transform: translateX(0);
        opacity: 1;
        filter: blur(0px);
    }


.left2.reveal {
    position: relative;
    transform: translateX(-200px);
    opacity: 0;
    filter: blur(2px);
    transition: all 1.4s ease;
}

    .left2.reveal.visible {
        transform: translateX(0);
        opacity: 1;
        filter: blur(0px);
    }

/*slide 2*/
.slide2 {
    min-height: 40vh;
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    margin: 80px 0 80px 0;
    background-color: white;
    color: black;
}

.slide2-container {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem 4rem;
    margin: 0 auto;
}

.slide2-content {
    flex: 1;
    font-size: 20px;
    margin: 0px 0px 0px 30px;
}

    .slide2-content h1 {
        font-size: clamp(15px, 23px, 30px);
        margin: 0px 0px 20px 0px;
        line-height: 1.5;
    }

    .slide2-content p {
        font-size: clamp(10px, 5vw, 15px);
        line-height: 2;
        text-align: justify;
    }

.slide2-image {
    flex: 1;
    max-width: 1000px;
    border: 2px solid black;
}

    .slide2-image img {
        width: 100%;
        height: auto;
        display: block;
    }

    .slide2-image.reveal {
        position: relative;
        transform: translateX(-200px);
        opacity: 0;
        filter: blur(4px);
        transition: all 0.85s ease;
    }

        .slide2-image.reveal.visible {
            transform: translateX(0px);
            opacity: 1;
            filter: blur(0px);
        }

.right1.reveal {
    position: relative;
    transform: translateX(200px);
    opacity: 0;
    filter: blur(4px);
    transition: all 0.85s ease;
}

    .right1.reveal.visible {
        transform: translateX(0px);
        opacity: 1;
        filter: blur(0px);
    }

.right2.reveal {
    position: relative;
    transform: translateX(250px);
    opacity: 0;
    filter: blur(4px);
    transition: all 1s ease;
}

    .right2.reveal.visible {
        transform: translateX(0px);
        opacity: 1;
        filter: blur(0px);
    }

/* Responsive design for 320px - 425px */
@media (min-width : 200px) and (max-width: 425px) {
    .heading p {
        font-size: clamp(10px,15px,20px);
        text-align: center;
        color: #6c7279;
    }

    section {
        margin: 0 10px 30px 10px;
    }

    .container {
        width: 95%;
        padding: 10px;
        height: auto;
    }

    .tab-box .tab-btn,
    .tab-box .tab-btn2 {
        margin: 5px 0;
        width: 100%;
    }

    .tab-box .tab-btn, .tab-btn2 {
        font-size: clamp(5px, 7px, 12px);
        padding: 5px;
    }

    .content-container {
        flex-direction: column;
        text-align: justify;
    }

    .content {
        margin: 0 0 20px 0;
        width: 100%;
    }

    .content h2, .content2 h2 {
        margin: 0px 0px 15px 0px;
        color: #333;
        font-size: 20px;
    }

    .slide .video {
        width: 90%;
    }

    .slide .image, .slide .image2 {
        height: auto;
        width: 90%;
    }

    .slide p {
        padding: 0 20px;
        text-align: justify;
        line-height : 1.5;
        font-size : 12px;
    }

    .details .name {
        font-size: clamp(5px,15px,20px);
        font-weight: bold;
        color: #333;
        text-align : center;
    }

    .swiper-btn {
        display: none;
    }

    .image-parent {
        width: 85%;
    }

    .image-child2 {
        position: absolute;
        width: 48%; /* Adjust overlay image size */
        margin: 0px 15px 0px 0px;
        display: block;
    }

    .image-flex {
        display: flex;
        justify-content: center;
        width: 45%;
        gap: 5px
    }

    .content-container2 {
        flex-direction: column;
    }

    .content2 {
        margin: 0 0 20px 0;
        width: 100%;
    }

    .image-container2 {
        width: 100%;
    }

    .ModelValidation {
        width: fit-content;
    }

        .ModelValidation h2 {
            padding-bottom: 5px;
            font-size: 18px;
        }

        .main-list > li {
            padding : 0;
        }

    .main-list > li:hover {
        transform : none;
        border-left-color : transparent;
    }

    .main-list h3 {
        font-size : 15px;
    }

    .main-list p {
        font-size: 12px;
    }

    .sub-list {
        padding-left: 20px;
        list-style: square;
        font-size: 10px;
    }

    .slide1 {
        min-height: 30vh;
        margin: 20px 0px 40px 0px;
    }

    .slide1-container, .slide2-container {
        flex-direction: column;
        padding: 2rem;
        margin: 0 auto;
    }

    .slide1-content, .slide2-content {
        margin: 0;
    }

    .slide1-image, .slide2-image {
        order: -1;
        width: 100%;
    }

    .slide1-content h1, .slide2-content h1 {
        font-size: clamp(10px, 15px, 25px);
        margin: 0px 0px 20px 0px;
        line-height: 1.5;
    }

    .slide2 {
        margin: 0px auto 0px auto;
    }
}

/* Responsive design for 425px - 768px */
@media (min-width : 425px) and (max-width: 768px) {
    .heading p {
        font-size: clamp(10px,15px,20px);
        text-align: center;
        color: #6c7279;
    }

    section {
        margin: 0 10px 30px 10px;
    }

    .container {
        width: 95%;
        padding: 10px;
        height: auto;
    }

    .tab-box .tab-btn,
    .tab-box .tab-btn2 {
        margin: 5px 0;
        width: 100%;
    }

    .tab-box .tab-btn, .tab-btn2 {
        font-size: clamp(5px, 10px, 15px);
        padding: 7px;
    }

    .content-container {
        flex-direction: column;
        text-align: justify;
    }

    .content {
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    .content h2, .content2 h2 {
        margin: 0px 0px 15px 0px;
        color: #333;
        font-size: 20px;
    }

    .slide .video {
        width: 95%;
    }

    .slide .image, .slide .image2 {
        height: auto;
        width: 95%;
    }

    .slide p {
        padding: 0 20px;
    }

    .swiper-btn {
        display: none;
    }

    .image-flex {
        width : 47%;
        gap : 5px;
    }

    .image-parent {
        width: 90%;
    }

    .content-container2 {
        flex-direction: column;
    }

    .content2 {
        margin: 0 0 20px 0;
        width: 100%;
    }

    .image-container2 {
        width: 100%;
    }

    .ModelValidation {
        width: fit-content;
    }

    .slide1 {
        min-height: 30vh;
        margin: 20px 0px 40px 0px;
    }

    .slide1-container, .slide2-container {
        flex-direction: column;
        padding: 2rem;
        margin: 0 auto;
    }

    .slide1-content, .slide2-content {
        margin: 0;
    }

    .slide1-image, .slide2-image {
        order: -1;
        width: 100%;
    }

    .slide1-content h1, .slide2-content h1 {
        font-size: clamp(10px, 20px, 40px);
        margin: 0px 0px 20px 0px;
        line-height: 1.5;
    }

    .slide2 {
        margin: 0px auto 0px auto;
    }
}

@media (min-width: 769px) and (max-width : 1024px) {
    .heading p {
        font-size: clamp(14px,17px,20px);
        text-align: center;
        color: #6c7279;
    }

    .content-container2 {
        flex-direction: column;
    }

    .content2 {
        margin: 0 0 20px 0;
        width: 100%;
    }

    .image-container2 {
        width: 100%;
    }

    .content {
        margin: 0 20px 0 0;
        width: 100%;
    }

    .swiper-btn {
        display: none;
    }

    .slide p {
        padding: 0 20px;
    }

    .slide .video {
        width: 95%;
    }

    .slide .image, .slide .image2 {
        height: auto;
        width: 95%;
    }

    .image-flex {
        width: 47%;
        gap: 5px;
    }

    .image-parent {
        width: 90%;
    }

    .image-child2 {
        position: absolute;
        width: 50%;
    }

    .tab-box .tab-btn,
    .tab-box .tab-btn2 {
        width: 100%;
        font-size: 10px;
        padding : 10px 10px;
    }

    section {
        margin: 0 10px 30px 10px;
        padding: 10px;
    }

    .container {
        width: 95%;
        padding: 10px;
        height: auto;
    }

    .content-container2 {
        flex-direction: column;
    }

    .content h2,
    .content2 h2 {
        margin: 0px 0px 15px 0px;
        color: #333;
        font-size: 20px;
    }

    .ModelValidation {
        max-width: fit-content;
    }

    .slide1 {
        min-height: 30vh;
        margin: 20px 0px 40px 0px;
    }

    .slide1-container, .slide2-container {
        flex-direction: column;
        margin: 0 auto;
    }

    .slide1-content, .slide2-content {
        margin: 0;
    }

    .slide1-image, .slide2-image {
        order: -1;
        width: 100%;
    }

    .slide1-content h1, .slide2-content h1 {
        font-size: clamp(10px, 20px, 40px);
        margin: 0px 0px 20px 0px;
        line-height: 1.5;
    }

    .slide2 {
        margin: 0px auto 0px auto;
    }
}
