/* ==========================
   General Body Styling
========================== */
body {
    font-family: "Bebas Neue", sans-serif !important;
  background-color: white;
}

/* ==========================
   Top Marquee Nav Styling
========================== */
.nav1 {
  background-color: #457b9d;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  flex-wrap: nowrap;
}

.nav1 a {
  color: white !important;
  text-decoration: none;
  font-size: 15px;
  text-align: center !important;
}

/* ==========================
   Offcanvas & Mobile Nav
========================== */
.btne {
  position: absolute;
  top: 45px;
  left: 10px;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 20px;
}

.nav33 img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  max-height: 100%;
}

.main-mobile li {
  list-style: none;
  padding: 10px;
  text-align: center;
  font-size: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.vertical-nav a {
  text-decoration: none;
  color: black;
}

.vertical-nav a:hover {
  color:#457b9d;
}

.icon1:hover img {
  transform: scale(1.1);
}

/* ==========================
   Logo & Header
========================== */
.logo-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0;
}

.logo-image1:hover img{
    transform: scale(1.1);

}
.nav3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.navb a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: transparent;
  text-decoration: none;
  color: black;
  font-family: "Bebas Neue", sans-serif !important;
}

.navb a:hover {
  cursor: pointer;
  color: #457b9d;
}

/*==========================
  Banner Styling
========================== */
.banner {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================
   Product Grid Layout
========================== */
.product-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  text-align: center;
  padding: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-img1 {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
}

.product-img1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.4s ease;
  position: absolute;
  top: 0;
  left: 0;
}

.default-img {
  opacity: 1;
  z-index: 1;
}

.hover-img {
  opacity: 0;
  z-index: 2;
  transform: scale(1.05);
}

.product-img1:hover .default-img {
  opacity: 0;
}

.product-img1:hover .hover-img {
  opacity: 1;
  transform: scale(1.1);
}

.product-info {
  margin-top: 10px;
}

.product-name {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  margin: 0;
}

.product-price {
  color: #457b9d;
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
}

/* ==========================
   Footer Styling
========================== */
footer ul li {
  margin-bottom: 10px;
}

footer .social-icons a {
  font-size: 18px;
}

footer .social-icons a:hover {
  color: rgb(8, 6, 5);
}

.social-icons a {
  font-size: 20px;
  color: #333;
  transition: color 0.3s ease;
}

/* ==========================
   Mobile Toggle Button
========================== */
.mobile-toggle {
  position: fixed;
  top: 15px;
  left: 15px;
  background-color: #fff;
  border: none;
  z-index: 1050;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
  font-size: 20px;
}

.mobile-toggle i {
  color: #333;
}


@media (min-width: 992px) {
  .mobile-toggle {
    display: none;
  }
}

/* ==========================
   Responsive Design 
========================== */

/* Tablets: 2 items per row */
@media (max-width: 992px) {
  .product-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: 1 item per row */
@media (max-width: 600px) {
  .product-gallery {
    grid-template-columns:1fr;
  }

  .product-img1 img{
    height: 150px;
  }
}

/* Adjustments for tablets and below */
@media (max-width: 768px) {
  .product-gallery {
    grid-template-columns: 1fr;
  }

  .btne {
    top: 10px;
    left: 10px;
  }

  .nav1 {
    font-size: 13px;
    padding: 5px 10px;
  }

  .banner img {
    height: auto;
    max-height: 300px;
    object-fit: cover;
  }

  footer .col-md-4 {
    text-align: center;
  }

  footer .social-icons {
    justify-content: center;
    display: flex;
  }

  .main-mobile li {
    font-size: 18px;
    padding: 8px;
  }

  .offcanvas-header img {
    width: 70px;
  }

  .logo {
    flex-direction: column;
    gap: 10px;
  }

  .social-icons {
    order: 1;
    justify-content: center;
  }

  .logo-image1 {
    order: 2;
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .icons {
    order: 3;
    justify-content: center;
  }
}

/* Small Screens */
@media (max-width: 576px) {
  .product-card img {
    height: 100%;
  }

  .product-name {
    font-size: 0.9rem;
  }

  .product-price {
    font-size: 0.85rem;
  }

  footer form {
    flex-direction: column;
  }

  footer form input,
  footer form button {
    width: 100%;
    margin-bottom: 8px;
  }
}








