* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, sans-serif;
    }

    /* Top Bar */
    .topbar {
      background-color: #ffc107;
      color: white;
      padding: 8px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .topbar .email {
      margin-left: 100px;
      font-size: 14px;
    }

    .topbar .social-icons {
      margin-right: 100px;
      display: flex;
      gap: 15px;
    }

    .topbar .social-icons a {
      color: white;
      text-decoration: none;
      font-size: 16px;
    }

    /* Navbar */
    .navbar {
      background-color: #000;
      color: orange;
      padding: 12px 20px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 36px;
      z-index: 999;
    }

    .navbar .logo {
      margin-left: 100px;
      font-size: 22px;
      font-weight: bold;
    }

    .navbar .nav-links {
      margin-right: 100px;
      display: flex;
      gap: 20px;
    }

    .navbar .nav-links a {
      color: orange;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }

    .navbar .nav-links a:hover {
      color: white;
    }

    /* Hamburger */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      width: 30px;
      height: 25px;
      cursor: pointer;
      margin-right: 20px;
      z-index: 1001;
    }

    .hamburger span {
      height: 3px;
      width: 25px;
      background: orange;
      margin: 4px 0;
      transition: all 0.3s ease;
      display: block;
    }

    /* Responsive */
    @media screen and (max-width: 768px) {
      .topbar,
      .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }

      .topbar .email,
      .navbar .logo {
        margin-left: 20px;
      }

      .topbar .social-icons {
        margin-right: 20px;
      }

      .hamburger {
        display: flex;
        margin-right: 20px;
      }

      .navbar .nav-links {
        position: absolute;
        top: 90px;
        right: 0;
        background-color: #000;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 10px 20px;
        display: none;
        margin: 0;
        gap: 10px;
      }

      .navbar .nav-links.active {
        display: flex;
      }

      .hamburger.close span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
      }

      .hamburger.close span:nth-child(2) {
        opacity: 0;
      }

      .hamburger.close span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
      }
    }
      
     /* === Hero Section === */
    .hero {
      position: relative;
      height: 100vh;
      background: url('hero-bg.jpg') center/cover no-repeat;
    }

    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.1); /* 10% opacity overlay */
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      height: 100%;
      padding: 40px;
      color: white;
    }

    .hero-left {
      flex: 1;
      min-width: 250px;
      max-width: 500px;
      padding: 20px;
    }

    .hero-left h1 {
      font-size: 36px;
      margin-bottom: 20px;
    }

    .hero-left p {
      font-size: 18px;
      margin-bottom: 20px;
        color: aliceblue;
    }

    .hero-left button {
      padding: 10px 20px;
      background: transparent;
      color: white;
       border: 2px solid orange;
      cursor: pointer;
      font-size: 16px;
    }

      .hero-left button:hover {
      background-color: orange;
      color: black;
          border: 2px solid white;
          
    }
      
      
      
      
      
      
    .hero-right {
      flex: 1;
      min-width: 250px;
      max-width: 500px;
      padding: 20px;
    }

    .hero-right img {
      max-width: 100%;
      height: auto;
      border: 5px solid white;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    } 
      
    /* === About Section === */
.about-section {
  display: flex;
  flex-wrap: nowrap; /* force side-by-side on larger screens */
  justify-content: space-between;
  align-items: center;
  padding: 60px 100px;
  gap: 40px;
  
}

.about-left {
  flex: 0 0 100%;
    background-color: #f2f2f2;
    padding: 30px;
}

.about-left h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.about-left p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.about-left button {
  padding: 10px 20px;
  font-size: 16px;
  background-color: orange;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 5px;
}

.about-left button:hover {
  background-color: black;
  color: orange;
}



 .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 60px;
        margin-left: 120px;
        margin-right: 120px;
    }

    .card {
      background: #fff;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-content {
      padding: 20px;
      flex-grow: 1;
    }

    .card-title {
      font-size: 1.25rem;
      margin: 0 0 10px;
      font-weight: bold;
    }

    .card-text {
      font-size: 0.95rem;
      color: #555;
      margin-bottom: 15px;
    }
     
 .card-text strong {
  color: #c12900;
    text-align: center;
}

      
    .card button {
      background: #007bff;
      color: white;
      padding: 14px;
      width: 100%;
      border: none;
      font-size: 1rem;
      cursor: pointer;
    }

    .card button:hover {
      background: #0056b3;
    }
      
      
  .contact-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background-color: #f9f9f9;
  padding: 60px 100px;
  gap: 40px;
}

.contact-left,
.contact-right {
  flex: 1 1 45%;
}

.contact-left h2,
.contact-right h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.contact-left p {
  font-size: 18px;
  margin-bottom: 15px;
}

.contact-icons {
  display: flex;
  gap: 15px;
  font-size: 20px;
}

.contact-icons a {
  text-decoration: none;
  color: black;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-form button {
  padding: 12px;
  font-size: 16px;
  background-color: orange;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.contact-form button:hover {
  background-color: black;
  color: orange;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .contact-section {
    flex-direction: column;
    padding: 40px 20px;
  }

  .contact-left,
  .contact-right {
    flex: 1 1 100%;
  }
}

      
      
      
      
      
      
      
      
      
      
  /* Footer */
.footer {
  background-color: orange;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
}


 
      
      
      
/* Responsive */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    padding: 40px 20px;
    text-align: center;
    gap: 20px;
  }

  .about-left,
  .about-right {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .about-right img {
    width: 100%;
    max-width: 100%;
  }
    
 
    
    
    
}
