* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", Arial, sans-serif !important;
  background-color: #fff;
  font-weight: 500;
  line-height: 1.6;
}
.star {
  height: 250px;
  margin-top: 10px;
}
.hero-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40vh;
  background: linear-gradient(to right, #3b82f6, #9333ea);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-content {
  max-width: 600px;
  animation: 1.5s ease-in-out fadeIn;
}
.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  animation: 1s ease-in-out slideIn;
}
.hero-subtext {
  font-size: 1.2rem;
  opacity: 0.8;
  margin-bottom: 20px;
  animation: 1.2s ease-in-out slideUp;
}
.hero-button {
  display: inline-block;
  background: #fff;
  color: rgb(46 66 119);
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.b,
.c,
.d {
  height: 400px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.hero-button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.b {
  background-image: url(../images/history.jpg);
}
.c {
  background-image: url(../images/vision-mission-inspiration-word.jpg);
}
.d {
  background-image: url(../images/Manufacturing_-kitchen-appliance.webp);
}

@media (min-width: 576px) {
  .col-sm-8 {
    flex: 0 0 auto;
    width: 90.66666667%;
  }
  .star {
    margin: 10px;
  }
  .card {
    margin: 20px;
  }
}

.card {
  height: 320px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .container-fluid .row .text-dark {
    text-align: center;
  }
  .text-dark {
    text-align: center;
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
  }
  h1 {
    text-align: center;
  }
}
