/* ============================================================
   ABOUT PAGE HERO SECTION - Minimal & Impactful
============================================================ */
.about-hero {
  position: relative;
  padding: 50px 0 70px 0;
  background: #ffffff;
  overflow: hidden;
  min-height: 550px;
  display: flex;
  align-items: center;
}

/* Decorative Background Elements */
.about-hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 173, 242, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  top: -300px;
  right: -200px;
  z-index: 0;
}

.about-hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(248, 184, 31, 0.03) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -250px;
  left: -150px;
  z-index: 0;
}

/* Hero Grid */
.hero-grid {
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Left Content */
.hero-main {
  flex: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 173, 242, 0.06);
  color: #00adf2;
  border-radius: 40px;
  padding: 6px 20px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 173, 242, 0.08);
}

.hero-badge i {
  color: #00adf2;
  font-size: 0.85rem;
}

.hero-main h1 {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-main h1 span {
  color: #00adf2;
  position: relative;
}

.hero-main h1 span::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00adf2, #008ec6);
  border-radius: 2px;
  opacity: 0.25;
}

.hero-text {
  font-size: 17px;
  color: #64748b;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 30px;
}

/* Hero Actions */
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #00adf2, #008ec6);
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 173, 242, 0.25);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 173, 242, 0.35);
  color: #ffffff;
}

.btn-primary i {
  font-size: 14px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #f1f5f9;
  color: #0f172a;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #e2e8f0;
  transform: translateY(-3px);
  color: #0f172a;
}

.btn-secondary i {
  color: #00adf2;
  font-size: 14px;
}

/* Right Visual */
.hero-visual {
  flex: 0.8;
  position: relative;
}

.visual-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, .08);
  background: #f8fcff;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.visual-container:hover .hero-img {
  transform: scale(1.02);
}

/* Decorative Shapes */
.deco-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.shape-1 {
  width: 80px;
  height: 80px;
  background: rgba(0, 173, 242, 0.04);
  top: -30px;
  right: -30px;
}

.shape-2 {
  width: 60px;
  height: 60px;
  background: rgba(248, 184, 31, 0.06);
  bottom: -20px;
  left: -20px;
}

/* Journey Timeline */
.journey-timeline {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 18px 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  gap: 25px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  width: 90%;
  justify-content: center;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10px;
  right: -15px;
  width: 10px;
  height: 2px;
  background: rgba(0, 173, 242, 0.1);
}

.timeline-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 173, 242, 0.2);
  margin-bottom: 4px;
  transition: all 0.3s ease;
}

.timeline-dot.active {
  background: #00adf2;
  box-shadow: 0 0 0 4px rgba(0, 173, 242, 0.15);
}

.timeline-year {
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.timeline-label {
  font-size: 9px;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .about-hero {
    padding: 30px 0 50px 0;
    min-height: auto;
  }

  .hero-grid {
    flex-direction: column;
    gap: 40px;
  }

  .hero-main {
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-main h1 {
    font-size: 36px;
  }

  .hero-visual {
    flex: 1;
    width: 100%;
  }

  .journey-timeline {
    position: relative;
    bottom: 0;
    left: 0;
    transform: none;
    width: 100%;
    padding: 15px 20px;
    margin-top: 15px;
    gap: 15px;
    flex-wrap: wrap;
  }

  .timeline-item:not(:last-child)::after {
    display: none;
  }

  .deco-shape {
    display: none;
  }
}

@media (max-width: 576px) {
  .about-hero {
    padding: 20px 0 40px 0;
  }

  .hero-main h1 {
    font-size: 28px;
  }

  .hero-text {
    font-size: 15px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }

  .journey-timeline {
    gap: 10px;
    padding: 12px 15px;
  }

  .timeline-year {
    font-size: 11px;
  }

  .timeline-label {
    font-size: 8px;
  }

  .timeline-dot {
    width: 6px;
    height: 6px;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 5px 15px;
  }
}
/* ============================================================
   WHO WE ARE SECTION
============================================================ */
.who-we-are {
  position: relative;
  padding: 80px 0 90px 0;
  background: #ffffff;
  overflow: hidden;
}

/* Decorative Background */
.who-we-are::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #00adf204;
  border-radius: 50%;
  top: -200px;
  left: -150px;
}

.who-we-are::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #f8b81f06;
  border-radius: 50%;
  bottom: -150px;
  right: -100px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #00adf2;
  border-radius: 40px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  margin-bottom: 15px;
  border: 1px solid rgba(0, 173, 242, 0.06);
}

.section-tag i {
  color: #00adf2;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-title span {
  color: #00adf2;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Who Wrapper */
.who-wrapper {
  display: flex;
  align-items: stretch;
  gap: 50px;
  position: relative;
  z-index: 1;
}

/* Left Content */
.who-content {
  flex: 1.2;
}

.content-block {
  display: flex;
  gap: 20px;
  padding: 25px 30px;
  background: #f8fcff;
  border-radius: 16px;
  margin-bottom: 18px;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
}

.content-block:hover {
  background: #ffffff;
  border-left-color: #00adf2;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  transform: translateX(5px);
}

.content-block:last-child {
  margin-bottom: 0;
}

.block-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 173, 242, 0.08), rgba(0, 173, 242, 0.02));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #00adf2;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.content-block:hover .block-icon {
  background: linear-gradient(135deg, #00adf2, #008ec6);
  color: #ffffff;
  transform: scale(1.05);
}

.block-text h4 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.block-text p {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  margin-bottom: 0;
}

.block-text p strong {
  color: #0f172a;
}

/* Right Visual */
.who-visual {
  flex: 0.8;
}

.visual-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .10);
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.visual-wrapper:hover .main-image {
  transform: scale(1.02);
}

/* Float Badges */
.float-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .10);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
  color: #0f172a;
  animation: float 4s ease-in-out infinite;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.float-badge i {
  color: #00adf2;
  font-size: 16px;
}

.badge-1 {
  top: 12%;
  left: -15px;
  animation-delay: 0s;
}

.badge-2 {
  bottom: 20%;
  right: -15px;
  animation-delay: 1.5s;
}

/* Stats Circle */
.stats-circle {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #00adf2, #008ec6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(0, 173, 242, 0.3);
  animation: float 5s ease-in-out infinite;
  animation-delay: 0.5s;
}

.circle-content {
  text-align: center;
  color: #ffffff;
}

.circle-number {
  font-size: 24px;
  font-weight: 800;
  display: block;
  line-height: 1;
}

.circle-label {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.9;
  line-height: 1.2;
}

/* Quick Stats */
.quick-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background: #ffffff;
  padding: 18px 25px;
  border-radius: 16px;
  margin-top: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
  border: 1px solid rgba(0, 173, 242, 0.06);
}

.qs-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qs-icon {
  width: 40px;
  height: 40px;
  background: rgba(0, 173, 242, 0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #00adf2;
}

.qs-info {
  text-align: left;
}

.qs-number {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  display: block;
  line-height: 1;
}

.qs-label {
  font-size: 12px;
  color: #64748b;
}

.qs-divider {
  width: 1px;
  height: 35px;
  background: rgba(0, 173, 242, 0.08);
}

/* Float Animation */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .who-we-are {
    padding: 60px 0 70px 0;
  }

  .who-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .section-title {
    font-size: 32px;
  }

  .who-visual {
    flex: 1;
  }

  .content-block {
    padding: 20px 22px;
  }

  .float-badge {
    display: none;
  }

  .stats-circle {
    width: 80px;
    height: 80px;
    bottom: -15px;
    left: 20px;
  }

  .circle-number {
    font-size: 20px;
  }

  .circle-label {
    font-size: 9px;
  }

  .quick-stats {
    padding: 15px 20px;
    gap: 15px;
    flex-wrap: wrap;
  }

  .qs-divider {
    display: none;
  }
}

@media (max-width: 576px) {
  .who-we-are {
    padding: 40px 0 50px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .content-block {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 15px;
  }

  .block-text h4 {
    font-size: 16px;
  }

  .block-text p {
    font-size: 14px;
  }

  .stats-circle {
    width: 70px;
    height: 70px;
    bottom: -10px;
    left: 15px;
  }

  .circle-number {
    font-size: 18px;
  }

  .circle-label {
    font-size: 8px;
  }

  .quick-stats {
    padding: 12px 15px;
    gap: 10px;
  }

  .qs-item {
    gap: 8px;
  }

  .qs-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .qs-number {
    font-size: 15px;
  }

  .qs-label {
    font-size: 10px;
  }
}

/* ============================================================
   WHO WE ARE SECTION - Different Approach
============================================================ */
.who-we-are {
  position: relative;
  padding: 80px 0 90px 0;
  background: #ffffff;
  overflow: hidden;
}

/* Decorative Background */
.who-we-are::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: #00adf204;
  border-radius: 50%;
  top: -200px;
  right: -150px;
}

.who-we-are::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: #f8b81f06;
  border-radius: 50%;
  bottom: -150px;
  left: -100px;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #00adf2;
  border-radius: 40px;
  padding: 8px 22px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  margin-bottom: 15px;
  border: 1px solid rgba(0, 173, 242, 0.06);
}

.section-tag i {
  color: #00adf2;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 10px;
}

.section-title span {
  color: #00adf2;
}

.section-subtitle {
  font-size: 18px;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

/* Who Wrapper */
.who-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  position: relative;
  z-index: 1;
}

/* Left Image */
.who-image {
  flex: 0.8;
  position: relative;
}

.image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .10);
}

.main-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-container:hover .main-image {
  transform: scale(1.02);
}

/* Experience Ring */
.experience-ring {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
}

.experience-ring svg {
  transform: rotate(-90deg);
  width: 100px;
  height: 100px;
}

.ring-bg {
  fill: none;
  stroke: rgba(0, 173, 242, 0.08);
  stroke-width: 6;
}

.ring-progress {
  fill: none;
  stroke: #00adf2;
  stroke-width: 6;
  stroke-linecap: round;
  animation: ringSpin 3s ease-in-out infinite;
}

@keyframes ringSpin {
  0% { stroke-dashoffset: 339.292; }
  50% { stroke-dashoffset: 84.823; }
  100% { stroke-dashoffset: 339.292; }
}

.ring-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.ring-number {
  font-size: 24px;
  font-weight: 800;
  color: #00adf2;
  display: block;
  line-height: 1;
}

.ring-label {
  font-size: 10px;
  color: #64748b;
  font-weight: 500;
}

/* Location Badge */
.location-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 14px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, .10);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 13px;
  color: #0f172a;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.location-badge i {
  color: #00adf2;
  font-size: 16px;
}

/* Right Content */
.who-content {
  flex: 1;
}

.who-intro {
  margin-bottom: 30px;
}

.intro-text {
  font-size: 18px;
  color: #0f172a;
  line-height: 1.8;
  font-weight: 500;
  padding-left: 20px;
  border-left: 4px solid #00adf2;
}

.intro-text strong {
  color: #00adf2;
}

/* Grid */
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.grid-item {
  padding: 20px 18px;
  background: #f8fcff;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.grid-item:hover {
  background: #ffffff;
  border-color: rgba(0, 173, 242, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .06);
  transform: translateY(-3px);
}

.grid-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(0, 173, 242, 0.08), rgba(0, 173, 242, 0.02));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #00adf2;
  margin-bottom: 12px;
  transition: all 0.3s ease;
}

.grid-item:hover .grid-icon {
  background: linear-gradient(135deg, #00adf2, #008ec6);
  color: #ffffff;
  transform: scale(1.05);
}

.grid-item h5 {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}

.grid-item p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #ffffff;
  padding: 18px 25px;
  border-radius: 16px;
  border: 1px solid rgba(0, 173, 242, 0.06);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .04);
}

.stats-item {
  text-align: center;
}

.stats-number {
  font-size: 28px;
  font-weight: 800;
  color: #00adf2;
  display: block;
  line-height: 1;
}

.stats-number::after {
  content: "+";
  font-size: 20px;
  color: #00adf2;
}

.stats-label {
  font-size: 13px;
  color: #64748b;
  font-weight: 500;
}

.stats-divider {
  width: 1px;
  height: 35px;
  background: rgba(0, 173, 242, 0.08);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .who-we-are {
    padding: 60px 0 70px 0;
  }

  .who-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .who-image {
    flex: 1;
    width: 100%;
  }

  .section-title {
    font-size: 32px;
  }

  .who-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .grid-item {
    padding: 18px 15px;
  }

  .experience-ring {
    width: 80px;
    height: 80px;
    bottom: -15px;
    right: 15px;
  }

  .experience-ring svg {
    width: 80px;
    height: 80px;
  }

  .ring-number {
    font-size: 20px;
  }

  .ring-label {
    font-size: 9px;
  }

  .location-badge {
    top: 15px;
    left: 15px;
    padding: 8px 14px;
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .stats-bar {
    flex-wrap: wrap;
    gap: 15px;
    padding: 15px 20px;
  }

  .stats-divider {
    display: none;
  }

  .stats-number {
    font-size: 24px;
  }

  .intro-text {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .who-we-are {
    padding: 40px 0 50px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-subtitle {
    font-size: 15px;
  }

  .grid-item {
    padding: 15px 12px;
  }

  .grid-item h5 {
    font-size: 14px;
  }

  .grid-item p {
    font-size: 12px;
  }

  .experience-ring {
    width: 70px;
    height: 70px;
    bottom: -10px;
    right: 10px;
  }

  .experience-ring svg {
    width: 70px;
    height: 70px;
  }

  .ring-number {
    font-size: 18px;
  }

  .ring-label {
    font-size: 8px;
  }

  .location-badge {
    top: 10px;
    left: 10px;
    padding: 6px 12px;
    font-size: 11px;
  }

  .location-badge i {
    font-size: 13px;
  }

  .stats-number {
    font-size: 20px;
  }

  .stats-label {
    font-size: 11px;
  }
}

/* ============================================================
   MISSION & VISION SECTION - Split Screen Approach
============================================================ */
.mission-vision {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

/* MV Split */
.mv-split {
  display: flex;
  min-height: 500px;
}

/* Left Side - Vision */
.mv-left {
  flex: 1;
  background: linear-gradient(165deg, #0f172a, #1a2a4a);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mv-left::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(0, 173, 242, 0.05);
  border-radius: 50%;
  top: -150px;
  right: -150px;
}

.mv-left::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(0, 173, 242, 0.03);
  border-radius: 50%;
  bottom: -80px;
  left: -80px;
}

.mv-left-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
  color: #ffffff;
}

.mv-badge {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #00adf2;
  background: rgba(0, 173, 242, 0.1);
  padding: 4px 16px;
  border-radius: 20px;
  border: 1px solid rgba(0, 173, 242, 0.2);
  margin-bottom: 20px;
}

.mv-icon-wrap {
  width: 70px;
  height: 70px;
  background: rgba(0, 173, 242, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #00adf2;
  margin-bottom: 20px;
  border: 2px solid rgba(0, 173, 242, 0.15);
}

.mv-left-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
}

.mv-left-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.9;
  margin-bottom: 25px;
}

.mv-left-content p strong {
  color: #00adf2;
}

.mv-left-footer {
  padding-top: 20px;
  border-top: 2px solid rgba(0, 173, 242, 0.15);
}

.vision-quote {
  font-size: 18px;
  font-weight: 600;
  color: #00adf2;
  font-style: italic;
}

/* Right Side - Mission */
.mv-right {
  flex: 1;
  background: linear-gradient(165deg, #f8fcff, #e6f3fa);
  padding: 70px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.mv-right::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(0, 173, 242, 0.03);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
}

.mv-right-content {
  position: relative;
  z-index: 1;
  max-width: 500px;
}

.mv-right-content .mv-badge {
  color: #0f172a;
  background: rgba(0, 173, 242, 0.06);
  border-color: rgba(0, 173, 242, 0.1);
}

.mv-right-content .mv-icon-wrap {
  background: rgba(0, 173, 242, 0.06);
  border-color: rgba(0, 173, 242, 0.1);
  color: #00adf2;
}

.mv-right-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 15px;
}

.mv-right-content p {
  font-size: 16px;
  color: #475569;
  line-height: 1.9;
  margin-bottom: 25px;
}

.mv-right-content p strong {
  color: #00adf2;
}

.mv-right-footer {
  padding-top: 20px;
  border-top: 2px solid rgba(0, 173, 242, 0.1);
}

.mission-quote {
  font-size: 18px;
  font-weight: 600;
  color: #00adf2;
  font-style: italic;
}

/* Values Bar */
.values-bar {
  padding: 70px 0;
  background: #ffffff;
  border-top: 1px solid rgba(0, 173, 242, 0.05);
}

.values-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
}

.values-header {
  text-align: center;
  margin-bottom: 45px;
}

.values-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #00adf2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}

.values-tag i {
  font-size: 14px;
}

.values-header h3 {
  font-size: 34px;
  font-weight: 800;
  color: #0f172a;
}

.values-header h3 span {
  color: #00adf2;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.value-item {
  text-align: center;
  padding: 30px 20px;
  background: #f8fcff;
  border-radius: 16px;
  border: 1px solid rgba(0, 173, 242, 0.04);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-5px);
  background: #ffffff;
  border-color: rgba(0, 173, 242, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.value-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(0, 173, 242, 0.06), rgba(0, 173, 242, 0.02));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #00adf2;
  margin: 0 auto 15px auto;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background: linear-gradient(135deg, #00adf2, #008ec6);
  color: #ffffff;
  transform: scale(1.05);
}

.value-item h4 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.value-item p {
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Stats Banner */
.stats-banner {
  background: linear-gradient(135deg, #0f172a, #1a2a4a);
  padding: 50px 0;
  border-top: 3px solid #00adf2;
}

.stats-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 15px;
}

.stat-block {
  text-align: center;
  padding: 15px;
}

.stat-number {
  font-size: 42px;
  font-weight: 800;
  color: #00adf2;
  display: block;
  line-height: 1.2;
}

.stat-number::after {
  content: "+";
  font-size: 28px;
  color: #00adf2;
}

.stat-block:last-child .stat-number::after {
  content: "";
}

.stat-block:last-child .stat-number {
  color: #ffffff;
}

.stat-label {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  display: block;
  margin-top: 5px;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 991px) {
  .mv-split {
    flex-direction: column;
  }

  .mv-left {
    padding: 50px 30px;
    min-height: 350px;
  }

  .mv-right {
    padding: 50px 30px;
    min-height: 350px;
  }

  .mv-left-content h2,
  .mv-right-content h2 {
    font-size: 30px;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .values-header h3 {
    font-size: 28px;
  }

  .stats-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .stat-number {
    font-size: 34px;
  }
}

@media (max-width: 576px) {
  .mv-left {
    padding: 35px 20px;
    min-height: 300px;
  }

  .mv-right {
    padding: 35px 20px;
    min-height: 300px;
  }

  .mv-left-content h2,
  .mv-right-content h2 {
    font-size: 24px;
  }

  .mv-left-content p,
  .mv-right-content p {
    font-size: 14px;
  }

  .mv-icon-wrap {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }

  .vision-quote,
  .mission-quote {
    font-size: 15px;
  }

  .values-bar {
    padding: 40px 0;
  }

  .values-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .value-item {
    padding: 20px 15px;
  }

  .value-item h4 {
    font-size: 14px;
  }

  .value-item p {
    font-size: 12px;
  }

  .values-header h3 {
    font-size: 24px;
  }

  .stats-banner {
    padding: 35px 0;
  }

  .stats-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .stat-number {
    font-size: 28px;
  }

  .stat-label {
    font-size: 12px;
  }

  .stat-number::after {
    font-size: 20px;
  }
}

  /* ============================================================
     OUR JOURNEY - EXTENDED TIMELINE (2013-2026)
     Clean, modern design focused on storytelling
     No project/member counts - pure narrative flow
  ============================================================ */
  .journey-extended {
    padding: 80px 0 90px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }

  .journey-extended::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 173, 242, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    top: -200px;
    right: -150px;
    z-index: 0;
  }

  .journey-extended::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(248, 184, 31, 0.02) 0%, transparent 70%);
    border-radius: 50%;
    bottom: -150px;
    left: -100px;
    z-index: 0;
  }

  .journey-extended .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }

  /* Section Header */
  .section-header-extended {
    text-align: center;
    margin-bottom: 50px;
  }

  .section-tag-extended {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    color: #0f172a;
    border-radius: 40px;
    padding: 8px 22px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 173, 242, 0.06);
  }

  .section-tag-extended i {
    color: #00adf2;
  }

  .section-title-extended {
    font-size: 42px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
  }

  .section-title-extended span {
    color: #00adf2;
    position: relative;
  }

  .section-title-extended span::after {
    content: "";
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00adf2, #008ec6);
    border-radius: 2px;
    opacity: 0.25;
  }

  .section-subtitle-extended {
    font-size: 18px;
    color: #64748b;
    max-width: 620px;
    margin: 0 auto;
  }

  /* Timeline */
  .timeline-extended {
    position: relative;
    padding: 20px 0 10px 0;
    max-width: 900px;
    margin: 0 auto;
  }

  /* Vertical line */
  .timeline-extended::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #e2e8f0, #00adf2 20%, #008ec6 40%, #00adf2 60%, #008ec6 80%, #e2e8f0);
    transform: translateX(-50%);
    border-radius: 4px;
    opacity: 0.5;
  }

  /* Timeline Node */
  .timeline-node-extended {
    display: flex;
    align-items: flex-start;
    margin-bottom: 45px;
    position: relative;
  }

  .timeline-node-extended:last-child {
    margin-bottom: 0;
  }

  /* Alternating sides */
  .timeline-node-extended:nth-child(odd) {
    flex-direction: row;
  }

  .timeline-node-extended:nth-child(odd) .node-content-extended {
    text-align: right;
    padding-right: 45px;
  }

  .timeline-node-extended:nth-child(odd) .node-marker-extended {
    order: 2;
  }

  .timeline-node-extended:nth-child(odd) .node-content-extended {
    order: 1;
  }

  .timeline-node-extended:nth-child(even) {
    flex-direction: row-reverse;
  }

  .timeline-node-extended:nth-child(even) .node-content-extended {
    text-align: left;
    padding-left: 45px;
  }

  .timeline-node-extended:nth-child(even) .node-marker-extended {
    order: 1;
  }

  .timeline-node-extended:nth-child(even) .node-content-extended {
    order: 2;
  }

  /* Marker */
  .node-marker-extended {
    flex: 0 0 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .marker-year-extended {
    font-size: 17px;
    font-weight: 700;
    color: #00adf2;
    background: #ffffff;
    padding: 2px 16px;
    border-radius: 30px;
    border: 2px solid #00adf2;
    margin-bottom: 6px;
    display: inline-block;
    transition: all 0.3s ease;
  }

  .marker-year-extended.active-year {
    background: #00adf2;
    color: #ffffff;
    border-color: #00adf2;
    box-shadow: 0 4px 20px rgba(0, 173, 242, 0.25);
  }

  .marker-line-extended {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, #00adf2, transparent);
    opacity: 0.3;
  }

  .timeline-node-extended:last-child .marker-line-extended {
    display: none;
  }

  /* Content Card */
  .node-content-extended {
    flex: 1;
    min-width: 0;
  }

  .content-card-extended {
    background: #f8fcff;
    border-radius: 16px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 173, 242, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  }

  .content-card-extended:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 173, 242, 0.15);
    box-shadow: 0 12px 45px rgba(0, 173, 242, 0.06);
  }

  .card-icon-extended {
    width: 48px;
    height: 48px;
    background: rgba(0, 173, 242, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #00adf2;
    margin-bottom: 14px;
    transition: all 0.3s ease;
  }

  .timeline-node-extended:nth-child(odd) .card-icon-extended {
    margin-left: auto;
  }

  .content-card-extended:hover .card-icon-extended {
    background: linear-gradient(135deg, #00adf2, #008ec6);
    color: #ffffff;
    transform: scale(1.05) rotate(-5deg);
  }

  .content-card-extended p {
    font-size: 15px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0;
    font-weight: 400;
  }

  .content-card-extended p strong {
    color: #0f172a;
    font-weight: 600;
  }

  /* Highlight Card (2026) */
  .highlight-extended .marker-year-extended {
    background: #00adf2;
    color: #ffffff;
    border-color: #00adf2;
    box-shadow: 0 4px 20px rgba(0, 173, 242, 0.25);
  }

  .highlight-card-extended {
    background: linear-gradient(165deg, #0f172a, #1a2a4a) !important;
    border-color: #00adf2 !important;
    color: #ffffff;
    box-shadow: 0 8px 35px rgba(0, 173, 242, 0.1) !important;
  }

  .highlight-card-extended .card-icon-extended {
    background: rgba(0, 173, 242, 0.15);
    color: #00adf2;
  }

  .highlight-card-extended p {
    color: rgba(255, 255, 255, 0.85);
  }

  .highlight-card-extended p strong {
    color: #ffffff;
  }

  .highlight-card-extended:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 55px rgba(0, 173, 242, 0.2) !important;
  }

  .highlight-card-extended:hover .card-icon-extended {
    background: rgba(0, 173, 242, 0.25);
    color: #00adf2;
  }

  /* Credibility Highlights */
  .credibility-highlights {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 55px;
    padding: 30px 25px;
    background: #f8fcff;
    border-radius: 20px;
    border: 1px solid rgba(0, 173, 242, 0.06);
  }

  .highlight-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
  }

  .highlight-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 173, 242, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #00adf2;
    flex-shrink: 0;
  }

  .highlight-text {
    font-size: 15px;
    font-weight: 600;
    color: #0f172a;
  }

  /* ============================================================
     RESPONSIVE
  ============================================================ */
  @media (max-width: 768px) {
    .journey-extended {
      padding: 50px 0 60px 0;
    }

    .section-title-extended {
      font-size: 32px;
    }

    .section-subtitle-extended {
      font-size: 16px;
    }

    .timeline-extended::before {
      left: 20px;
    }

    .timeline-node-extended {
      flex-direction: column !important;
      padding-left: 50px;
      margin-bottom: 35px;
    }

    .timeline-node-extended .node-marker-extended {
      flex: 0 0 auto;
      flex-direction: row;
      gap: 16px;
      align-items: center;
      margin-bottom: 12px;
      order: 0 !important;
    }

    .timeline-node-extended .node-content-extended {
      padding: 0 !important;
      text-align: left !important;
      order: 0 !important;
    }

    .timeline-node-extended:nth-child(odd) .card-icon-extended {
      margin-left: 0;
    }

    .marker-year-extended {
      font-size: 15px;
      padding: 0 14px;
    }

    .marker-line-extended {
      display: none;
    }

    .content-card-extended {
      padding: 20px 18px;
    }

    .content-card-extended p {
      font-size: 14px;
    }

    .card-icon-extended {
      width: 42px;
      height: 42px;
      font-size: 18px;
    }

    .credibility-highlights {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
      padding: 20px 15px;
      margin-top: 40px;
    }

    .highlight-item {
      justify-content: flex-start;
    }

    .highlight-text {
      font-size: 14px;
    }
  }

  @media (max-width: 400px) {
    .section-title-extended {
      font-size: 26px;
    }

    .section-subtitle-extended {
      font-size: 14px;
    }

    .timeline-node-extended {
      padding-left: 36px;
    }

    .marker-year-extended {
      font-size: 13px;
      padding: 0 10px;
      border-width: 1.5px;
    }

    .content-card-extended {
      padding: 16px 14px;
    }

    .content-card-extended p {
      font-size: 13px;
    }

    .card-icon-extended {
      width: 36px;
      height: 36px;
      font-size: 16px;
    }

    .credibility-highlights {
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 15px 12px;
    }

    .highlight-icon {
      width: 36px;
      height: 36px;
      font-size: 15px;
    }

    .highlight-text {
      font-size: 12px;
    }
  }
/* ============================================================
       WORLDWIDE SERVICES SECTION
    ============================================================ */
    .worldwide-services {
      position: relative;
      padding: 80px 0 90px 0;
      background: #ffffff;
      overflow: hidden;
    }

    /* Decorative Background */
    .worldwide-services::before {
      content: "";
      position: absolute;
      width: 500px;
      height: 500px;
      background: #00adf204;
      border-radius: 50%;
      top: -200px;
      left: -150px;
      z-index: 0;
    }

    .worldwide-services::after {
      content: "";
      position: absolute;
      width: 350px;
      height: 350px;
      background: #f8b81f06;
      border-radius: 50%;
      bottom: -150px;
      right: -100px;
      z-index: 0;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 1;
    }

    /* Section Header */
    .section-header {
      text-align: center;
      margin-bottom: 50px;
      position: relative;
      z-index: 1;
    }

    .world-tag {
      display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    color: #0f172a;
    border-radius: 40px;
    padding: 8px 22px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 15px;
    border: 1px solid rgba(0, 173, 242, 0.06);
    }

    .world-tag i {
      color: #00adf2;
    }

    .section-title {
      font-size: 40px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 10px;
    }

    .section-title span {
      color: #00adf2;
    }

    .section-subtitle {
      font-size: 18px;
      color: #64748b;
      max-width: 600px;
      margin: 0 auto;
    }

    /* World Map Container */
    .world-map-container {
      position: relative;
      z-index: 1;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(0, 0, 0, .05);
      border: 1px solid rgba(0, 173, 242, 0.06);
      background: #ffffff;
    }

    .world-map {
      position: relative;
      width: 100%;
    }

    .map-image {
      width: 100%;
      display: block;
      height: auto;
    }

    .map-overlay {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      display: block;
    }

    /* ===== UPDATED STYLING ===== */
    .connection-line {
      fill: none;
      stroke: #007bff;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-dasharray: 10 10;
      opacity: 0.6;
      animation: dashMove 8s linear infinite;
    }

    @keyframes dashMove {
      from { stroke-dashoffset: 0; }
      to { stroke-dashoffset: -160; }
    }

    /* moving dots */
    .moving-dot {
      fill: #007bff;
      filter: drop-shadow(0 0 12px #007bff);
      opacity: 0.9;
    }

    /* pin labels – cleaner + more readable */
    .pin-label {
      font-family: 'Segoe UI', system-ui, sans-serif;
      font-size: 11px;
      font-weight: 700;
      fill: #0f172a;
      paint-order: stroke;
      stroke: rgba(255,255,255,0.95);
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
      letter-spacing: 0.3px;
    }
    .pin-label-shadow {
      font-family: 'Segoe UI', system-ui, sans-serif;
      font-size: 11px;
      font-weight: 700;
      fill: none;
      stroke: rgba(255,255,255,0.98);
      stroke-width: 5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* hub glow + ring */
    .hub-dot {
      fill: #007bff;
      filter: drop-shadow(0 0 20px #007bff);
    }
    .hub-ring {
      fill: none;
      stroke: #007bff;
      stroke-width: 2.5;
      opacity: 0.5;
      transform-origin: center;
      animation: hubPulse 2.8s infinite;
    }
    @keyframes hubPulse {
      0% { transform: scale(1); opacity: 0.6; }
      100% { transform: scale(5); opacity: 0; }
    }

    /* location pin style (colorful) */
    .pin-dot-usa { fill: #3B82F6; }
    .pin-dot-canada { fill: #EF4444; }
    .pin-dot-brazil { fill: #22C55E; }
    .pin-dot-uk { fill: #8B5CF6; }
    .pin-dot-germany { fill: #F59E0B; }
    .pin-dot-uae { fill: #EC4899; }
    .pin-dot-africa { fill: #06B6D4; }
    .pin-dot-singapore { fill: #F97316; }
    .pin-dot-japan { fill: #EF4444; }
    .pin-dot-australia { fill: #14B8A6; }
    .pin-dot-india { fill: #FF6B35; }

    /* base dot style */
    .pin-dot {
      stroke: #ffffff;
      stroke-width: 1.5;
      filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
    }

    /* responsive tweaks */
    @media (max-width: 768px) {
      .connection-line {
        stroke-width: 1.4;
        stroke-dasharray: 6 6;
      }
      .moving-dot { r: 3; }
      .pin-label, .pin-label-shadow { font-size: 9px; }
      .pin-label-shadow { stroke-width: 4; }
    }
    @media (max-width: 576px) {
      .connection-line { stroke-width: 1; stroke-dasharray: 4 4; }
      .moving-dot { r: 2.5; }
      .pin-label, .pin-label-shadow { font-size: 8px; }
      .pin-label-shadow { stroke-width: 3; }
    }