* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;

}

/* Base Styles */
.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: white;
  z-index: 1000;
  position: fixed !important;
  top: 0px;
}

.logo img {
  height: 50px; /* Adjust based on your logo size */
}


.tabs {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tabs li {
  margin: 0 10px;
}

.tabs a {
  color: black;
  text-decoration: none;
  font-size: 16px;
}
.tabs a:focus , a:hover{
color: green;
}

.buttons {
  display: flex;
  text-decoration: none;
}

.buttons .btn1 {
  /* background-color: rgba(15, 13, 13, 0.879); */
  color: rgb(14, 13, 13);
text-decoration: none;
  border: none;
  padding: 10px 20px;
  margin-left: 10px;
  cursor: pointer;
}

.buttons .btn1 a {
  color: rgb(15, 15, 15);
  text-decoration: none;
  
}
.buttons .btn1 a:focus ,a:hover{
  color: green;

}
/* Mobile Styles */
@media (max-width: 768px) {
  .tabs {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #333;
    position: absolute;
    top: 60px; /* Adjust based on navbar height */
    left: 0;
    z-index: 50;
  }

  .tabs.active {
    display: flex;
  }

  .tabs li {
    margin: 0;
  }

  .tabs a {
    padding: 10px 20px;
    display: block;
  }

  .hamburger {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
  }

  .hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 5px 0;
  }

 
}



.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 100px;
  background-color: #0467e8;
  color: #eee;
  font-family: sans-serif;
  margin: 0;
}

.left-section {
  padding: 20px;
  width: 40%;
}

.right-section {
  padding: 20px;
  width: 60%;
}

.logo2 {
  display: block;
  height: 60px;
  align-items: center;
  margin-bottom: 15px;
  margin-left: 70px;
}

.social-media {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.social-media a {
  margin: 0 10px;
  text-decoration: none;
}

.social-media img {
  width: 30px;
}

.title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  display: flex;
}

.info {
  margin-top: 20px;
}

.info a {
  text-decoration: none;
  color: white;
}

.info a:hover {
  color: lightblue;
}

.info p {
  margin-bottom: 10px;
}

.links {
  margin-top: 20px;
}

.links a {
  display: block;
  margin-bottom: 10px;
  text-decoration: none;
  color: white;
}

.links a:hover {
  color: lightblue;
}

.f2 {
  background-color: #145cbb;
  padding: 10px;
  text-align: center;
  color: rgb(119, 119, 211);
}

.f2 p {
  margin: 0;
}


@media (max-width: 768px) {
  .hamburger {
    display: block;
    margin-right: 20px;
  }

  .logo {
    margin-right: 0;
  }

  .tabs {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #333;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
  }

  .tabs.show {
    display: block;
  }

  .buttons {
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #333;
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
  }

  .buttons.show {
    display: block;
  }

  .footer {
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }

  .left-section,
  .right-section {
    width: 100%;
  }
}


@media (max-width: 480px) {
  .navbar {
    padding: 0.5em;
  }

  .hamburger {
    margin-right: 10px;
  }

  .logo img {
    width: 30px;
    height: 30px;
  }

  .tabs a {
    font-size: 14px;
  }

  .login,
  .register {
    font-size: 14px;
    padding: 8px 16px;
  }

  .footer {
    padding: 10px;
  }
}

/* msg */
.c_msg_parent {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0px;
  left: 0px;
  position: fixed;
  z-index: 5000;
  background-color: rgba(0, 0, 0, 0.795);
  width: 100%;
  height: 100vh;
}

.msg {
  width: 300px;
  height: 250px;
  background-color: rgb(133, 218, 125);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 0px 10px 0px black, 0px 0px 10px 0px black;
  flex-direction: column;
  color: black;
}

.msg-icon {
  font-size: 5rem;
  color: rgb(0, 94, 0);
}

.msg_p {
  font-size: 1.1rem;
  font-weight: bolder;
}

.msg_btn {
  width: 30%;
  padding: 8px 10px;
  border-radius: 5px;
  font-weight: bolder;
}

.proli {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
