@font-face {
    font-family: "Montserrat";
    src: url("./assets/fonts/Montserrat-Regular.ttf") format("truetype");
}
*, :after, :before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  /* background: #f8f8f8 url("https://i.ibb.co/7RbYCMd/bg-dots.png") repeat; */
  text-align: center;
  color: #333;
  background-color: #f9fafa;
}

header {
  padding: 5px;
  background-color: #fff;
  box-shadow: 0 0 13px 0 rgba(110.63249110346256, 112.80080614648833, 113.84999084472658, 0.35);
}
header .header-image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height:60px;
  width: 145px;
  margin: auto;
}
header img {
  display: block;
  width: 100%;
  height: 100%;
}

main {
  position: relative;
  padding: 70px 0;
  background-image: url("https://jainsonledlights.com/wp-content/uploads/2022/09/Dot-Transparent-Background.png");
  background-size: cover;
  height:90vh;
}

main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.7); /* Black overlay with 0.7 opacity */
  z-index: 1; /* Make sure overlay stays above the background but below other content */
}

main > * {
  position: relative;
  z-index: 2; /* Make sure content is above the overlay */
}
h2 {
  font-size: 24px;
  margin: 10px 0;
}
p {
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: 600;
}
.catalogues {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px auto 60px;
  flex-wrap: wrap;
}

.catalogues a {
  display: block;
  max-width: 430px;
  transition: transform 0.3s ease;
}

.catalogues a img {
  width: 100%;
  /* border-radius: 8px; */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* .catalogues a:hover {
  transform: scale(1.05);
} */

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #25d366;
  color: white;
  font-size: 16px;
  font-weight: bold;
  padding: 8px 20px;
  border-radius: 30px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 999;
}

.whatsapp-btn svg {
  width: 26px;
  height: 26px;
}
.whatsapp-btn svg path{
  fill:#fff;
}
.whatsapp-btn:hover {
  background: #20b858;
}
#download-toast{
    position: fixed;
    bottom: 80px;
    right: 0;
    background: #323232;
    color: #fff;
    padding: 10px 15px;
    border-radius: 0;
    font-size: 14px;
    opacity: 0;
    width: 100%;
    text-align: center;
    transition: opacity 0.4s ease;
    z-index: 9999;
}
#download-toast.show{
    opacity: 1;
}
@media (max-width: 600px) {
  header{
    box-shadow: 0px 6px 20px 8px rgb(111 113 114 / 70%);
  }
  main{
    padding:40px 20px;
  }
}