/* =====================================================
   VEX PAGE — Rewritten to match Figma while
   keeping navbar and footer styles unchanged
   Fonts: Tilt Warp (titles), Instrument Sans (body)
   ===================================================== */
:root{
  --bar-gradient: linear-gradient(90deg, rgba(249,203,34,0.9) 23%, rgba(239,118,22,0.9) 50%, rgba(240,17,95,0.9) 77%);
}

/* Base */
html,body{background:#000;color:#fff;font-family:'Instrument Sans',sans-serif;overflow-x:hidden;margin:0}
img{max-width:100%;height:auto}

/* ------ Generic containers ------ */
.container{width:min(1100px,90vw);margin:0 auto}
.gradient-rule{height:6px;background:var(--bar-gradient);border-radius:1000px;width:100%;position:absolute;left:0;bottom:0}

/* ------ Section shells (shared) ------ */
.section{position:relative;min-height:640px;display:flex;align-items:center;justify-content:center;padding:96px 0}
.section .section-bg{position:absolute;inset:0;background: #111 center/cover no-repeat;z-index:0}
.section .section-bg{background-image:var(--bg)}
.section .section-overlay{position:absolute;inset:0;background:linear-gradient(360deg,rgba(0,0,0,0) 0%,rgba(0,0,0,.75) 50%,#000 100%);z-index:1}
.section .section-title{font-family:'Tilt Warp',sans-serif;font-weight:400;font-size:48px;white-space:normal;position:relative;display:inline-block;padding-bottom:.5rem;margin:0 0 1rem}
.section .section-title::after{content:"";position:absolute;left:0;right:0;bottom:0;height:10px;background:var(--bar-gradient);border-radius:1000px}
.section .section-copy{font-size:18px;line-height:1.55;opacity:.95;margin:0;max-width:720px}
.section .left{margin-left:0;text-align:left}
.section .center{text-align:center;margin-left:auto;margin-right:auto}
.section > .container{position:relative;z-index:2}

/* === OUR TEAM (Hero Section — Figma Accurate) === */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 700px;
  background: url('../images/Banner.png') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
}

/* Left-to-right only black gradient shading (no vertical fade) */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.95) 0%,   /* strong black on left */
    rgba(0, 0, 0, 0.75) 25%,  /* smooth fade */
    rgba(0, 0, 0, 0.4) 50%,   /* softer mid fade */
    rgba(0, 0, 0, 0.1) 75%,   /* almost clear */
    rgba(0, 0, 0, 0) 100%     /* fully clear on right */
  );
  z-index: 1;
}

.hero .section-overlay {
  background: none !important;
}

/* TEXT CONTAINER */
.hero-inner {
  position: relative;
  z-index: 2;
  width: 40%;
  margin-left: 5%;
  padding: 2rem 2.5rem;
  text-align: left;
}

/* TITLE */
.hero .section-title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  text-transform: uppercase;
}

.hero .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.4rem;
  height: 6px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(249,203,34,0.9) 23%,
    rgba(239,118,22,0.9) 50%,
    rgba(240,17,95,0.9) 77%
  );
  border-radius: 1000px;
}

/* BODY TEXT */
.hero .section-copy {
  font-family: 'Instrument Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.95;
  color: #fff;
  max-width: 100%;
}

/* RESPONSIVE FIXES */
@media (max-width: 992px) {
  .hero-inner {
    width: 60%;
    margin-left: 5%;
  }
  .hero .section-copy {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 550px;
    justify-content: center;
  }
  .hero .section-copy {
    font-size: 0.8rem !important;
  }
  .hero::before {
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.7) 50%,
      rgba(0, 0, 0, 0.2) 100%
    );
  }

  .hero-inner {
    width: 90%;
    margin-left: 0;
    text-align: center;
  }

  .hero .section-title {
    font-size: 2rem;
  }
}

/* ===== Qualifications ===== */
/* === OUR QUALIFICATIONS SECTION === */
.qualifications {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
}

/* Title styling */
.qualifications .section-title {
  font-family: 'Tilt Warp', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.qualifications .section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.6rem;
  height: 6px;
  width: 100%;
  background: linear-gradient(
    90deg,
    rgba(249,203,34,0.9),
    rgba(239,118,22,0.9),
    rgba(240,17,95,0.9)
  );
  border-radius: 1000px;
}

/* Layout grid: 2 columns */
.qualifications-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

/* Each vertical column */
.qualifications-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

/* Cards inside each column */
.qualifications-cards {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

/* Card boxes */
.qualifications-cards .card {
  width: 180px;
  height: 180px;
  border: 3px solid #ff007f;
  border-radius: 16px;
  background: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qualifications-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

/* Arrows */
.arrow {
  font-size: 1.5rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s ease;
}

.arrow:hover {
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 768px) {
  .qualifications-grid {
    flex-direction: column;
    gap: 2rem;
  }

  .qualifications-cards .card {
    width: 150px;
    height: 150px;
  }

  .qualifications .section-title {
    font-size: 1.8rem;
  }
}

/* === WHAT WE PROVIDE SECTION (Top-Right Placement with Original Shading) === */
.provide {
  position: relative;
  display: flex;
  align-items: flex-start; /* moves content upward */
  justify-content: flex-end; /* moves content to the right side */
  min-height: 700px;
  background: url('../images/Scateam.png') center/cover no-repeat;
  color: #fff;
  overflow: hidden;
  padding: 5rem 6rem 3rem 2rem; /* spacing top-right-bottom-left */
}

/* Keep original top-to-bottom dark shading */
.provide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85) 0%,   /* dark at top */
    rgba(0, 0, 0, 0.4) 40%,   /* mid fade */
    rgba(0, 0, 0, 0.1) 80%,   /* light near bottom */
    rgba(0, 0, 0, 0) 100%     /* clear bottom */
  );
  z-index: 1;
}

/* Put the content box in the top-right corner */
.provide .provide-inner {
  position: absolute !important;
  top: clamp(48px, 8vh, 96px) !important;         /* raise up a bit */
  right: clamp(24px, 5vw, 96px) !important;       /* hug the right */
  max-width: min(720px, 90vw) !important;         /* keep tidy width */
  text-align: right !important;                   /* right-align text */
  margin: 0 !important;                           /* cancel centering from .container */
  padding: 0 !important;
  z-index: 2 !important;
}

/* Extend underline to match full title width */
.provide .section-title {
  display: inline-block;
  text-align: right;
  position: relative;
  right: 0 !important;
}

.provide .section-title::after {
  content: "";
  position: absolute;
  right: 0 !important; /* align underline flush to the right edge */
  left: auto;
  bottom: -0.6rem;
  height: 8px; /* thicker, smoother bar */
  width: 100%; /* extend fully under the title */
  background: linear-gradient(
    90deg,
    rgba(249,203,34,0.9) 0%,
    rgba(239,118,22,0.9) 50%,
    rgba(240,17,95,0.9) 100%
  );
  border-radius: 1000px;
}

/* Paragraphs: right-align and fill the box width */
.provide .section-copy {
  text-align: right !important;
  margin-left: auto !important;
  margin-right: 0 !important;
}

/* Responsive: center on phones for readability */
@media (max-width: 900px) {
  .provide .section-title {
    display: inline-block;
    text-align: right;
    position: relative;
  }
  .provide .section-copy {
    text-align: right !important;
    margin: 0 auto !important;
    font-size: medium !important;
  }
}

@media (max-width: 600px) {
  .provide .section-title {
    display: inline-block;
    text-align: right;
    position: relative;
  }
  .provide .section-copy {
    text-align: right !important;
    margin: 0 auto !important;
    font-size: small !important;
    width: 100% !important;
    right: 0 !important;
  }
}

/* ------ Responsive tweaks ------ */
@media (max-width:900px){
  .section{min-height:560px;padding:80px 0}
  .section .section-title{font-size:36px}
  .hero .section-title{font-size:32px}
}

@media (max-width:600px){
  .section{padding:64px 0}
  .section .section-title{font-size:30px}
  .section .section-copy{font-size:16px}
  .cards-viewport{height:460px}
}

.stats-section {
  text-align: center;
  margin: 4rem 0;
  position: relative;
}

.stats-gradient {
  height: 6px; /* line thickness */
  background: linear-gradient(
    90deg,
    rgba(249,203,34,0.9) 23%,
    rgba(239,118,22,0.9) 50%,
    rgba(240,17,95,0.9) 77%
  );
  border-radius: 1000px;
}
.site-footer .logo {
  background: url('../images/logo.png') center/cover no-repeat;
}
.site-footer .footer-copy {
  font-size: 24px;
  font-weight: 1000 !important;
  margin: 0 0 8px 0;
}
.site-footer .footer-sub {
  font-size: 18x;
  font-weight: 1200 !important;
  line-height: 16px;
  opacity: 0.8;
  margin-right: 2px;
}