.ultra-about-main {
  background: radial-gradient(circle at top left, #050B1E, #010316);
  color: white;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
}

/* HERO */
.ultra-hero {
  padding: 120px 30px;
  background: linear-gradient(to bottom, #000000, #001e3a);
  text-align: center;
}
.hero-inner h1 {
  font-size: 3.5rem;
  background: linear-gradient(to right, #00f0ff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.hero-inner p {
  font-size: 1.2rem;
  color: #c6dfff;
}

/* OUR STORY */
.ultra-story {
  padding: 100px 30px;
  background: linear-gradient(to right, #061f36, #03111f);
}
.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.story-block {
  background: rgba(255,255,255,0.05);
  padding: 30px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  width: 300px;
  box-shadow: 0 15px 40px rgba(0,255,255,0.05);
  transition: transform 0.3s ease;
}
.story-block:hover {
  transform: translateY(-10px);
}
.story-block h3 {
  font-size: 1.4rem;
  color: #00d4ff;
  margin-bottom: 10px;
}
.story-block p {
  font-size: 0.95rem;
  color: #b6c6d8;
}

/* WHO WE SERVE */
.who-we-serve {
  padding: 100px 30px;
  background: linear-gradient(to bottom right, #050d1a, #041427);
  text-align: center;
}

.serve-heading h2 {
  font-size: 2.6rem;
  background: linear-gradient(to right, #00f0ff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.serve-heading p {
  font-size: 1.1rem;
  color: #c3d9ef;
  margin-bottom: 60px;
}

.serve-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.serve-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  backdrop-filter: blur(16px);
  padding: 30px;
  box-shadow: 0 12px 30px rgba(0, 255, 255, 0.05);
  transition: transform 0.3s ease;
  text-align: center;
  animation: zoomIn 0.8s ease forwards;
  opacity: 0;
  transform: scale(0.9);
}

.serve-card:hover {
  transform: translateY(-10px) scale(1.02);
}

.serve-card i {
  font-size: 2.2rem;
  color: #00e4ff;
  margin-bottom: 15px;
}

.serve-card h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
}

.serve-card p {
  font-size: 0.95rem;
  color: #c0d4e9;
  line-height: 1.5;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}


/* PROMISE */
.absolve-promise-section {
  padding: 100px 30px;
  background: linear-gradient(to bottom left, #001b2f, #000d1a);
  text-align: center;
}

.promise-heading h2 {
  font-size: 2.6rem;
  background: linear-gradient(to right, #00f0ff, #0077ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
}

.promise-heading p {
  color: #c3d9ef;
  font-size: 1.05rem;
  margin-bottom: 50px;
}

.promise-grid-new {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.promise-item {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);
  border-radius: 18px;
  padding: 35px 25px;
  box-shadow: 0 12px 25px rgba(0, 255, 255, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(60px);
  animation: floatUp 0.9s ease forwards;
}

.promise-item:hover {
  box-shadow: 0 18px 50px rgba(0, 255, 255, 0.15);
  transform: translateY(-8px);
}

.promise-item i {
  font-size: 2rem;
  color: #00e1ff;
  margin-bottom: 12px;
}

.promise-item h4 {
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 8px;
}

.promise-item p {
  font-size: 0.95rem;
  color: #c0d4e9;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }

@keyframes floatUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Animation */
.animate-fade {
  opacity: 0;
  animation: fadeUp 1s forwards;
}
.animate-fade.delay-1 { animation-delay: 0.2s; }
.animate-fade.delay-2 { animation-delay: 0.4s; }
.animate-fade.delay-3 { animation-delay: 0.6s; }
.animate-fade.delay-4 { animation-delay: 0.8s; }
.animate-fade.delay-5 { animation-delay: 1s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
