*{
    padding: 0;
    margin: 0;
}
*::selection{
    color: white;
    background-color: orangered;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

body {
  font-family: 'Poppins', sans-serif;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: #fdf8f8;
    color: #222;
    line-height: 1.6;
}

.warper {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 10px;
}

header {
    padding: 10px 0;
}

.head_text h1 {
    font-size: 1.4rem;
    color: #cc0000;
}

.img_1 {
    width: 50px;
    height: auto;
    display: block;
}

.register {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

nav {
    position: sticky;
    top: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    border-radius: 20px;
    background-color: #f2f2f2;
    width: 95%;
    max-width: 1000px;
    margin: auto;
    box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    gap: 10px;
}

.main {
    border-radius: 20px;
    width: 95%;
    max-width: 1000px;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.search {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px;
    
}

.search h1 {
    font-size: 1.2rem;
    color: #333;
}

.search_button {
    width: 800px;
    max-width: 500px;
    height: 50px;
    border-radius: 30px;
    background-color: #cc0000;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.search_button:hover {
    background-color: #990000;
}

.img_2 {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    display: block;
    margin: auto;
    filter: drop-shadow(0 40px 6px rgba(0, 0, 0, 0.1));
}


/*Start edu part from here*/

.edu {
    padding: 30px 10px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.myth {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    justify-content: center;
    padding: 10px;
}

.myth_card {
    border-left: 5px solid red !important;
    background-color: #ffe6e6;
    border-radius: 12px;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.myth_card .truth {
    display: none;
    margin-top: 10px;
    font-size: 14px;
    color: #333;
}

.myth_card.expanded .truth {
    display: block;
}

.education {
    display: flex;
    flex-direction: column;
    gap: 30px;
    justify-content: center;
    align-items: center;
}

.edu_card {
    background-color: #e6f0ff;
    border-left: 5px solid #3366cc;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.edu_card h2 {
    color: #660000;
    margin-bottom: 10px;
}

.edu_card p, .edu_card ul {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.truth{
    background-color: #fff0f0;
    border: 1px solid #ffcccc;
    padding: 15px;
    border-radius: 10px;
    font-weight: normal;
    font-size: 15px;
    color: #444;
    transition: all 0.3s ease;
}


.img_3 {
    width: 50px;
    height: auto;
    aspect-ratio: 1 / 1;
    display: block;
}

@media screen and (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        text-align: center;
    }

    .head_text h1 {
        font-size: 1.1rem;
        width: 100%;
    }

    .registration {
        align-self: center;
    }

    .img_1 {
        width: 45px;
    }

    .edu_card {
        padding: 15px;
        width: 92%;
    }

    .myth_card {
        font-size: 15px;
        width: 92%;
    }
}

@media screen and (max-width: 480px) {

    .search_button{
        max-width: 300px;
    }
    nav {
        padding: 8px;
        gap: 12px;
    }

    .head_text h1 {
        font-size: 1rem;
        width: 100%;
        text-align: center;
    }

    .search h1 {
        font-size: 1rem;
    }

    .search_button {
        font-size: 14px;
        height: 45px;
    }

    .edu_card h2 {
        font-size: 1.1rem;
    }

    .edu_card p, .edu_card ul {
        font-size: 14px;
    }

    .edu_card {
        font-size: 13.5px;
        width: 94%;
    }

    .myth_card {
        font-size: 13.5px;
        width: 94%;
    }

    .truth {
        font-size: 13px;
    }

    .registration {
        align-self: center;
    }

    
}
footer{
    background-color: black;
}
.ft_1{
    color: white;
}
.img_3 {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
}
.foot{
    display: flex;
    justify-content: center;
}

.search_button:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}
