/* 
  Uni-Challenge Consultants - Master Modern Corporate Stylesheet
  WordPress Elementor Style Aesthetic, Rich Visual Depth & Responsive Grid
*/

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Inter:wght@400;500;600;700;800&family=Outfit:wght@500;600;700;800;900&display=swap');

:root {
  --navy-primary: #00122e;
  --navy-dark: #000918;
  --navy-light: #001a3d;
  --navy-card: #041838;
  --gold-primary: #d4af37;
  --gold-hover: #c5a059;
  --gold-accent: #e5a93c;
  --gold-light: #fef9e7;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  --container-max-width: 1260px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 12px 28px rgba(0, 18, 46, 0.09);
  --shadow-lg: 0 22px 45px rgba(0, 18, 46, 0.15);
}

/* Global Reset & Base Typography */
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--navy-primary);
  font-weight: 800;
  line-height: 1.2;
}

.font-handwriting {
  font-family: 'Caveat', cursive;
  color: var(--gold-primary);
  font-size: 2.5rem;
  line-height: 1;
}

/* Global Container Alignment */
.container, .container-xl {
  max-width: var(--container-max-width) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 15px !important;
  padding-right: 15px !important;
}

/* Elementor-Style Section Spacing */
.site-section {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Color Utilities */
.bg-navy { background-color: var(--navy-primary) !important; }
.bg-navy-dark { background-color: var(--navy-dark) !important; }
.bg-gold { background-color: var(--gold-primary) !important; }
.text-gold { color: var(--gold-primary) !important; }
.text-navy { color: var(--navy-primary) !important; }

/* -------------------------------------------------------------
   1. TOP HEADER ANNOUNCEMENT BAR
------------------------------------------------------------- */
.top-header-bar {
  background-color: var(--navy-primary);
  font-size: 0.82rem;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.top-contact-info {
  white-space: nowrap;
}

.top-contact-info a,
.top-contact-info span {
  font-size: 0.81rem;
  white-space: nowrap;
  color: #ffffff !important;
  text-decoration: none !important;
}

.top-contact-info a:hover {
  color: var(--gold-primary) !important;
  text-decoration: none !important;
}

@media (min-width: 992px) {
  .top-contact-info {
    flex-wrap: nowrap !important;
  }
}

.top-uen-pill {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 0;
  font-weight: 700;
  font-size: 0.81rem;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-uen-pill span {
  color: #ffffff;
}

.social-icon-circle {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.social-icon-circle:hover {
  background: var(--gold-primary);
  color: var(--navy-primary);
  transform: translateY(-3px) scale(1.05);
}

/* -------------------------------------------------------------
   2. MAIN NAVBAR, LARGER LOGO & BIGGER MENU TEXT (DIRECTIVES 5 & 7)
------------------------------------------------------------- */
.main-navbar-sticky {
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  z-index: 1030;
}

/* Header Logo Sizing */
.site-logo {
  max-width: 240px;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  display: block;
}

.navbar-nav {
  display: flex;
  align-items: center;
  flex-wrap: nowrap !important;
  gap: 6px;
  margin: 0;
  padding: 0;
}

/* Bigger Navbar Font Size & Gold Underline (No Background Color) */
.navbar-nav .nav-link {
  color: var(--navy-primary) !important;
  font-size: 1.15rem;
  font-weight: 800 !important;
  padding: 8px 12px !important;
  transition: var(--transition-smooth);
  white-space: nowrap !important;
  position: relative;
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 3px;
  background-color: var(--gold-primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover {
  color: var(--gold-primary) !important;
  background: transparent !important;
  box-shadow: none !important;
}

.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  transform: scaleX(1);
}

/* SINQuest Logo Only in Nav (Directive 1) */
.sinquest-nav-logo-only {
  height: 30px;
  width: auto;
  vertical-align: middle;
  transition: transform 0.3s ease;
  padding: 2px 8px;
  background: #ffffff;
  border-radius: 4px;
}

.sinquest-nav-logo-only:hover {
  transform: scale(1.08);
}

/* Our Services Dropdown Menu (Directive 4) */
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
  animation: slideUpFade 0.3s ease;
}

.dropdown-menu {
  border: 1px solid var(--border-color);
  border-top: 3px solid var(--gold-primary);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  padding: 8px 0;
}

.dropdown-item {
  color: var(--navy-primary);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 9px 20px;
  transition: var(--transition-smooth);
}

.dropdown-item:hover {
  background-color: var(--gold-light);
  color: var(--gold-primary);
  padding-left: 24px;
}

.btn-gold-nav {
  background: linear-gradient(135deg, var(--gold-primary) 0%, #e5a93c 100%);
  color: var(--navy-primary) !important;
  border: none;
  font-weight: 800;
  font-size: 0.98rem;
  padding: 10px 22px;
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  white-space: nowrap !important;
}

.btn-gold-nav:hover,
.btn-gold-nav.active-btn {
  background: var(--navy-primary);
  color: var(--gold-primary) !important;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

/* Mobile Scroll Drawer */
@media (max-width: 1199px) {
  .navbar-collapse {
    max-height: 75vh;
    overflow-y: auto;
    background-color: #ffffff;
    padding: 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-top: 10px;
  }

  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px;
  }

  .navbar-nav .nav-link {
    width: 100%;
    padding: 10px 14px !important;
    border-bottom: 1px solid var(--border-color);
  }
}

/* -------------------------------------------------------------
   3. HERO SLIDER SECTION
------------------------------------------------------------- */
.hero-slider-section {
  position: relative;
  width: 100%;
  height: 600px;
  min-height: 600px;
  background-color: var(--navy-primary);
  overflow: hidden;
}

.hero-slider-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  min-height: 600px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 600px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
  padding: 2rem 0;
  z-index: 1;
  box-sizing: border-box;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* Hero UEN Badge (Upper Left) */
.hero-uen-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(0, 12, 32, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  border: 1px solid rgba(229, 169, 60, 0.65);
  border-radius: 20px;
  padding: 5px 15px;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  z-index: 5;
}

.hero-uen-badge:hover {
  border-color: var(--gold-primary);
  box-shadow: 0 4px 20px rgba(229, 169, 60, 0.4);
  transform: translateY(-1px);
}

.hero-uen-badge i {
  color: var(--gold-primary);
  font-size: 0.9rem;
}

.hero-uen-badge .uen-num {
  color: var(--gold-primary);
  font-weight: 800;
  letter-spacing: 0.8px;
}

/* Hero Banner 1 - Exact Reference Match */
.hero-banner-1,
.hero-banner-2,
.hero-banner-3,
.hero-banner-4,
.hero-banner-5 {
  min-height: 600px;
  height: 100%;
}

.hero-banner-1 {
  background-color: #000c20;
  overflow: hidden;
  color: #ffffff;
}

.hero-banner-bg-photo {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: right center;
  z-index: 0;
}

.hero-gradient-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #000c20 0%, rgba(0, 12, 32, 0.96) 42%, rgba(0, 12, 32, 0.72) 65%, rgba(0, 12, 32, 0.2) 90%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-tech-dots-topleft {
  position: absolute;
  top: 15px;
  left: 20px;
  width: 120px;
  height: 80px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.3) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.5;
}

.hero-tech-dots-bottomright {
  position: absolute;
  bottom: 15px;
  right: 20px;
  width: 140px;
  height: 90px;
  background-image: radial-gradient(rgba(255, 255, 255, 0.25) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.4;
}

.hero-headline-top {
  color: #ffffff;
  font-size: 3.8rem;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 1px;
  line-height: 1.0;
  margin-bottom: 2px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

.hero-headline-yellow {
  color: #e5a93c;
  font-size: 3.2rem;
  font-weight: 900;
  text-transform: uppercase;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0px;
  line-height: 1.05;
  margin-bottom: 1.1rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.7);
}

.hero-subtitle-text {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
  font-family: 'Inter', sans-serif;
}

.btn-hero-solid-gold {
  background: linear-gradient(135deg, #e5a93c 0%, #d4af37 100%);
  color: #000918 !important;
  font-weight: 800;
  font-size: 0.92rem;
  padding: 13px 30px;
  border-radius: 30px;
  box-shadow: 0 0 25px rgba(229, 169, 60, 0.45);
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.btn-hero-solid-gold:hover {
  background: #ffffff;
  color: var(--navy-primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
}

.btn-hero-outline-gold {
  background: rgba(0, 12, 32, 0.65);
  color: #ffffff !important;
  border: 1.5px solid #e5a93c;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px 26px;
  transition: var(--transition-smooth);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(4px);
}

.btn-hero-outline-gold:hover {
  background: #e5a93c;
  color: #000918 !important;
  transform: translateY(-2px);
}

/* Single Unified Bottom Stats Bar with Top Glow Bar */
.unified-stats-card-bar {
  background: rgba(4, 20, 48, 0.88);
  border: 1.5px solid rgba(229, 169, 60, 0.65);
  border-radius: 12px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6);
  position: relative;
  backdrop-filter: blur(12px);
  margin-top: 2rem;
  overflow: hidden;
}

.top-luminous-glow-line {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #e5a93c 30%, #ffffff 50%, #e5a93c 70%, transparent 100%);
}

.stat-item-col {
  padding: 18px 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.stat-item-col:last-child {
  border-right: none;
}

.stat-icon-gold {
  color: #e5a93c;
  font-size: 2.2rem;
  flex-shrink: 0;
}

.stat-number-gold {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  display: block;
}

.stat-label-white {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.1;
  display: block;
  letter-spacing: 0.5px;
}

.hero-banner-2 {
  background: linear-gradient(135deg, #000a1c 0%, #001a3d 60%, #00122e 100%);
  color: #ffffff;
}

.quote-bg-icon-big {
  position: absolute;
  top: -20px;
  right: 40px;
  font-size: 9rem;
  color: rgba(255, 255, 255, 0.06);
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

.hero-founder-title {
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  font-family: 'Outfit', sans-serif;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.hero-founder-title .text-white {
  color: #ffffff !important;
}

.hero-founder-title .text-gold {
  color: #e5a93c !important;
}

.founder-fog-container {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 520px;
}

.founder-fog-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;
  height: 110%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(0, 10, 28, 0.9) 70%);
  z-index: 0;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(25px);
}

.founder-full-portrait {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  height: 530px;
  object-fit: cover;
  object-position: top center;
  border: none !important;
  border-radius: 0;
  box-shadow: none !important;
  display: block;
  margin: 0 auto;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 98%), linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,1) 88%, rgba(0,0,0,0) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0) 98%), linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 12%, rgba(0,0,0,1) 88%, rgba(0,0,0,0) 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

.hero-banner-3 {
  background-color: #ffffff !important;
  color: var(--navy-primary) !important;
  overflow: hidden;
  min-height: 600px;
  height: 100%;
}
/* CONTACT HERO EMAIL BUTTON (ITEM 1) */
.btn-contact-email {
  background: var(--navy-primary) !important;
  color: #ffffff !important;
  border: 2px solid var(--gold-primary) !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}
.btn-contact-email:hover {
  background: var(--gold-primary) !important;
  color: var(--navy-primary) !important;
  border-color: var(--gold-primary) !important;
}

.b3-gold-brush-pill {
  background: linear-gradient(135deg, #e5a93c 0%, #d4af37 100%);
  color: #000c20 !important;
  font-family: 'Caveat', cursive;
  border-radius: 28px;
  padding: 6px 26px;
  display: inline-block;
  font-size: 2.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(229, 169, 60, 0.4);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

.b3-pills-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}

.b3-pill-item {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--navy-primary);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  flex: 1 1 0%;
  min-width: 0;
  min-height: 92px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.b3-pill-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 12, 32, 0.1);
  border-color: var(--gold-primary);
}

.b3-pill-title {
  font-size: 0.98rem;
  font-weight: 800;
  color: #000c20;
  line-height: 1.2;
  margin-bottom: 4px;
}

.b3-pill-subtext {
  font-size: 0.82rem;
  color: #4a5568;
  line-height: 1.35;
  display: block;
}

.b3-navy-amenities-bar,
.b3-pricing-navy-card,
.b3-audience-card {
  background-color: #000c20 !important;
  background: #000c20 !important;
  color: #ffffff !important;
  border: 1.5px solid #e5a93c !important;
  border-radius: 12px !important;
  padding: 12px 14px !important;
  height: 115px !important;
  min-height: 115px !important;
  box-sizing: border-box !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  box-shadow: var(--shadow-md);
}

.b3-pricing-navy-card,
.b3-audience-card {
  text-align: center;
}

.b3-main-room-img {
  width: 100%;
  height: 390px;
  min-height: 390px;
  object-fit: contain;
  background-color: #000c20;
  border-radius: var(--radius-md);
  border: 2px solid var(--gold-primary);
  box-shadow: var(--shadow-md);
  display: block;
}

.b3-thumb-img {
  width: 100%;
  height: 122px;
  min-height: 122px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--gold-primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.b3-thumb-img:hover {
  transform: scale(1.04);
}

.b3-card-title {
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  font-weight: 800;
  color: var(--gold-primary) !important;
}

.b3-price-num {
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 900;
}

.b3-price-sub {
  font-size: 0.75rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.b3-aud-icon {
  font-size: 1.25rem;
  color: var(--gold-primary) !important;
}

.b3-aud-badge {
  width: 24px;
  height: 24px;
  font-size: 0.75rem;
  background: var(--gold-primary) !important;
  color: var(--navy-primary) !important;
}

.b3-aud-text {
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff !important;
}

.hero-banner-4 {
  background-color: #ffffff !important;
  color: var(--navy-primary) !important;
  overflow: hidden;
  min-height: 600px;
  height: 100%;
}

.b4-we-are-text {
  font-family: 'Caveat', cursive;
  color: #e5a93c;
  font-size: 3.1rem;
  font-weight: 700;
  line-height: 1;
  display: inline-block;
  margin-right: 8px;
}

.b4-main-title {
  font-family: 'Outfit', sans-serif;
  font-size: 3.6rem;
  font-weight: 900;
  line-height: 1.02;
  color: #000c20;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.b4-gold-streak-line {
  width: 100%;
  max-width: 480px;
  height: 3px;
  background: linear-gradient(90deg, #e5a93c 0%, rgba(229, 169, 60, 0.2) 100%);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.b4-navy-feature-card {
  background: #000c20;
  color: #ffffff;
  border-radius: 12px;
  padding: 14px 18px;
  border-left: 4px solid #e5a93c;
  box-shadow: 0 8px 22px rgba(0, 12, 32, 0.25);
  margin-bottom: 1.2rem;
}

.b4-tv-icon-circle {
  width: 44px;
  height: 44px;
  background: rgba(229, 169, 60, 0.15);
  border: 1.5px solid #e5a93c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5a93c;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.b4-url-pill-btn {
  background: linear-gradient(135deg, #e5a93c 0%, #d4af37 100%);
  color: #000c20 !important;
  font-weight: 800;
  border-radius: 30px;
  padding: 9px 22px;
  font-size: 0.86rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(229, 169, 60, 0.35);
  transition: var(--transition-smooth);
}

.b4-url-pill-btn:hover {
  background: #000c20;
  color: #ffffff !important;
  transform: translateY(-2px);
}

.b4-polaroid-container {
  position: relative;
  width: 100%;
  max-width: 330px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.b4-polaroid-card {
  background: #ffffff;
  padding: 6px 6px 14px 6px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  position: relative;
  width: 100%;
  transform: none !important;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.b4-polaroid-card:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.b4-polaroid-card img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  border-radius: 4px;
}

.b4-polaroid-1 {
  top: 0;
  left: 0;
  transform: none !important;
  z-index: 3;
  border: 2px solid #e5a93c;
}

.b4-polaroid-2 {
  top: 0;
  right: 0;
  transform: none !important;
  z-index: 2;
  border: 1.5px solid #cbd5e1;
}

.b4-polaroid-3 {
  top: 0;
  left: 0;
  transform: none !important;
  z-index: 1;
  border: 1.5px solid #cbd5e1;
}

.b4-right-navy-panel {
  background: linear-gradient(180deg, #000c20 0%, #001536 100%);
  color: #ffffff;
  border-radius: 14px;
  padding: 1.3rem;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(229, 169, 60, 0.45);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.b4-logos-footer-bar {
  background: transparent;
  border-radius: 0;
  padding: 4px 0;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.b4-footer-logo-img {
  max-width: 220px;
  height: 55px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}

.b4-calendar-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(229, 169, 60, 0.15);
  border: 1.5px solid #e5a93c;
  color: #e5a93c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  flex-shrink: 0;
}

.b4-sg-logo-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: contain !important;
  background-color: transparent !important;
  padding: 2px;
  border: 1.5px solid #e5a93c;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.b4-right-gold-card {
  background: rgba(229, 169, 60, 0.12);
  border: 1px solid #e5a93c;
  border-radius: 10px;
  padding: 12px 14px;
  margin-top: 1rem;
}

.hero-banner-5 {
  background-color: #ffffff !important;
  color: var(--navy-primary) !important;
  overflow: hidden;
  min-height: 600px;
  height: 100%;
  padding: 1.2rem 0 1rem 0;
  align-items: flex-start !important;
}

.b5-main-word-navy {
  font-family: 'Outfit', sans-serif;
  font-size: 3.2rem;
  font-weight: 900;
  color: #000c20;
  line-height: 0.95;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.b5-main-word-gold {
  font-family: 'Outfit', sans-serif;
  font-size: 2.9rem;
  font-weight: 900;
  color: #e5a93c;
  line-height: 0.95;
  text-transform: uppercase;
}

.b5-founder-badge {
  background: #f8fafc;
  border-left: 4px solid #e5a93c;
  padding: 8px 14px;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.b5-feature-bar-row {
  border-top: 1.5px solid #cbd5e1 !important;
  border-bottom: 1.5px solid #cbd5e1 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.b5-feature-box-col {
  padding: 16px 12px !important;
  border-right: 1.5px solid #cbd5e1 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
  align-items: center !important;
  text-align: center !important;
}

.b5-feature-box-col:last-child {
  border-right: none !important;
}

.b5-feat-icon-box {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(0, 12, 32, 0.06);
  color: #000c20;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 8px;
  flex-shrink: 0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.b5-feature-box-col:hover .b5-feat-icon-box {
  background: #000c20;
  color: #e5a93c;
  transform: translateY(-2px);
}

.b5-feat-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: #000c20;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  line-height: 1.2;
}

.b5-feat-desc {
  font-size: 0.82rem;
  color: #334155;
  line-height: 1.38;
  max-width: 98%;
  margin: 0 auto;
  font-weight: 500;
}

.b5-photo-collage-wrapper {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.b5-grid-img {
  width: 100%;
  height: 235px;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  border: 1px solid #e2e8f0 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
  display: block;
  transition: transform 0.3s ease;
}

.b5-grid-img:hover {
  transform: scale(1.02);
}

.b5-grid-img-highlight {
  border: 2px solid #e5a93c !important;
  box-shadow: 0 4px 15px rgba(229, 169, 60, 0.35) !important;
}

.b5-flag-circle-item {
  text-align: center;
  flex: 0 0 auto;
}

.b5-flag-circle-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  border: 1px solid #e2e8f0;
}

.b5-flag-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: #000c20;
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
  letter-spacing: 0.3px;
}

/* Slider Controls */
.slider-dots-container {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid var(--gold-primary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.dot-indicator.active {
  width: 32px;
  border-radius: 8px;
  background: var(--gold-primary);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 18, 46, 0.75);
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.slider-arrow:hover {
  background: var(--gold-primary);
  color: var(--navy-primary);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow-prev { left: 15px; }
.slider-arrow-next { right: 15px; }

/* -------------------------------------------------------------
   4. CARDS & ELEMENTOR CONTAINERS
------------------------------------------------------------- */
.specialty-card, .programme-card, .testimonial-card, .event-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.specialty-card:hover, .programme-card:hover, .event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-primary);
}

.card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.programme-card .card-img-top {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background-color: #ffffff;
  display: block;
}

.sinquest-gallery-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  display: block;
}

.whatsapp-cta-bar {
  background: linear-gradient(90deg, #d4af37 0%, #e5a93c 100%);
  color: var(--navy-primary);
  font-weight: 800;
  padding: 1.1rem 0;
  text-decoration: none;
  display: block;
  transition: var(--transition-smooth);
}

.whatsapp-cta-bar:hover {
  background: linear-gradient(90deg, #e5a93c 0%, #d4af37 100%);
}

/* FLOATING BUTTONS */
.floating-btn-group {
  position: fixed;
  bottom: 25px;
  right: 25px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.floating-whatsapp-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: #25d366;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition-smooth);
  text-decoration: none;
}

.floating-whatsapp-btn:hover {
  transform: scale(1.1);
  color: #ffffff;
}

.back-to-top-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--navy-primary);
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top-btn:hover {
  background-color: var(--gold-primary);
  color: var(--navy-primary);
  transform: translateY(-4px);
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--gold-primary) 0%, #e5a93c 100%);
  color: var(--navy-primary);
  font-weight: 800;
  border: none;
  padding: 11px 26px;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.btn-gold:hover {
  background: var(--navy-primary);
  color: var(--gold-primary);
}

/* =========================================================
   ADVANCED TESTIMONIALS & UPCOMING EVENTS STYLES
========================================================= */
.adv-testimonial-card {
  background: linear-gradient(135deg, #00122e 0%, #001f42 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: 2.2rem;
  border: 1.5px solid rgba(229, 169, 60, 0.45);
  box-shadow: 0 14px 35px rgba(0, 18, 46, 0.35);
  position: relative;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.adv-testimonial-card::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(229, 169, 60, 0.25) 0%, rgba(229, 169, 60, 0) 70%);
  border-radius: 50%;
  pointer-events: none;
}

.adv-rating-pill {
  background: rgba(229, 169, 60, 0.15);
  border: 1px solid #e5a93c;
  color: #e5a93c;
  font-size: 0.78rem;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.adv-quote-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  margin-bottom: 1.5rem;
}

.adv-client-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e5a93c 0%, #d4af37 100%);
  color: #000c20;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(229, 169, 60, 0.4);
}

.adv-event-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1.5px solid #e2e8f0;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
  padding: 1.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.adv-event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 12, 32, 0.15);
}

.adv-event-date-box {
  background: #000c20;
  color: #ffffff;
  border: 1.5px solid #e5a93c;
  border-radius: 12px;
  padding: 12px 18px;
  text-align: center;
  min-width: 80px;
  box-shadow: 0 6px 18px rgba(0, 12, 32, 0.25);
  flex-shrink: 0;
}

.adv-event-tag {
  background: rgba(0, 12, 32, 0.06);
  color: #000c20;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Contact Hero & Footer Logo Styles */
.contact-hero-advanced {
  background: linear-gradient(135deg, #000c20 0%, #001a3d 50%, #00122e 100%);
  position: relative;
  min-height: 480px;
}

.contact-hero-pattern-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(229, 169, 60, 0.12) 1px, transparent 0);
  background-size: 24px 24px;
  pointer-events: none;
}

.contact-hero-image-card {
  border: 2px solid var(--gold-primary);
  box-shadow: 0 20px 45px rgba(0, 12, 32, 0.4);
}

.footer-logo-img {
  max-width: 320px !important;
  height: 105px !important;
  object-fit: contain !important;
  display: block;
}

/* Contact Hero Advanced Fog Style Image Showcase */
.contact-fog-container {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.contact-fog-container::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 115%;
  height: 115%;
  background: radial-gradient(circle, rgba(229, 169, 60, 0.35) 0%, rgba(0, 12, 32, 0.85) 60%, transparent 80%);
  z-index: 0;
  pointer-events: none;
  border-radius: 30px;
  filter: blur(30px);
}

.contact-fog-img-wrapper {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  overflow: hidden;
  border: 2px solid rgba(229, 169, 60, 0.6);
  box-shadow: 0 15px 40px rgba(0, 12, 32, 0.5), 0 0 30px rgba(229, 169, 60, 0.25);
  background: #000c20;
}

.contact-fog-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s ease;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0.85) 100%);
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 80%, rgba(0,0,0,0.85) 100%);
}

.contact-fog-img-wrapper:hover .contact-fog-img {
  transform: scale(1.03);
}

.contact-fog-badge-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(180deg, rgba(0, 12, 32, 0) 0%, rgba(0, 12, 32, 0.95) 40%, rgba(0, 12, 32, 0.98) 100%);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(229, 169, 60, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}

/* Advanced Contact Form Styling */
.adv-contact-form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 12, 32, 0.1);
  border: 1.5px solid #e2e8f0;
  position: relative;
}

.adv-contact-form-card .input-group-text {
  border-top-left-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  background: #f8fafc !important;
  color: var(--gold-primary) !important;
  padding-left: 1rem;
  padding-right: 1rem;
}

.adv-contact-form-card .form-control {
  border-top-right-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
  background: #f8fafc !important;
  font-size: 0.92rem;
  transition: all 0.3s ease;
}

.adv-contact-form-card .form-control:focus {
  background: #ffffff !important;
  box-shadow: 0 0 0 3px rgba(229, 169, 60, 0.25) !important;
  border-color: #e5a93c !important;
}

.btn-adv-submit {
  background: linear-gradient(135deg, #00122e 0%, #00224d 100%);
  color: #ffffff !important;
  border-radius: 30px !important;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border: 1.5px solid #e5a93c !important;
  padding: 14px 28px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 18, 46, 0.3);
}

.btn-adv-submit:hover {
  background: linear-gradient(135deg, #e5a93c 0%, #d4af37 100%);
  color: #000c20 !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(229, 169, 60, 0.45);
}

/* -------------------------------------------------------------
   OUR SPECIALTIES CARDS
------------------------------------------------------------- */
.specialty-card-box {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e0e6ed;
  padding: 24px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 12, 32, 0.04);
}

.specialty-card-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 12, 32, 0.12);
  border-color: #e5a93c;
}

.specialty-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid #e5a93c;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #000c20;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.specialty-card-box:hover .specialty-icon-circle {
  background-color: #000c20;
  color: #e5a93c;
}

.specialty-title {
  color: #000c20;
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.3;
}

.specialty-divider {
  width: 28px;
  height: 2px;
  background-color: #e5a93c;
  margin: 6px auto 12px auto;
}

.specialty-desc {
  color: #5a6a85;
  font-size: 0.82rem;
  line-height: 1.45;
  margin-bottom: 0;
}

/* -------------------------------------------------------------
   REVIEWS MARQUEE / CAROUSEL AUTO SCROLL
------------------------------------------------------------- */
.reviews-marquee-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  position: relative;
  width: 100%;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-marquee-wrapper::-webkit-scrollbar {
  display: none;
}

.reviews-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: scroll-position;
}

.review-card-item {
  width: 340px;
  flex: 0 0 340px;
  background: #ffffff;
  border-radius: 12px;
  padding: 22px;
  border: 1px solid rgba(0, 12, 32, 0.08);
  box-shadow: 0 6px 18px rgba(0, 12, 32, 0.06);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 12, 32, 0.12);
  border-color: #e5a93c;
}

/* -------------------------------------------------------------
   REVIEW SECTION ARROW NAVIGATION BUTTONS
------------------------------------------------------------- */
.btn-review-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #000c20;
  color: #e5a93c;
  border: 1.5px solid #e5a93c;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 12, 32, 0.2);
  cursor: pointer;
}

.btn-review-nav:hover {
  background-color: #e5a93c;
  color: #000c20;
  transform: scale(1.08);
  box-shadow: 0 6px 16px rgba(229, 169, 60, 0.4);
}

.btn-review-nav i {
  pointer-events: none;
}

/* EVENT CARD BUTTON HIGH CONTRAST STYLING */
.btn-event-gold {
  background: linear-gradient(135deg, #e5a93c 0%, #d4af37 100%) !important;
  color: #000c20 !important;
  font-weight: 800 !important;
  border: none !important;
  box-shadow: 0 4px 15px rgba(229, 169, 60, 0.35) !important;
  transition: all 0.3s ease !important;
}

.btn-event-gold:hover {
  background: linear-gradient(135deg, #000c20 0%, #001a3d 100%) !important;
  color: #e5a93c !important;
  transform: translateY(-2px) !important;
}

.btn-event-navy {
  background: #000c20 !important;
  color: #ffffff !important;
  border: 1.5px solid #e5a93c !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 12px rgba(0, 12, 32, 0.2) !important;
  transition: all 0.3s ease !important;
}

.btn-event-navy:hover {
  background: #e5a93c !important;
  color: #000c20 !important;
  transform: translateY(-2px) !important;
}

