/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header Styles */
  header {
    background-color: #F0F0F0;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo img {
    height: 60px;
  }
  
  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  nav ul li {
    margin: 0;
  }
  
  nav ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
  }
  
  nav ul li a:hover {
    background-color: #00bfa5;
  }
  
/* Hero Section with Slider */
.hero {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
  }
  
  /* Overlay on Slider */
  .hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: 1;
  }
  
  /* Swiper Slider Styles */
  .hero-slider {
    width: 100%;
    height: 100%;
  }
  
  .hero-slide {
    width: 100%;
    height: 100%;
    position: relative;
  }
  
  .hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* Hero Content Positioned on Top */
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
  }
  
  .hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-size: 18px;
    margin-bottom: 25px;
  }
  
  /* Swiper Pagination & Navigation */
  .swiper-pagination {
    bottom: 20px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    color: #fff;
  }
  
  /* About Section */
  .about {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .about h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .about p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
  }
  
  /* Services Section */
  .services {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .services h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #333;
    position: relative;
    display: inline-block;
  }
  
  .services h2::after {
    content: '';
    width: 60px;
    height: 4px;
    background: #00bfa5;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
  }
  
  .service-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
  }
  
  .service-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    text-align: left;
  }
  
  .service-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #00bfa5;
  }
  
  .service-item p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
  }
  
  /* Hover Effect */
  .service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  }
  
  /* Products Section */
  .products {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .products h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .product-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 20px;
  }
  
  .product-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .product-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 15px;
  }
  
  .product-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #00bfa5;
  }
  
  .product-item p {
    font-size: 16px;
    color: #555;
  }
  
  /* Gallery Section */
  .gallery {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .gallery h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
  }
  
  .gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s ease-in-out;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.05);
  }
  
  /* Contact Section */
  .contact {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
  }
  
  .contact h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .contact-info p {
    font-size: 18px;
    margin: 10px 0;
    color: #555;
  }
  
  .contact-info a {
    color: #00bfa5;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  .map-container {
    margin-top: 20px;
  }
  
  /* Footer Section */
  footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin-top: 20px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .container {
      width: 95%;
    }
  
    .hero-content h1 {
      font-size: 36px;
    }
  
    .hero-content p {
      font-size: 16px;
    }
  
    .service-items,
    .product-items,
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  
    .services h2,
    .products h2,
    .gallery h2,
    .contact h2 {
      font-size: 28px;
    }
  }

  
  /* Gallery Section */
.gallery {
    padding: 80px 20px;
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .gallery h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
  }
  
  .gallery-grid {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    margin-top: 30px;
    gap: 20px; /* optional, can be replaced with margin if needed */
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 23%;
    aspect-ratio: 1 / 1; /* ensures square aspect ratio */
    transition: transform 0.3s ease-in-out;
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
  }
  @media (max-width: 768px) {
    .gallery-item {
      width: 48%;
    }
  }
  
  @media (max-width: 480px) {
    .gallery-item {
      width: 100%;
    }
  }
  
  
  
  .gallery-item:hover img {
    transform: scale(1.1);
  }
  
  /* Lightbox Styles */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
  }
  
  .lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 800px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  
  .close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
  }
  
  .close-btn:hover {
    color: #00bfa5;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .gallery-grid {
      grid-template-columns: 1fr;
    }
  }