@import url('https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800,900&display=swap');
*
{
    margin: auto;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    background: #17BEBB;
min-height: auto;
margin: auto;
}

header{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;

}

header ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

header ul li {
    list-style: none;
    margin-left: 20px;
}

header ul li a {
    text-decoration: none;
    padding: 6px 15px;
    color: #fff;
    border-radius: 20px;
}

.dropdown {
    position: relative;
    display: inline-block;
    border-radius: 10px; /* Add rounded corners to the dropdown */

}

/* Style for the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #212020; /* Background color for the dropdown */
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); /* Box shadow for the dropdown */
    z-index: 1; /* Ensure the dropdown appears above other elements */
    right: 0;
}

/* Style for the dropdown links */
.dropdown-content a {
    color: rgb(109, 50, 212);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    border-radius: 10px; /* Add rounded corners to the dropdown */
    transition: color 0.3s; /* Add a smooth color transition */
}

/* Style for the dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd; /* Background color on hover */
    color: #2b1055; /* Change the font color on hover */

}

/* Show the dropdown content when hovering over the parent item */
.dropdown:hover .dropdown-content {
    display: block;
}

header ul li a:hover {
    color: #2b1055;
    background: #fff;
}

header .logo{
    color: #fff;
    font-weight: 900;
    text-decoration: none;
    font-size: 4em;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.slideshow-container {
    position: relative;
    width: auto; /* Set the width of the container */
    height: 350px; /* Set the height of the container */
    overflow: hidden;
    
}

/* CSS for the slideshow images */
.mySlides {
    display: none;
    width: 100%; /* Set the width to a percentage or a fixed value */
    max-height: 200px; /* Set the maximum height as needed */
}

.mySlides img {
    width: 100%;
    height: auto;
    object-fit: cover; /* Maintain aspect ratio and cover the container */
}

/* CSS for the navigation dots */
.dot {
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: none;
    transition: background-color 0.6s ease;
}

/* CSS for the active dot */
.active {
    background-color: #717171;
}

section {
    position: relative;
    width: 100%;
    height: 30vh;
    display: flex; /* Use flexbox for centering */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
    text-align: center; /* Center the buttons horizontally */
}

.btn {
    text-decoration: none;
    padding: 8px 30px;
    border-radius: 30px;
    background: #130909;
    color: #2b1055;
    font-size: 1.5em;
    color: #fff;
    margin: 0 20px; /* Add margin for spacing between buttons */
}

.btn:hover {
    color: #2b1055;
    background: #fff;
}

.btnLogin {
    text-decoration: none;
    padding: 8px 30px;
    border-radius: 30px;
    background: #130909;
    color: #2b1055;
    font-size: 0.5em;
    color: #fff;
    margin: 0 20px; /* Add margin for spacing between buttons */
    font-size: medium;
}

.btnLogin:hover {
    color: #2b1055;
    background: #fff;
}

footer {
    background-color: #0E34A0;
    color: #ffffff;
    padding: 20px;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer.qFooter{
    background-color: #ffffff;
    color: #0E34A0;
    z-index: 1;
    margin-top: auto;
    position:relative;
}

.copyright {
    font-size: 14px;
}

.additional-info {
    font-size: 12px;
}

/* Add CSS styles for the sentences list */
.sentences {
    list-style: none;
    padding: 0;
    margin: 20px 0; /* Add vertical margin between sentences */
}

.sentences li {
    font-size: 16px; /* Adjust font size as needed */
    margin-bottom: 10px; /* Add vertical spacing between sentences */
}

#email {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

#password {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

#loginBtn{
    margin: auto;
    margin-top: 10px;
}

.register{
    background-color: #00A8E8;
    margin: auto ;
    text-align: center;
    border: 4px solid #000000; /* You can customize the color and thickness of the border */
    padding: 20px; /* Optional: Add some padding to the div */
    width: 800px; /* Optional: Set a specific width for the div */
    margin: auto; /* Optional: Center the div on the page */
    border-radius: 10px; /* Adjust the value to control the roundness of the corners */
height: auto;
}

select {
    width: 100%;
    padding: 8px;
    margin-top: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.video-box {
    width: 160px; /* Set the width of the video box */
    height: 90px; /* Set the height of the video box */
    position: fixed;
    right: 20px; /* Distance from the right edge of the viewport */
    bottom: 20px; /* Distance from the bottom edge of the viewport */
    background-color: #fff; /* Set the background color of the box */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5); /* Add a shadow effect */
}

/* Style the video element */
video {
    width: 100%;
    height: 100%;
}


/* Define background colors for the pop-up boxes */
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(43, 16, 85, 0.9); /* Similar to your website's background gradient */
    padding: 20px;
    border-radius: 10px; /* Add border-radius for curved edges */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 9998;
    width: 300px; /* Set the width of the popup box */
}

.login-popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #00FFFF; /* Similar to your website's background gradient */
    padding: 20px;
    border-radius: 10px; /* Add border-radius for curved edges */
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
    z-index: 9995;
    width: auto; /* Set the width of the popup box */
    height: auto;
    opacity: 1;
}

/* Style for the overlay background */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9994;
}

.overlay1{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9996;
}

/* Style the close button (x) */
.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 24px;
    color: #fff;
}

.close-button:hover {
    color: #ff0000; /* Change the color on hover if desired */
}

h1 {
    text-align: center;

}

h1.questionnaire{
    font-size: 48px;
    color: #FF6347;
}

h2.syl{
    color: white;

 }


.question {
    border: 1px solid rgb(14, 13, 11);
    padding: 10px;
    margin: 10px auto; /* Center the question divs horizontally */
    width: 50%; /* Adjust the width as needed */
    text-align: center; /* Center-align the content */
    background-color: #FFA500;
    border-radius: 10px; /* Adjust the value to control the roundness of the corners */
}

.question1 {
    border: 1px solid rgb(20, 18, 6);
    padding: 10px;
    margin: 10px auto; /* Center the question divs horizontally */
    width: 50%; /* Adjust the width as needed */
    text-align: center; /* Center-align the content */
    background-color: #00ff66;
    border-radius: 10px; /* Adjust the value to control the roundness of the corners */

}

.question2 {
    border: 1px solid rgb(20, 18, 6);
    padding: 10px;
    margin: 10px auto; /* Center the question divs horizontally */
    width: 50%; /* Adjust the width as needed */
    text-align: center; /* Center-align the content */
    background-color: #FFB6C1;
    border-radius: 10px; /* Adjust the value to control the roundness of the corners */

}

.question p {
    font-weight: bold;
    color: #fff;

}

.question1 p {
    font-weight: bold;
    color: #0c0b0b;

}

.question2 p {
    font-weight: bold;
    color: #100e0e;

}

.question label {
    display: inline-block; /* Display answer choices in a horizontal line */
    margin-right: 10px; /* Add some spacing between choices */
    /* color: green; */
}

.question1 label {
    display: inline-block; /* Display answer choices in a horizontal line */
    margin-right: 10px; /* Add some spacing between choices */
    /* color: green; */
}

.question2 label {
    display: inline-block; /* Display answer choices in a horizontal line */
    margin-right: 10px; /* Add some spacing between choices */
    /* color: green; */
}

.question label.truee{
        color: green;


}

.question1 label.truee{
    color: green;


}

.question2 label.truee{
    color: green;


}

.question label.in-betweenn{
    color: yellow;

}

.question1 label.in-betweenn{
    color: yellow;

}

.question2 label.in-betweenn{
    color: yellow;

}

.question label.falsee{
    color: red;

}

.question1 label.falsee{
    color: red;

}

.question2 label.falsee{
    color: red;

}


input[type="radio"].true:checked + label {
    color: green; /* Change the color for "True" when selected */
}

input[type="radio"].in-between:checked + label {
    color: orange; /* Change the color for "In Between" when selected */
}

input[type="radio"].false:checked + label {
    color: rgb(209, 30, 164); /* Change the color for "False" when selected */
}

/* Style the radio buttons themselves */
input[type="radio"] {
    -webkit-appearance: none; /* Remove default radio button styles on some browsers */
    appearance: none;
    width: 16px;
    height: 16px;
    border: 2px solid #150a0a; /* Border color for unselected radio buttons */
    border-radius: 50%; /* Make the radio button a circle */
    outline: none;
}

input[type="radio"]:checked {
    background-color: #2222e1; /* Background color for selected radio buttons */
    border-color: #100c0c; /* Border color for selected radio buttons */
}

input[type="radio"]{
    background-color: white;
} 

/* Add this CSS to your stylesheet or in a <style> tag in the <head> of your HTML */

.pagination {
    display: flex; /* Use flexbox to create a horizontal layout */
}

/* Optional: Add some spacing between the buttons */
.pagination button {
    margin-bottom: 5px;
    z-index: 2;
    text-align: center;

}

.pagination button:hover {
    color: #2b1055;
    background: #fff;
}


button {
    display: block;
    margin: 20px auto;
    text-decoration: none;
    padding: 8px 30px;
    border-radius: 30px;
    background: #130909;
    color: #2b1055;
    font-size: 1.5em;
    color: #e1dada;
}

#prevBtn{
    margin-left: auto;
}

#nextBtn {
    margin-left: auto; 
}

#submitQuestion{
    margin-right: auto;
}

#submit1{
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    height: auto;
    
}

.button:hover {
    color: #2b1055;
    background: #fff;
}

#result {
    text-align: center;
    display: none;
}

#aspect-scores {
    display: inline-block;
    text-align: left;
}

.question-container {
    display: none;
}

.question-container.question{
    border-style: double;
}

.active-page {
    display: block;
}

@media (max-width: 767px) {
    body {
        font-size: 10px;
        width: auto;
        height: auto;
        margin: auto;
    }

    header {
        padding: 10px;
    }

    header ul {
        display: none;
        flex-direction: column;
        text-align: center;
        position: absolute;
        width: 100%;
        background-color: #17BEBB;
        top: 60px;
        left: 0;
        z-index: 1;
    }

    header ul li {
        margin: 0;
        width: 100%;
        padding: 10px;
    }

    header ul li a {
        display: block;
        padding: 10px;
    }

    .question {
        border: 1px solid rgb(14, 13, 11);
        padding: 10px;
        margin: 10px auto; /* Center the question divs horizontally */
        width: auto; /* Adjust the width as needed */
        text-align: center; /* Center-align the content */
        background-color: #FFA500;
        border-radius: 10px; /* Adjust the value to control the roundness of the corners */
        height: auto;
    }

    .question1 {
        border: 1px solid rgb(20, 18, 6);
        padding: 10px;
        margin: 10px auto; /* Center the question divs horizontally */
        width: auto; /* Adjust the width as needed */
        text-align: center; /* Center-align the content */
        background-color: #00ff66;
        border-radius: 10px; /* Adjust the value to control the roundness of the corners */
        height: auto;

    }
    
    .question2 {
        border: 1px solid rgb(20, 18, 6);
        padding: 10px;
        margin: 10px auto; /* Center the question divs horizontally */
        width: auto; /* Adjust the width as needed */
        text-align: center; /* Center-align the content */
        background-color: #FFB6C1;
        border-radius: 10px; /* Adjust the value to control the roundness of the corners */
        height: auto;

    }

    .register{
        background-color: #00A8E8;
        margin: auto ;
        text-align: center;
        border: 4px solid #000000; /* You can customize the color and thickness of the border */
        padding: 20px; /* Optional: Add some padding to the div */
        width: auto; /* Optional: Set a specific width for the div */
        margin: auto; /* Optional: Center the div on the page */
        border-radius: 10px; /* Adjust the value to control the roundness of the corners */
        height: 600px;
    }
    .menu-icon {
        display: block;
    }

    .menu-icon:checked + ul {
        display: flex;
    }
}
