/* Index.html animated section styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #f4f6fb;
}

/* Privacy Policy Typography */

h1 {
  font-style: normal;
  font-weight: 500;
  font-size: 32px;
  line-height: 38px;
  color: rgb(51, 51, 51);
}

h2 {
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: rgb(51, 51, 51);
  margin-top: 25px;
}

p {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgb(51, 51, 51);
  margin-bottom: 15px;
}

/* ================= INDUSTRIES SECTION ================= */

.industries {
  position: relative;
  padding: 40px 10% 40px;
  background-image: url(https://navituschemicals.co.in/wp-content/uploads/2024/09/WhatsApp-Image-2024-09-06-at-17.30.12_635ffe74.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
  overflow: hidden;
}

/* Light overlay for soft look */
.industries::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(3px);
  z-index: 1;
}

/* Title */
.section-title {
  position: relative;
  font-family: "Teko", Sans-serif;
  font-size: 50px;
  color: #07007e;
  font-weight: 600;
  margin-bottom: 50px;
  letter-spacing: 1px;
  z-index: 2;
}

/* Flex Container */
.hex-container {
  position: relative;
  width: 70%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px 5px;
  z-index: 2;
  opacity: 0;
  transform: translateY(-250px);
  transition:
    opacity 1s ease,
    transform 1.5s ease;
}

.hex-container.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================= HEXAGON CARD ================= */

.hex-card {
  width: 220px;
  height: 200px;
  position: relative;
}

/* Inner hex with background image */
.hex-inner {
  position: absolute;
  inset: 0;
  background: url("Background-23.png") center/80% auto no-repeat;
  clip-path: polygon(50% 0%, 95% 25%, 95% 75%, 50% 100%, 5% 75%, 5% 25%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  z-index: 2;
}

/* Icons */
.hex-inner img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

/* Pop animation on hover */
.hex-card .hex-inner img:hover {
  animation: pop 1s ease-in-out infinite;
}

@keyframes pop {
  0%,
  100% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1.15);
  }
}

/* Text */
.hex-inner h3 {
  font-size: 13px;
  font-weight: 600;
  color: #1c2474;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
  .hex-container {
    width: 90%;
  }
}

@media (max-width: 600px) {
  .hex-container {
    width: 100%;
  }
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Teko', sans-serif;
}