/* =========================
   HERO SECTION
========================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;

  /* Enterprise-style background */
  background: 
    linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.65)),
    url('https://images.unsplash.com/photo-1758518727820-28491c194bee?q=80&w=1631&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') no-repeat center center/cover;
}

/* Optional overlay for extra control */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.1); /* subtle light overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2; /* Above the shapes and overlay */
  max-width: 900px;
  padding: 0 1rem;
  color: #fff; /* Text in white for better contrast */
}

.hero-tagline {
  display: inline-block;
  font-size: 0.85rem;
  color: #ffd700; /* golden for enterprise feel */
  font-weight: 600;
  letter-spacing: 2px;
  background: rgba(0,0,0,0.4); /* subtle dark background behind text */
  border-radius: 30px;
  padding: 0.5rem 1.5rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
}

.hero h1, .hero p {
  color: #fff; /* white text for visibility */
}

.hero-buttons {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 4rem;
}

.hero-btn.primary {
  background: linear-gradient(135deg, #0078d7, #005ea3);
  color: #fff;
  border: 2px solid #0078d7;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn.primary:hover {
  background: linear-gradient(135deg, #005ea3, #003f7f);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.hero-btn.secondary {
  background: white;
  color: #0078d7;
  border: 2px solid #0078d7;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero-btn.secondary:hover {
  background: #0078d7;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.4rem;
  color: white;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,100% { transform: translate(-50%,0); }
  50% { transform: translate(-50%,-10px); }
}

/* =========================
   ABOUT SECTION
========================= */
.about {
  padding: 6rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.about h2 {
  font-size: 2.2rem;
  color: #0078d7;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about p {
  max-width: 850px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

.learn-more-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #0078d7;
  color: #fff;
  border-radius: 50px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #005ea3;
  color: #fff;
  transform: scale(1.05);
}

/* =========================
   DIVISIONS / CARDS
========================= */
.divisions {
  padding: 6rem 2rem;
  text-align: center;
}

.divisions h2 {
  font-size: 2.2rem;
  color: #0078d7;
  margin-bottom: 2rem;
  font-weight: 700;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.card {
  background: #fff;
  border-radius: 15px;
  padding: 2.2rem;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card img {
  width: 100%;
  max-width: 200px;
  height: 150px;
  object-fit: contain;
  margin-bottom: 1.2rem;
  transition: transform 0.3s ease;
}

.card img:hover {
  transform: scale(1.05);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  color: #0078d7;
  font-weight: 600;
}

.card p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.card-btn {
  display: inline-block;
  padding: 0.7rem 1.6rem;
  border-radius: 50px;
  background: linear-gradient(135deg, #0078d7, #005ea3);
  color: #fff;
  font-weight: 600;
  transition: all 0.3s ease;
}

.card-btn:hover {
  background: linear-gradient(135deg, #005ea3, #003f7f);
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.12);
}

/* =========================
   WHY BUY SECTION
========================= */
.why-buy {
  padding: 4rem 0;
  background: #f7f9fc;
  text-align: center;
}

.why-buy h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: #0078d7;
}

.why-buy-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.why-buy .card {
  background: #fff;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
  flex: 1 1 220px;
  max-width: 250px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-buy .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.why-buy .card i {
  font-size: 2.5rem;
  color: #0078d7;
  margin-bottom: 1rem;
}

.why-buy .card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #333;
}

.why-buy .card p {
  font-size: 0.95rem;
  color: #555;
}
.shop-with-us {
    padding: 60px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.shop-with-us h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
    color: #333;
}

.shop-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.shop-logos img {
    max-width: 150px;
    height: auto;
    transition: all 0.5s ease;
    filter: grayscale(100%);
}

.shop-logos img:hover {
    /* transform: scale(1.1); */
    filter: grayscale(0%);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .about h2,
  .divisions h2 {
    font-size: 1.9rem;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .about p,
  .card p {
    font-size: 1rem;
  }

  .hero-btn,
  .card-btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
  }
}
