/* SECTION */
.delivery {
  position: relative;
  padding: 100px 20px;
  background: #fff;
  overflow: hidden;
}

/* CONTAINER */
.delivery-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* LEFT */
.delivery-left {
  flex: 1;
}

.delivery-left h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  font-weight: 900;
  color: #0f2d6b;
  padding-bottom: 30px !important;
}

.delivery-left p {
  color: #555;
  margin-bottom: 30px;
  max-width: 500px;
}

/* FEATURES GRID */
.delivery-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* CARD */
.delivery-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 12px;
  transition: 0.3s;
}

.delivery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(10, 31, 68, 0.15);
}

/* ICON */
.delivery-card i {
  font-size: 22px;
  color: var(--red);

  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  border-radius: 50%;
  margin-bottom: 10px;
  color: var(--navy);
  background: linear-gradient(135deg, var(--navy), var(--red));
}

/* RIGHT IMAGE */
.delivery-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.delivery-image-box {
  width: 100%;
  max-width: 400px;
}

.delivery-image-box img {
  width: 100%;
  object-fit: contain;
}

/* ===== NAVY GLOW ===== */
.delivery-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 500px;
  height: 500px;

  background: radial-gradient(circle, rgba(10, 31, 68, 0.25) 0%, transparent 70%);
  filter: blur(120px);

  transform: translate(-50%, -50%);
  animation: deliveryGlow 16s ease-in-out infinite alternate;

  z-index: 0;
}

/* CONTENT ABOVE GLOW */
.delivery .container {
  position: relative;
  z-index: 1;
}

/* GLOW ANIMATION */
@keyframes deliveryGlow {
  0% {
    transform: translate(-50%, -50%);
  }
  100% {
    transform: translate(-40%, -60%);
  }
}

/* ===== ANIMATION ===== */
.delivery-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}

.delivery-animate.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .delivery-container {
    flex-direction: column;
    text-align: center;
  }

  .delivery-features {
    grid-template-columns: 1fr;
  }
}
