/* =====================================================
   Dream Enlight - Static HTML/CSS Stylesheet
   Converts Tailwind classes to vanilla CSS with animations
   ===================================================== */

/* ── CSS Variables ── */
:root {
  --brand-navy: #0312B9;
  --brand-gold: #F7D528;
  --brand-white: #FAFBFD;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --dark-bg: #0a0e1a;
  --dark-card: #111827;
  --dark-surface: #0f1525;
  --dark-border: #1a2035;
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --bg-body: var(--dark-bg);
  --bg-card: var(--dark-card);
  --bg-surface: var(--dark-surface);
  --border-color: var(--dark-border);
  --text-primary: #ffffff;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --nav-bg: rgba(15, 21, 37, 0.95);
  --nav-border: var(--dark-border);
}

/* ── Reset ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
}

/* ── Typography ── */
h1, h2, h3, h4 { font-weight: 700; line-height: 1.2; }

/* ── Utility Layout ── */
.container {
  width: 100%;
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container { padding: 0 40px; }
}

@media (min-width: 1024px) {
  .container { padding: 0 64px; }
}

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-10 { gap: 40px; }
.gap-12 { gap: 48px; }

.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }

.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.flex-1 { flex: 1; }

.text-center { text-align: center; }
.text-left { text-align: left; }

.mx-auto { margin-left: auto; margin-right: auto; }

.w-full { width: 100%; }
.w-fit { width: fit-content; }
.w-32 { width: 128px; }
.h-32 { height: 128px; }
.h-44 { height: 176px; }
.h-64 { height: 256px; }
.h-full { height: 100%; }
.min-h-screen { min-height: 100vh; }

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }

.overflow-hidden { overflow: hidden; }
.overflow-visible { overflow: visible; }
.pointer-events-none { pointer-events: none; }

.rounded-full { border-radius: var(--radius-full); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: 16px; }
.rounded-3xl { border-radius: 24px; }

.border { border: 1px solid var(--border-color); }
.border-t { border-top: 1px solid var(--border-color); }
.border-b { border-bottom: 1px solid var(--border-color); }

.border-2 { border-width: 2px; border-style: solid; }

/* Width utilities */
.w-4 { width: 16px; }
.w-5 { width: 20px; }
.w-6 { width: 24px; }
.w-8 { width: 32px; }
.w-10 { width: 40px; }
.w-12 { width: 48px; }
.w-14 { width: 56px; }
.w-16 { width: 64px; }
.w-20 { width: 80px; }
.w-24 { width: 96px; }
.w-28 { width: 112px; }
.w-36 { width: 144px; }
.w-40 { width: 160px; }
.w-48 { width: 192px; }
.w-56 { width: 224px; }
.w-64 { width: 256px; }
.w-72 { width: 288px; }
.w-80 { width: 320px; }
.w-96 { width: 384px; }

/* Height utilities */
.h-4 { height: 16px; }
.h-5 { height: 20px; }
.h-6 { height: 24px; }
.h-8 { height: 32px; }
.h-10 { height: 40px; }
.h-12 { height: 48px; }
.h-14 { height: 56px; }
.h-16 { height: 64px; }
.h-20 { height: 80px; }
.h-24 { height: 96px; }
.h-28 { height: 112px; }
.h-36 { height: 144px; }
.h-40 { height: 160px; }
.h-48 { height: 192px; }
.h-56 { height: 224px; }
.h-64 { height: 256px; }
.h-72 { height: 288px; }
.h-80 { height: 320px; }
.h-96 { height: 384px; }

.h-px { height: 1px; }
.p-4 { padding: 16px; }
.p-5 { padding: 20px; }
.p-6 { padding: 24px; }
.p-8 { padding: 32px; }

.px-3 { padding-left: 12px; padding-right: 12px; }
.px-4 { padding-left: 16px; padding-right: 16px; }
.px-5 { padding-left: 20px; padding-right: 20px; }
.px-6 { padding-left: 24px; padding-right: 24px; }
.px-8 { padding-left: 32px; padding-right: 32px; }

.py-2 { padding-top: 8px; padding-bottom: 8px; }
.py-2\.5 { padding-top: 10px; padding-bottom: 10px; }
.py-3 { padding-top: 12px; padding-bottom: 12px; }
.py-4 { padding-top: 16px; padding-bottom: 16px; }
.py-8 { padding-top: 32px; padding-bottom: 32px; }
.py-12 { padding-top: 48px; padding-bottom: 48px; }
.py-16 { padding-top: 64px; padding-bottom: 64px; }

.pt-20 { padding-top: 80px; }
.pt-16 { padding-top: 64px; }
.pb-12 { padding-bottom: 48px; }
.pb-16 { padding-bottom: 64px; }

.mt-1 { margin-top: 4px; }
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.leading-none { line-height: 1; }
.mt-10 { margin-top: 40px; }
.mt-16 { margin-top: 64px; }
.mt-20 { margin-top: 80px; }

.mb-2 { margin-bottom: 8px; }
.mb-3 { margin-bottom: 12px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-12 { margin-bottom: 48px; }
.mb-16 { margin-bottom: 64px; }

.mr-3 { margin-right: 12px; }
.ml-3 { margin-left: 12px; }

/* ── Text Sizes ── */
.text-xs { font-size: 12px; }
.text-sm { font-size: 14px; }
.text-base { font-size: 16px; }
.text-lg { font-size: 18px; }
.text-xl { font-size: 20px; }
.text-2xl { font-size: 24px; }
.text-3xl { font-size: 30px; }
.text-4xl { font-size: 36px; }
.text-5xl { font-size: 48px; }
.text-6xl { font-size: 60px; }
.text-7xl { font-size: 72px; }
.text-8xl { font-size: 96px; }

.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }

.font-serif { font-family: var(--font-serif); }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-tighter { letter-spacing: -0.05em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

.uppercase { text-transform: uppercase; }
.italic { font-style: italic; }
.whitespace-nowrap { white-space: nowrap; }

.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.625; }

/* ── Colors ── */
.text-brand-navy { color: var(--brand-navy); }
.text-brand-gold { color: var(--brand-gold); }
.text-white { color: #ffffff; }
.text-white\/30 { color: rgba(255,255,255,0.3); }
.text-white\/60 { color: rgba(255,255,255,0.6); }
.text-white\/70 { color: rgba(255,255,255,0.7); }
.text-brand-gold\/20 { color: rgba(247,213,40,0.2); }
.text-gray-400 { color: var(--gray-400); }
.text-gray-500 { color: var(--gray-500); }
.text-gray-600 { color: var(--gray-600); }
.text-gray-700 { color: var(--gray-700); }

.text-green-600 { color: #16a34a; }
.text-red-600 { color: #dc2626; }
.text-gray-300 { color: #d1d5db; }

/* ── Position Direction Utilities ── */
.top-0 { top: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }

.top-1 { top: 4px; }
.top-2 { top: 8px; }
.top-3 { top: 12px; }
.top-4 { top: 16px; }
.top-5 { top: 20px; }
.top-6 { top: 24px; }
.top-8 { top: 32px; }
.top-10 { top: 40px; }
.top-12 { top: 48px; }

.bottom-1 { bottom: 4px; }
.bottom-2 { bottom: 8px; }
.bottom-3 { bottom: 12px; }
.bottom-4 { bottom: 16px; }
.bottom-5 { bottom: 20px; }
.bottom-6 { bottom: 24px; }
.bottom-8 { bottom: 32px; }
.bottom-10 { bottom: 40px; }
.bottom-12 { bottom: 48px; }

.left-1 { left: 4px; }
.left-2 { left: 8px; }
.left-3 { left: 12px; }
.left-4 { left: 16px; }
.left-5 { left: 20px; }
.left-6 { left: 24px; }
.left-8 { left: 32px; }
.left-10 { left: 40px; }
.left-12 { left: 48px; }

.right-1 { right: 4px; }
.right-2 { right: 8px; }
.right-3 { right: 12px; }
.right-4 { right: 16px; }
.right-5 { right: 20px; }
.right-6 { right: 24px; }
.right-8 { right: 32px; }
.right-10 { right: 40px; }
.right-12 { right: 48px; }

.-top-1 { top: -4px; }
.-top-2 { top: -8px; }
.-top-3 { top: -12px; }
.-top-4 { top: -16px; }
.-top-5 { top: -20px; }
.-top-6 { top: -24px; }

.-bottom-1 { bottom: -4px; }
.-bottom-2 { bottom: -8px; }
.-bottom-3 { bottom: -12px; }
.-bottom-4 { bottom: -16px; }

.-left-1 { left: -4px; }
.-left-2 { left: -8px; }
.-left-3 { left: -12px; }
.-left-4 { left: -16px; }
.-left-5 { left: -20px; }
.-left-6 { left: -24px; }
.-left-8 { left: -32px; }
.-left-10 { left: -40px; }
.-left-12 { left: -48px; }

.-right-1 { right: -4px; }
.-right-2 { right: -8px; }
.-right-3 { right: -12px; }
.-right-4 { right: -16px; }

/* ── Opacity Background Variants ── */
.bg-white\/5 { background: rgba(255,255,255,0.05); }
.bg-white\/10 { background: rgba(255,255,255,0.10); }
.bg-brand-navy\/5 { background: rgba(3,18,185,0.05); }
.bg-brand-navy\/10 { background: rgba(3,18,185,0.10); }
.bg-brand-gold\/10 { background: rgba(247,213,40,0.10); }
.bg-brand-gold\/20 { background: rgba(247,213,40,0.20); }
.bg-dark-card { background: var(--dark-card); }

/* ── Border Color Variants ── */
.border-dark-border { border-color: var(--dark-border); }

.bg-brand-navy { background: var(--brand-navy); }
.bg-brand-gold { background: var(--brand-gold); }
.bg-brand-white { background: var(--bg-body); }
.bg-white { background: #ffffff; }
.bg-white\/5 { background: rgba(255,255,255,0.05); }
.bg-white\/10 { background: rgba(255,255,255,0.10); }

.bg-gray-50 { background: #F9FAFB; }
.bg-gray-100 { background: var(--gray-100); }
.text-green-400 { color: #4ade80; }
.text-red-400 { color: #f87171; }
.bg-green-900 { background: rgba(6, 78, 59, 0.35); }
.bg-red-900 { background: rgba(127, 29, 29, 0.35); }

.backdrop-blur-sm { backdrop-filter: blur(8px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
}

.btn-primary {
  background: var(--brand-navy);
  color: #fff;
}
.btn-primary:hover { background: rgba(3, 18, 185, 0.9); }

.btn-gold {
  background: var(--brand-gold);
  color: var(--brand-navy);
}
.btn-gold:hover { background: rgba(247, 213, 40, 0.9); }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.3);
  color: #fff;
  background: transparent;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
}

.btn-ghost {
  color: var(--text-primary);
  background: transparent;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}

/* ── Badge ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

/* ── Card ── */
.card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all 0.3s;
}
.card:hover {
  border-color: rgba(3, 18, 185, 0.4);
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* ── Icon Box ── */
.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 20px;
  transition: all 0.3s;
  margin-bottom: 16px;
}

/* ── Form Elements ── */
.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 14px;
  background: var(--bg-surface);
  color: var(--text-primary);
  transition: all 0.2s;
}
.form-input:focus {
  outline: none;
  border-color: var(--brand-navy);
  box-shadow: 0 0 0 3px rgba(3, 18, 185, 0.1);
}
.form-input::placeholder { color: var(--text-muted); }

select.form-input { appearance: none; }

textarea.form-input { resize: none; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.3s;
  height: 110px;
  background: transparent;
}

.navbar.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--nav-border);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .navbar-inner { padding: 0 40px; }
}

@media (min-width: 1024px) {
  .navbar-inner { padding: 0 64px; }
}

.logo-img {
  height: 115px;
  width: 115px;
  object-fit: contain;
}

/* Mobile Default */
.nav-links{
    display:none;
}

.nav-actions{
    display:none;
}

.mobile-actions{
    display:flex;
    align-items:center;
}

/* Desktop */
@media screen and (min-width:768px){

    .nav-links{
        display:flex !important;
        align-items:center;
        gap:4px;
    }

    .nav-actions{
        display:flex !important;
        align-items:center;
        gap:12px;
    }

    .mobile-actions{
        display:none !important;
    }

}

.nav-link {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-full);
  color: var(--text-primary);
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.nav-link.active {
  background: var(--brand-navy);
  color: #fff;
}

.nav-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

@media (min-width: 768px) {
  .nav-actions { display: flex; }
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 18px;
  transition: all 0.2s;
  cursor: pointer;
}
.icon-btn:hover {
  background: rgba(255,255,255,0.2);
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (min-width: 768px) {
  .mobile-actions { display: none; }
}
.navbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:99999;
}

.mobile-menu{
    position:absolute;
    top:110px;
    left:0;
    width:100%;
    background:#050b25;
    display:none;
    flex-direction:column;
}

.mobile-menu.open{
    display:flex !important;
}

.mobile-link {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-md);
  color: var(--text-primary);
  transition: all 0.2s;
}
.mobile-link:hover {
  background: rgba(255,255,255,0.1);
}

.mobile-link.active {
  background: var(--brand-navy);
  color: #fff;
}

/* ── Footer ── */
.footer {
  background: var(--dark-card);
  color: #fff;
}

.footer a {
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
/*.footer a:hover {*/
/*  color: var(--brand-gold);*/
/*}*/

.footer-social {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  color: #fff;
  transition: all 0.2s;
}
.footer-social:hover {
  background: var(--brand-gold);
  color: var(--brand-navy);
}

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(24px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes scaleIn {
  0% { opacity: 0; transform: scale(0.75); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

@keyframes progressFill {
  to { stroke-dashoffset: var(--target-offset); }
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-slow {
  animation: float 12s ease-in-out infinite;
}

.animate-float-medium {
  animation: float 15s ease-in-out infinite;
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* ── Scroll Reveal Classes ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.reveal-scale.visible {
  opacity: 1;
  transform: scale(1);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── Hero Section ── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background: var(--bg-body);
}

.hero-bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
  animation: float 12s ease-in-out infinite;
}

.hero-bg-blob-1 {
  top: -128px;
  right: -128px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle at 40% 40%, rgba(3, 18, 185, 0.40), rgba(3, 18, 185, 0.15) 55%, rgba(3, 18, 185, 0.05) 75%, transparent 90%);
  animation-duration: 12s;
}

.hero-bg-blob-2 {
  top: 25%;
  left: -96px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 50% 50%, rgba(247, 213, 40, 0.35), rgba(247, 213, 40, 0.12) 55%, rgba(247, 213, 40, 0.04) 75%, transparent 90%);
  filter: blur(60px);
  animation-duration: 15s;
  animation-delay: 2s;
}

.hero-bg-blob-3 {
  bottom: 0;
  right: 25%;
  width: 450px;
  height: 350px;
  border-radius: 60% 40% 50% 50%;
  background: radial-gradient(ellipse at 30% 30%, rgba(3, 18, 185, 0.32), rgba(3, 18, 185, 0.10) 60%, transparent 80%);
  filter: blur(55px);
  animation-duration: 18s;
  animation-delay: 4s;
}

.hero-bg-blob-4 {
  top: 33%;
  right: 33%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle at 50% 50%, rgba(247, 213, 40, 0.28), rgba(247, 213, 40, 0.08) 60%, transparent 80%);
  filter: blur(45px);
  animation-duration: 10s;
  animation-delay: 1s;
}

.hero-bg-blob-5 {
  bottom: 25%;
  left: -48px;
  width: 400px;
  height: 300px;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  background: radial-gradient(ellipse at 50% 50%, rgba(3, 18, 185, 0.28), rgba(3, 18, 185, 0.08) 60%, transparent 80%);
  filter: blur(50px);
  animation-duration: 14s;
  animation-delay: 3s;
}

.hero-bg-blob-6 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 300px;
  background: radial-gradient(ellipse at 50% 100%, rgba(247, 213, 40, 0.22), rgba(247, 213, 40, 0.06) 60%, transparent 80%);
  filter: blur(50px);
  animation-duration: 20s;
  animation-delay: 5s;
}

.hero-dot {
  position: absolute;
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 128px;
  background: linear-gradient(to top, var(--bg-body), transparent);
  pointer-events: none;
}

/* ── Services Cards ── */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  cursor: pointer;
  min-height: 320px;
}

.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.7s;
}

.service-card:hover img {
  transform: scale(1.1);
}

.service-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--brand-navy), rgba(3,18,185,0.6), transparent);
}

.service-card .content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.service-card .desc {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  line-height: 1.625;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.3s, max-height 0.3s;
}

.service-card:hover .desc {
  opacity: 1;
  max-height: 160px;
}

/* ── Portfolio Cards ── */
.portfolio-card img {
  transition: transform 0.5s;
}
.portfolio-card:hover img {
  transform: scale(1.05);
}

/* ── Team Carousel ── */
.carousel-track {
  display: flex;
  transition: transform 0.5s ease-out;
}

.carousel-slide {
  flex-shrink: 0;
  padding: 0 8px;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.3s;
  cursor: pointer;
}
.carousel-arrow:hover { transform: translateY(-50%) scale(1.1); }
.carousel-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.carousel-arrow:disabled:hover { transform: translateY(-50%); }

.carousel-prev { left: -20px; }
.carousel-next { right: -20px; }

@media (min-width: 768px) {
  .carousel-prev { left: -28px; }
  .carousel-next { right: -28px; }
}

.team-card .hover-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(3,18,185,0.9), rgba(3,18,185,0.2), transparent);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.team-card:hover .hover-info {
  opacity: 1;
}

/* ── Testimonial Slider ── */
.testimonial-nav-dot {
  height: 8px;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}
.testimonial-nav-dot.active {
  width: 32px;
  background: var(--brand-gold);
}
.testimonial-nav-dot:not(.active) {
  width: 8px;
  background: rgba(255,255,255,0.3);
}
.testimonial-nav-dot:not(.active):hover {
  background: rgba(255,255,255,0.5);
}

/* ── Circular Progress ── */
.progress-ring {
  transform: rotate(-90deg);
}
.progress-ring-track {
  fill: none;
  stroke-width: 6;
}
.progress-ring-fill {
  fill: none;
  stroke: var(--brand-gold);
  stroke-width: 6;
  stroke-linecap: round;
  transition: stroke-dashoffset 0.3s ease;
}

/* ── Process Section ── */
.process-step {
  position: relative;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.7s;
}
.process-step:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(247, 213, 40, 0.3);
}

.process-step .connector {
  display: none;
  position: absolute;
  top: 50%;
  right: -10px;
  width: 20px;
  height: 1px;
  background: rgba(247, 213, 40, 0.3);
}

@media (min-width: 1024px) {
  .process-step .connector { display: block; }
}

/* ── CTA Section ── */
.cta-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(3,18,185,0.8), rgba(3,18,185,0.4));
}

/* ── Contact Page ── */
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* ── Services Accordion ── */
.accordion-content {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s, opacity 0.3s;
}
.accordion-content.open {
  max-height: 300px;
  opacity: 1;
}

/* ── Careers Filter ── */
.filter-btn {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  border-radius: var(--radius-full);
  transition: all 0.2s;
  white-space: nowrap;
  cursor: pointer;
  background: rgba(3, 18, 185, 0.05);
  color: var(--brand-navy);
  border: none;
}
.dark .filter-btn {
  background: rgba(255,255,255,0.1);
  color: #fff;
}
.filter-btn:hover {
  background: rgba(3, 18, 185, 0.1);
}
.dark .filter-btn:hover {
  background: rgba(255,255,255,0.2);
}
.filter-btn.active {
  background: var(--brand-navy);
  color: #fff;
}

/* ── Featured Job Card ── */
.job-card.featured {
  background: var(--brand-navy);
  color: #fff;
  border-color: var(--brand-navy);
}

/* ── Counter Animation ── */
.counter-value {
  font-size: 36px;
  font-weight: 900;
  color: var(--brand-gold);
  padding-left: 16px;
}
@media (min-width: 768px) {
  .counter-value { font-size: 48px; }
}

/* ── Client Logos ── */
.logo-item {
  width: 190px;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.75);
}
.logo-item.visible {
  opacity: 1;
  transform: scale(1);
}
.logo-item img {
  width: 100%;
  height: 64px;
  object-fit: contain;
}
@media (min-width: 768px) {
  .logo-item img { height: 80px; }
}

/* Logo Carousel */
.logo-carousel {
  position: relative;
  overflow: hidden;
  cursor: grab;
}
.logo-carousel:active {
  cursor: grabbing;
}
.logo-carousel-track {
  display: flex;
  transition: transform 0.5s ease-out;
}
.logo-carousel-slide {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 2rem;
  padding-right: 2rem;
}
.logo-carousel-slide img {
  width: 100%;
  height: 5rem;
  object-fit: contain;
}
.logo-carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: rgba(156, 163, 175, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.logo-carousel-dot.active {
  width: 24px;
  background: var(--brand-gold);
}

/* Logo Marquee (legacy) */
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.logo-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.logo-marquee-track:hover {
  animation-play-state: paused;
}

.logo-marquee-item {
  flex-shrink: 0;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-marquee-item img {
  height: 180px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

/* ── 4-Logo Carousel (Desktop) ── */
.logo-carousel-wrap {
  position: relative;
}

.logo-carousel-wrap .carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: #fff;
  transition: all 0.2s;
  cursor: pointer;
}

.logo-carousel-wrap .carousel-arrow:hover {
  background: var(--brand-navy);
  border-color: var(--brand-navy);
}

.logo-carousel-wrap .carousel-arrow.prev {
  left: -16px;
}

.logo-carousel-wrap .carousel-arrow.next {
  right: -16px;
}

@media (min-width: 768px) {
  .logo-carousel-wrap .carousel-arrow.prev { left: -24px; }
  .logo-carousel-wrap .carousel-arrow.next { right: -24px; }
}

.logo-carousel-viewport {
  overflow: hidden;
  margin: 0 32px;
}

.logo-carousel-slides {
  display: flex;
  transition: transform 0.5s ease-out;
}

.logo-carousel-slide {
  flex-shrink: 0;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-carousel-slide img {
  height: 180px;
  width: 100%;
  max-width: 180px;
  object-fit: contain;
}

/* Dot indicators */
.logo-carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.logo-carousel-dot {
  height: 8px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: rgba(156, 163, 175, 0.5);
}

.logo-carousel-dot.active {
  width: 24px;
  background: var(--brand-gold);
}

.logo-carousel-dot:not(.active) {
  width: 8px;
}

.logo-carousel-dot:not(.active):hover {
  background: rgba(156, 163, 175, 0.8);
}

/* Legacy logo-item override for single row */
.logo-item img {
  height: 180px;
  object-fit: contain;
}

/* ── Page Hero (shared) ── */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
  background: var(--bg-body);
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero { min-height: 55vh; }
}

.page-hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
}

/* ── Map ── */
.map-container {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 256px;
  background: var(--gray-100);
}
@media (min-width: 768px) {
  .map-container { height: 320px; }
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ── Aspect Ratios ── */
.aspect-3-4 {
  aspect-ratio: 3/4;
}

.aspect-9-16 {
  aspect-ratio: 9/16;
}

.aspect-4-3 {
  aspect-ratio: 4/3;
}

/* ── Max Widths ── */
.max-w-sm { max-width: 384px; }
.max-w-md { max-width: 448px; }
.max-w-lg { max-width: 512px; }
.max-w-xl { max-width: 576px; }
.max-w-2xl { max-width: 672px; }
.max-w-4xl { max-width: 896px; }
.max-w-5xl { max-width: 1024px; }
.max-w-6xl { max-width: 1152px; }

/* ── Responsive Grid ── */
@media (min-width: 640px) {
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .sm\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .sm\:flex-row { flex-direction: row; }
  .sm\:text-left { text-align: left; }
  .sm\:border-r { border-right: 1px solid rgba(255,255,255,0.15); }
  .sm\:block { display: block; }
  .sm\:hidden { display: none; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .md\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .md\:flex-row { flex-direction: row; }
  .md\:items-end { align-items: flex-end; }
  .md\:w-1\/2 { width: 50%; }
  .md\:w-2\/5 { width: 40%; }
  .md\:w-3\/5 { width: 60%; }
  .md\:col-span-1 { grid-column: span 1; }
  .md\:col-span-2 { grid-column: span 2; }
  .md\:row-span-2 { grid-row: span 2; }
  .md\:text-left { text-align: left; }
  .md\:text-3xl { font-size: 30px; }
  .md\:text-4xl { font-size: 36px; }
  .md\:text-5xl { font-size: 48px; }
  .md\:text-6xl { font-size: 60px; }
  .md\:text-7xl { font-size: 72px; }
  .md\:text-lg { font-size: 18px; }
  .md\:text-xl { font-size: 20px; }
  .md\:text-2xl { font-size: 24px; }
  .md\:text-base { font-size: 16px; }
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:block { display: block; }
  .md\:p-8 { padding: 32px; }
  .md\:p-10 { padding: 40px; }
  .md\:p-12 { padding: 48px; }
  .md\:px-12 { padding-left: 48px; padding-right: 48px; }
  .md\:py-16 { padding-top: 64px; padding-bottom: 64px; }
  .md\:py-24 { padding-top: 96px; padding-bottom: 96px; }
  .md\:min-h-\[400px\] { min-height: 400px; }
  .md\:min-h-\[480px\] { min-height: 480px; }
  .md\:min-h-\[560px\] { min-height: 560px; }
  .md\:min-h-\[600px\] { min-height: 600px; }
  .md\:h-96 { height: 384px; }
  .md\:h-\[420px\] { height: 420px; }
  .md\:h-\[600px\] { height: 600px; }
  .md\:gap-0 { gap: 0; }
  .md\:gap-5 { gap: 20px; }
  .md\:gap-8 { gap: 32px; }
  .md\:mt-20 { margin-top: 80px; }
  .md\:mb-16 { margin-bottom: 64px; }
  .md\:mb-12 { margin-bottom: 48px; }
  .md\:mb-0 { margin-bottom: 0; }
  .md\:mb-4 { margin-bottom: 16px; }
  .md\:absolute { position: absolute; }
  .md\:-left-8 { left: -32px; }
  .md\:top-1\/2 { top: 50%; }
  .md\:-translate-y-1\/2 { transform: translateY(-50%); }
  .md\:w-72 { width: 288px; }
  .md\:w-80 { width: 320px; }
  .md\:w-10 { width: 40px; }
  .md\:h-10 { height: 40px; }
  .md\:w-12 { width: 48px; }
  .md\:h-12 { height: 48px; }
  .md\:w-14 { width: 56px; }
  .md\:h-14 { height: 56px; }
  .md\:w-16 { width: 64px; }
  .md\:h-16 { height: 64px; }
  .md\:w-36 { width: 144px; }
  .md\:h-36 { height: 144px; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
  .lg\:flex-row { flex-direction: row; }
  .lg\:gap-12 { gap: 48px; }
  .lg\:gap-20 { gap: 80px; }
  .lg\:px-16 { padding-left: 64px; padding-right: 64px; }
  .lg\:text-5xl { font-size: 48px; }
  .lg\:text-7xl { font-size: 72px; }
  .lg\:text-8xl { font-size: 96px; }
  .lg\:p-16 { padding: 64px; }
  .lg\:py-24 { padding-top: 96px; padding-bottom: 96px; }
  .lg\:text-2xl { font-size: 24px; }
}

.snap-center { scroll-snap-align: center; }

/* Short video wrappers */
.short-video-wrap {
  flex-shrink: 0;
  width: 200px;
  scroll-snap-align: center;
}

@media (min-width: 768px) {
  .short-video-wrap {
    width: auto;
  }
  .md\:grid { display: grid; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ── Horizontal scroll helpers ── */
.scrollbar-hide::-webkit-scrollbar { display: none; }

/* ── Nav Dropdown ── */
.navbar{
  position: relative;
  z-index: 9999;

  overflow: visible !important;
}

.navbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;

  overflow: visible !important;
}




/* =====================================================
   DESKTOP DROPDOWN
===================================================== */
.nav-dropdown{
  position: relative;
}

.nav-dropdown-btn{
  display:flex;
  align-items:center;
  gap:4px;
  padding:8px 16px;

  font-size:14px;
  font-weight:500;

  border:none;
  background:none;

  color:var(--text-primary);

  border-radius:999px;

  cursor:pointer;

  transition:.25s;
}

.nav-dropdown-btn:hover,
.nav-dropdown-btn.active{
  background:var(--brand-navy);
  color:#fff;
}

.nav-dropdown-menu{
  position:absolute;

  top:100%;
  left:0;

  min-width:220px;

  background:var(--dark-card);

  border:1px solid var(--dark-border);

  border-radius:12px;

  padding:8px;

  z-index:9999;

  opacity:0;
  visibility:hidden;

  transform:translateY(8px);

  transition:.25s ease;
}

.nav-dropdown:hover .nav-dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.nav-dropdown-menu a{
  display:block;

  padding:12px 16px;

  border-radius:8px;

  color:var(--gray-400);

  transition:.2s;
}

.nav-dropdown-menu a:hover{
  background:rgba(3,18,185,.25);
  color:#fff;
}

.nav-dropdown-chevron{
  transition:.25s;
}

.nav-dropdown:hover .nav-dropdown-chevron{
  transform:rotate(180deg);
}



/* =====================================================
   MOBILE MENU
===================================================== */
.mobile-dropdown-wrap{
  width:100%;
}

.mobile-dropdown-btn{
  width:100%;

  display:flex;
  align-items:center;
  justify-content:space-between;

  border:none;
  background:none;

  cursor:pointer;
}

.mobile-dropdown{
  display:none ;

  flex-direction:column;

  gap:4px;

  margin-left:12px;
  margin-top:4px;
}

.mobile-dropdown.open{
  display:flex ;
}

.mobile-dropdown a{
  padding:10px 14px;

  border-radius:8px;

  color:var(--gray-400);

  transition:.2s;
}

.mobile-dropdown a:hover{
  background:rgba(255,255,255,.08);
  color:#fff;
}


.scrollbar-hide { -ms-overflow-style: none; scrollbar-width: none; }
.snap-x { scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
.snap-mandatory { scroll-snap-type: x mandatory; }
.snap-center { scroll-snap-align: center; }
.shrink-0 { flex-shrink: 0; }
.justify-start { justify-content: flex-start; }
.pb-2 { padding-bottom: 0.5rem; }
.gap-4 { gap: 1rem; }
@media (min-width: 768px) {
  .md\:justify-center { justify-content: center; }
  .md\:gap-2 { gap: 0.5rem; }
}

.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }

.overflow-x-auto { overflow-x: auto; }

.bg-black\/60 { background: rgba(0,0,0,0.6); }

.bg-brand-gold\/10 { background: rgba(247,213,40,0.10); }
.border-brand-gold\/40 { border-color: rgba(247,213,40,0.40); }
.group:hover .group-hover\:scale-105 {
  transform: scale(1.05);
}
.group:hover .group-hover\:scale-110 {
  transform: scale(1.1);
}

/* Short Video Gallery */
.short-video-overlay,
.short-video-duration,
.short-video-play,
.short-video-info {
  transition: opacity 0.3s ease;
}
.short-video-card:hover .short-video-play,
.short-video-card:hover .short-video-info {
  opacity: 1 !important;
}

.transition-all { transition: all 0.3s ease; }

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--brand-gold);
  color: var(--brand-navy);
  transition: transform 0.3s;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .whatsapp-float {
    bottom: 32px;
    right: 32px;
    width: 60px;
    height: 60px;
  }
}

/* ── Back to Top Button ── */
.back-to-top {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 50;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background: var(--brand-navy);
  color: #fff;
  transition: all 0.3s;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  transform: scale(1.1);
}

@media (min-width: 768px) {
  .back-to-top {
    bottom: 32px;
    left: 32px;
    width: 60px;
    height: 60px;
  }
}
.nav-dropdown{
  position: relative;
}

.nav-dropdown-menu{
  position: absolute;
  top: 120%;
  left: 0;

  min-width: 240px;

  background: #0b1320;

  border-radius: 16px;

  padding: 10px;

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);

  transition: all .25s ease;

  z-index: 9999;
}

/* Active on hover */
.nav-dropdown:hover .nav-dropdown-menu{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Portfolio active style */
.nav-dropdown:hover .nav-dropdown-btn{
  background: rgba(255,255,255,.08);
  color: white;
}

/* Dropdown links */
.nav-dropdown-menu a{
  display: block;
  padding: 14px 16px;
  border-radius: 12px;

  color: #cbd5e1;

  text-decoration: none;

  transition: .2s;
}

.nav-dropdown-menu a:hover{
  background: rgba(255,255,255,.06);
  color: white;
}

/*video event*/
.video-slider-wrap{
    position:relative;
    width:100%;
}

.video-slider-viewport{
    overflow:hidden;
    width:100%;
}

.video-slider-track{
    display:flex;
    transition:transform 0.5s ease;
}

.video-slide{
    flex:0 0 100%;
    box-sizing:border-box;
}

.video-slide-inner{
    padding:0 10px;
}

.video-slide iframe{
    width:100%;
    height:250px;
    border:none;
    border-radius:24px;
    display:block;
}

/* Desktop = 2 videos */
@media (min-width:768px){

    .video-slide{
        flex:0 0 50%;
    }

    .video-slide iframe{
        height:350px;
    }

}

.video-arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:48px;
    height:48px;
    border:none;
    border-radius:50%;
    background:#f7d528;
    color:#000;
    cursor:pointer;
    z-index:10;
    display:flex;
    align-items:center;
    justify-content:center;
}

.video-prev{
    left:-24px;
}

.video-next{
    right:-24px;
}

.video-arrow i{
    font-size:22px;
}

@media (max-width:767px){

    .video-prev{
        left:5px;
    }

    .video-next{
        right:5px;
    }

}
/* play button */

.custom-play-btn{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%, -50%);
    width:90px;
    height:90px;
    border-radius:50%;
    background:#FFD700; /* Yellow */
    display:flex;
    align-items:center;
    justify-content:center;
    z-index:10;
    box-shadow:0 10px 30px rgba(0,0,0,.3);
}

.custom-play-btn i{
    font-size:38px;
    color:#001B44; /* Navy Blue */
    margin-left:4px;
}

.custom-play-btn::before{
    content:'';
    position:absolute;
    inset:-10px;
    border-radius:50%;
    border:2px solid rgba(255,215,0,.5);
}
