/* Digital Stallions Forum Middle East - landing page styles */

:root {
  --red: #eb1c24;
  --yellow: #f6b611;
  --black: #000000;
  --dark: #151515;
  --near-black: #1a1819;
  --grey-text: #3f424d;
  --border-grey: #d9d9d9;
}

* {
  box-sizing: border-box;
}

/* ===== SCROLL REVEAL (fade in up) ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 0.84, 0.44, 1),
    transform 0.7s cubic-bezier(0.16, 0.84, 0.44, 1);
  will-change: opacity, transform;
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

body {
  font-family: "Fira Sans", sans-serif;
  color: #000;
  overflow-x: hidden;
  background: #fff;
}

h1,
h2,
.display-font {
  font-family: "Barlow", sans-serif;
}

a {
  text-decoration: none;
}

.section-pad {
  padding: 100px 0;
}
@media (max-width: 767.98px) {
  .section-pad {
    padding: 60px 0;
  }
}

.text-red {
  color: var(--red) !important;
}
.text-yellow {
  color: var(--yellow) !important;
}
.bg-dark-custom {
  background: var(--dark);
}
.bg-near-black {
  background: var(--near-black);
}

.eyebrow {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
  color: var(--red);
  text-transform: capitalize;
  font-size: 60px;
  line-height: 1.2;
  margin-bottom: 10px;
}
@media (max-width: 767.98px) {
  .eyebrow {
    font-size: 30px;
  }
}

.big-title {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 150px;
  line-height: 1;
}
@media (max-width: 1199.98px) {
  .big-title {
    font-size: 100px;
  }
}
@media (max-width: 767.98px) {
  .big-title {
    font-size: 66px;
  }
}
@media (min-width: 1600px) {
  .big-title {
    font-size: 200px;
  }
}
.big-title .dot {
  color: var(--red);
}

/* Buttons */
.btn-pill-red {
  position: relative;
  background: linear-gradient(90deg, var(--red), var(--red));
  color: #fff;
  border-radius: 80px;
  padding: 16px 28px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  border: none;
  font-size: 16px;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
  transition: color 0.4s ease;
}
.btn-pill-red::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn-pill-red:hover {
  color: #000;
}
.btn-pill-red:hover::before {
  transform: scaleX(1);
}

/* Outline variant — transparent fill, red border/text, fills red on hover. */
.btn-pill-outline {
  position: relative;
  background: transparent;
  color: var(--red);
  border-radius: 80px;
  padding: 14px 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-block;
  border: 2px solid var(--red);
  font-size: 16px;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
  transition:
    color 0.4s ease,
    border-color 0.4s ease;
}
.btn-pill-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.btn-pill-outline:hover {
  color: #fff;
}
.btn-pill-outline:hover::before {
  transform: scaleX(1);
}

/* ===== HEADER ===== */
header.hero {
  background: #000;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-banner-section {
  background: linear-gradient(180deg, #000 39%, rgba(246, 182, 17, 0.9) 130%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.navbar-custom {
  padding: 30px 0;
}
.navbar-custom .nav-link {
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 16px;
  margin: 0 10px;
}
.navbar-custom .nav-link:hover {
  color: var(--yellow);
}

@media (max-width: 1030px) {
  .navbar-custom .navbar-toggler {
    z-index: 1;
  }
  .navbar-custom #navMenu.collapse:not(.show) {
    display: none;
  }
  .navbar-custom #navMenu.collapsing,
  .navbar-custom #navMenu.show {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100% !important;
    z-index: 1050;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center !important;
    overflow-y: auto;
    padding: 40px 24px;
    opacity: 0;
    transform: translateY(-16px);
    transition:
      opacity 0.35s ease,
      transform 0.35s ease;
  }
  .navbar-custom #navMenu.show {
    opacity: 1;
    transform: translateY(0);
  }
  .navbar-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    line-height: 0;
  }
  .navbar-custom #navMenu .navbar-nav {
    align-items: center;
    text-align: center;
    gap: 28px !important;
    width: 100%;
    margin: 0;
  }
  .navbar-custom #navMenu .nav-link {
    font-size: 22px;
    margin: 0;
  }
  .navbar-custom #navMenu .btn-pill-red {
    margin-top: 12px;
  }
}

.hero-title {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 40px;
  text-align: center;
  line-height: 1.2;
}
header .custom-logo {
  max-height: 80px;
  object-fit: contain;
}
@media (min-width: 992px) {
  .hero-title {
    font-size: 42px;
    line-height: 1.4;
  }
}

.hero-sub {
  text-align: center;
  font-size: 28px;
  margin-top: 20px;
}
.peer_text {
  font-size: 32px;
}
@media (max-width: 767.98px) {
  .hero-sub {
    font-size: 20px;
    margin-bottom: 0;
  }
  .peer_text {
    font-size: 22px;
  }
}
@media (min-width: 1200px) {
  .hero-title {
    font-size: 62px;
    line-height: 1.4;
  }
}
@media (min-width: 1600px) {
  .btn-pill-red {
    font-size: 18px;
    padding: 16px 34px;
  }
  .navbar-custom .nav-link {
    font-size: 18px;
    margin: 0 15px;
  }
  .hero-title {
    font-size: 74px;
  }
  .eyebrow {
    font-size: 80px;
  }
}
.hero-banner {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  margin-top: 60px;
  min-height: 420px;
  max-width: 1520px;
}
.hero-banner picture,
.hero-banner img,
.hero-banner-link {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  display: block;
}
.hero-banner-link {
  z-index: 9;
}
.hero-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(0deg, #000 5%, rgba(0, 0, 0, 0) 60%); */
}
.hero-banner .stats {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  padding: 40px 20px;
  align-items: flex-end;
  min-height: 800px;
  text-align: left;
}
.hero-banner .stat-num {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  color: var(--yellow);
  font-size: 120px;
  line-height: 1;
}
@media (max-width: 767.98px) {
  .hero-banner .stats {
    min-height: 600px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
    gap: 20px;
  }
  .hero-banner::after {
    background: linear-gradient(0deg, #000 6%, rgba(0, 0, 0, 0) 85%);
  }
  .hero-banner .stat-num {
    font-size: 42px;
  }
}
.hero-banner .stat-label {
  font-size: 20px;
  color: #fff;
  margin-top: 10px;
}

/* ===== HERO SLIDER (fade only) ===== */
.hero-slider .carousel-item {
  transition-property: opacity;
}

/* ===== ABOUT ===== */
.about-portrait {
  border: 2px solid var(--red);
  border-radius: 500px;
  overflow: hidden;
  width: 100%;
  max-width: 340px;
  aspect-ratio: 340 / 540;
  margin: 0 auto;
}
.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(1); */
}
.founder-name {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  color: var(--yellow);
  text-align: center;
  font-size: 32px;
  margin-top: 20px;
}
.founder-role {
  text-align: center;
  color: #fff;
  font-size: 16px;
}
#about .desc {
  font-size: 18px;
  line-height: 28px;
  text-align: left;
}
@media (min-width: 992px) {
  #about .desc {
    font-size: 20px;
    line-height: 32px;
    text-align: justify;
  }
  .hero-banner .stat-num {
    margin-left: -10px;
  }
}
@media (min-width: 1600px) {
  #about .desc {
    font-size: 24px;
    line-height: 40px;
  }
}
/* ===== ADVISORY BOARD (owl carousel) ===== */
.board-scroll {
  padding: 40px 0 60px;
}
.board-scroll .owl-stage {
  display: flex;
  align-items: flex-start;
}
.board-scroll .owl-nav,
.board-scroll .owl-dots {
  display: none;
}

.board-card {
  text-align: center;
  transition: transform 0.45s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.board-card:hover {
  transform: translateY(-12px);
}
.board-card.board-card-down {
  margin-top: 70px;
}
@media (max-width: 767.98px) {
  .board-card.board-card-down {
    margin-top: 40px;
  }
}
.owl-carousel .owl-stage-outer {
  padding-top: 20px;
}
.board-photo {
  width: 300px;
  height: 580px;
  border-radius: 200px;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
  box-shadow: 0 0 0 0 rgba(246, 182, 17, 0);
  transition: box-shadow 0.45s ease;
}
.board-card:hover .board-photo {
  box-shadow:
    0 24px 40px rgba(0, 0, 0, 0.35),
    0 0 0 6px rgba(235, 28, 36, 0.6);
}
.board-photo img {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 410px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.board-card:hover .board-photo img {
  transform: scale(1.08);
}
.board-info {
  position: relative;
  z-index: 1;
  padding: 24px 18px 0;
  text-align: center;
  color: #000;
  transition: transform 0.4s ease;
}
.board-card:hover .board-info {
  transform: translateY(-4px);
}
.board-name {
  font-family: "Archivo", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.25;
}
.board-role {
  font-weight: 600;
  font-size: 14px;
  opacity: 0.85;
  margin-top: 4px;
}
.board-company {
  font-size: 14px;
}
.forum_desc {
  font-size: 18px;
  line-height: 28px;
  text-align: left;
}
@media (min-width: 992px) {
  .forum_desc {
    text-align: justify;
  }
}
@media (min-width: 1400px) {
  .forum_desc {
    line-height: 34px;
    font-size: 20px;
  }
}
@media (min-width: 1600px) {
  .forum_desc {
    line-height: 40px;
    font-size: 24px;
  }
}
@media (max-width: 991px) {
  .board-photo {
    width: 240px;
    height: 480px;
  }
  .board-photo img {
    height: 340px;
  }
  .board-name {
    font-size: 18px;
    line-height: 1.1;
  }
  .board-role {
    font-size: 13px;
    margin-top: 4px;
  }
}
/* ===== WHAT WE DO CARDS ===== */
.feature-card {
  border: 1px solid var(--border-grey);
  border-radius: 20px;
  padding: 20px;
  height: 100%;
  /* min-height: 280px; */
  background: #fff;
  transition: 0.4s;
}
.feature-card:hover {
  box-shadow:
    0px 25px 25px 0px #00000017,
    0px 25px 25px 0px #00000017,
    0px 56px 34px 0px #0000000d,
    0px 100px 40px 0px #00000003,
    0px 156px 44px 0px #00000000;
}

.feature-card img {
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
}
.feature-card h5 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--grey-text);
  font-size: 18px;
  line-height: 28px;
  margin: 0;
}
.what_we_desc {
  font-size: 18px;
  line-height: 28px;
  text-align: left;
}
@media (min-width: 992px) {
  .what_we_desc {
    text-align: justify;
    font-size: 20px;
    line-height: 32px;
  }
}
@media (min-width: 1600px) {
  .feature-card {
    padding: 30px;
  }
  .feature-card img {
    margin-bottom: 60px;
  }
  .what_we_desc {
    font-size: 24px;
    line-height: 40px;
  }
}
/* ===== AWARDS VIDEO ===== */
.video-banner {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  background: #000;
  min-height: 600px;
}
.video-banner img,
.video-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.video-banner img {
  opacity: 0.8;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  z-index: 2;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}
.play-btn:hover {
  transform: translate(-50%, -50%) scale(1.08);
}
.play-btn img {
  width: 100%;
  height: 100%;
  display: block;
}
.video-banner.is-playing .play-btn {
  opacity: 0;
  pointer-events: none;
}
.video-banner.is-playing video {
  cursor: pointer;
}
@media (min-width: 992px) {
  .video-banner {
    min-height: 800px;
  }
}

/* ===== CUSTOM VIDEO CONTROLS ===== */
.video-controls {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  border-radius: 50px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}
.video-banner.is-playing .video-controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.vc-btn {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  cursor: pointer;
  padding: 0;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
.vc-btn:hover {
  background: var(--red);
}
.vc-time {
  flex: none;
  color: #fff;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
  min-width: 34px;
}
.vc-time.js-vc-current {
  text-align: right;
}
.vc-seek {
  flex: 1 1 auto;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
  outline: none;
  cursor: pointer;
}
.vc-seek::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  box-shadow: 0 0 0 4px rgba(246, 182, 17, 0.2);
  transition: transform 0.2s ease;
}
.vc-seek::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}
.vc-seek::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--yellow);
  border: none;
  box-shadow: 0 0 0 4px rgba(246, 182, 17, 0.2);
}
.vc-seek::-moz-range-track {
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.3);
}
@media (max-width: 767.98px) {
  .video-controls {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 8px 12px;
    gap: 8px;
  }
  .vc-time {
    display: none;
  }
}
/* ===== WHY PARTICIPATE / WHY REGISTER LISTS ===== */
.icon-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--border-grey);
}
#awards .icon-list-item {
  max-width: 800px;
}
.icon-list-item-wraper .icon-list-item:first-child {
  border-top: none;
}
.icon-list-item img {
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
}
.icon-list-item p {
  margin: 0;
  font-size: 18px;
  color: #000;
}
@media (max-width: 991px) {
  #awards p {
    text-align: left !important;
  }
}
/* ===== REGISTER SECTION ===== */
.register-visual {
  position: relative;
  /* border-radius: 500px; */
  /* overflow: hidden;
  background: var(--yellow); */
  aspect-ratio: 490 / 700;
  max-width: 490px;
  margin: 0 auto;
}
.register-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#register .desc {
  font-size: 18px;
  text-align: left;
  line-height: 28px;
  max-width: 1050px;
}
@media (min-width: 992px) {
  #register .desc {
    text-align: justify;
  }
}
@media (min-width: 1400px) {
  #register .desc {
    font-size: 20px;
    line-height: 34px;
  }
}
@media (min-width: 1600px) {
  #register .desc {
    font-size: 24px;
    line-height: 40px;
  }
}
/* ===== FOOTER ===== */
footer {
  background-color: black;
  background: url("../img/footer_bg.webp") no-repeat center;
  background-size: cover;
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 130px 0 0px;
}
.footer-logo {
  margin-top: -50px;
}
footer h6 {
  color: #fff;
  opacity: 0.8;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 400;
  margin-bottom: 15px;
}
footer .footer-link {
  display: block;
  color: #fff;
  padding: 14px 0;
  font-size: 18px;
  line-height: 24px;
}
footer .footer-link:hover {
  color: var(--yellow);
}
footer p.desc {
  font-size: 16px;
  opacity: 0.9;
  line-height: 1.7;
  max-width: 550px;
}
footer hr {
  border-color: rgba(255, 255, 255, 0.2);
}
footer .copyright {
  font-size: 14px;
  opacity: 0.75;
  padding-block: 30px;
}
@media (min-width: 1600px) {
  footer p.desc {
    font-size: 18px;
    line-height: 30px;
  }
}
footer .custom-logo {
  max-height: 80px;
  object-fit: contain;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .menu_wraper {
    border-bottom: 1px solid #ffffff33;
    padding-bottom: 20px;
  }
  footer h6 {
    margin-bottom: 6px;
  }
  footer .footer-link {
    padding: 8px 0;
  }
}
/* ===== CONTACT US ===== */
.contact-item {
  text-align: center;
  position: relative;
}
@media (min-width: 992px) {
  .contact-item + .contact-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    background: rgba(0, 0, 0, 0.15);
  }
}
.contact-icon {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  color: #000;
  overflow: hidden;
  isolation: isolate;
  z-index: 0;
  transition: color 0.4s ease;
  flex-shrink: 0;
}
.contact-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: -1;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}
.contact-item:hover .contact-icon {
  color: #fff;
}
.contact-item:hover .contact-icon::before {
  transform: scaleX(1);
}
.contact-icon svg,
.contact-icon img {
  width: 30px;
  height: 30px;
}
.contact-item p,
.contact-item a {
  font-size: 18px;
  color: black;
  margin: 0;
  transition: 0.4s;
}
.contact-item a:hover,
.contact-item a:hover p {
  color: var(--red) !important;
}
.sign_img {
  height: 70px;
}
@media (max-width: 991px) {
  .contact-icon {
    width: 40px;
    height: 40px;
    margin: 0;
  }
  .contact-icon svg,
  .contact-icon img {
    width: 16px;
    height: 16px;
  }
  .contact-item,
  .contact-item a {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .contact-item p,
  .contact-item a {
    text-align: left;
  }
  .register-cta-note {
    font-size: 16px;
    line-height: 24px;
    text-align: center;
  }
}
/* Divider dot */
.title-dot {
  color: var(--red);
}
.container {
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 992px) {
  .container {
    padding-left: 60px;
    padding-right: 60px;
  }
  .register-cta-note {
    font-size: 24px;
    line-height: 40px;
    color: black;
    font-weight: 500;
  }
}
@media (min-width: 1200px) {
  .container {
    padding-left: 100px;
    padding-right: 100px;
  }
  .contact-item p,
  .contact-item a {
    font-size: 20px;
  }
}
@media (min-width: 1600px) {
  .contact-item p,
  .contact-item a {
    font-size: 22px;
  }
}
