* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.container {
  width: 96%;
  max-width: 1400px;
  margin: auto;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.slider-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.6s ease-in-out;
  z-index: 1;
  pointer-events: none;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

/* Light fade overlay */

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Slidebar / Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 100;
  pointer-events: auto;
}

.slider-dots .dot {
  width: 40px;
  height: 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}

.slider-dots .dot.active {
  background-color: #e4a400;
  width: 60px;
}

/* Glass card */

.hero-content {
  position: relative;
  z-index: 3;
  background: rgba(255, 255, 255, 0.85);

  backdrop-filter: blur(6px);

  padding: 60px 100px;

  border-radius: 14px;

  max-width: 900px;

  text-align: center;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);

  transition: opacity 0.3s ease-in-out;
}

/* Heading */

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.3;
}

/* Colors */

.gold {
  color: #e4a400;
}

.purple {
  color: #4a0057;
}

.about-section {
  position: relative;
  background: #e3a200;
  padding: 120px 0;
  overflow: hidden;
}

/* right grey background strip */

.about-section::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 25%;
  height: 100%;
  background: #ffff;
}

/* container */

.about-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* text */

.about-text {
  width: 55%;
}

.about-text p {
  font-size: 18px;
  line-height: 1.9;
  color: #2b0033;

  margin-bottom: 30px;
  font-weight: 500;
}

.about-text strong {
  font-weight: 700;
}

/* image */

.about-image {
  position: absolute;
  right: 8%;
  top: 28px;
  width: 520px;
  z-index: 2;
}

.about-image img {
  width: 100%;
  height: 550px;

  object-fit: cover;
}

/* SECTION */

.values {
  background: #ffff;
  padding: 80px 0;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* TITLE */

.values-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 80px;
  color: #3b0a46;
}

.values-title span {
  color: #e2a100;
}

/* GRID */

.value-grid {
  display: flex;
  justify-content: center;
  gap: 90px;
}

/* CARD */

.value-card {
  width: 340px;
}

/* CENTER CARD LOWER */

.middle-card {
  margin-top: 90px;
}

/* IMAGE */

.value-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

/* CONTENT */

.card-content {
  background: #3b0a46;
  padding: 28px;

  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

/* TEXT */

.card-content h3 {
  color: #ffc107;
  font-size: 22px;
  margin-bottom: 12px;
}

.card-content p {
  color: #ffc107;
  font-size: 16px;
  line-height: 1.6;
}

/* SECTION */

.products {
  background: #ffff;
  padding: 80px 0 120px;
}

/* CONTAINER */

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* TITLE */

.products-title {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 70px;
}

.products-title .purple {
  color: #3b0a46;
}

.products-title .gold {
  color: #e2a100;
}

/* GRID */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

/* CARD */

.product-card {
  width: 100%;
  text-align: center;
  border-radius: 22px;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.product-card img {
  width: 130%;
  height: 220px;
  object-fit: cover;
  border-radius: 22px;

  transition: transform 0.4s ease;
}

/* .products .product-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
} */

.products .product-card:hover img {
  transform: translateY(-10px) scale(1.05);
  /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18); */
}

/* TEXT */

.product-card p {
  margin-top: 16px;
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

/* SECTION */

.solutions {
  background: #ffff;
  padding: 80px 0;
}

/* CONTAINER */

.solutions-container {
  width: 90%;
  max-width: 1400px;
  margin: auto;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 120px;
}

/* TEXT */

.solutions-text {
  width: 40%;
}

.solutions-text h2 {
  font-size: 48px;
  line-height: 1.2;
}

.solutions-text .purple {
  color: #3b0a46;
  font-weight: 700;
}

.solutions-text .gold {
  color: #e2a100;
  font-weight: 700;
}

/* CARDS */

.solutions-cards {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

/* CARD */

.solution-card {
  flex: 1;
  max-width: 250px;
  text-align: center;
}

/* IMAGE */

.solution-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

/* TEXT */

.solution-card p {
  margin-top: 18px;
  font-size: 18px;
  color: #222;
  line-height: 1.5;
}
/* CTA */
.cta {
  background: linear-gradient(135deg, #4b0a4e, #1e3a8a);
  color: white;
  text-align: center;
  padding: 70px 20px;
}

.cta h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.cta p {
  opacity: 0.8;
  margin-bottom: 25px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-white {
  background: white;
  color: #0f2c6e;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline {
  border: 1px solid white;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  color: white;
}

.btn-outline {
  display: flex;
  align-items: center;
  gap: 8px;

  border: 1px solid white;
  padding: 12px 22px;
  border-radius: 6px;
  text-decoration: none;
  color: white;
}

/* icon style */

.download-icon svg {
  width: 16px;
  height: 16px;
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* RESPONSIVE DESIGN */

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .hero-content {
    padding: 40px 60px;
    max-width: 700px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .about-section {
    padding: 80px 0;
  }

  .about-text {
    width: 60%;
  }

  .about-image {
    width: 400px;
    top: 50%;
    transform: translateY(-50%);
  }

  .about-image img {
    height: auto;
  }

  .about-section::after {
    width: 30%;
  }

  .value-grid {
    flex-wrap: wrap;
    gap: 40px;
  }

  .middle-card {
    margin-top: 0;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: center;
  }

  .solutions-container {
    flex-direction: column;
    gap: 60px;
    text-align: center;
  }

  .solutions-text {
    width: 100%;
  }

  .solutions-cards {
    justify-content: center;
  }
}

/* Mobile (767px) */
@media (max-width: 767px) {
  .hero {
    height: 400px;
    justify-content: center;
  }

  .hero-content {
    padding: 30px 20px;
    max-width: 90%;
  }

  .hero h1 {
    font-size: 32px;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-section::after {
    display: none;
  }

  .about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .about-text {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
  }

  .about-image {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    transform: none;
  }

  .value-grid {
    justify-content: center;
  }

  .value-card {
    width: 100%;
    max-width: 380px;
  }

  .values-title {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
  }

  .products-title {
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
  }

  .solutions-cards {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 100%;
  }

  .solution-card {
    width: 100%;
    max-width: 380px;
  }

  .solutions-text h2 {
    font-size: 36px;
  }
}

/* Small Mobile (480px) */
@media (max-width: 480px) {
  .hero {
    height: 350px;
  }

  .hero h1 {
    font-size: 26px;
  }

  .hero-content {
    padding: 24px 15px;
  }

  .values-title {
    font-size: 28px;
  }

  .products-title {
    font-size: 28px;
  }

  .solutions-text h2 {
    font-size: 30px;
  }

  .card-content {
    padding: 20px;
  }

  .value-card img {
    height: 280px;
  }

  .solution-card img {
    height: 250px;
  }

  .about-text p {
    font-size: 16px;
  }
}
