
html, body {
        overflow-x: hidden;
      }

body {
        font-family: "Montserrat", sans-serif;
        margin: 0;
        color: #333;
        background: #f9f9f9;
      }

      /* ========================================== header and Navbar section start=========================== */
      /* Top bar */
      .top-bar {
        background: #17294b;
        color: #fff;
        padding: 7px 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
      }

      .top-bar a {
        color: #fff;
        text-decoration: none;
      }

      .top-bar .top-social-icons a {
        color: #fff;
        margin-left: 15px;
        font-size: 20px;
      }

      /* ===== Header/Navbar ===== */
      header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 2px 0px;
        padding-right: 30px;
        background: #fff;
        position: sticky; /* <-- make it sticky */
        top: 0;           /* <-- stick to top */
        /* width: 100%;       */
        z-index: 10;
    }


      .logo img {
        height: 80px;
        margin-left: 10%;
        width: 150px;
      }

      nav {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
      }

      nav ul {
        position: relative;
        display: flex;
        list-style: none;
        gap: 20px;
        margin: 0;
        padding: 0;
        flex-wrap: wrap;
      }

      nav ul .close-menu {
        display: none; /* hidden by default */
      }

      nav ul.show .close-menu {
        display: block;
        position: absolute;
        top: 15px;
        right: 20px;
      }

      nav ul .close-menu i {
        color: red;
        font-size: 28px;
        cursor: pointer;
      }

      nav ul li {
        position: relative;
      }

      nav ul li a {
        text-decoration: none;
        color: #333;
        font-weight: 500;
      }

      .nav-buttons {
        display: flex;
        gap: 15px;
        margin-left: 30px;
        flex-shrink: 0;
      }

      .nav-buttons a {
        text-decoration: none;
        padding: 10px 20px;
        border-radius: 50px;
        font-weight: 600;
        color: #fff;
        white-space: nowrap;
      }

      .quote-btn {
        background: #0d1d3a;
      }

      .login-btn {
        background: #00adef;
      }

      .hamburger {
        display: none;
        font-size: 24px;
        cursor: pointer;
      }
      .hamburger i {
        font-size: 24px;
        color: #000;
      }

      .hamburger.active i {
        color: red;
      }

      /* Dropdown Styles */
      nav ul li ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        background: #fff;
        padding: 10px 0;
        list-style: none;
        min-width: 200px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
        z-index: 99;
      }

      nav ul li:hover > ul {
        display: block;
      }

      nav ul li ul li {
        position: relative;
      }

      nav ul li ul li a {
        display: block;
        padding: 10px 20px;
        color: #333;
      }

      nav ul li ul li:hover > a {
        background: #f0f0f0;
      }

      /* Nested submenu */
      nav ul li ul li ul {
        top: 0;
        left: 100%;
      }

      @media (max-width: 991px) {
        nav {
          flex-direction: column;
          align-items: flex-start;
          width: 100%;
        }

        nav ul {
          display: none;
          flex-direction: column;
          width: 100%;
          background: #fff;
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
          padding: 20px;
          position: absolute;
          top: 100%;
          left: 0;
        }

        nav ul.show {
          display: flex;
        }

        nav ul.show li {
          width: 100%;
        }

        nav ul li ul {
          position: static;
          display: none;
          box-shadow: none;
        }

        nav ul li:hover > ul {
          display: block;
        }

        nav ul li ul li ul {
          position: static;
        }

        nav ul .close-menu {
          display: none;
        }

        nav ul.show .close-menu {
          display: flex;
          justify-content: flex-end;
          margin-bottom: 10px;
        }

        nav ul .close-menu i {
          color: red;
          font-size: 24px;
          cursor: pointer;
        }

        .nav-buttons {
          display: none;
        }

        .hamburger {
          display: block;
        }
      }
    /* ========================================== header and Navbar section end =========================== */
    
    
    
    /* ========================================== hero section start =========================== */
    /* Hero section */
      .hero {
        position: relative;
        width: 100%;
        height: 350px;
        background: url("../images/background/9.jpg") no-repeat center
          center/cover;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
      }

      /* Overlay */
      .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5); /* Dark overlay */
        z-index: 1;
      }

      /* Text */
      .hero h1 {
        position: relative;
        z-index: 2;
        color: #fff;
        font-size: 40px;
        font-weight: 600;
        margin: 0;
        text-align: center;
      }

      @media (max-width: 992px) {
        .hero {
          height: 350px;
        }
      }

      @media (max-width: 768px) {
        .hero {
          height: 250px;
        }
        .hero h1 {
          font-size: 36px;
        }
      }

      @media (max-width: 480px) {
        .hero {
          height: 200px;
        }
        .hero h1 {
          font-size: 28px;
        }
      }
    /* ========================================== hero section end ============================= */


 
    
    
    
    /* ========================================== footer section start =========================== */
    footer {
        background: #17294b; /* url('../images/background/pattern-19.png') no-repeat center center;
        background-size:contain; */   /* Adjust to fit nicely */
        position: relative;
        overflow: hidden;
        color: #fff;
        position: relative;
        overflow: hidden;
        padding-left: 20px;
        /* padding-right: 20px; */
        padding-top: 50px;
      }

      .background-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4%;
        object-fit: cover;
        z-index: 0;
      }
      
      .footer-bg-left, .footer-bg-right {
        position: absolute;
        /* top: 0; */
        width: 180px; /* adjust width as needed */
        height: 100%;
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 0;
      }

      .footer-bg-left {
        left: 0;
        background-image: url('../images/background/pattern-23.png'); /* replace with your left bg */
      }

      .footer-bg-right {
        right: 0;
        background-image: url('../images/background/pattern-24.png'); /* replace with your right bg */
      }
      
      @media (max-width: 768px) {
      .footer-bg-left, .footer-bg-right {
        display: none; /* Hide left & right */
      }
      .footer-bg-center {
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 200px; /* adjust as needed */
        height: 100%;
        /* background-image: url('../images/background/pattern-24.png');  */
        /* your mobile bg */
        background-repeat: no-repeat;
        background-size: contain;
        z-index: 0;
      }
    }

    /* By default keep center hidden on desktop */
    /* .footer-bg-center {
      display: none;
    } */

      .footer-gear {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        opacity: 0.1; /* Light overlay look */
        max-width: 400px; /* Adjust size */
        z-index: 0; /* Behind content, above video */
      }

      /* ............................... */

      .footer-content {
        position: relative;
        display: flex;
        z-index: 1;
        flex-wrap: nowrap; /* DO NOT wrap on desktop */
        justify-content: space-between;
        gap: 40px; /* Base gap */
        padding-bottom: 30px;
      }

      .footer-col {
        flex-grow: 1;
        flex-basis: 0; /* equal base size */
        min-width: 0;
      }

      .footer-col:nth-child(1) {
        flex: 2; /* Make Our products wider */
      }

      .footer-col:nth-child(2) {
        flex: 2; /* Make Our products wider */
      }

      .footer-col:nth-child(3) {
        flex: 1; /* Quick Links normal */
      }

      .footer-col:nth-child(4) {
        flex: 2; /* Contact us normal */
      }

      @media (max-width: 992px) {
        .footer-content {
          flex-wrap: wrap; /* allow wrap on tablet */
        }
      }

      @media (max-width: 768px) {
        .footer-content {
          flex-direction: column;
          gap: 0px;
        }
        .footer-col {
          /* flex: unset; */
          min-width: 100%;
        }
        .background-video {
          height: 1%;
        }
      }

      /* ............................... */

      .footer-logo img {
        height: 100px;
        width: 180px;
        margin-bottom: 15px;
      }

      .footer-col h3 {
        color: #00adef;
        margin-bottom: 15px;
        font-size: 18px;
      }

      .footer-col ul {
        list-style: none;
        padding: 0;
      }
/* 
      .footer-col ul li i {
        display: flex;
        align-items: flex-start;
        margin-bottom: 10px;
      } */

      .footer-col ul li a {
        text-decoration: none;
        /* margin-bottom: 15px; */
        color: #fff;
        line-height: 1.4;
      }

      .footer-col ul li a:hover {
        text-decoration: none;
        /* margin-bottom: 15px; */
        color: #95b64e;
        line-height: 1.4;
      }

      .footer-col p {
        margin: 5px 0;
      }

      .social-icons a {
        display: inline-block;
        margin-right: 10px;
        font-size: 25px;
        color: #00adef;
        transition: 0.3s;
      }

      .social-icons a:hover {
        color: #95b64e;
      }

      .footer-contact {
        list-style: none;
        padding: 0;
        margin: 0;
      }

      .footer-contact li {
        display: flex;
        align-items: flex-start;
        margin-bottom: 10px;
      }

      .footer-contact li i {
        margin-right: 10px;
        color: #fff; /* Change color as per your footer theme */
        min-width: 20px;
        margin-top: 6px;
      }

      .footer-contact li a,
      .footer-contact li span {
        color: #fff; /* Or your footer text color */
        text-decoration: none;
        line-height: 1.2;
      }

      .footer-bottom {
        background-color: #17294b; /* Light background, change as needed */
        padding: 15px 20px;
        font-size: 14px;
      }

      .footer-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
      }

      .footer-left,
      .footer-right {
        color: #ffffff;
      }

      .footer-left a,
      .footer-right a {
        color:  #ffffff; /* Link color */
        text-decoration: none;
      }

      .footer-right a:hover,
      .footer-left a:hover {
        color: #95b64e;
      }

      @media (max-width: 600px) {
        .footer-container {
          flex-direction: column;
          text-align: center;
          gap: 10px;
        }
      }


      @media (max-width: 768px) {
        .footer-content {
          flex-direction: column;
          text-align: left;
        }
        .footer-col {
          margin-bottom: 30px;
        }
        .footer-container {
          flex-direction: column;
          text-align: center;
          gap: 10px;
        }
      }
    /* ========================================== footer section end =========================== */


      /* ========================================== gallery section start =========================== */
        /* === GALLERY SECTION === */
.gallery-section {
  padding: 20px 20px;
  text-align: center;
  
}

.gallery-section h2 {
  /* padding: 40px 20px; */
  padding-bottom: 20px ;
  font-size: 36px;
  text-align: center;
  color: #95b64e;
}

.gallery-filters {
  margin-bottom: 20px;
}

.gallery-filters .filter-btn {
  padding: 10px 20px;
  margin: 5px;
  border: none;
  background: #00adef;
  color: #fff;
  cursor: pointer;
  border-radius: 30px;
}

.gallery-filters .filter-btn.active {
  background: #0d1d3a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 30dvh;
  display: block;
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* === LIGHTBOX === */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lightbox .close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.lightbox .zoom-in,
.lightbox .zoom-out {
  position: absolute;
  bottom: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  background: #0d1d3a;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
}

.lightbox .zoom-in { right: 100px; }
.lightbox .zoom-out { right: 50px; }

@media (max-width: 600px) {
  .lightbox .close {
    right: 20px;
  }
  .lightbox .zoom-in { right: 70px; }
  .lightbox .zoom-out { right: 20px; }
}

      /* ========================================== gallery section end =========================== */

      /* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 50px;
  height: 50px;
  bottom: 70px;
  right: 30px;
  z-index: 9999;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10%;
  /* box-shadow: 0 4px 12px rgba(0,0,0,0.3); */
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 15px;
    right: 15px;
  }
}
/* ================================================================================================= */


 