/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Global Styles */
  body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Navigation */
  header {
    background-color: #003366;
    padding: 20px 0;
  }
  
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    height: 45px;  
    width: auto;
  }
  
  
  .company-name {
    font-size: 2.2rem;
    font-weight: 700; /* Extra bold */
    font-family: 'Poppins', sans-serif; /* Stylish font if you want */
    color: #fff;
    margin-left: 12px;
  }
  
  
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav ul li {
    margin-left: 20px;
  }
  
  nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }

  .lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  display: none;
}

.lightbox-overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.lightbox-overlay:after {
  content: '✖';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}
  
  /* Hero Section */
  .hero {
    background: url('bg.jpg') no-repeat center center/cover;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
  }
  
  .hero-content {
    width: 100%;
  }
  
  .hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .hero-buttons a {
    text-decoration: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 5px;
    font-weight: bold;
  }
  
  .btn-primary {
    background-color: #ff5722;
    color: #fff;
  }
  
  .btn-secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
  }
  
  /* About Section */
  .about {
    padding: 60px 0;
    background-color: #fff;
  }
  
  .about h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 30px;
  }
  
  .about p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 18px;
  }
  
  /* Project Section */
  .project {
    padding: 60px 0;
    background-color: #f1f1f1;
  }
  
  .project h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
    color: #003366;
  }
  
  .project-details {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
  }
  
  .project-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
  }
  
  .project-info {
    flex: 1;
  }
  
  .project-info p {
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .project-highlights {
    margin-top: 20px;
    list-style-type: disc;
    padding-left: 20px;
  }
  
  .project-highlights li {
    margin-bottom: 10px;
    font-size: 16px;
  }
  
  /* Project Gallery */
  .project-gallery {
    padding: 60px 0;
    background-color: #fff;
  }
  
  .project-gallery h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
    color: #003366;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }
  
  .gallery-grid img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 250px;
  }
  
  /* Services Section */
  .services {
    padding: 60px 0;
    background-color: #fff;
  }
  
  .services h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
    color: #003366;
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background-color: #f1f1f1;
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: 0.3s;
  }
  
  .service-card:hover {
    background-color: #ff5722;
    color: #fff;
  }
  
  .service-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
  }
  
  .service-card p {
    font-size: 16px;
  }
  
  /* Contact Section */
  .contact {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  .contact h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 30px;
    color: #003366;
  }
  
  .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
  }
  
  .contact-info {
    flex: 1;
    min-width: 250px;
  }
  
  .contact-info h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #ff5722;
  }
  
  .contact-info p {
    font-size: 18px;
    margin-bottom: 15px;
  }
  
  .contact-form {
    flex: 2;
    min-width: 250px;
  }
  
  .contact-form form {
    display: flex;
    flex-direction: column;
  }
  
  .contact-form input,
  .contact-form textarea {
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
  }
  
  .contact-form button {
    background-color: #003366;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .contact-form button:hover {
    background-color: #ff5722;
  }
  
  /* Footer */
  footer {
    background-color: #003366;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    nav ul {
      flex-direction: column;
      background-color: #003366;
    }
    nav ul li {
      margin: 10px 0;
    }
    .project-details, .contact-wrapper {
      flex-direction: column;
    }
    .hero h2 {
      font-size: 28px;
    }
    .hero p {
      font-size: 16px;
    }
  }
  