body::before {
  content: "";
  position: fixed;      
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   background-color: #1E1F26; 
  z-index: -1;          
}


button {
  padding: 7px 15px;
  border-radius: 8px;
  border: none;
  font-size: 18px;
}

#chatbot {
  background-color: #2E2E2E;
  width: 400px;
  border-radius: 10px;
  padding: 15px;
  box-shadow: 0 0 12px 4px #00F8F8; 
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#chatbot:hover {
  
    background-color: #2E2E2E;
    width: 400px;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 0 12px 4px #E0295C;; 
        position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

#messages {
  height: 300px;
  text-align: left;
  overflow-y: auto;
}

.user {
 color: #E0295C;
}

.bot {
  color: #00F8F8;
}


.navbar {
        display: flex;
        align-items: center;
        padding: 20px 50px;
        background-color: #ff0000;
        position: relative; 
        z-index: 1;  
    }

.bg2{
    background-color: #E0295C;
}
.nav-center {
    display: flex;
    justify-content: center;
    flex: 1; 
    gap: 40px; 
}
/*m4 meeans nav bar logo */
.m4 {
    color: #00F8F8;
    text-decoration: none;
    font-size: 25px;
    margin-bottom: 890px;
    transition: color 0.3s ease, transform 0.3s ease; /* smooth hover */
}
/*m4 hover efect on the logo*/
.m4:hover {
    color: #E0295C;
    transform: scale(1.16); 
}

/*nav bar ankor tags */
.m5 {
    color: #00F8F8;
    text-decoration: none;
    font-size: 25px;
    margin-bottom: 890px;
    transition: color 0.3s ease, transform 0.3s ease; /* smooth hover */
}

/*hover effect*/
.m5:hover {
    color: #E0295C;
    transform: scale(1.16); /* smooth growth */
}

.btn7 {
  display: inline-block;
  padding: 12px 24px;
  background-color: #1E1F26; 
  color: #00F8F8;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  margin-right: 40px;
  transition: all 0.3s ease;
  position: relative;
  top: -440px;
}

.btn7:hover {
  background-color: #00F8F8;
  color: #E0295C;
  transform: scale(1.1);
}

.btn67{
    background-color: #1E1F26; 
    color: #00F8F8;
    transition: all 0.3s linear; 
}
.btn67:hover {

  color: #E0295C;
  transform: scale(1.1); 
}
.v3{
    color: #00F8F8;
      transition: all 0.3s ease; 
}

.v3:hover{
      color: #E0295C;

}