/* ===================================
   ABOUT US SECTION
   =================================== */

.about-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -5%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(10, 31, 68, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.about-section::after {
  content: '';
  position: absolute;
  bottom: -8%;
  right: -8%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(46, 92, 154, 0.04) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite 4s;
}

.about-section .hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}

.about-section .hero-text {
  color: var(--text-dark);
}

.about-section .hero-text h2 {
  color: var(--primary-navy);
  text-shadow: none;
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 15px;
}

.about-section .hero-text p {
  color: var(--text-gray);
  opacity: 1;
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 15px;
}

.about-section .hero-image {
  animation: none;
}

.about-section .hero-image img {
  border-radius: 100px 100px 0 0;
  width: 100%;
  max-width: 380px;
  box-shadow: 0 15px 50px rgba(10, 31, 68, 0.15);
  border: 6px solid var(--white);
  transition: all 0.4s ease;
  background: var(--white);
}

.about-section .hero-image img:hover {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 60px rgba(10, 31, 68, 0.25);
  border-color: var(--accent-blue);
}

/* About Shapes */
.about-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.about-shape {
  position: absolute;
  opacity: 0.08;
  filter: blur(0.5px);
}

.about-shape-1 {
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  top: 10%;
  left: 5%;
  animation: float-bubble-1 25s infinite ease-in-out;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.about-shape-2 {
  width: 90px;
  height: 90px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  top: 55%;
  left: 8%;
  animation: float-bubble-2 30s infinite ease-in-out;
  transform: rotate(45deg);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
}

.about-shape-3 {
  width: 75px;
  height: 75px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  top: 30%;
  right: 5%;
  animation: float-bubble-3 22s infinite ease-in-out;
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.25);
}

.about-shape-4 {
  width: 110px;
  height: 110px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  top: 5%;
  right: 15%;
  animation: float-bubble-4 28s infinite ease-in-out;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.about-shape-5 {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 16px;
  bottom: 10%;
  right: 8%;
  animation: float-bubble-5 24s infinite ease-in-out;
  transform: rotate(-30deg);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.about-shape-6 {
  width: 100px;
  height: 100px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  top: 40%;
  left: 45%;
  animation: float-bubble-6 26s infinite ease-in-out;
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.2);
}

/* About Responsive */
@media (max-width: 768px) {
  .about-section .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-section .hero-image img {
    max-width: 100%;
  }

  .about-section .hero-image {
    order: -1;
  }

  .about-shape-1 { width: 140px; height: 140px; }
  .about-shape-2 { width: 100px; height: 100px; }
  .about-shape-3 { width: 80px; height: 80px; }
  .about-shape-4 { width: 120px; height: 120px; }
  .about-shape-5 { width: 90px; height: 90px; }
  .about-shape-6 { width: 110px; height: 110px; }
}

@media (max-width: 480px) {
  .about-section {
    padding: 60px 0;
  }

  .about-section h2 {
    font-size: 28px !important;
  }

  .about-shape-1 { width: 100px; height: 100px; }
  .about-shape-2 { width: 70px; height: 70px; }
  .about-shape-3 { width: 60px; height: 60px; }
  .about-shape-4 { width: 80px; height: 80px; }
  .about-shape-5 { width: 65px; height: 65px; }
  .about-shape-6 { width: 75px; height: 75px; }

  .about-section::before {
    width: 250px;
    height: 250px;
  }

  .about-section::after {
    width: 300px;
    height: 300px;
  }
}

/* ===================================
   VISION SECTION
   =================================== */

.vision-section {
  position: relative;
  padding: 90px 0;
  background: var(--light-gray);
  overflow: hidden;
}

.vision-accent {
  position: absolute;
  width: 180px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-blue), transparent);
  top: 110px;
  left: 0;
  z-index: 1;
}

.vision-section .hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 90px;
  position: relative;
  z-index: 1;
}

.section-label {
  color: var(--accent-blue);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.vision-section h2 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  max-width: 520px;
}

.vision-section .hero-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #4b5563;
  max-width: 560px;
  margin-bottom: 18px;
}

.vision-section .hero-text .lead {
  font-size: 17px;
  color: #374151;
}

.vision-section .hero-image img {
  width: 100%;
  max-width: 420px;
  border-radius: 36px 0 36px 0;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  transition: transform 0.4s ease;
}

.vision-section .hero-image img:hover {
  transform: translateY(-6px);
}

/* Vision Shapes */
.vision-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.vision-shape {
  position: absolute;
  opacity: 0.04;
  filter: blur(0.5px);
  animation-duration: 22s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

.vision-shape-1 {
  width: 140px;
  height: 140px;
  background: var(--accent-blue);
  border-radius: 50%;
  top: 8%;
  left: 6%;
  animation-name: float-1;
}

.vision-shape-2 {
  width: 100px;
  height: 100px;
  background: var(--light-blue);
  border-radius: 20px;
  top: 55%;
  left: 4%;
  transform: rotate(45deg);
  animation-name: float-2;
}

.vision-shape-3 {
  width: 120px;
  height: 120px;
  background: var(--accent-blue);
  border-radius: 50%;
  top: 15%;
  right: 10%;
  animation-name: float-3;
}

.vision-shape-4 {
  width: 90px;
  height: 90px;
  background: var(--light-blue);
  border-radius: 18px;
  bottom: 22%;
  right: 8%;
  transform: rotate(-30deg);
  animation-name: float-4;
}

.vision-shape-5 {
  width: 110px;
  height: 110px;
  background: var(--accent-blue);
  border-radius: 50%;
  top: 42%;
  left: 48%;
  animation-name: float-5;
}

.vision-shape-6 {
  width: 80px;
  height: 80px;
  background: var(--light-blue);
  border-radius: 50%;
  bottom: 15%;
  left: 12%;
  animation-name: float-6;
}

.vision-shape-7 {
  width: 95px;
  height: 95px;
  background: var(--accent-blue);
  border-radius: 15px;
  top: 70%;
  right: 25%;
  transform: rotate(20deg);
  animation-name: float-7;
}

.vision-shape-8 {
  width: 70px;
  height: 70px;
  background: var(--light-blue);
  border-radius: 50%;
  top: 25%;
  left: 25%;
  animation-name: float-8;
}

.vision-shape-9 {
  width: 105px;
  height: 105px;
  background: var(--accent-blue);
  border-radius: 20px;
  bottom: 8%;
  right: 40%;
  transform: rotate(-15deg);
  animation-name: float-9;
}

.vision-shape-10 {
  width: 85px;
  height: 85px;
  background: var(--light-blue);
  border-radius: 50%;
  top: 60%;
  right: 5%;
  animation-name: float-10;
}

/* Vision Animations */
@keyframes float-1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-40px); }
}

@keyframes float-2 {
  0%, 100% { transform: translateX(0) rotate(45deg); }
  50% { transform: translateX(30px) rotate(45deg); }
}

@keyframes float-3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(30px); }
}

@keyframes float-4 {
  0%, 100% { transform: translateX(0) rotate(-30deg); }
  50% { transform: translateX(-30px) rotate(-30deg); }
}

@keyframes float-5 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-25px); }
}

@keyframes float-6 {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-20px) translateX(15px); }
}

@keyframes float-7 {
  0%, 100% { transform: translateY(0) rotate(20deg); }
  50% { transform: translateY(25px) rotate(20deg); }
}

@keyframes float-8 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-30px); }
}

@keyframes float-9 {
  0%, 100% { transform: translateX(0) rotate(-15deg); }
  50% { transform: translateX(-25px) rotate(-15deg); }
}

@keyframes float-10 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(20px); }
}

/* Vision Responsive */
@media (max-width: 768px) {
  .vision-section .hero-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .vision-section .hero-image {
    order: 1;
  }

  .vision-section .hero-text {
    order: 2;
  }
}