/* -----------------------
   GLOBAL RESETS & SCROLLBAR
------------------------ */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: 'Montserrat', sans-serif;
  scrollbar-width: none;            /* Firefox */
  -ms-overflow-style: none;         /* IE 10+ */
  background-color: #f9f7f3;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;                    /* Chrome, Safari, Edge */
}

/* -----------------------
   HERO SECTION
------------------------ */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  /* background-color: #f9f7f3; */
}

.logo-style {
  position: absolute;
  top: 50px;
  left: 50px;
  z-index: 2;
  max-width: 300px;
  height: auto;
}

.hero-image {
  position: absolute;
  top: 0;
  width: 100%;
  object-fit: contain;
  object-position: right center;
  z-index: 0;
  transition: opacity 1s ease-in-out;
  opacity: 0; /* Initially hidden */
}

.a-cont {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: left;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

 #a-head,
 #a-par {
    position: absolute;
    word-wrap: break-word;
    transition: all 0.5s ease-in-out;
    font-size: 1.4rem;
    margin: 0;
    line-height: 1.4;
    top: 55%;
    left: 50px;
    width: 50%;
    color: #333;
    
}

#a-head {
  top: 23%;
  font-size: 3.5rem;
  font-weight: bold;

}


/* -----------------------
   PRODUCT TABLE SECTION
------------------------ */
.product-section {
  background-color: #000;
  padding: 30px 0;
  /* text-align: center; */
}

.product-heading {
  /* font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem; */
  display: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px 5px;
  /* margin-top: 50px; */
  /* padding: 0 20px; */
}

.product-item {
  display: block;
  text-decoration: none;
  color: #FFF;
  background-color: #000;
  padding: 15px;
  font-size: 1.1rem;
  font-weight: 500;
  border-radius: 4px;
  transition: background-color 0.3s ease, color 0.3s ease;
  text-align: left;
}
.product-item[href="#"] {
  pointer-events: none;
  cursor: default;
  /* color: #999;  */
}
.product-item[href]:not([href="#"]):hover {
  background-color: #000;
  color: #007BFF;
}

@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .product-item {
    font-size: 1rem; /* or 0.8rem or 0.5rem as needed */
  }  
  .product-item:focus,
  .product-item:active {
    background-color: #222;
    color: #007BFF;
  }  
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-item {
    font-size: 0.8rem; /* or 0.8rem or 0.5rem as needed */
  }
  .footer-text {
    font-size: 0.8rem;
  }  
}

/* -----------------------
   CONTACT SECTION
------------------------ */

.contact-section {
  background-color: #000;
  padding: 40px 0;
  text-align: center;
}

.contact-heading {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  text-align: center;
  margin-bottom: 1rem;
  display: none;
}

.email-line {
  margin-bottom: 1.5rem;
}

.contact-link {
  color: #FFF;
  font-size: 1.1rem;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
  color: #007BFF;
}

.map-wrapper iframe {
  border-radius: 8px;
  width: 100%;
  max-width: 100%;
  height: 400px;
  margin: 20px 0;
}

.company-details p {
  margin: 5px 0;
  font-size: 1rem;
  color: #FFF;
}

/* -----------------------
   FOOTER
------------------------ */

.site-footer {
  background-color: #000;
  color: #aaa;
  text-align: center;
  padding: 20px 0;
}

.footer-text {
  margin: 0;
  font-size: 1rem;
}



