/* ═══════════════════════════════
   HERO SECTION
═══════════════════════════════ */
.hero-section {
  position: relative;
  width: 100%;
  height: 574px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 120px;
  overflow: hidden;
  background: #fff;
}

/* background image is set via inline style on the element */
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  animation: zoomBg 20s ease-in-out infinite;
  transform: scale(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(4, 43, 86, 0.6);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding-left: 10%;
}

.hero-title {
  font-weight: 400;
  font-size: 110px;
  line-height: 1.1;
  margin: 0 0 30px 0;
  color: white;
  background-size: 200% auto;
  opacity: 0;
  animation: pgFadeIn 1s ease 1.1s forwards;
}

.hero-subtitle {
  font-weight: 500;
  font-size: 28px;
  line-height: 1.5;
  color: #ffffff;
  max-width: 600px;
  opacity: 0;
  animation: pgFadeIn 1.2s ease forwards;
  animation-delay: 1.4s;
  white-space: nowrap;
}

@keyframes pgFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes zoomBg {
  0%   { transform: scale(1.1); }
  50%  { transform: scale(1.2); }
  100% { transform: scale(1.1); }
}

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

@keyframes shine {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

@media (max-width: 992px) {
  .hero-section { justify-content: center; padding-left: 0; text-align: center; }
  .hero-content { padding-left: 0; max-width: 90%; }
  .hero-title   { font-size: 64px; }
  .hero-subtitle { font-size: 22px; }
}

@media (max-width: 576px) {
  .hero-section { height: auto; padding: 100px 20px 80px; }
  .hero-title   { font-size: 42px; line-height: 1.2; }
  .hero-subtitle { font-size: 18px; line-height: 1.6; }
}


/* ═══════════════════════════════
   ABOUT (WHO WE ARE) SECTION
═══════════════════════════════ */
.about-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  z-index: 1;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: nowrap;
}

.about-text { flex: 1 1 50%; }

.about-title {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  color: #042B56;
  margin-bottom: 20px;
}

.about-title span { color: #0DC3F5; }

.about-description {
  text-align: justify;
  font-size: 18px;
  line-height: 1.6;
  color: #042b56;
}

.about-image-wrapper {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 5;
  max-width: 100%;
}

.about-image-bg {
  position: relative;
  width: 70%;
  height: 28rem;
  background: #042B56;
  z-index: 1;
  margin-top: -5%;
  left: -8%;
  overflow: visible;
}

.about-image {
  position: absolute;
  top: -50%;
  left: 12%;
  width: 128%;
  height: 40rem;
  object-fit: cover;
  z-index: 2;
}

@media (max-width: 992px) {
  .about-content { flex-direction: column; gap: 40px; }
  .about-text, .about-image-wrapper { flex: 1 1 100%; max-width: 100%; text-align: center; }
  .about-title { font-size: 32px; }
  .about-description { font-size: 16px; }
  .about-image-bg { width: 80%; height: auto; margin: 0 auto; left: 0; padding: 10px; }
  .about-image { position: relative; top: auto; left: auto; width: 100%; height: 26rem; }
}

@media (max-width: 576px) {
  .about-section { padding: 60px 0; }
  .about-title { font-size: 26px; }
  .about-description { font-size: 15px; }
  .about-image-bg { width: 100%; padding: 8px; }
  .about-image { width: 100%; height: 22rem; }
}


/* ═══════════════════════════════
   MAP / GLOBE SECTION
═══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; }

.map-section {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 280px; width: 100%;
  background: linear-gradient(135deg, #010d1f 0%, #021830 40%, #042d5a 75%, #063a72 100%);
  padding: 20px 6%; position: relative; overflow: hidden;
}

@media (min-width: 1001px) {
  .map-section { min-height: 280px; padding: 20px 6%; }
}

.map-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
}

.map-section::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100,180,255,0.5), transparent);
}

.map-bg-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.map-bg-particles span {
  position: absolute; border-radius: 50%; background: rgba(100,180,255,0.4);
  animation: floatDot linear infinite;
}

@keyframes floatDot {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.4; }
  100% { transform: translateY(-120px) translateX(40px); opacity: 0; }
}

.map-text { flex: 0 0 42%; max-width: 500px; color: #fff; z-index: 5; }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.map-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: #118af2; margin-bottom: 16px;
}
.map-eyebrow::before { content: ''; display: block; width: 20px; height: 1.5px; background: #5bc4ff; border-radius: 2px; }

.map-title { font-size: clamp(26px,2.8vw,38px); font-weight: 500; margin: 0 0 20px; line-height: 1.2; color: #fff; letter-spacing: -0.3px; }
.map-title em { font-style: italic; color: #118af2; }
.map-description { font-size: clamp(14px,1.1vw,15px); line-height: 1.75; color: rgba(255,255,255,0.7); font-weight: 300; letter-spacing: 0.3px; margin-bottom: 36px; }
.map-stats { display: flex; align-items: center; gap: 24px; }
.stat-item { display: flex; flex-direction: column; gap: 2px; }
.stat-num { font-size: 22px; font-weight: 600; color: #fff; letter-spacing: -0.5px; line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1.5px; }
.stat-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.15); }
.map-right { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; z-index: 2; animation: fadeIn 1.2s ease both 0.3s; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.globe-container { position: relative; display: flex; align-items: center; justify-content: center; }
#globeCanvas { display: block; cursor: grab; }
#globeCanvas:active { cursor: grabbing; }
.globe-glow {
  position: absolute; inset: -40px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(17,138,242,0.10) 0%, rgba(17,138,242,0.03) 50%, transparent 70%);
}

@media (max-width: 1000px) {
  .map-section { flex-direction: column; padding: 50px 24px 40px; min-height: auto; gap: 40px; }
  .map-text { flex: none; max-width: 100%; text-align: center; }
  .map-eyebrow { justify-content: center; }
  .map-stats { justify-content: center; }
  .map-right { width: 100%; }
}

@media (max-width: 600px) {
  .map-title { font-size: 24px; }
  .stat-num  { font-size: 18px; }
}


/* ═══════════════════════════════
   T.R.U.S.T. SECTION
═══════════════════════════════ */
.trust-section {
  background: #f4f6f9;
  padding: 90px 32px;
  overflow: hidden;
  position: relative;
}

.trust-section::before {
  content: '';
  position: absolute; top: -120px; right: -120px;
  width: 420px; height: 420px; border-radius: 50%;
  background: radial-gradient(circle, rgba(9,94,188,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.trust-section::after {
  content: '';
  position: absolute; bottom: -100px; left: -80px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(4,43,86,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.trust-container { max-width: 1380px; margin: 0 auto; text-align: center; }

.trust-title {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 56px;
  letter-spacing: -0.4px;
  line-height: 1.2;
  background: linear-gradient(90deg, #042B56 0%, #095EBC 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-cards {
  display: flex; align-items: stretch; justify-content: center;
  gap: 0; flex-wrap: nowrap;
}

.trust-card {
  flex: 1;
  display: flex; flex-direction: column; align-items: flex-start;
  padding: 36px 36px 32px;
  text-align: left; position: relative;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.trust-card.ts-visible { opacity: 1; transform: translateY(0); }
.trust-card:nth-child(1) { transition-delay: 0.0s; }
.trust-card:nth-child(2) { transition-delay: 0.1s; }
.trust-card:nth-child(3) { transition-delay: 0.2s; }
.trust-card:nth-child(4) { transition-delay: 0.3s; }
.trust-card:nth-child(5) { transition-delay: 0.4s; }

.trust-card::before {
  content: ''; position: absolute; inset: 6px; border-radius: 16px;
  background: #fff; box-shadow: 0 2px 12px rgba(4,43,86,0.06);
  transition: box-shadow 0.3s ease, transform 0.3s ease; z-index: 0;
}
.trust-card:hover::before { box-shadow: 0 10px 32px rgba(4,43,86,0.13); transform: translateY(-4px); }
.trust-card > * { position: relative; z-index: 1; }

.trust-divider-v {
  width: 1px; background: rgba(4,43,86,0.10);
  align-self: stretch; flex-shrink: 0; margin: 12px 0;
}

.trust-letter-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(90deg, #0B335A, #1f5e9d);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px; flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(9,94,188,0.28);
  position: relative; overflow: hidden;
}

.trust-letter-wrap::after {
  content: ''; position: absolute; top: -50%; left: -75%;
  width: 50%; height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  animation: trust-shimmer 3s infinite;
}
@keyframes trust-shimmer { 0% { left: -75%; } 60% { left: 140%; } 100% { left: 140%; } }

.trust-letter { font-size: 1.5rem; font-weight: 800; color: #fff; line-height: 1; font-family: 'Satoshi', sans-serif; }

.trust-card-title {
  font-size: 1.40rem; font-weight: 700; color: #042B56; margin: 0 0 10px; line-height: 1.3;
  display: inline-block;
  background-image: linear-gradient(90deg, #095EBC, #095EBC);
  background-size: 0% 2px; background-repeat: no-repeat;
  background-position: left bottom; transition: background-size 0.35s ease; padding-bottom: 2px;
}
.trust-card:hover .trust-card-title { background-size: 100% 2px; }

.trust-card-desc { font-size: 16px; color: #042b56; line-height: 1.7; margin: 0; font-weight: 400; }

@media (max-width: 1100px) { .trust-card { padding: 28px 22px 24px; } }
@media (max-width: 900px) {
  .trust-cards { flex-wrap: wrap; gap: 16px; }
  .trust-divider-v { display: none; }
  .trust-card { flex: 0 0 calc(50% - 16px); max-width: calc(50% - 16px); }
  .trust-card::before { inset: 0; }
}
@media (max-width: 560px) {
  .trust-section { padding: 60px 16px; }
  .trust-cards { gap: 12px; }
  .trust-card { flex: 0 0 100%; max-width: 100%; padding: 24px 20px; }
  .trust-title { margin-bottom: 36px; }
}


/* ═══════════════════════════════
   QUALITY > QUANTITY SECTION
═══════════════════════════════ */
.qq-section {
  background: linear-gradient(135deg, #010d1f 0%, #021830 40%, #042d5a 75%, #063a72 100%);
  padding: 60px 32px; text-align: center; overflow: hidden; position: relative;
}

.qq-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 60px 60px;
}

.qq-section::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100,180,255,0.5), transparent);
}

.qq-bg-particles { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.qq-bg-particles span { position: absolute; border-radius: 50%; background: rgba(100,180,255,0.4); animation: floatDot linear infinite; }

.qq-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 3.5px;
  text-transform: uppercase; color: #0DC3F5; margin-bottom: 44px;
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.qq-label::before, .qq-label::after {
  content: ''; display: block; width: 28px; height: 1.5px; background: #0DC3F5; border-radius: 2px;
}
.qq-label.qq-vis { opacity: 1; transform: translateY(0); }

.qq-headline {
  font-size: clamp(60px, 11vw, 148px); font-weight: 900; line-height: 1;
  letter-spacing: -3px; margin: 0;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(14px, 2vw, 32px); flex-wrap: wrap; position: relative; z-index: 1;
}

.qq-w-quality {
  color: #0DC3F5; text-shadow: 0 0 60px rgba(13,195,245,0.25);
  opacity: 0; transform: translateX(-80px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.qq-w-quality.qq-vis { opacity: 1; transform: translateX(0); }

.qq-w-gt {
  color: #ffffff; font-weight: 300; font-size: 0.65em;
  opacity: 0; transform: translateY(40px) scale(0.8);
  transition: opacity 0.6s ease 0.18s, transform 0.6s cubic-bezier(0.22,1,0.36,1) 0.18s;
}
.qq-w-gt.qq-vis { opacity: 1; transform: translateY(0) scale(1); }

.qq-w-quantity {
  color: rgba(255,255,255,0.22);
  text-decoration: line-through; text-decoration-color: rgba(13,195,245,0.55); text-decoration-thickness: 4px;
  opacity: 0; transform: translateX(80px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1) 0.12s, transform 0.75s cubic-bezier(0.22,1,0.36,1) 0.12s;
}
.qq-w-quantity.qq-vis { opacity: 1; transform: translateX(0); }

.qq-underline { display: none; }

.qq-subtext {
  margin: 50px auto 0; font-size: clamp(13px, 1.6vw, 18px); color: rgba(255,255,255,0.50);
  line-height: 1.75; width: 75%; max-width: 900px; font-weight: 300;
  opacity: 0; transform: translateY(22px);
  transition: opacity 0.7s ease 0.45s, transform 0.7s ease 0.45s; position: relative; z-index: 1;
}
.qq-subtext.qq-vis { opacity: 1; transform: translateY(0); }

@media (max-width: 768px) {
  .qq-subtext { font-size: clamp(12px, 3.2vw, 15px); width: 95%; }
  .qq-section { padding: 80px 20px; }
  .qq-headline { letter-spacing: -1.5px; gap: 10px; }
}
@media (max-width: 480px) {
  .qq-subtext { font-size: clamp(11px, 3.5vw, 13px); width: 98%; }
  .qq-section { padding: 60px 16px; }
  .qq-headline { letter-spacing: -0.5px; }
}


/* ═══════════════════════════════
   TEAM SECTION  (commented out in HTML, styles kept)
═══════════════════════════════ */
.team-section { padding: 60px 5%; background: #fff; overflow: hidden; }
.team-container { max-width: 1440px; margin: 0 auto; display: flex; gap: 40px; align-items: flex-start; }
.team-text { flex: 1 1 40%; min-width: 300px; }
.team-title {
  font-weight: 800; font-size: 63px; line-height: 1.4;
  background: linear-gradient(180deg, #042B56 0%, #095EBC 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 48px; transform: translateY(20px);
}
.team-description { font-size: 18px; line-height: 28px; color: #042b56; margin-bottom: 18px; }
.team-btn {
  display: inline-block; padding: 12px 18px; background: #042B56; color: #fff;
  text-decoration: none; border-radius: 6px; font-size: 16px; font-weight: 500;
  transition: transform .25s ease, box-shadow .25s ease; box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.team-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(0,0,0,0.25); color: white; }
.pulse-btn { animation: pulse 2s infinite; }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 rgba(9,94,188,0.4); } 50% { box-shadow: 0 0 15px rgba(9,94,188,0.6); } }
.gallery-item.wide { margin-top: 20px; border-radius: 8px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,0.06); transform: translateY(20px); }
.gallery-item.wide img { width: 100%; height: auto; object-fit: cover; }
.team-gallery { flex: 1 1 60%; display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); grid-auto-rows: 200px; gap: 18px; perspective: 1000px; }
.gallery-item { border-radius: 8px; overflow: hidden; box-shadow: 0 6px 20px rgba(0,0,0,0.08); transition: transform .5s ease, box-shadow .5s ease; opacity: 0; transform: scale(0.95) translateY(30px); will-change: transform; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; }
.gallery-item:hover { transform: rotateX(5deg) rotateY(5deg) scale(1.05); box-shadow: 0 12px 35px rgba(0,0,0,0.2); }
.gallery-item.tall { grid-row: span 2; }
.animate-fade-slide.visible { opacity: 1 !important; transform: scale(1) translateY(0) !important; transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
@media (max-width: 1100px) { .team-container { flex-direction: column; } .team-text { width: 100%; text-align: center; } .team-btn { margin: 0 auto; } .team-gallery { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); } }
@media (max-width: 700px) { .team-title { font-size: 38px; } .team-description { font-size: 16px; line-height: 24px; } .team-gallery { grid-template-columns: 1fr; grid-auto-rows: auto; } }


/* ═══════════════════════════════
   TEAM MEMBER / PROFILE SECTION  (commented out in HTML, styles kept)
═══════════════════════════════ */
.profile-section {
  width: 100%; padding: clamp(40px, 6vw, 80px) clamp(16px, 4vw, 40px);
  background: linear-gradient(180deg, #ffffff 0%, #cde5ff 100%);
  text-align: center; box-sizing: border-box;
}
.profile-header { max-width: 700px; margin: 0 auto clamp(32px, 5vw, 56px); }
.section-subtitle { display: inline-flex; align-items: center; gap: 8px; font-size: clamp(14px, 1.6vw, 18px); font-weight: 600; color: #042b56; padding: 6px 14px; border-radius: 20px; margin-bottom: 14px; }
.section-title { font-size: clamp(28px, 5vw, 60px); font-weight: 700; background: linear-gradient(180deg, #042b56 0%, #095ebc 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin: 0 0 14px; line-height: 1.15; }
.section-description { font-size: clamp(15px, 1.8vw, 20px); color: #042b56; line-height: 1.8; margin: 0; }
.profile-container { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 3vw, 40px); max-width: 1200px; margin: 0 auto; }
.profile-card { background: #fff; border-radius: 14px; box-shadow: 0 4px 20px rgba(0,0,0,0.08); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; width: 100%; max-width: 100%; }
.profile-card:hover { transform: translateY(-8px); box-shadow: 0 12px 32px rgba(0,0,0,0.14); }
.profile-image { width: 100%; aspect-ratio: 4 / 3; overflow: hidden; position: relative; background: #f0f4f8; }
.profile-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; transform: scale(1.02); transition: transform 0.5s ease; }
.profile-card:hover .profile-image img { transform: scale(1.07); }
.profile-info { padding: clamp(14px, 2vw, 22px); text-align: left; flex: 1; display: flex; flex-direction: column; }
.profile-info h3 { font-weight: 700; font-size: clamp(15px, 1.4vw, 18px); margin: 0 0 4px; color: #042b56; }
.profile-info .designation { font-size: clamp(12px, 1.1vw, 14px); font-weight: 600; color: #0dc3f5; margin: 0 0 10px; text-transform: uppercase; letter-spacing: 0.04em; }
.profile-info .bio { font-size: clamp(12px, 1.1vw, 14px); line-height: 1.6; color: #444; margin: 0 0 14px; flex: 1; }
.social-icons { display: flex; gap: 10px; margin-top: auto; }
.social-icons a { width: 34px; height: 34px; min-width: 34px; min-height: 34px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; background: #f0f4f8; color: #555; font-size: 15px; text-decoration: none; transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease; }
.social-icons a:hover { background: #095ebc; color: #fff; transform: translateY(-3px); }
@media (max-width: 1024px) { .profile-container { grid-template-columns: repeat(3, 1fr); gap: clamp(12px, 2vw, 24px); } }
@media (max-width: 768px) { .profile-container { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .profile-container { grid-template-columns: 1fr; max-width: 360px; } }


/* ═══════════════════════════════
   MISSION / VISION SECTION
═══════════════════════════════ */
.mission-section, .vision-section {
  width: 100%; padding: 100px 20px 80px 20px; display: flex; justify-content: center; position: relative;
}
.mission-section { background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%); }
.mission-section::before { content: ""; display: block; width: 100%; height: 200px; background: linear-gradient(to bottom, rgba(0,0,0,0.08), transparent); position: absolute; top: 0; left: 0; }
.vision-section { background: linear-gradient(180deg, #ffffff 0%, #f9f9f9 100%); }
.mission-container, .vision-container { display: grid; grid-template-columns: 1fr 1fr; gap: 90px; max-width: 1200px; width: 100%; align-items: center; }
.mission-text, .vision-text { color: #042B56; max-width: 600px; }
.mission-subtitle { display: inline-block; font-size: 14px; font-weight: 600; letter-spacing: 1px; padding: 6px 14px; border-radius: 20px; border: 1px solid #042B56; color: #042B56; margin-bottom: 16px; }
.mission-title { font-size: 42px; font-weight: 500; line-height: 1.3; margin-bottom: 20px; background: linear-gradient(90deg, #042B56 0%, #095EBC 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.mission-description { font-size: 18px; line-height: 1.8; color: #042b56; }
.mission-image, .vision-image { height: 335px; display: flex; justify-content: center; align-items: center; border-radius: 16px; overflow: hidden; position: relative; box-shadow: 0 12px 28px rgba(0,0,0,0.25); transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s cubic-bezier(0.22,1,0.36,1); will-change: transform; }
.mission-image.framed, .vision-image.framed { background: linear-gradient(90deg, #042B56 0%, #095EBC 100%); }
.mission-image img, .vision-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 12px; transform: scale(1); transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), filter 0.3s ease; will-change: transform; }
.mission-image:hover, .vision-image:hover { transform: none; box-shadow: 0 18px 38px rgba(4,43,86,0.22); }
.mission-image:hover img, .vision-image:hover img { transform: scale(1.01); filter: brightness(1.01); }
.mission-image::after, .vision-image::after { content: ""; position: absolute; bottom: -20px; left: 10%; width: 80%; height: 40px; background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, transparent 80%); filter: blur(8px); z-index: -1; opacity: 0.5; transition: opacity 0.3s ease; }
.mission-image:hover::after, .vision-image:hover::after { opacity: 0.7; }
@media (max-width: 1024px) { .mission-title { font-size: 34px; } .mission-description { font-size: 16px; } .mission-container, .vision-container { gap: 40px; } }
@media (max-width: 768px) { .mission-container, .vision-container { grid-template-columns: 1fr; text-align: center; } .mission-text, .vision-text { margin-bottom: 30px; } .mission-image.framed, .vision-image.framed { padding: 0; height: 250px; } .mission-title { font-size: 28px; } }
@media (max-width: 480px) { .mission-section, .vision-section { padding: 50px 15px; } .mission-title { font-size: 22px; line-height: 1.4; } .mission-description { font-size: 15px; line-height: 1.6; } .mission-subtitle { font-size: 12px; padding: 4px 10px; } .mission-image.framed, .vision-image.framed { height: 200px; } }


/* ═══════════════════════════════
   AWARDS SECTION  (commented out in HTML, styles kept)
═══════════════════════════════ */
.awards-section { width: 100%; background: linear-gradient(180deg, #f9f9f9 0%, #ffffff 100%); color: #000; padding: 60px 20px; }
.awards-header { text-align: center; margin-bottom: 30px; }
.award-icon { width: 65px; height: 65px; display: flex; align-items: center; justify-content: center; border-radius: 14px; background: #e9edf3; margin: 0 auto 12px; animation: bounce 2s infinite; }
.award-icon i { font-size: 30px; background: linear-gradient(90deg, #042B56 0%, #095EBC 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.awards-header h2 { font-size: 42px; font-weight: 700; margin: 0; background: linear-gradient(180deg, #042B56 0%, #095EBC 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.awards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 25px; max-width: 1200px; margin: 0 auto; }
.award-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 6px 16px rgba(0,0,0,0.08); display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; opacity: 0; transform: translateY(40px); animation: fadeUp 1s forwards; }
.award-card img { width: 100%; height: 180px; object-fit: cover; }
.award-info { padding: 15px; }
.award-info h3 { font-size: 18px; font-weight: 700; margin: 5px 0; color: #042B56; }
.award-info p { font-size: 15px; margin: 0; color: #555; }
.award-info span { font-size: 13px; color: #777; }
.award-card:hover { transform: translateY(-10px) scale(1.03); box-shadow: 0 10px 22px rgba(0,0,0,0.12); }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (max-width: 768px) { .awards-header h2 { font-size: 32px; } .award-card { height: auto; } }
@media (max-width: 480px) { .awards-header h2 { font-size: 26px; } .award-icon { width: 50px; height: 50px; } }


/* ═══════════════════════════════
   TESTIMONIAL / SELF-INTRO SECTION  (commented out in HTML, styles kept)
═══════════════════════════════ */
.testimonial-section { width: 100%; height: 377px; background: linear-gradient(90deg, #042B56 0%, #095EBC 100%); display: flex; align-items: center; justify-content: center; padding: 0 40px; margin-top: 5%; margin-bottom: 9%; overflow: visible; position: relative; }
.testimonial-circle-large { position: absolute; right: -80px; top: 50%; transform: translateY(-50%); width: 420px; height: 420px; border-radius: 50%; background: rgba(255,255,255,0.06); pointer-events: none; z-index: 0; }
.testimonial-circle-small { position: absolute; right: 700px; top: 50%; transform: translateY(-10%); width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,0.04); pointer-events: none; z-index: 0; }
.testimonial-container { display: flex; align-items: center; gap: 40px; max-width: 1440px; width: 100%; opacity: 0; transform: translateY(30px); animation: fadeSlideUp 1.2s ease forwards; position: relative; z-index: 1; }
.testimonial-image img { width: 634px; height: 470px; object-fit: cover; margin-top: -14.5%; transition: transform 0.8s ease; }
.testimonial-image img:hover { transform: scale(1.05); }
.testimonial-content { max-width: 657px; position: relative; color: #ffffff; }
.quote-mark { font-size: 68px; font-weight: 500; font-style: normal; color: #ffffff; position: absolute; top: -48px; left: -25px; opacity: 0; animation: fadeIn 1s ease 0.5s forwards; }
.testimonial-text { font-size: 20px; word-spacing: 3px; font-style: italic; line-height: 38px; color: #ffffff; margin: 0; opacity: 0; animation: fadeIn 1.2s ease 0.8s forwards; }
.testimonial-author { margin-top: 24px; opacity: 0; animation: fadeIn 1.2s ease 1.1s forwards; }
.testimonial-author-name { font-size: 17px; font-weight: 700; color: #0DC3F5; margin: 0 0 4px 0; }
.testimonial-author-title { font-size: 13px; color: rgba(255,255,255,0.55); margin: 0; }
@keyframes fadeSlideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { to { opacity: 1; } }
@media (max-width: 1200px) { .testimonial-container { gap: 30px; } .testimonial-image img { width: 500px; height: auto; margin-top: -10%; } .testimonial-text { font-size: 18px; line-height: 32px; } }
@media (max-width: 992px) { .testimonial-section { height: auto; padding: 40px 20px; } .testimonial-container { flex-direction: column; text-align: center; gap: 20px; } .testimonial-image img { width: 70%; height: auto; margin-top: -5%; } .quote-mark { position: relative; top: 0; left: 0; font-size: 60px; display: block; margin-bottom: 10px; } .testimonial-text { font-size: 18px; line-height: 30px; } .testimonial-circle-large, .testimonial-circle-small { display: none; } }
@media (max-width: 600px) { .testimonial-image img { width: 90%; height: auto; margin-top: 0; } .testimonial-text { font-size: 16px; line-height: 28px; } .quote-mark { font-size: 50px; } }


/* ═══════════════════════════════
   PAGE-WIDE ANIMATION SYSTEM
═══════════════════════════════ */
.pg-hero-title { opacity: 0; animation: pgFadeIn 1s ease 0.1s forwards; }

.pg-anim { opacity: 0; transition: opacity 0.75s ease; will-change: opacity; }
.pg-delay-1 { transition-delay: 0.15s; }
.pg-delay-2 { transition-delay: 0.28s; }
.pg-delay-3 { transition-delay: 0.42s; }
.pg-anim.pg-in-view { opacity: 1; }
