:root {
  --primary: #0057B8;
  --secondary: #E31B23;
  --dark: #0F172A;
  --light: #F8FAFC;
  --muted: #64748B;
  --white: #FFFFFF;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background:
    radial-gradient(circle at 15% 25%, rgba(0,87,184,.07), transparent 28%),
    radial-gradient(circle at 85% 65%, rgba(227,27,35,.06), transparent 30%),
    linear-gradient(180deg, #F8FAFC, #EEF4FF);
  color: var(--dark);
}

/* ABOUT HERO */
.about-hero {
  min-height: 78vh;
  padding: 180px 8% 110px;
  text-align: center;
  color: white;
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(circle at 78% 22%, rgba(0,87,184,.45), transparent 30%),
    radial-gradient(circle at 18% 75%, rgba(227,27,35,.25), transparent 32%),
    linear-gradient(135deg, #0F172A, #1E293B, #2563EB);
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .5;
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  filter: blur(80px);
  right: -180px;
  bottom: -220px;
}

.about-hero span,
.about-hero h1,
.about-hero p {
  position: relative;
  z-index: 2;
}

.about-hero span {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 50px;
  color: #BFDBFE;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
}

.about-hero h1 {
  max-width: 950px;
  margin: 28px auto 22px;
  font-size: 76px;
  line-height: 1.02;
}

.about-hero h1::after {
  content: "";
  display: block;
  width: 120px;
  height: 4px;
  margin: 28px auto 0;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  box-shadow: 0 0 18px rgba(0,87,184,.6);
}

.about-hero p {
  max-width: 780px;
  margin: auto;
  font-size: 19px;
  line-height: 1.85;
  color: rgba(255,255,255,.82);
}

/* ABOUT SLIDER */
.about-slider {
  width: 90%;
  margin: 70px auto;
  padding: 28px;
  border-radius: 42px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(0,87,184,.12);
  box-shadow: 0 28px 70px rgba(15,23,42,.08);
  overflow: hidden;
}

.slider-nav {
  display: flex;
  gap: 12px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.about-tab {
  border: 0;
  padding: 12px 22px;
  border-radius: 50px;
  background: rgba(0,87,184,.08);
  color: var(--dark);
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}

.about-tab.active,
.about-tab:hover {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
}

.about-slides {
  position: relative;
  min-height: 500px;
}

.about-slide {
  position: absolute;
  inset: 0;
  padding: 45px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  opacity: 0;
  transform: translateX(60px);
  pointer-events: none;
  transition: .6s ease;
}

.about-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide-text span {
  color: var(--secondary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3px;
}

.slide-text h2 {
  font-size: 46px;
  line-height: 1.1;
  margin: 18px 0 22px;
}

.slide-text p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 16px;
}

/* STORY IMAGE WITH PNG */
.spice-showcase {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spice-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(0,87,184,.18), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(227,27,35,.14), transparent 55%);
  filter: blur(35px);
  animation: glowPulse 5s ease-in-out infinite;
}

.spice-showcase img {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 470px;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 28px 35px rgba(15,23,42,.18));
  animation: floatSpices 5s ease-in-out infinite;
}

/* MISSION SLIDE */
.mission-slide {
  color: white;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,87,184,.35), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(227,27,35,.20), transparent 30%),
    linear-gradient(135deg, #0F172A, #1E293B);
}

.dark-text span {
  color: #93C5FD;
}

.dark-text p,
.mv-item p {
  color: rgba(255,255,255,.75);
}

.mv-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mv-item {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
  transition: .35s;
}

.mv-item:hover {
  transform: translateX(10px);
  background: rgba(255,255,255,.15);
}

.mv-item h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* PROCESS SLIDE */
.process-flow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.process-step {
  position: relative;
  padding: 26px;
  border-radius: 24px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(0,87,184,.10);
  box-shadow: 0 16px 35px rgba(15,23,42,.07);
  overflow: hidden;
  transition: .35s;
}

.process-step::before {
  content: "";
  position: absolute;
  width: 90px;
  height: 90px;
  right: -35px;
  top: -35px;
  border-radius: 50%;
  background: rgba(0,87,184,.08);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(0,87,184,.13);
}

.process-step span {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 2px;
  color: var(--secondary);
}

.process-step h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.process-step p {
  color: var(--muted);
  line-height: 1.6;
}

/* ANIMATIONS */
@keyframes floatSpices {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

@keyframes glowPulse {
  0%, 100% {
    transform: scale(1);
    opacity: .8;
  }

  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-slides {
    min-height: 850px;
  }

  .about-slide {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }

  .slide-text h2 {
    font-size: 34px;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .spice-showcase img {
    max-width: 360px;
  }
}

/* SECTION TITLE */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title span {
  color: var(--secondary);
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.section-title span::before,
.section-title span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.section-title span::before {
  right: 100%;
}

.section-title span::after {
  left: 100%;
}

.section-title h2 {
  font-size: 46px;
  margin-top: 15px;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--dark), var(--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* WHY US */
.why-us {
  padding: 20px 8%;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  padding: 32px;
  border-radius: 26px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(0,87,184,.10);
  box-shadow: 0 18px 45px rgba(15,23,42,.07);
  transition: .35s;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0,87,184,.14);
}

.why-card span {
  display: inline-block;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 800;
  color: var(--secondary);
  letter-spacing: 2px;
}

.why-card h3 {
  color: var(--dark);
  margin-bottom: 12px;
  font-size: 23px;
}

.why-card p {
  color: var(--muted);
  line-height: 1.7;
}

/* PROCESS */
.process {
  width: 90%;
  margin: 40px auto 70px;
  padding: 70px;
  border-radius: 40px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(0,87,184,.10);
  box-shadow: 0 25px 60px rgba(15,23,42,.08);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.step {
  padding: 32px;
  text-align: center;
  border-radius: 24px;
  background: white;
  box-shadow: 0 15px 35px rgba(15,23,42,.06);
  transition: .35s;
}

.step:hover {
  transform: translateY(-8px);
}

.step h3 {
  font-size: 36px;
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.step p {
  color: var(--muted);
  font-weight: 700;
}

.promise-slide {
  color: white;
  border-radius: 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(0,87,184,.35), transparent 28%),
    radial-gradient(circle at 85% 75%, rgba(227,27,35,.22), transparent 30%),
    linear-gradient(135deg, #0F172A, #1E293B);
}

.promise-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.promise-item {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}

.promise-item h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.promise-item p {
  color: rgba(255,255,255,.75);
  line-height: 1.7;
}

.promise-item {
  position: relative;

  padding: 24px;

  border-radius: 22px;

  background: rgba(255,255,255,.10);

  border: 1px solid rgba(255,255,255,.16);

  backdrop-filter: blur(12px);

  overflow: hidden;

  transition: .4s;
}

.promise-item::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      135deg,
      rgba(0,87,184,.08),
      rgba(227,27,35,.08)
    );

  opacity: 0;

  transition: .4s;
}

.promise-item:hover {
  transform: translateY(-8px) scale(1.02);

  border-color: rgba(255,255,255,.35);

  box-shadow:
    0 20px 50px rgba(0,87,184,.18);
}

.promise-item:hover::before {
  opacity: 1;
}

.promise-item h3 {
  position: relative;
  z-index: 2;

  font-size: 22px;

  margin-bottom: 8px;

  transition: .3s;
}

.promise-item p {
  position: relative;
  z-index: 2;

  color: rgba(255,255,255,.75);

  line-height: 1.7;
}

.promise-item:hover h3 {
  color: #93C5FD;
}

.about-tab {
  position: relative;
  overflow: hidden;
}

.about-tab::before {
  content: "";

  position: absolute;

  top: 0;
  left: -100%;

  width: 100%;
  height: 100%;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,.35),
      transparent
    );

  transition: .5s;
}

.about-tab:hover::before {
  left: 100%;
}

.about-tab:hover {
  transform: translateY(-3px);
}


/* RESPONSIVE */
@media (max-width: 900px) {
  .about-hero h1 {
    font-size: 44px;
  }

  .story,
  .mission-vision {
    grid-template-columns: 1fr;
    padding: 40px 25px;
  }

  .mv-left h2,
  .story-text h2,
  .section-title h2 {
    font-size: 34px;
  }

  .why-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

}