.sideNav {
    list-style: none;
    height: 500px;
    overflow-y: scroll;
}

.basetest {
    font-size: 18px;
}

.sideNav li {
    padding: 18px 0px;
    border-bottom: 1px solid black;
}

.sideNav a {
    color: rgba(90, 87, 87, 0.805);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: all ease-in-out .5s;
}

.sideNav li:hover a {
    color: black;
}


.screen-h {
    height: 80vh;
}

.overflow-y {
    height: 100vh;
    scroll-behavior: smooth;
    overflow-y: scroll;
    scrollbar-width: none;
    /* For Firefox */
    -ms-overflow-style: none;
}

.overflow-y::-webkit-scrollbar {
    display: none;
    /* For Chrome, Safari, and newer versions of Edge */
}

.right_padding {
    padding-right: 100px;
}

.navbar_bg {
    backdrop-filter: blur(10px);
    /* Adjust the blur intensity */
    -webkit-backdrop-filter: blur(10px);
}

.swiper {
    width: 100%;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mySwiper .swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .mySwiper .swiper-slide img {
    width: 450px;
    height: 320px;
} */

.h2_padding {
    padding: 20px 0px;
}

.box_btn {
    background-color: white;
    border: 1px solid black;
    padding: 5px 50px;
    transition: all ease-in-out .5s;
    margin-top: 25px;
}

.box_btn2 {
    background-color: white;
    border: 1px solid black;
    padding: 5px 50px;
    transition: all ease-in-out .5s;
}

.box_btn:hover {
    background-color: black;
    color: white;

}

.box_btn2:hover {
    background-color: black;
    color: white;

}

.casestudy_card {
    height: 100%;
    width: 100%;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
    padding: 20px;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 0px;
}

.avatar_img {
    width: 100px;
    height: 100px;
    border-radius: 50px;

}

.margin_bottom_50 {
    margin-bottom: 50px;
}

.resources_card {
    height: 300px;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    cursor: pointer;
    transition: all ease-in-out .5s;
}

.resources_card h2 {
    transition: all ease-in-out .5s;
}

.blog {
    background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.39)), url('/images2/blog.jpg');
    background-size: contain;
}

.ebooks {
    background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.39)), url('/images2/ebooks.jpg');
    background-size: contain;
}

.webinar {
    background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.39)), url('/images2/webinar.jpg');
    background-size: contain;
}

.faq {
    background-image: linear-gradient(rgba(0, 0, 0, 0.527), rgba(0, 0, 0, 0.39)), url('/images2/faq.jpg');
    background-size: contain;
}

.resources_card:hover h2 {
    transform: scale(1.2);
}









.form-wrapper {

    width: 90%;
    max-width: 600px;
    padding: 40px;
    border-radius: 12px;
    animation: fadeIn 1s ease-out;
}

.title {
    font-size: 28px;
    text-align: center;
    color: #333;
    margin-bottom: 10px;
}

.subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.contact-form {
    width: 100%;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-column {
    flex: 1;
    min-width: 250px;
}

.form-label {
    display: block;
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    border: 1px solid #ddd;
    transition: border-color 0.3s, transform 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #000000;
    outline: none;
    transform: scale(1.02);
}

.form-textarea {
    resize: none;
}

.submit-button {
    display: block;
    width: 100%;
    padding:
        12px;
    border: 1pz solid black;
    background-color: white;
    font-size: 18px;
    cursor: pointer;
    transition:
        all ease-in-out 0.3s, transform 0.3s;
    text-transform: uppercase;
}

.submit-button:hover {
    background-color: black;
    color: white;

}

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

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

@media (max-width: 768px) {
    .form-wrapper {
        padding: 30px;
    }

    .title {
        font-size: 24px;
    }

    .subtitle {
        font-size: 14px;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 540px) {
    .form-wrapper {
        padding: 20px;
    }

    .title {
        font-size: 20px;
    }

    .subtitle {
        font-size: 12px;
    }

    .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .form-column {
        min-width: 100%;
    }

    .form-label {
        font-size: 12px;
    }

    .form-input,
    .form-textarea {
        padding: 10px;
    }

    .submit-button {
        padding: 10px;
        font-size: 14px;
    }
}