/* ===== RESET ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'gilroy', Arial, sans-serif;
  background: #000;
  color: #fff;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  width: 100%;
  min-height: 420px;
  background-image: url('images/Frame.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 20, 50, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 60px;
  width: 100%;
}

/* ===== BREADCRUMB ===== */
.hero-breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.breadcrumb-who {
  color: #ffffff;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  opacity: 0.85;
}

.breadcrumb-separator {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 6px;
  font-weight: 400;
}

.breadcrumb-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

/* ===== DIVIDER ===== */
.hero-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
  margin-bottom: 28px;
}

/* ===== TITLE ===== */
.hero-title {
  font-size: 52px;
  font-weight: 300;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

/* ===== SUBTITLE ===== */
.hero-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 480px;
  margin-bottom: 36px;
}

/* ===== BUTTON ===== */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 22px 10px 10px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.hero-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

.hero-btn-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, #13C5B8, #2A44B0);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.hero-btn:hover .hero-btn-icon {
  opacity: 0.85;
}

/* ===== TABLET VIEW (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .hero-content {
    padding: 70px 40px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-subtitle {
    font-size: 14px;
    max-width: 100%;
  }
}

/* ===== MOBILE VIEW (max-width: 768px) ===== */
@media (max-width: 768px) {
  .hero-section {
    min-height: 480px;
    background-position: right center;
  }

  .hero-content {
    padding: 60px 24px;
  }

  .hero-breadcrumb {
    flex-wrap: wrap;
    gap: 4px;
  }

  .hero-title {
    font-size: 34px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 13px;
    line-height: 1.75;
    max-width: 100%;
  }

  .hero-subtitle br {
    display: none;
  }

  .hero-btn {
    font-size: 13px;
    padding: 9px 20px 9px 9px;
  }

  .hero-btn-icon {
    width: 28px;
    height: 28px;
  }
}

/* ===== SMALL MOBILE VIEW (max-width: 480px) ===== */
@media (max-width: 480px) {
  .hero-section {
    min-height: 520px;
  }

  .hero-content {
    padding: 50px 20px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 13px;
  }

  .hero-divider {
    margin-bottom: 22px;
  }
}
/* ===== INTRO TEXT SECTION ===== */
.intro-section {
  background: #ffffff;
  width: 100%;
  padding: 80px 20px;
}

.intro-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.intro-para {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
}

.intro-dark {
  color: #0f1f3d;
}

.intro-grey {
  color: #8a94a6;
  font-weight: 400;
}

/* ===== TABLET (max-width: 1024px) ===== */
@media (max-width: 1024px) {
  .intro-section {
    padding: 60px 40px;
  }

  .intro-para {
    font-size: 17px;
  }
}

/* ===== MOBILE (max-width: 768px) ===== */
@media (max-width: 768px) {
  .intro-section {
    padding: 50px 24px;
  }

  .intro-para {
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ===== SMALL MOBILE (max-width: 480px) ===== */
@media (max-width: 480px) {
  .intro-section {
    padding: 40px 20px;
  }

  .intro-para {
    font-size: 14px;
  }
}
/* ===== MEET OUR TEAM SECTION ===== */
.team-section {
  position: relative;
  background: #ffffff;
  width: 100%;
  padding: 100px 40px;
  overflow: hidden;
  text-align: center;
}

/* ===== IMPROVED WATERMARK ===== */
.team-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  z-index: 0;
  opacity: 0.05; /* Matches the faint look in your image */
  pointer-events: none;
  user-select: none;
}

.team-watermark span {
  font-size: clamp(80px, 15vw, 200px);
  font-weight: 900;
  white-space: nowrap;
  text-transform: lowercase;
  letter-spacing: -5px;
  line-height: 0.9;
  display: block;
}

/* Offset every second line like the image */
.team-watermark span:nth-child(even) {
  margin-left: -20%;
}
.team-watermark span:nth-child(odd) {
  margin-left: 5%;
}

/* ===== RESPONSIVE GRID ===== */
.team-grid {
  position: relative;
  z-index: 1;
  display: grid;
  /* 3 columns on desktop */
  grid-template-columns: repeat(3, 1fr); 
  gap: 80px 40px; 
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.team-img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1.1; /* Keeps images consistent */
  margin-bottom: 20px;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Good for transparent headshots */
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.team-card:hover .team-img {
  transform: translateY(-10px) scale(1.05);
}

.team-name {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 10px 0 5px;
}

.team-role {
  font-size: 13px;
  color: #666;
  max-width: 200px;
  line-height: 1.4;
}

/* ===== TABLET & MOBILE RESPONSIVENESS ===== */

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
    gap: 60px 30px;
  }
}

@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
    gap: 50px;
  }
  
  .team-section {
    padding: 60px 20px;
  }
  
  .team-watermark span {
    font-size: 100px; /* Smaller watermark for mobile */
  }
}
/* ===== MEET OUR TEAM SECTION ===== */
/* ===== MEET OUR TEAM SECTION ===== */
 /* ============================================================
   MEET OUR TEAM — scoped with "mot-" prefix
   White bg · Grey watermark (line 2 more faded) · Hover overlay
   Fully responsive
   ============================================================ */

.mot-section {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  width: 100%;
  padding: 0 0 60px;
}
/* ============================================================
   WATERMARK
   ============================================================ */
.mot-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 0.92;
  user-select: none;
  overflow: hidden;
}

.mot-wm-line1,
.mot-wm-line2 {
  display: block;
  font-size: clamp(72px, 13vw, 160px);
  font-weight: 900;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  white-space: nowrap;
  color: #c5cad8;
  font-family: 'Segoe UI', Arial, sans-serif;
}
.mot-wm-line1 { opacity: 0.6; }
.mot-wm-line2 { opacity: 0.25; }
/* ============================================================
   CONTENT
   ============================================================ */
.mot-rows {
  position: relative;
  z-index: 1;
  padding-top: clamp(120px, 18vw, 240px);
}
.mot-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(20px, 3vw, 48px);
  padding: 0 clamp(40px, 6vw, 100px);
  margin-bottom: clamp(24px, 3vw, 40px);
  flex-wrap: wrap;
}
/* ============================================================
   CARD
   ============================================================ */
.mot-card {
  flex: 1 1 0;
  max-width: 280px;
  min-width: 160px;
  text-align: center;
}
.mot-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #e8eaf0;
}
.mot-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 8px;
  transition: transform 0.4s ease;
}
.mot-card:hover .mot-img {
  transform: scale(1.04);
}

/* ============================================================
   HOVER OVERLAY
   ============================================================ */
.mot-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13, 186, 173, 0.88) 0%,
    rgba(58, 52, 166, 0.95) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px 16px;
  opacity: 0;
  transition: opacity 0.38s ease;
  border-radius: 6px;
}
/* Overlay only on hover — applies to ALL cards including bordered */
.mot-card:hover .mot-overlay {
  opacity: 1;
}
.mot-overlay-text {
  font-size: 12.5px;
  color: #ffffff;
  line-height: 1.6;
  margin: 0 0 14px;
  text-align: left;
}
.mot-icons {
  display: flex;
  gap: 8px;
}
.mot-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.55);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.25s ease;
  flex-shrink: 0;
}
.mot-icon:hover {
  background: rgba(255,255,255,0.45);
}
/* ============================================================
   NAME & ROLE
   ============================================================ */
.mot-name {
  margin: 12px 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
}
.mot-role {
  margin: 0;
  font-size: 12px;
  color: #777;
  line-height: 1.4;
}
/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .mot-grid { gap: 18px; padding: 0 32px; }
  .mot-card { max-width: 220px; min-width: 130px; }
}
@media (max-width: 600px) {
  .mot-rows { padding-top: clamp(90px, 22vw, 160px); }
  .mot-grid { gap: 12px; padding: 0 16px; margin-bottom: 20px; }
  .mot-card { flex: 1 1 120px; max-width: 165px; min-width: 100px; }
  .mot-overlay-text { font-size: 10.5px; }
  .mot-name { font-size: 12px; }
  .mot-role { font-size: 10px; }
}
@media (max-width: 400px) {
  .mot-grid { flex-wrap: wrap; justify-content: center; }
  .mot-card { flex: 0 1 45%; max-width: 160px; }
}
.vb-cta-section {
  position: relative;
  overflow: hidden;
  background: #0a1628;
  border-radius: 16px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  box-sizing: border-box;
  width: 100%;
}
 
.vb-cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
 
.vb-cta-circle {
  position: absolute;
  border-radius: 50%;
}
 
.vb-cta-circle--1 {
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, #0d4a8a 0%, #0a2d5c 40%, transparent 70%);
  right: -80px;
  top: -160px;
}
 
.vb-cta-circle--2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, #0e6dad 0%, #0a4070 50%, transparent 70%);
  right: 20px;
  top: -60px;
}
 
.vb-cta-circle--3 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #1a8ab5 0%, #0c5585 50%, transparent 70%);
  right: 120px;
  top: -20px;
}
 
.vb-cta-circle--4 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, #22aacc 0%, #1277a0 60%, transparent 75%);
  right: 200px;
  top: 20px;
}
 
.vb-cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
}
 
.vb-cta-heading {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 16px;
  line-height: 1.3;
}
 
.vb-cta-subtext {
  font-size: clamp(13px, 1.8vw, 15px);
  color: rgba(200, 220, 240, 0.85);
  margin: 0 auto 32px;
  line-height: 1.7;
  max-width: 480px;
}
 
.vb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: 999px;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
  cursor: pointer;
}
 
.vb-cta-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}
 
/* Responsive */
@media (max-width: 600px) {
  .vb-cta-section { padding: 48px 24px; border-radius: 12px; }
  .vb-cta-circle--1 { width: 340px; height: 340px; right: -100px; top: -100px; }
  .vb-cta-circle--2 { width: 240px; height: 240px; right: -30px; }
  .vb-cta-circle--3 { width: 180px; height: 180px; right: 40px; }
  .vb-cta-circle--4 { display: none; }
}
 
@media (max-width: 400px) {
  .vb-cta-section { padding: 40px 16px; }
  .vb-cta-btn { font-size: 14px; padding: 10px 20px; }
}