body {

    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0c9d1;
    text-align: center;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #e91e63;
    color: white;
    padding: 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.confuse2 {
    width: 500px;
    height: 400px;
}

nav h1 {
    font-size: 25px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.section {
    display: none;
    padding: 20px;
    margin-top: 60px; /* Adjusted for fixed navbar */
}

.section.active {
    display: block;
}



.hidden {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    background-color: #fff3f8;
    padding: 20px;
    border-radius: 10px;
}

input {
    display: block;
    margin: 10px auto;
    padding: 10px;
    width: 80%;
    max-width: 300px;
    border: 2px solid #e91e63;
    border-radius: 5px;
}

.title img {
    width: 70px;
    height: 60px;
}

.title {
    display: flex;
    flex-direction: row;
}

.homeContainer img {
    height: 360px;
    width: 450px;
}

.btn {
    background-color: #e91e63;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    position: absolute;
    bottom: 50px;
    right: 600px;
    height: 50px;
    width: 150px;
    font-size: 1.1em;
    text-decoration: none;
    margin-top: 50px;
}

.btn:hover {
    transform: scale(1.1);
    transition: transform 0.1s ease-in-out;
}

/* Chat Button */
.cb {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 12px 18px;
    font-size: 16px;
    background: #e91e63;
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.cb:hover {
    background: #ff4081;
}

/* Chat Container */
.c1 {
    position: fixed;
    bottom: 70px;
    right: 20px;
    width: 300px;
    background: white;
    border: 2px solid #ff4081;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: none;
    z-index: 1000;
}

/* Messages */
.msg {
    height: 250px;
    overflow-y: auto;
    padding: 10px;
    border-bottom: 2px solid #ddd;
    display: flex;
    flex-direction: column;
    gap: 10px;
    scroll-behavior: smooth;
}

/* Input Box */
.In-box {
    display: flex;
    margin-top: 10px;
    gap: 10px;
}

.In-box:focus{
    background: #e8e8e8;
}

.assistant{
background: #e0e0e0;
color:black;
align-self: flex-start;
padding: 12px 15px;
border-radius: 12px;
box-shadow: 0 3px 8px(rgba(0, 0, 0, 0.1));
}

#userInput {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px;
    outline: none;
    background: #f1f1f1;
    transition: 0.3s;
    font-size: 14px;
}

.send {
    padding: 10px 14px;
    border: none;
    background: #e91e63;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 64, 129, 0.3);
}

.send:hover{
    background: #e63972;
    box-shadow: 0 8px 20px rgba(255, 64, 129, 0.5);
}


.down2{
    display: flex;
    flex-direction: row;
    column-gap: 100px;
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 80px;
   
 
    
    
}

.PisFine{
    width: 400px;
    height: 550px;
    margin-left: 40px;
    border-radius: 6px;
    
}

.article{
    text-align: left;
    height: 500px;
    width: 700px;
    /* margin-right: 130px; */
    padding: 20px;
    border-radius: 6px;

    
}


/* Login Section */
#login {
    background: rgba(255, 255, 255, 0.2); /* Transparent background */
    backdrop-filter: blur(10px); /* Blur effect for a modern look */
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 350px;
    margin: 50px auto;
    text-align: center;
    margin-top: 200px;
}

#login h2 {
    color: #e91e63;
    font-size: 24px;
    margin-bottom: 15px;
}

#login input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 2px solid #e91e63;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.3);
    outline: none;
    font-size: 16px;
    color: #333;
}

#login input::placeholder {
    color: #555;
}

#login button {
    background: #e91e63;
    color: white;
    padding: 12px;
    width: 100%;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

#login button:hover {
    background: #ff4081;
    transform: scale(1.05);
}

.highlight{
    font-weight: bold;
    color:#ff4081;

}
.points{
    text-align: left;
    margin-top: 5px;
}
.points li{
    margin-bottom: 5px;
}













h1{
    color:  #eeebec;
    font-style:inherit;
    /* font-weight: 900px; */
}

    .foot-panel1{
        background-color: #e91e63 ;
        color: white;
       height: 50px;
       display: flex;
       justify-content: center;
       align-items: center;
       font-size:2.5rem;
    }
    .foot-panel2{
        background-color: #2e1b29;
        color: white;
        height: 250px;
        display: flex;
        justify-content: space-evenly;
        padding-top: 30px;

    }
     ul a{
        display: blocK;
        margin-top:19px ;
        color: #dddddd;
        font-size: larger;
    }

    .foot-panel3{
        background-color: #e91e63;
        color:white;
        border-top: 0.5px solid white;
        height: 68px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
      


    .panel0{
        position: absolute;
        left: 25px;
        
    }
