/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;

  background-color: white;
}

/* Navbar */
.navbar {
  display: flex;
  
 
  padding: 10px 1px;
  position: absolute; /* Make it part of the home section */
  top: 0;
  width: 100%;
  background: transparent; /* Ensure transparency */
  box-shadow: none;
  z-index: 1000;
  
}



.navbar .nav-links {
  list-style:disc;
  display: flex;
  gap: 25px;
  font-weight: 50px;
  justify-content: center;
  align-items: center;
  color: black;
}

ul{
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: left 0.3s; 
  color: black;
}
.navbar .nav-links li {
  list-style: disc;
  font-size: 1rem;
  font-weight: 800;
  color: grey;
}

.navbar .nav-links li a {
  text-decoration: none;
  color: rgb(18, 17, 17);
  font-size: 1rem;
  transition: all 0.3s ease;
  font-weight: 600;
}

.navbar .nav-links li a:hover {
  color:rgb(216, 211, 211);
  transform: scale(1.1);
}

/* Home Section */
.home-section {
  height: 100vh;
  background: url('images/bg.jpg') 
              no-repeat center center/cover;
 
 flex-direction: row;
 justify-content: center;
 align-items: center;
 text-align: center;
  
  position: relative;
  padding-top: 60px; /* Adjust padding so content doesn’t overlap */
  margin-bottom: 50px;
}




.home-section h1 {
  font-size: 5rem;
  margin-top: 165px;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  z-index: 1;
  color: rgb(61, 60, 60);
  font-weight: 600;
  margin-right: 20px;
  
}

.home-section p {
  font-size: 1.5rem;
   font-weight: 700;
   margin-right: 50px;
  z-index: 1;
  color: rgb(17, 15, 15);
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
 
}
------------------------------------------------------------------------------------------------------------

/*about-section */
/* About Section */
.about-section {
  background: white;
  text-align: center;
  min-height: 100vh;
  margin-top: 50px;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Centers content vertically */
  align-items: center; 
  

}

.about-section h2 {
  font-size: 2rem;

  margin-top: 100px;
  margin-bottom: 10px;
  color: #cb44a7;
 font-family: Georgia, 'Times New Roman', Times, serif;
font-weight: 600;  
  text-align: center;
}

.about-section h3 {
  font-size: 1.5rem;

  margin-top: 50px;
  margin-bottom: 10px;
  color: #3e3341;
 font-family: Georgia, 'Times New Roman', Times, serif;
font-weight: 600;  
  text-align: center;
}

.about-section p {
  font-size: 1.2rem;
  color: #ca77be;
  margin-bottom: 40px;
  margin: 0 auto 40px;
  text-align: center;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
font-weight: 600;
}

/* Cards Container */
.cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap; /* Ensures responsiveness */
}

/* Individual Card */
.card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 300px;
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.card h3 {
  margin: 15px 0 10px;
  font-size: 1.5rem;
  color: #333;
}

.card p {
  font-size: 1rem;
  color: #666;
}






-----------------------------------------------------------------------------------------------------------
/* Login Section */
.login-section {
  margin-top: 100px;
  padding: 60px 20px;
  background-color: white;
  text-align: center;

}

.login-section .login-box {
  max-width: 400px;
  margin: 0 auto;
  margin-top: 100px;
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.login-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.login-section input {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #bdc3c7;
  border-radius: 5px;
  font-size: 1rem;
}

.login-section button {
  width: 100%;
  padding: 10px;
  background-color: #38353b;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.login-section button:hover {
  background-color: #9e9fa1;
}

.login-section p {
  margin-top: 10px;
  font-size: 0.9rem;
}

.login-section p a {
  color: #847791;
  text-decoration: none;
}

/* Footer */
footer {
  background: linear-gradient(135deg, #6d6e6f, #3c3f45);
  color: #fff;
  padding: 30px 10px;
  text-align: center;
  margin-top: 30px;
}

.footer-content {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}

.footer-content h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.footer-content p {
  font-size: 1rem;
  margin: 2px 0;
}

.social-links a {
  color: #fff;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffdd57;
}

.footer-bottom {
  margin-top: 10px;
  font-size: 0.9rem;
}