 body {
      margin: 0;
      box-sizing: border-box;
      font-family: Arial, Helvetica, sans-serif;
    }

    /* Navbar */
    .navbar {
      color:#9929EA;
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #121212;
      padding: 10px 20px;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
    }

    .logo {
      font-family: 'Poppins', sans-serif;
      font-size: 20px;
      font-weight: 700;
      color:#9929EA;
      text-decoration: none;
      letter-spacing: 1px;
      display: inline-block;
      padding: 5px 10px;
      transition: all 0.3s ease;
    }

    .nav-links {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .nav-links li {
      margin: 0 10px;
    }

    .nav-links a {
      color: #9929EA;
      text-decoration: none;
      padding: 5px 10px;
      transition: background 0.3s ease;
    }

    .nav-links a:hover {
      background: #555;
      border-radius: 5px;
    }

    /* Mobile menu button */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle div {
      width: 25px;
      height: 3px;
      background: white;
      margin: 4px 0;
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        background:#9929EA;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 15px;
        border-radius: 8px;
      }

      .nav-links.show {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }
    }

    /* Banner */
    .banner {
      height: 80vh;
      background: url('https://images.unsplash.com/photo-1736342038406-0d6e01e436d5?w=600&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHx0b3BpYy1mZWVkfDIzfDZzTVZqVExTa2VRfHxlbnwwfHx8fHw%3D') no-repeat center center/cover;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: #9929EA;
      position: relative;
      margin-top: 50px; /* offset navbar */
    }

    .banner::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.4);
    }

    .banner-content {
      position: relative;
      z-index: 1;
    }

    .banner h1 {
      font-size: 3rem;
      margin-bottom: 10px;
    }

    .banner p {
      font-size: 1.2rem;
    }

/*about*/

.about{
    padding: 50px 20px;
     background-color: #212121;
      padding: 60px 20px;
      text-align: center;
}
.about-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1100px;
    margin: auto;
    flex-wrap: wrap;
}
.about-image img{
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
}
.about-content{
    max-width: 500px;
}
.about-content h2{
    font-size: 2rem;
    margin-bottom: 15px;
    color: #9929EA;
}
.about-content P{
    font-size: 1.1rem;
    line-height: 1.6;
    color:white;
}
.btn{
    margin-top: 15px;
    padding: 10px 20px;
    border: none;
    background: #9929EA;
    color: white;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
}
@media (max-width:768px) {
  .about-container{
    flex-direction: column;
    text-align: center;
  }
  
}

/*services*/

.services{
  padding: 50px 20px;
  text-align: center;
      background: #1E1E1E;
}
.services h2{
  font-size: 2rem;
  margin-bottom: 30px;
  color: #9929EA;
}
.card-conatiner{
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  display: flex;
}
.card{
  background:#1E1E1E;
  border-radius: 10px;
  max-width: 300px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s;
}
.card img{
  width: 100px;
  border-radius: 8px;
  margin: 15px;
}
.card h3{
  margin-bottom: 10px;
  color: white;
}
.card p{
  color:white;
}
footer{
  text-align: center;
  background:#121212;
  color: white;
  padding: 10px;
}

/*contact-section*/

.contact-section {
  padding: 50px 20px;
  background: #f9fafc;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  max-width: 1200px;
  margin: auto;
}

.contact-section .row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.contact-section .box {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-section h2 {
  font-size: 1rem;
  color: #9929EA;
  margin-bottom: 15px;
  border-bottom: 2px solid #e3e9f0;
  padding-bottom: 8px;
}

.contact-section p {
  margin: 8px 0;
  line-height: 1.6;
}

.contact-section details {
  background: #f4f4f4;
  padding: 12px 15px;
  margin: 8px 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-section details:hover {
  background: #eaeaea;
}

.contact-section summary {
  font-weight: bold;
  font-size: 0.95rem;
  color: #444;
}

.contact-section details p {
  margin-top: 8px;
  font-size: 0.95rem;
  color: #555;
}

.contact-section iframe {
  border-radius: 8px;
  overflow: hidden;
  width: 100%;
  height: 300px;
  border: none;
}

@media (max-width: 768px) {
  .contact-section .row {
    grid-template-columns: 1fr;
  }

  .map-video {
    flex-direction: column;
  }
}

/*form*/

form{
  max-width: 300px;
  margin: auto;
  display: flex;
  flex-direction: column;
}
form input, form button{
  padding: 10px;
  margin: 5px 0;
}
.register-container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  background: #f9f9f9;
}
.register-box{
  background: white;
  padding: 30px;
  width: 350px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);

}
.register-box h2{
  margin-bottom: 20px;
  color: #333;
}
.register-box input{
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  font-size: 16px;
}
.register-box button{
  width: 100%;
  padding: 12px;
  background: #9929EA;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  border: none;
}
.login-link{
  margin-top: 15px;
  font-size: 14px;
}
.login-link a{
  color: #9929EA;
  text-decoration: none;
}
.login-container{
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
  background: #f9f9f9;
}
.login-box{
  background: white;
  padding: 30px;
  width: 350px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);

}
.login-box h2{
  margin-bottom: 20px;
  color: #333;
}
.login-box input{
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  outline: none;
  font-size: 16px;
}
.login-box button{
  width: 100%;
  padding: 12px;
  background: #9929EA;
  color: white;
  font-size: 16px;
  border-radius: 5px;
  cursor: pointer;
  margin-top: 10px;
  border: none;
}
.register{
  margin-top: 15px;
  font-size: 14px;
}
.register a{
  color:#9929EA;
  text-decoration: none;
}
/*table-conatainer*/
.table-conatainer{
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
table{
  border-collapse: collapse;
  width: 80%;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  text-align: center;
 
}
th,td{
  padding: 12px;
  border: 1px solid #ddd;
}
th{
  background:#9929EA;
  color: white;
}
h2{
  text-align: center;
  margin-top: 110px;
  
}
@media (max-width:600px) 
{
  th,td{
    padding: 6px;
    font-size: 14px;
  }
  
}