/* ===== GOOGLE FONTS ===== */
/*@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600&family=Playfair+Display:wght@600;700&display=swap');*/

/* ===== CSS VARIABLES ===== */
:root {
  --primary-dark: #101D41;
  --primary-blue: #3857F1;
  --footer-bg: #23282D;
  --text-dark: #30373E;
  --text-white: #FFFFFF;
  --text-muted: rgba(255,255,255,0.52);
  --font-body: "BlissPro ExtraLight", "Gill Sans", Calibri, "Helvetica Neue", Arial, sans-serif;
/*  --font-body: 'Open Sans', sans-serif;*/
  /*--font-light: 'Poppins', sans-serif;*/
  --font-light: "BlissPro ExtraLight", "Gill Sans", Calibri, "Helvetica Neue", Arial, sans-serif;
  --font-logo: 'Playfair Display', serif;
  --container-max: 85%;
  --font-size : 22px; font-weight: 400;
  --font-size-phone : 18px; font-weight: 500;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-dark);
  margin: 0; padding: 0;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
*, *::before, *::after { box-sizing: border-box; }

/* ===== CONTAINER ===== */
.cover-container { width: 100%; }

/* Bootstrap .container override — wide layout 1600px */
.container { max-width: var(--container-max); }

/* ===== NAVBAR ===== */
.navbar-quox {
  padding: 0 40px;
  min-height: 80px;
  background: transparent !important;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--primary-dark) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.navbar-quox.navbar-scrolled {
  background: var(--primary-dark) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.navbar-quox .logo-text {
  font-family: var(--font-logo);
  font-size: var(--font-size);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}
.navbar-quox .nav-list {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar-quox .nav-list a {
  font-family: var(--font-body);
  font-size: var(--font-size);
  color: #fff;
  padding: 10px 20px;
  display: block;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  letter-spacing: 0.3px;
}
.navbar-quox .nav-list a:hover,
.navbar-quox .nav-list a.active { opacity: 1; }

.navbar-quox .nav-toggle {
  display: none;
  background: none; border: none; padding: 10px; cursor: pointer;
}
.navbar-quox .nav-toggle span {
  display: block; width: 24px; height: 2px; background: white; margin: 5px 0;
}

@media (max-width: 991px) {
  .navbar-quox { padding: 0 20px; background: var(--primary-dark) !important; }
  .navbar-quox .nav-toggle { display: block; }
  .navbar-quox .nav-list {
    display: none; position: absolute; top: 80px; left: 0; right: 0;
    background: var(--primary-dark); flex-direction: column; padding: 20px;
  }
  .navbar-quox .nav-list.show { display: flex; }
  .navbar-quox .nav-list a { padding: 12px 16px; font-size: var(--font-size);}
}

@media (max-width: 767px) {
  .navbar-quox .nav-list.show { display: flex; }
  .navbar-quox .nav-list a { padding: 12px 16px; font-size: var(--font-size-phone);}
}


/* ===== HERO ===== */
.hero-section {
  min-height: 100vh;
  padding: 120px 0;
  display: flex; align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1,25,49,0);
  z-index: 1;
}
.hero-section .container { position: relative; z-index: 2; }
.hero-content { padding: 110px 0 0; }
.hero-heading {
  font-family: var(--font-body);
  font-size: 55pt; font-weight: 600;
  color: var(--text-white); line-height: 88px;
  /*margin: 0 0 20px 0;*/
}
.hero-subtitle {
  font-family: var(--font-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  /*font-size: var(--font-size);*/
  font-size: 16pt;
  font-weight: 700;
  /*color: var(--text-white);*/
  color: #3eed84;
  /*line-height: 33px;*/
  margin: 0 0 40px 0;/* max-width: 700px;*/
}

.hero-subtitle2 {
  font-family: var(--font-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: var(--font-size);
  /*color: var(--text-white);*/
  color: #fff;
  /*line-height: 33px;*/
  margin: 0 0 0px 0;/* max-width: 700px;*/
}

.hero-subtitle-s {
  font-family: var(--font-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  letter-spacing: 2px;
  /*font-size: var(--font-size);*/
  font-size: 16pt;
  font-weight: 600;
  /*color: var(--text-white);*/
  color: #3eed84;
  /*line-height: 33px;*/
  display: none;
}

.hero-subtitle p a {
  color: #2ad870;
}
.hero-subtitle-s { content: "|";}
.hero-link {
  font-family: var(--font-body);
  font-size: var(--font-size);
  color: var(--text-muted); transition: color 0.3s ease;
}
.hero-link:hover { color: var(--text-white); }

@media (max-width: 1199px) { .hero-heading { font-size: 60px; line-height: 60px; } }
@media (max-width: 767px) {
  .hero-section { padding: 0; }
  .hero-heading { font-size: 40px; line-height: 42px; }
  .hero-subtitle2 { font-size: var(--font-size-phone); }
  .hero-subtitle { display:none; }
  .hero-subtitle-s { display:block; margin: 0 0 10px 0; }
  .hero-link { font-size: 17px; }
}

/* ===== ABOUT ===== */
.about-section {
  min-height: 700px;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.about-video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
}
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1,25,49,0.3);
  z-index: 1;
}
.about-section .container { position: relative; z-index: 2; }
.about-inner { 
  max-width: 650px;
  padding:30px; 
  margin-top: 140px; 
  background: rgba(42, 216, 112, 0.3);
  border: 1px solid rgba(31, 238, 255, 0.5);
  border-radius:10px 
}

.about-inner-biru { 
  max-width: 650px;
  padding:30px; 
  margin-top: 140px; 
  background: rgba(36, 120, 189, 0.5);
  border: 1px solid rgba(31, 238, 255, 0.5);
  border-radius:10px 
}
.about-title {
  font-family: var(--font-body);
  font-size: var(--font-size);
  color: var(--text-white); line-height: 43.2px;
  margin: 0 0 20px 0;
}
.about-text {
  font-family: var(--font-light);
  /*font-size: 21px; font-weight: 300;*/
  font-size: var(--font-size);
  color: rgba(255,255,255,0.9); line-height: 32px;
  margin: 0 0 20px 0; max-width: 800px;
  line-height: 1.2;
}

@media (max-width: 767px) {
  .about-inner { padding-top:40px; }
  .about-text { font-size: var(--font-size-phone); font-weight: 500; line-height: 1.4; }
}

/* ===== VALUES ===== */
.values-section {
  background: var(--primary-dark);
  background-image:
    linear-gradient(#01193199, #01193199),
    url('../images/bg16.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
}
.values-grid-bs {
  width: 100%;
}
.value-text {
  border: 1px solid rgba(255,255,255,0.3);
}
.value-number {
  font-family: var(--font-body);
  font-size: 23pt; font-weight: 600;
  color: var(--text-white); line-height: 40px;
  margin: 0 0 4px 0;
}
.value-title {
  font-family: var(--font-body);
  font-size: 23pt; font-weight: 600;
  color: var(--text-white); line-height: 40px;
  margin: 0;
}
.value-desc {
  font-family: var(--font-body);
  font-size: var(--font-size);
  color: var(--text-white); line-height: 34px;
  margin: 37px 0 0 0;
}
.value-img img {
  width: 320px;
  height: 320px;
  object-fit: cover;
  display: block;
}

.pembatas { width:100%; margin-top: -140px; }

@media (max-width: 767px) {
  .values-section { padding: 90px 0; }
  .value-title { font-size: 20px; line-height: 1.3; }
  .value-desc { font-size: 16px; line-height: 1.4; margin-top: 16px; }
  .pembatas { width:100%; margin-top: 0px; }
}

/* ===== PORTFOLIO FEATURES ===== */
.portfolio-features {
  font-size: var(--font-size);
  padding: 120px 0;
  background: #fff;
}
.portfolio-label {
  font-family: var(--font-body);
  font-size: 23pt; font-weight: 400;
  color: var(--primary-dark); line-height: 40px;
  margin: 0 0 10px 0;
}
.portfolio-heading {
  font-family: var(--font-body);
  font-size: 22px; font-weight: 400;
  color: var(--primary-dark); line-height: 32px;
  margin: 10px 0 10px 0; max-width: 700px;
}
.portfolio-link {
  font-family: var(--font-body);
  font-size: var(--font-size);
  color: var(--primary-dark); line-height: 36px;
  transition: color 0.3s ease;
}
.portfolio-link:hover { color: var(--primary-blue); }

.carousel-container {
  overflow: hidden;
  margin-bottom: 50px;
  width: 100%;
}
.carousel-track {
  display: flex;
  width: fit-content;
  animation: scroll-logos 30s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
.carousel-track .logo-slide {
  flex: 0 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-track .logo-slide img {
  height: 120px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.35;
  transition: all 0.3s ease;
}
.carousel-track .logo-slide img:hover {
  filter: grayscale(0);
  opacity: 1;
}
@keyframes scroll-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 767px) {
  .portfolio-features { padding: 90px 0; font-size: 18px; }
  .portfolio-label { font-size: 20px; line-height: 1.3; }
  .portfolio-link { font-size: 24px; }
}

/* ===== INSIGHT SECTION (CBOE-style cards) ===== */
.insight-section {
  min-height: 200px;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.insight-video {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  object-fit: cover;
}
.insight-overlay {
  position: absolute;
  inset: 0;
  background: rgba(1,25,49,0);
  z-index: 1;
}
.insight-section .container { position: relative; z-index: 2; }
.insight-label {
  font-family: var(--font-body);
  font-size: 23pt; font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  color: #fff;
  margin: 0 0 20px 0;
}

.insight-text {
  font-family: var(--font-light);
  /*font-size: 21px; font-weight: 300;*/
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: var(--font-size);
  color: rgba(255,255,255,1); line-height: 32px;
  margin: 0 0 20px 0;
  line-height: 1.2;
}
.insight-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.insight-card {
  width: 380px;
 /* background: #0b1a33;*/
  background: rgba(42, 216, 112, 0.3);
  border: 1px solid rgba(31, 238, 255, 0.5);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.insight-card:hover {
  /*transform: translateY(-4px);*/
  border-color: rgba(31, 238, 255, 0.8);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}
.insight-card-img {
  width: 60%;
  margin: 0 auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
  line-height: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.insight-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.insight-card:hover .insight-card-img img {
}
.insight-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.insight-tag {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary-blue);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.insight-tag:hover {
  color: #6a8aff;
}
.insight-card-title {
  font-family: var(--font-body);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  margin: 0 0 12px 0;
}
.insight-card-text {
  font-family: var(--font-body);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  font-size: var(--font-size);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex: 1;
}
.insight-card-footer {
  margin-top: auto;
  padding-top: 4px;
}
.insight-read-more {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
}
.insight-read-more:hover {
  color: var(--primary-blue);
}
.insight-read-arrow {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary-blue);
  border-top: 2px solid var(--primary-blue);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.insight-read-more:hover .insight-read-arrow {
  transform: rotate(45deg) translate(3px, -3px);
}

@media (max-width: 991px) {
  .insight-grid {
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .insight-section { padding: 60px 0; }
  .insight-label { font-size: 23pt; font-weight: 600; margin-bottom: 30px; }
  .insight-grid { gap: 16px; }
  .insight-card { width: 100%; }
  .insight-card-img { display: block; }
  .insight-card-body { padding: 20px 18px; }
  .insight-card-text { font-size: var(--font-size); }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: #fff;
  padding: 80px 40px;
}
.testimonials-label {
  font-family: var(--font-body);
  font-size: 26px; font-weight: 700;
  color: var(--primary-dark); line-height: 40px;
  margin: 0 0 10px 0;
}
.testimonials-heading {
  font-family: var(--font-body);
  font-size: 22px; font-weight: 400;
  color: var(--primary-dark); line-height: 32px;
  margin: 0 0 60px 0; max-width: 700px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.testimonial-card {
  background: var(--primary-dark);
  padding: 30px;
}
.testimonial-img { width: 60px; height: 60px; object-fit: cover; margin-bottom: 20px; border-radius: 50%; }
.testimonial-quote {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 700;
  color: var(--text-white); line-height: 22px;
  margin: 0 0 12px 0;
  font-style: italic;
}
.testimonial-text {
  font-family: var(--font-body);
  font-size: 15px; font-weight: 400;
  color: rgba(255,255,255,0.85); line-height: 22px;
  margin: 0 0 20px 0;
}
.testimonial-author {
  font-family: var(--font-body);
  font-size: 14px; font-weight: 400;
  color: rgba(255,255,255,0.7); line-height: 20px;
}

@media (max-width: 991px) {
  .testimonials-section { padding: 60px 20px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ===== INQUIRY ===== */
.inquiry-header {
  background: var(--primary-dark);
  padding: 140px 0 60px;
  text-align: center;
}
.inquiry-header h1 {
  font-family: var(--font-body);
  font-size: 40px; font-weight: 600;
  color: #fff; margin: 0 0 14px 0;
}
.inquiry-header p {
  font-family: var(--font-light);
  font-size: var(--font-size);
  line-height: 32px; max-width: 700px;
  margin: 0 auto;
  color: rgba(255,255,255,0.8);
}
.inquiry-form-section { padding: 80px 0; }
.inquiry-form-section p { font-size: 18pt; font-weight: 400; }
.inquiry-form-inner { max-width: 960px; margin: 0 auto; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.form-row .full-width { grid-column: 1 / -1; }
.form-group { margin-bottom: 0; text-align: left; }
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-size: 18px; font-weight: 300;
  color: var(--text-dark); margin-bottom: 6px;
}
.form-group label .required { color: #e74c3c; }
.form-control {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid #e0e0e0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(56,87,241,0.1);
}
.form-control.is-invalid { border-color: #e74c3c; }
select.form-control { appearance: auto; }
textarea.form-control { resize: vertical; min-height: 120px; }
.invalid-feedback { display: none; color: #e74c3c; font-size: 13px; margin-top: 4px; }
.form-control.is-invalid ~ .invalid-feedback { display: block; }
.btn-submit {
  display: inline-block;
  background: var(--primary-blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px; font-weight: 600;
  padding: 14px 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0;
}
.btn-submit:hover {
  background: #2a45d6;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(56,87,241,0.3);
}

@media (max-width: 767px) {
  .inquiry-header { padding: 120px 0 40px; }
  .inquiry-header h1 { font-size: 28px; }
  .inquiry-header p { font-size: 18px; line-height: 28px; }
  .inquiry-form-section { padding: 40px 0; }
  .form-row { grid-template-columns: 1fr; gap: 18px; }
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--footer-bg);
  padding: 80px 0 40px;
  color: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  width: 100%;
}
.footer-col h3 {
  font-family: var(--font-body);
  font-size: 21pt; font-weight: 300;
  color: #fff; margin: 0 0 20px 0; line-height: 1.2;
}
.footer-col p {
  font-family: var(--font-body);
  font-size: var(--font-size);
  color: rgba(255,255,255, 1);
  line-height: 1.2; margin: 0 0 3px 0;
}
.footer-link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--font-size);
  color: var(--text-white); line-height: 24.2px;
  margin-bottom: 20px; transition: color 0.3s ease;
}
.footer-link:hover { color: var(--primary-blue); }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,1);
  font-size: 21pt; font-weight: 300;
  color: rgba(255,255,255,1);
  transition: all 0.3s ease;
}
.footer-social a:hover {
  border-color: var(--primary-blue);
  background: var(--primary-blue);
  color: #fff;
}
.footer-bottom {
  width: 100%;
  margin: 50px 0 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.footer-bottom p {
  font-family: var(--font-body);
  font-size: 16pt; font-weight: 300;
  color: rgba(255,255,255,1);
  line-height: 18px; margin: 0;
}

@media (max-width: 991px) {
  .site-footer { padding: 60px 0 30px; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-col p { font-size: var(--font-size-phone);}
  .footer-link { font-size: var(--font-size-phone); }
  .footer-bottom p { font-size: 14px; }
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--primary-blue);
  color: #fff; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0; visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}
.scroll-to-top.visible { opacity: 1; visibility: visible; }
.scroll-to-top:hover { background: #2a45d6; transform: translateY(-3px); }

/* ===== FADE IN ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== AUTHORIZED CARD ===== */
.authorized-card {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 20px;
  padding: 4px 24px 4px 20px;
  margin-top: 40px;
}
.authorized-label {
  font-family: var(--font-body);
  font-size: 17pt;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}
.authorized-logo {
  height: 75px;
  width: auto;
}
.authorized-agency {
  color: #016096;
}
.authorized-country {
  color: #be882d;
}

@media (max-width: 767px) {
  .authorized-card {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px 16px;
    gap: 6px 8px;
    margin-top: 24px;
  }
  .authorized-min {
    flex: 0 0 100%;
    font-size: 14px;
    line-height: 1;
  }
  .authorized-logo {
    height: 36px;
    flex-shrink: 0;
  }
  .authorized-card > div:last-child {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-wrap: nowrap;
    white-space: nowrap;
  }
  .authorized-agency {
    font-size: 14px;
    white-space: nowrap;
  }
  .authorized-country {
    font-size: 13px;
    white-space: nowrap;
  }
}

/* ===== TEAM ===== */
.team-section {
  padding: 100px 0;
  background: #FAFAFA;
}
.team-label {
  font-family: var(--font-body);
  font-size: 23pt; font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 0px 0;
}

.team-label2 {
  font-family: var(--font-body);
  font-size: 22pt; font-weight: 600;
  color: var(--primary-dark);
  margin: 0 0 0px 0;
}

.team-subtitle {
  font-family: var(--font-light);
  font-size: var(--font-size);
  color: #888;
  line-height: 1.2;
  margin: 0 0 40px 0;
}
.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s ease;
  background: #fff;
  padding: 10px;
}
.team-card:hover {
  transform: translateY(-6px);
  cursor: pointer;
}
.team-card img {
  /*width: 100%;
  height: 180px;*/
  width:100%;
  height:700px;
  object-fit: cover;
  /*border-radius: 50%;*/
  margin-bottom: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.team-card-body {
  padding: 0 4px;
}
.team-card-name {
  font-family: var(--font-body);
  font-size: var(--font-size);
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 4px;
  line-height: 1.3;
}
.team-card-title {
  font-family: var(--font-body);
  font-size: var(--font-size);
  margin: 0;
  line-height: 1.4;
}

/* Bootstrap row wrapper for team — max 4 per row */
.team-grid-bs > [class*="col-"] {
  display: flex;
  justify-content: center;
}
.team-grid-bs .team-card img {
  width: 100%;
  max-width: 180px;
  height: auto;
  aspect-ratio: 1;
}

@media (max-width: 767px) {
  .team-section { padding: 60px 0; }
  .team-label { font-size: 22px; margin-bottom: 10px; }
  .team-card img { width: 130px; height: 130px; }
  .team-card-name { font-size: 16px; }
  .team-card-title { font-size: 13px; }
  .team-grid-bs .team-card img { max-width: 130px; }
  .team-label2 {  font-size: 22px; font-weight: 600;    }
}

/* ===== TEAM MODAL ===== */
.modal-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: background 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}
.modal-overlay.show {
  background: rgba(0,0,0,0.7);
  opacity: 1;
  visibility: visible;
}
.modal-box {
  display: flex;
  gap: 32px;
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  max-width: 640px;
  width: 90%;
  position: relative;
  transform: scale(0.85) translateY(30px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}
.modal-overlay.show .modal-box {
  transform: scale(1) translateY(0);
  opacity: 1;
}
.modal-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 32px;
  color: #999;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}
.modal-close:hover {
  color: #333;
  transform: rotate(90deg);
}
.modal-left {
  flex: 0 0 180px;
}
.modal-left img {
  width: 180px;
  height: 180px;
  object-fit: cover;
  /*border-radius: 50%;*/
}
.modal-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-right h2 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 6px;
}
.modal-role {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-blue);
  margin: 0 0 16px;
}
.modal-bio {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: #555;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 767px) {
  .modal-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }
  .modal-left { flex: 0 0 auto; }
  .modal-left img { width: 140px; height: 140px; }
  .modal-right h2 { font-size: 20px; }
  .modal-role { font-size: 14px; }
  .modal-bio { font-size: 14px; }
}

.btn-success-custom {
    background-color: #2ad870;
    border: 2px solid #2eff82;
    color: #000;
    font-size: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-success-custom:hover,

.btn-success-custom:focus {
    background-color: #22c764;
    border-color: #22c764;
}

.btn-success-custom:active {
    background-color: #1eb85c !important;
    border-color: #1eb85c !important;
}

.btn-success-custom2 {
    border: 2px solid #2eff82;
    color: #22c764;;
    transition: all 0.3s ease;
}

.btn-success-custom2:hover,
.btn-success-custom2 a:hover,
.btn-success-custom2:focus,
.navbar-quox .nav-list .btn-success-custom2:hover,
.navbar-quox .nav-list .btn-success-custom2:focus {
    background-color: #22c764;
    color: #000;
    border-color: #22c764;
}

.btn-success-custom2:active {
    background-color: #1eb85c !important;
    border-color: #1eb85c !important;
}


/* ===== PROSPECT PDF MODAL ===== */
.prospect-overlay {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: background 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}
.prospect-overlay.show {
  background: rgba(0,0,0,0.4);
  opacity: 1;
  visibility: visible;
}

.prospect-modal {
  background: #fff;
  border-radius: 20px;
  width: 90%;
  max-width: 1000px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: scale(0.85) translateY(30px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.prospect-overlay.show .prospect-modal {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.prospect-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  background: var(--primary-dark);
  border-radius: 20px 20px 0 0;
  flex-shrink: 0;
}
.prospect-title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  letter-spacing: 0.3px;
}
.prospect-close {
  background: none;
  border: none;
  font-size: 34px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  line-height: 1;
  padding: 0 0 0 16px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.prospect-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.prospect-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  min-height: 0;
}

.prospect-video {
  position: sticky;
  top: 0;
  z-index: 2;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}
.prospect-video video {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  display: block;
}

.prospect-pages {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.prospect-page {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

@media (max-width: 767px) {
  .prospect-modal {
    width: 96%;
    max-height: 95vh;
  }
  .prospect-header {
    padding: 14px 18px;
  }
  .prospect-title {
    font-size: 18px;
  }
  .prospect-pages {
    padding: 10px;
    gap: 10px;
  }
}

/* Prevent the modal from appearing in print */
@media print {
  .prospect-overlay,
  .prospect-overlay.show,
  .prospect-overlay * {
    display: none !important;
    visibility: hidden !important;
  }
}


.team-box{
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
}

.team-photo{
    max-width: 200px;
    max-height: 250px;
}


.team-photo2{
    width: auto;
    max-width: 250px;
    max-height: 250px;
}

.team-name{
    font-family: var(--font-body);
    /*font-size: var(--font-size);*/
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 5px 0 5px 0;
}

.team-position{
    font-size: var(--font-size);
    color: #888;
}

.team-description{
    font-size: var(--font-size);
    color: #888;
    line-height: 1.2;
}

/* Mobile */
@media (max-width: 768px){

    .team-box{
        padding: 20px;
    }

    .team-position{
        font-size: var(--font-size-phone);
        color: #888;
    }

    .team-description{
        font-size: var(--font-size-phone);
    }

}
