    :root {
      --primary: #0056b3;
      --secondary: #28a745;
      --accent: #ffc107;
      --light-bg: #f9f9f9;
      --dark-bg: #111;
      --text: #333;
      --white: #fff;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    .navigation{
      position: fixed;
      height: 80px;
      background-color: white;
      width: 100%;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      /* display: flex; */
    }
    .navigation h4{
      color: black;
      font-weight: bold;
      /* text-align: center; */
      /* text-align: center; */
      
    }
    .nav-logo{
      /* padding-left: 50px; */
      margin-top: -40px;

    }
    .navs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 400px;
    margin-top: 30px;
    gap: 30px;
    }

    .navs.show {
    display: flex;
    }

    .navs ul{
      display: flex;  
      gap: 40px;  
    }
    .navs a{
      text-decoration: none;
      color: black;
      font-size: large;
    }
    .navs a:hover{
      color: #0056b3;
    }
    

    body {
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      color: var(--text);
      background-color: var(--white);
      line-height: 1.6;
    }

    section {
      padding: 80px 20px;
    }

    h1, h2, h3 {
      margin-bottom: 20px;
      color: var(--primary);
    }

    p {
      margin-bottom: 15px;
    }

    /* Hero Section */
    .hero {
      background-size: cover;
      background-position: center;
      color: var(--white);
      text-align: center;
      /* position: relative; */
    }

    .hero .overlay {
      background: rgba(0, 0, 0, 0.6);
      padding: 100px 20px;
    }

    .buttons .btn {
      padding: 12px 24px;
      border: none;
      border-radius: 4px;
      text-decoration: none;
      font-weight: bold;
      margin: 10px;
      display: inline-block;
      transition: background 0.3s ease;
    }

    .btn.primary { background: var(--primary); color: var(--white); }
    .btn.secondary { background: var(--secondary); color: var(--white); }
    .btn.tertiary { background: var(--accent); color: var(--text); }

    .btn:hover {
      opacity: 0.9;
    }

    .welcome .content{
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      align-items: center;
      justify-content: center;
    }

    .welcome img{
      max-width: 500px;
      border-radius: 10px;
      width: 100%;
      margin-top: 100px;
    }

    .services {
      background: var(--light-bg);
    }
    .why-us-images {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-content: center;
  margin-bottom: 30px;
}

.why-us-images img {
  width: 200px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
}

    .service-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }

    .service-item {
      background: var(--white);
      border: 1px solid #ddd;
      padding: 20px;
      /* text-align: center; */
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .service-item:hover {
      transform: translateY(-5px);
    }

    .service-item img {
      width: 100%;
      margin-bottom: 10px;
    }

    .gallery-grid {
      display: block;
      gap: 20px;
    }

    .gallery-grid img {
      width: 30%;
      border-radius: 8px;
      height: 500px;
    }

    .gallery-grid figure {
      margin: 0;
      text-align: center;
    }
    /* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
}

.controls {
  margin-top: 20px;
}

.close, .prev, .next {
  color: white;
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
}


    .locations {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 40px;
      margin-top: 40px;
    }

    .location iframe {
      width: 100%;
      height: 200px;
      border: none;
      margin-top: 10px;
      border-radius: 8px;
    }

    .cta {
      background-size: cover;
      background-position: center;
      color: var(--white);
      text-align: center;
    }
    li{
      list-style: none;
    }

    .cta .overlay {
      background: rgba(0, 0, 0, 0.6);
      padding: 80px 20px;
    }

    footer {
      background: var(--dark-bg);
      color: var(--white);
      padding: 30px 20px;
      text-align: center;
    }

    .footer-content {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
    }

    .footer-links a {
      color: var(--white);
      margin: 0 10px;
      text-decoration: none;
      font-size: 14px;
    }

    .footer-links img {
      height: 20px;
      vertical-align: middle;
      margin-left: 5px;
    }

    .logo {
      height: 50px;
    }
    /* Hamburger Base Styles */
/* Hamburger Base Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 20px;
  z-index: 1001;
}

.hamburger span {
  height: 3px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
}

/* Mobile Nav Styling */
@media (max-width: 768px) {
  .navs {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px; /* Adjust if your header is shorter */
    right: 0;
    width: 50%;
    height: 200px;
    background-color: white;
    /* text-align: center; */
    gap: 20px;
    padding: 20px 0;
    margin-top: -10px;
    /* z-index: 1000; */
  }
  .nav-logo h4{
    text-align: center;
    /* padding-left: 0; */
    margin-top: 50px;
    font-weight: bold;
    width: 100%;
    /* margin-right: 50px; */
  }

  .navs.show {
    display: flex;
  }
  
  .navs ul {
    flex-direction: column;
    gap: 10px;
  }
  
  .navs ul li {
    margin: 0;
    /* margin-top: -80px; */
  }
  
  .navs a {
    font-size: 18px;
    color: var(--primary);
    display: block;
  }

  .hamburger {
    display: flex;
    margin-top: 20px;
  }

  .navigation h3 {
    padding-left: 20px;
    margin-top: 15px;
  }
}

    .slider {
  position: relative;
  width: 100%;
  height: 180px;
  overflow: hidden;
  border-radius: 8px;
  margin-right: 200px;
}

.slider img {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: slide 20s infinite;
}

.slider img:nth-child(1) { animation-delay: 0s; }
.slider img:nth-child(2) { animation-delay: 5s; }
.slider img:nth-child(3) { animation-delay: 10s; }
.slider img:nth-child(4) { animation-delay: 15s; }

@keyframes slide {
  0% { opacity: 0; }
  5% { opacity: 1; }
  30% { opacity: 1; }
  35% { opacity: 0; }
  100% { opacity: 0; }
}




    @media (max-width: 768px) {
      .welcome .content,
      .why-us .content,
      .footer-content {
        flex-direction: column;
        text-align: center;
      }
      .gallery-grid .figure-img img{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
        width: 100%;
      }
    }