/* ===========================================================
   FONTS — drop your font files into a "fonts" folder next to
   this stylesheet and they will be picked up automatically.
   Expected file names are listed below; rename your files to
   match, or edit the src paths if your files are named
   differently. Until the files are added, the browser falls
   back to the system sans-serif fonts listed after them.
=========================================================== */
/* @font-face {
  font-family: "bruumFont";
  src: url("../fonts/insigne\ -\ Ainslie-NorBol.otf");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "bruumLightFont";
  src: url("../fonts/insigne\ -\ Ainslie-NorBoo.otf");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
} */
@font-face {
  font-family: bruumBoldFont;
  src: url(../fonts/BruumFY-Bold.otf);
}

@font-face {
  font-family: setReta;
  src: url(https://datamatixgroup.com/old/asset/fonts/Bruum\ FY\ Bold.otf);
}

@font-face {
  font-family: bruumFont;
  src: url(../fonts/BruumFY-Regular.otf);
}

@font-face {
  font-family: bruumLightFont;
  src: url(../fonts/BruumFY-Light.otf);
}
/* ===========================================================
   COLOR TOKENS
=========================================================== */
:root {
  --navy: #000000;
  --navy-2: #000000;
  --gold: #ff0000;
  --gold-dark: red;
  --cream: #ececec5e;
  --grey-bg: #f6f5f5;
  --red: #ff0000;
  --ink: #151b2b;
  --muted2: #000 !important;
  --hairline: #e2ddd1;
  --main-color: var(--navy);
  --second-color: var(--gold-dark);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
ol,
ul {
  padding-left: 1rem !important;
}

body {
  font-family: "bruumLightFont", "Poppins", sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
.display-font {
  font-family: "bruumFont", "Poppins", sans-serif;
}
a {
  text-decoration: none;
}
.container-xl {
  max-width: 1380px;
}
.body-copy {
  font-size: 1.1rem;
  font-family: "bruumLightFont";
  max-width: 690px;
}

/* ===== Utility ===== */
.eyebrow {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  font-family: "bruumLightFont";
}
.section-title {
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--navy);
  line-height: 1.15;
  margin-top: 0.25rem;
  text-transform: uppercase;
}
.btn-gold {
  background: var(--gold);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  padding: 0.7rem 1.9rem;
  border: none;
  transition: 0.2s;
  display: inline-block;
  font-family: "bruumFont", "Poppins", sans-serif;
}
.btn-gold:hover {
  background: var(--gold-dark);
  color: var(--navy);
}
.btn-outline-cream {
  border: 1.5px solid #fff;
  color: #fff;
  border-radius: 50px;
  padding: 0.68rem 1.9rem;
  font-weight: 600;
  transition: 0.2s;
  display: inline-block;
}
.btn-outline-cream:hover {
  background: #fff;
  color: var(--navy);
}
.link-arrow {
  color: var(--navy);
  font-weight: 700;
  font-size: 0.92rem;
}
.link-arrow i {
  color: var(--red);
  margin-right: 6px;
}
.link-arrow:hover {
  color: var(--red);
}

/* ===== Logo image ===== */
.logo-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* ===== Top Identity Bar ===== */
.identity-bar {
  background: #fff;
  position: relative;
}
.identity-bar .container-xl {
  max-width: 100%;
}
.brand-title {
  font-weight: 700;
  font-size: 1.42rem;
  color: var(--navy);
  line-height: 1.28;
}
.brand-ar {
  font-family: "HeadingFont", "Poppins", sans-serif;
  direction: rtl;
  text-align: right;
  font-weight: 700;
  font-size: 1.32rem;
  color: var(--navy);
  line-height: 1.5;
}
.tagline-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 6px;
}
.tagline-row hr {
  flex: 1;
  max-width: 280px;
  border-top: 1px solid #cbbfa0;
  opacity: 1;
  margin: 0;
}
.tagline-text {
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-size: 1.15rem;
  white-space: nowrap;
}
.date-text {
  text-align: center;
  color: var(--navy);
  font-weight: 500;
  margin-top: 8px;
  font-size: 1.05rem;
}

/* ===== Hamburger button ===== */
.hamburger-btn {
  position: absolute;
  top: 24px;
  right: 16px;
  width: 40px;
  height: 34px;
  background: transparent;
  border: none;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 2px;
  z-index: 50;
}
.hamburger-btn span {
  display: block;
  height: 3px;
  width: 100%;
  background: var(--navy);
  border-radius: 3px;
  transition: 0.25s ease;
}
.hamburger-btn.open span:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}

/* ===== Nav bars ===== */
.nav-top {
  background: #fff;
  border-bottom: 1px solid var(--hairline);
}
.nav-top .nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 11px 0;
  margin: 0;
  list-style: none;
  font-size: 1rem;
}
.nav-top .nav-list li:not(:last-child)::after {
  content: "|";
  margin: 0 6px;
  color: var(--navy);
}
.nav-top .nav-list a {
  color: var(--ink);
  /* font-weight: 800; */
}
.nav-top .nav-list a:hover {
  color: var(--red);
}

.nav-bottom {
  background: #09539f;
  color: #fff;
}
.nav-bottom .nav-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 15px 0;
  margin: 0;
  list-style: none;
  font-size: 1rem;
}
.nav-bottom .nav-list li:not(:last-child)::after {
  content: "|";
  margin: 0 6px;
  color: #fff;
}
.nav-bottom .nav-list a {
  color: #fff;
  /* font-weight: 900; */
}
.nav-bottom .nav-list a:hover {
  color: var(--gold);
}

/* ===== Hero ===== */

.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: stretch; /* was: flex-start */
  background-size: cover;
  background-position: center;
  color: #fff;
  padding-top: 90px;
}

.hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* pushes heading up, cta/desc down */
  padding: 40px 0 56px;
}

.hero-bottom-row {
  margin-top: 0;
}

.hero h1 {
  font-weight: 800;
  font-size: 3.1rem;
  line-height: 1.16;
  max-width: 780px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  font-family: "bruumFont";
}
.hero-desc {
  max-width: 560px;
  font-size: 1.1rem;
  line-height: 1.55;
  color: #fff;
  font-family: "bruumLightFont";
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.est-bar {
  background: #05070d;
  color: #c9cedb;
  font-size: 1.1rem;
  padding: 20px 0px;
  padding-left: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ===== Stats row ===== */
.stats-row {
  padding: 38px 0;
}
.stat-item {
  text-align: center;
  position: relative;
}
.stat-item .stat-icon {
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 8px;
  display: block;
  height: 30px;
  display: flex;
  justify-content: center;
  margin: auto;
}
.stat-item .num {
  font-family: "bruumFont", "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--gold);
}
.stat-item .lbl {
  color: var(--navy);
  font-size: 1rem;
  font-weight: 500;
}
.stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--hairline);
}

/* ===== Strategic context ===== */
.context-sec {
  background: var(--cream);
  padding: 64px 0;
}
.context-photo {
  width: 100%;
  object-fit: cover;
}
.context-link {
  background: #fff;
  border-radius: 10px;
  padding: 12px 12px;
  font-weight: 700;
  color: var(--navy);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  font-family: "bruumLightFont";
  border-left: 4px solid var(--red);
  border-radius: 0px 10px 10px 0;
}
.context-link:hover {
  background: var(--red);
  color: #fff !important;
  transition: 0.2s;
}

.context-link a {
  color: var(--navy);
}
.context-link a:hover {
  color: #fff;
}
.context-link i {
  color: var(--red);
}

/* ===== Days section ===== */
.days-sec {
  padding: 70px 0 30px;
}
.day-block {
  padding-top: 0px;
  padding-bottom: 22px;
  border-top: 2px solid var(--red);
}
.day-badge {
  /* color: var(--gold); */
  /* color: var(--navy); */
  /* font-weight: 100;
  border-radius: 50px;
  padding: 10px 30px;
  display: inline-block; */
  font-size: 1.4rem;
  white-space: nowrap;
  font-family: "bruumFont";
  padding-right: 4px;
}
.day-links a {
  color: #05070d;
}
.day-date {
  font-weight: 700;
  color: var(--ink);
  font-size: 1.3rem;
  text-transform: capitalize;
}
.day-date .text {
  text-transform: capitalize;
}
.day-objective {
  color: var(--navy);
  font-size: 1.1rem;
  margin-top: 11px;
}
.day-objective strong {
  font-family: "bruumFont";
}
.day-links {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
}
.day-links-top-right {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
  font-size: 1.2rem;
}
@media (max-width: 576px) {
  .day-links-top-right {
    justify-content: center;
  }
}
.day-layout {
  justify-content: space-between;
  border-bottom: 2px solid var(--red);
  padding: 16px 0;
}
.day-links span:not(:last-child)::after {
  content: "|";
  margin: 0 6px;
  color: #05070d;
}
.day-photo {
  border-radius: 14px;
  width: 100%;
  height: 210px;
  object-fit: cover;
}
.day-caption {
  font-size: 1rem;
  color: var(--muted2);
  margin-top: 12px;
  padding: 0 0px;
  text-align: left;
}

/* ===== Attendance ===== */
.attendance-sec {
  background: var(--grey-bg);
  padding: 64px 0;
}
.att-card {
  background: #fff;
  border-radius: 14px;
  padding: 20px 16px;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  border-left: 4px solid var(--red);
  border-radius: 0px 10px 10px 0;
}
.att-card h5 {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.3rem;
  font-family: "bruumFont";
}
.att-card h5 i {
  color: var(--red);
  margin-right: 8px;
  font-size: 0.8rem;
}
.att-card p {
  color: var(--muted2);
  font-size: 1rem;
  margin: 0;
}

/* ===== Themes ===== */
.themes-sec {
  padding: 70px 0;
}
.theme-card {
  border-radius: 12px;
  overflow: hidden;
  height: 230px;
  position: relative;
}
.theme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.theme-card .label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 10px;
  font-family: "bruumFont", "Poppins", sans-serif;
  font-weight: 700;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.25;
  text-align: center;
}
.theme-card.gold-tag .label {
  background: var(--gold);
}
.theme-card.navy-tag .label {
  background: rgba(0, 0, 0, 0.88);
}

/* ===== Engagement ===== */
.engage-sec {
  background: var(--cream);
  padding: 64px 0;
}
.engage-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px 16px;
  height: 100%;
  border-left: 4px solid var(--red);
  border-radius: 0px 10px 10px 0;
}
.engage-card h5 {
  font-weight: 700;
  color: var(--navy);
  font-size: 1.4rem;
  font-family: "bruumFont", "Poppins", sans-serif;
}
.engage-card h5 i {
  color: var(--red);
  margin-right: 8px;
  font-size: 0.9rem;
}
.engage-card p {
  color: var(--muted2);
  font-size: 1.1rem;
  height: 68px;
}
.engage-card .link-arrow {
  font-size: 1rem;
  font-family: "bruumFont", "Poppins", sans-serif;
}

/* ===== Banner ===== */
.banner-sec {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.banner-sec::before {
  content: "";
  position: absolute;
  inset: 0;
}
.banner-body {
  padding: 46px 0;
  position: relative;
  z-index: 2;
  width: 100%;
}
.banner-eyebrow {
  /* letter-spacing: 0.14em; */
  font-weight: 700;
  font-size: 1.2rem;
  font-family: "bruumFont", "Poppins", sans-serif;
  max-width: 100%;
}
.banner-title {
  font-weight: 800;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  /* font-size: 1.8rem; */
  line-height: 1.2;
  max-width: 100%;
}
.banner-copy {
  max-width: 100%;
  color: #fff;
  font-size: 1.1rem;
}

/* ===== Why Shanghai ===== */
.shanghai-sec {
  background: var(--cream);
  padding: 64px 0;
}
.shanghai-photo {
  border-radius: 18px;
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.why-card {
  background: #fff;
  padding: 20px 21px;
  margin-bottom: 23px;
  max-width: 450px;
  width: 100%;
  border-left: 4px solid var(--red);
  border-radius: 0px 10px 10px 0;
}
.why-card:last-child {
  margin-bottom: 10px;
}
.why-card h6 {
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  font-size: 1.3rem;
  font-family: "bruumFont", "Poppins", sans-serif;
}
.why-card h6 i {
  color: var(--red);
  margin-right: 8px;
}
.why-card p {
  color: var(--muted2);
  font-size: 1rem;
  margin: 0;
}

/* ===== Partners ===== */
.partners-sec {
  padding: 64px 0;
}
.partner-box {
  border: 1px solid var(--hairline);
  border-radius: 12px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--red);
}
.partner-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
}

/* ===== Awards ===== */
.award-card {
  background-image: url("../images/Asset\ 175.png");
  border-left: 12px solid var(--red);
  /* border-radius: 0px 10px 10px 0; */
  border-radius: 40px;

  padding: 46px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  background-size: contain;
  /* background-position: center; */
  height: 570px;
  background-repeat: no-repeat;
}
.award-eyebrow {
  color: var(--gold);
  font-weight: 700;
  font-size: 1.8rem;
  text-transform: uppercase;
  font-family: "bruumFont", "Poppins", sans-serif;
}
.award-title {
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--navy);
  line-height: 1.2;
  max-width: 800px;
  text-transform: uppercase;
  font-family: "bruumFont", "Poppins", sans-serif;
}
.award-desc {
  color: var(--muted2);
  max-width: 600px;
  font-size: 1.3rem;
  margin-top: 10px;
}
.award-date {
  color: var(--gold);
  font-weight: 700;
  margin-top: 22px;
  font-size: 1.7rem;
  font-family: "bruumFont", "Poppins", sans-serif;
}
.trophy-img {
  width: 190px;
  height: 190px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(180, 140, 60, 0.35);
}

/* ===== Leadership week banner ===== */
.week-banner {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
  margin-top: 64px;
  padding: 29px 0;
}
.week-banner::before {
  content: "";
  position: absolute;
  inset: 0;
}
.week-banner .container-xl {
  position: relative;
  z-index: 2;
}
.week-banner .logo-img {
  width: 70%;
  display: flex;
  justify-content: center;
  margin: auto;
}
.week-banner-caption {
  display: none;
  font-size: 1.2rem;
  color: #fff;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
.logo2 {
  flex-direction: column;
  justify-content: center;
}

/* ===========================================================
   WELCOME PAGE — welcome message section
=========================================================== */
.welcome-content-section {
  background: var(--cream);
  padding: 70px 0;
}
.welcome-card {
  background: #fff;
  border: none;
  border-radius: 18px;
  padding: 40px 44px;
  padding-top: 15px;
  box-shadow: 0 6px 30px rgba(24, 33, 51, 0.08);
  position: relative;
  overflow: hidden;
}
.welcome-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--navy) 0%, #09539f 100%);
}
.welcome-title {
  font-family: "bruumFont", "Poppins", sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
  padding-top: 15px;
}
.welcome-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 64px;
  height: 3px;
  background: var(--gold);
}
.welcome-text a {
  color: var(--muted2);
  font-weight: 600;
}
.welcome-text {
  font-family: "bruumLightFont", "Poppins", sans-serif;
  font-size: 1.2rem;
  color: var(--muted2);
  margin-top: 12px;
  margin-bottom: 0;
  text-align: justify;
}
.welcome-text strong {
  color: var(--navy);
  font-family: "bruumFont", "Poppins", sans-serif;
  font-weight: 700;
}
.signature-section {
  margin-top: 10px;
  padding-top: 4px;
}
.signature-title {
  font-family: "bruumFont", "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0px;
}
.signature-name {
  font-family: "bruumFont", "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0px;
}
.signature-position {
  font-family: "bruumFont", "Poppins", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .welcome-card {
    padding: 34px 24px;
  }
  .welcome-title {
    font-size: 1.5rem;
  }
  .welcome-text {
    font-size: 0.95rem;
    text-align: left;
  }
}

/* ===========================================================
   PAGE BANNER — compact hero used on interior pages (Contact, etc.)
=========================================================== */
.page-banner {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: #fff;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(9, 16, 32, 0.92) 0%,
    rgba(9, 16, 32, 0.55) 100%
  );
}
.page-banner-body {
  position: relative;
  z-index: 2;
}
.page-banner-eyebrow {
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--gold);
  font-family: "bruumFont", "Poppins", sans-serif;
}
.page-banner-title {
  font-weight: 800;
  font-size: 2.6rem;
  margin-top: 6px;
  font-family: "bruumFont", "Poppins", sans-serif;
}
.page-banner-crumb {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #dfe2ea;
}
.page-banner-crumb a {
  color: #fff;
  font-weight: 600;
}
.page-banner-crumb a:hover {
  color: var(--gold);
}
.page-banner-crumb span {
  margin: 0 8px;
  color: var(--gold);
}

/* ===========================================================
   SCROLL-REVEAL — animation removed per request.
   Elements are simply always visible; classes are kept as
   harmless no-op hooks in case animation is wanted again later.
=========================================================== */
.reveal-fade,
.reveal-up,
.reveal-delay-1,
.reveal-delay-2,
.reveal-delay-3,
.reveal-delay-4,
.reveal-delay-5,
.reveal-delay-6 {
  opacity: 1;
}

/* ===========================================================
   CONTACT PAGE
=========================================================== */
.profile {
  background: var(--cream);
}
.profile h2 {
  font-family: "bruumFont", "Poppins", sans-serif;
  font-weight: 800;
  color: var(--navy);
}
.profile > .container > .row {
  align-items: flex-start;
}
.profile > .container > .row > .col-md-8 > p {
  color: var(--muted2);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 620px;
}
.profile hr {
  border-top: 1px solid var(--hairline);
  opacity: 1;
  margin: 28px 0;
}
.profile .form .fw-bold {
  color: var(--navy);
}
.contact-form-fields .mb-2 {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
}
.contact-form-fields .mb-2 i,
.contact-form-fields .form-label i {
  color: var(--gold-dark);
  margin-right: 6px;
}
.contact-form-fields .form-label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.contact-form-fields .form-control,
.contact-form-fields .form-select {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-size: 0.92rem;
  background: #fff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.contact-form-fields .form-control:focus,
.contact-form-fields .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.18rem rgba(198, 161, 91, 0.25);
  outline: none;
}
.contact-form-fields .form-control.field-error,
.contact-form-fields .form-select.field-error {
  border-color: var(--red);
}

.profile .btn-outline-primary {
  --bs-btn-color: var(--navy);
  --bs-btn-border-color: var(--navy);
  --bs-btn-hover-bg: var(--gold);
  --bs-btn-hover-border-color: var(--gold);
  --bs-btn-hover-color: var(--navy);
  --bs-btn-active-bg: var(--gold-dark);
  --bs-btn-active-border-color: var(--gold-dark);
  font-weight: 700;
  border-radius: 50px;
  padding: 0.75rem 2.6rem;
  font-family: "bruumFont", "Poppins", sans-serif;
  transition:
    box-shadow 0.25s ease,
    background 0.25s ease;
}
.profile .btn-outline-primary:hover {
  box-shadow: 0 10px 24px rgba(198, 161, 91, 0.4);
}
.profile .btn-outline-primary.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

.contact-section {
  background: var(--cream);
  padding: 70px 0;
}
.contact-card {
  border: none;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(24, 33, 51, 0.1);
}
.contact-form-section {
  background: #fff;
  padding: 50px 48px;
}
.contact-form-section h4 {
  font-family: "bruumFont", "Poppins", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
.contact-form-section .form-label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.contact-form-section .form-label i {
  color: var(--gold-dark);
  margin-right: 6px;
}
.contact-form-section .form-control,
.contact-form-section .form-select {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-size: 0.92rem;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.contact-form-section .form-control:focus,
.contact-form-section .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.18rem rgba(198, 161, 91, 0.25);
}
.contact-form-section .was-validated .form-control:invalid,
.contact-form-section .was-validated .form-select:invalid {
  border-color: var(--red);
}
.contact-form-section .was-validated .form-control:valid,
.contact-form-section .was-validated .form-select:valid {
  border-color: #3caa6e;
}

.btn-submit {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 2.6rem;
  font-family: "bruumFont", "Poppins", sans-serif;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.btn-submit:hover {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(198, 161, 91, 0.4);
}
.btn-submit.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

.form-success-msg {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(60, 170, 110, 0.12);
  color: #2d7a52;
  font-weight: 600;
  font-size: 0.92rem;
  text-align: center;
}
.form-success-msg.show {
  display: flex;
}
.form-success-msg i {
  font-size: 1.2rem;
}

/* ----- Contact info sidebar ----- */
.contact-info-section {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 50px 34px;
  color: #fff;
  border-radius: 0 18px 18px 0;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 26px;
}
.contact-info-item .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(198, 161, 91, 0.18);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: background 0.25s ease;
}
.contact-info-item:hover .icon {
  background: var(--gold);
  color: var(--navy);
}
.contact-info-item h5 {
  font-family: "bruumFont", "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}
.contact-info-item p {
  color: #c7cbd6;
  font-size: 0.88rem;
  margin: 0;
}
.contact-info-item a {
  color: #dfe2ea;
  font-size: 0.88rem;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.contact-info-item a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.map-container {
  border-radius: 12px;
  overflow: hidden;
  height: 200px;
  margin-top: 6px;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-advert-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--gold-dark) 100%);
  border-radius: 12px;
  padding: 22px 20px;
  text-align: center;
  cursor: pointer;
}

@media (max-width: 991px) {
  .page-banner-title {
    font-size: 1.9rem;
  }
  .contact-form-section {
    padding: 32px 22px;
  }
  .contact-info-section {
    padding: 34px 24px;
    border-radius: 18px;
    margin-top: 24px;
  }
}

/* ===== Footer ===== */
footer {
  background: var(--navy);
  color: #c7cbd6;
  padding: 60px 0 0;
}
footer h6 {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-family: "bruumBoldFont", "Poppins", sans-serif;
}
footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
footer ul li {
  margin-bottom: 1px;
  font-size: 1rem;
}
footer ul li i {
  color: #fff;
  margin-right: 8px;
  font-size: 0.7rem;
}
footer a {
  color: #fff;
}
footer a:hover {
  color: var(--gold);
}
.subscribe-row {
  margin-top: 15px;
  padding: 10px 0;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}
.subscribe-icon {
  color: #fff;
}
.subscribe-label {
  font-weight: 700;
  color: #fff;
}
.subscribe-input {
  background: var(--muted2);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  border-radius: 6px;
  padding: 0.6rem 1rem;
  /* width: 100%; */
  min-width: 337px;
}
.subscribe-input::placeholder {
  color: #9aa0b2;
}
.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}
.social-icons a.social-icons-facebook {
  background-color: #3b5998 !important;
  color: #fff;
}
.social-icons a.social-icons-instagram {
  background-color: #e4405f !important;
  color: #fff;
}
.social-icons a.social-icons-twitter {
  background-color: #000 !important;
  color: #fff;
  border: 1px solid #fff;
}
.social-icons a.social-icons-linkedin {
  background-color: #0077b5 !important;
  color: #fff;
}
.social-icons a.social-icons-youtube {
  background-color: #cd201f !important;
  color: #fff;
}
.copyright-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 20px 0;
  font-size: 1rem;
  color: #fff;
  margin-top: 10px;
  font-family: "bruumFont", "Poppins", sans-serif;
}

/* ===== Footer bottom (institute logo + intro) ===== */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  margin-top: 30px;
}
.footer-bottom .shell {
  /* max-width: 1060px; */
  margin: 0 auto;
  text-align: center;
}
.footer-institute {
  display: flex;
  justify-content: center;
}
/* .footer-institute .datamatix {
  width: 140px;
  margin: 0 auto 14px;
  padding: 0;
} */
.footer-institute .datamatix {
  display: block;
  width: min(330px, 60vw);
  height: auto;
  margin: 0 auto;
  max-width: 100%;
}
.footer-institute__intro {
  color: #fff;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 auto;
}

@media (max-width: 767px) {
  .footer-bottom {
    padding-top: 24px;
  }
  .footer-institute .datamatix {
    width: 110px;
  }
  .footer-institute__intro {
    font-size: 0.85rem;
  }
}

/* ===========================================================
   RESPONSIVE / MOBILE HAMBURGER NAV
=========================================================== */
@media (max-width: 991px) {
  .subscribe-input {
    max-width: 480px;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .brand-title {
    font-size: 1.1rem;
  }
  .brand-ar {
    font-size: 1rem;
  }
  .tagline-text {
    white-space: normal;
    text-align: center;
    font-size: 0.95rem;
  }
  .banner-title {
    font-size: 1.6rem;
  }

  .day-layout {
    flex-wrap: wrap;
    gap: 8px;
  }

  .day-block {
    padding: 36px 6px;
  }
  .day-badge {
    white-space: normal;
  }

  .hamburger-btn {
    display: flex;
  }

  .nav-wrapper {
    display: none;
    flex-direction: column;
    max-height: 70vh;
    overflow-y: auto;
  }
  .nav-wrapper.open {
    display: flex;
  }

  .nav-top .nav-list,
  .nav-bottom .nav-list {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .nav-top .nav-list li,
  .nav-bottom .nav-list li {
    width: 100%;
    text-align: center;
    padding: 8px 0;
  }
  .nav-top .nav-list li:not(:last-child)::after,
  .nav-bottom .nav-list li:not(:last-child)::after {
    content: "";
    margin: 0;
  }
  .nav-top .nav-list li:not(:last-child),
  .nav-bottom .nav-list li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-bottom .nav-list li:not(:last-child) {
    border-bottom: 1px solid var(--hairline);
  }
}
/* ===========================================================
   PARTNERSHIP PAGE
=========================================================== */
.partnership-sec {
  background: var(--cream);
  padding: 70px 0;
}
.event-registration {
  background: #fff;
  border-radius: 18px;
  padding: 50px 48px;
  box-shadow: 0 10px 40px rgba(24, 33, 51, 0.1);
}
.contact-form h6 {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
}
.required {
  color: var(--red);
}
.form-row {
  margin-bottom: 20px;
}
.form-row .form-label {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
  margin-bottom: 0;
}
.form-row .form-control,
.form-row .form-select {
  border: 1px solid var(--hairline);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-size: 0.92rem;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}
.form-row .form-control:focus,
.form-row .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 0.18rem rgba(198, 161, 91, 0.25);
  outline: none;
}
.form-row .form-control.field-error,
.form-row .form-select.field-error {
  border-color: var(--red);
}

.security-box {
  background: var(--grey-bg);
  border-radius: 10px;
  padding: 18px;
}
.captcha-display {
  background: var(--navy);
  color: #fff;
  font-family: monospace;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 6px;
  text-align: center;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: 10px;
  user-select: none;
}
.captcha-btn {
  background: var(--gold);
  border: none;
  color: var(--navy);
  font-weight: 600;
  border-radius: 50px;
  padding: 0.4rem 1rem;
  font-size: 0.8rem;
}
.captcha-btn:hover {
  background: var(--gold-dark);
  color: var(--navy);
}
.security-label {
  font-size: 0.85rem;
  color: var(--muted2);
  margin-bottom: 6px;
  display: block;
}
.security-box .form-control.field-error {
  border-color: var(--red);
}

.submit-row {
  margin-top: 30px;
}
.submit-btn {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 0.8rem 3rem;
  font-family: "bruumFont", "Poppins", sans-serif;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.submit-btn:hover {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(198, 161, 91, 0.4);
}
.submit-btn.is-loading {
  pointer-events: none;
  opacity: 0.75;
}

@media (max-width: 767px) {
  .event-registration {
    padding: 32px 22px;
  }
  .form-row .col-md-3 {
    margin-bottom: 6px;
  }
}
.datamatix {
  width: 20%;
  display: flex;
  justify-content: center;
  padding: 10px;
  margin: 6px auto;
}
