/* Reset styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}

a {
  text-decoration: none;
  color: #333;
}

ul {
  list-style: none;
}

/* Header styles */
header {
  background-color: #f8f8f8;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

header h1 {
  font-size: 36px;
}

nav ul {
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li a {
  font-size: 18px;
  font-weight: bold;
}

.dropdown {
  position: relative;
}

.dropdown ul {
  display: none;
  position: absolute;
  z-index: 1;
  background-color: #fff;
  border: 1px solid #ccc;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.dropdown:hover ul {
  display: block;
}

.dropdown ul li {
  margin: 0;
}

.dropdown ul li a {
  font-size: 16px;
  font-weight: normal;
  padding: 10px 20px;
  display: block;
}
.dropdown ul li a:hover {
  background-color: black;
  color: white;
  font-size: 16px;
  font-weight: normal;
  padding: 10px 20px;
  display: block;
}
#log:hover{
    color: green;
}
#sign:hover{
    color: blue;
}

/* Hero section styles */
.hero {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 100px 0;
}

.hero h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 24px;
  margin-bottom: 40px;
}

.btn {
  display: inline-block;
  background-color: #fff;
  color: #333;
  font-size: 16px;
  font-weight: bold;
  padding: 15px 30px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.btn:hover {
  background-color: #ccc;
  color: #fff;
}

/* Services section styles */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 80px 0;
}

.services h3 {
  font-size: 36px;
  text-align: center;
  margin-bottom: 40px;
}

.service {
  background-color: #f8f8f8;
  margin: 20px;
  padding: 30px;
  text-align: center;
  width: 300px;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

.service img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  margin-bottom: 20px;
}

.service h4 {
  font-size: 24px;
  margin-bottom: 20px;
}

.service p {
  font-size: 16px;
  margin-bottom: 30px;
}

.service a {
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #333;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
}

.form-group {
margin-bottom: 20px;
}

.form-group label {
display: block;
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
}

.form-group input {
font-size: 16px;
padding: 10px;
border-radius: 5px;
border: none;
width: 100%;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.form-group input:focus {
outline: none;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.form-group button {
background-color: #333;
color: #fff;
font-size: 16px;
font-weight: bold;
padding: 15px 30px;
border-radius: 5px;
border: none;
transition: all 0.3s ease-in-out;
}

.form-group button:hover {
background-color: #fff;
color: #333;
cursor: pointer;
}

/* Footer styles */
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 50px 0;
}

footer p {
font-size: 18px;
margin-bottom: 20px;
}

footer a {
color: #fff;
}

@media (max-width: 768px) {
header {
flex-direction: column;
align-items: center;
padding: 10px;
}

header h1 {
margin-bottom: 20px;
}

nav ul {
margin-top: 20px;
}

.services {
padding: 40px 0;
}

.service {
margin: 20px 0;
}

form {
padding: 20px;
}
}

/* Login and Signup Page Styles */

.auth-container {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-color: #f8f8f8;
}

.auth-form {
background-color: #fff;
border-radius: 5px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
padding: 40px;
width: 400px;
}

.auth-form h2 {
font-size: 36px;
margin-bottom: 30px;
text-align: center;
}

.auth-form form {
display: flex;
flex-direction: column;
}

.auth-form label {
display: block;
font-size: 20px;
font-weight: bold;
margin-bottom: 10px;
}

.auth-form input {
font-size: 16px;
padding: 10px;
border-radius: 5px;
border: none;
margin-bottom: 20px;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.auth-form input:focus {
outline: none;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3);
}

.auth-form button {
background-color: #333;
color: #fff;
font-size: 16px;
font-weight: bold;
padding: 15px 30px;
border-radius: 5px;
transition: all 0.3s ease-in-out;
}

.service a:hover {
background-color: #fff;
color: #333;
border: 1px solid #333;
}

/* Call to action section styles */
.cta {
background-color: #f8f8f8;
text-align: center;
padding: 80px 0;
}

.cta h3 {
font-size: 36px;
margin-bottom: 20px;
}

.cta p {
font-size: 24px;
margin-bottom: 40px;
}

.cta .btn {
margin-top: 20px;
}

/* Footer styles */
footer {
background-color: #333;
color: #fff;
text-align: center;
padding: 40px 0;
}

.footer-logo img {
width: 80px;
margin-bottom: 20px;
}

.footer p {
margin-bottom: 20px;
}

.footer ul {
display: flex;
justify-content: center;
margin-bottom: 20px;
}

.footer ul li {
margin: 0 10px;
}

.footer ul li a {
color: #fff;
}

.footer ul li a:hover {
text-decoration: underline;
}

.footer small {
display: block;
margin-top: 20px;
}

/* Login and Signup form styles */
form {
background-color: #f8f8f8;
padding: 40px;
max-width: 500px;
margin: 0 auto;
box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2);
}

form label {
display: block;
margin-bottom: 10px;
}

form input[type="text"],
form input[type="email"],
form input[type="password"] {
padding: 10px;
border-radius: 5px;
border: none;
margin-bottom: 20px;
width: 100%;
font-size: 16px;
color: #333;
}

form input[type="submit"] {
background-color: #333;
color: #fff;
font-size: 16px;
font-weight: bold;
padding: 10px 20px;
border-radius: 5px;
transition: all 0.3s ease-in-out;
cursor: pointer;
}

form input[type="submit"]:hover {
background-color: #fff;
color: #333;
border: 1px solid #333;
}

form small {
display: block;
margin-top: 20px;
text-align: center;
}

form small a {
color: #333;
}

form small a:hover {
text-decoration: underline;
}

/* Responsive styles */
@media screen and (max-width: 768px) {
header {
flex-direction: column;
align-items: center;
}

nav ul {
margin-top: 20px;
}

nav ul li {
margin-left: 0;
margin-bottom: 10px;
}

.hero {
padding: 50px 0;
}

.services {
padding: 50px 0;
}

.service {
margin: 20px 0;
}

footer ul {
flex-wrap: wrap;
}

footer ul li {
margin: 10px 0;
}
}
