/* --- General Reset --- */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #111827;
  background-color: var(--white-bg);
}

/* --- Container --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* --- Hero Section --- */
.hero-about {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color:rgb(0, 140, 255);
  margin: 0;
}

.hero-text p {
  font-size: 1.2rem;
  text-align: center;
  color:var(--black-text);
  margin:20px;
}

/* --- Hero Image --- */
.hero-image{
display: flex;
justify-content: center;
}
.image-wrapper {
  position: relative;
  display: inline-block;
}
.image-wrapper img {
  width: 320px;
  border-radius: 20px;
  transition: transform 0.4s ease;
}

.hero-image img {
  max-width: 400px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Highlights / Cards --- */
.highlights {
  display: flex;
  gap: 30px;
  margin-top: 60px;
  flex-wrap: wrap;
  justify-content: center;
}

.highlight-card {
  background-color: white;
  padding: 30px;
  border-radius: 16px;
  flex: 1 1 250px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

/* --- Vision Section --- */
.vision-section {
  background-color: #0f172a;
  color: white;
  text-align: center;
  padding: 80px 20px;
  margin-top: 80px;
  border-radius: 16px;
}

.vision-section h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

/* --- Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s forwards;
}

.fade-right {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeRight 1s forwards;
}

.delay-1 { animation-delay: 0.3s; }
.delay-2 { animation-delay: 0.6s; }
.delay-3 { animation-delay: 0.9s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeRight {
  to { opacity: 1; transform: translateX(0); }
}

.hero-image {
  perspective: 1000px;
  display: flex;
  justify-content: center;
}

.hero-image img {
  /* width: 320px; */
  border-radius: 20px;
  transform: rotateY(45deg) scale(0.9);
  opacity: 0;
  animation: rotateReveal 1.2s ease forwards;
  transition: transform 0.4s ease;
}

@keyframes rotateReveal {
  to {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
  }
}

/* Hover zoom */
/* .image-wrapper:hover img {
  transform: scale(1.05);
} */

/* Speech bubble */
.speech-bubble {
  position: absolute;
  bottom: 88%;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: #ffd54f;   /* soft yellow */
  color: black;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  transition: all 0.3s ease;
}

/* Bubble arrow */
.speech-bubble::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: #ffd54f transparent transparent transparent;
}

/* Show on hover */
.image-wrapper:hover .speech-bubble {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}



