* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
  }
  
  nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    background: rgba(0,0,0,0.7);
    padding: 15px 0;
    z-index: 1000;
    text-align: center;
  }
  
  nav a {
    color: #fff;
    margin: 0 15px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
  }
  
  nav a:hover {
    color: #ffcb05;
  }
  
  /* Header */
  header {
    height: 100vh;
    background: url('image/imageasjs.avif') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: #fff;
    text-align: center;
    padding: 0 20px;
    position: relative;
  }
  
  header::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
  }
  
  header h1 {
    font-size: 3rem;
    z-index: 2;
    animation: fadeInDown 1s ease-out;
  }
  
  header p {
    font-size: 1.2rem;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
  }
  
  /* About Section */
  /* About Us Section */
#about {
  padding: 80px 10%;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  object-fit: cover;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  line-height: 1.7;
  color: #555;
}

.about-text .btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #0056b3;
  color: #fff;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.about-text .btn:hover {
  background: #003f80;
}

  
  /* Services Section */
  #services {
    padding: 80px 20px;
    background: #ffffff;
  }
  
  .services-container {
    max-width: 1100px;
    margin: auto;
    text-align: center;
  }
  
  .services-container h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #0a3d62;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
  
  .service-box {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
  }
  
  .service-box h3 {
    font-size: 20px;
    color: #0a3d62;
    margin-bottom: 10px;
  }
  
  .service-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
  }
  
  .service-box:hover {
    background: #0a3d62;
    color: white;
    transform: translateY(-5px);
    border-color: #0a3d62;
  }
  
  .service-box:hover h3, 
  .service-box:hover p {
    color: white;
  }
  
  /* Contact Form */
  #contact {
    padding: 80px 20px;
    background: #f5f7fa;
  }
  
  .contact-container {
    max-width: 800px;
    margin: auto;
    text-align: center;
  }
  
  .contact-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: stretch;
  }
  
  .contact-container input, 
  .contact-container textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
    width: 100%;
  }
  
  .contact-container button {
    background: #0a3d62;
    color: white;
    padding: 14px;
    font-size: 16px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .contact-container button:hover {
    background: #08314c;
  }
  
  /* Contact Info */
  .contact-info {
    background: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
  }
  
  /* Footer */
  footer {
    background: #111;
    color: #ccc;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
  }
  
  /* Animations */
  @keyframes fadeInDown {
    from {opacity: 0; transform: translateY(-50px);}
    to {opacity: 1; transform: translateY(0);}
  }
  
  @keyframes fadeInUp {
    from {opacity: 0; transform: translateY(50px);}
    to {opacity: 1; transform: translateY(0);}
  }
  