:root {
  --navy: #0a1628;
  --deep-blue: #0d2240;
  --accent: #00b4d8;
  --accent2: #e76f51;
  --gold: #f4a261;
  --light-blue: #90e0ef;
  --white: #f8fafc;
  --muted: #94a3b8;
  --card-bg: #111f35;
  --border: rgba(0, 180, 216, 0.18);
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: var(--navy);
  color: var(--white);
  /* overflow-x: hidden; */
  overflow-x: clip; /* Modern CSS standard that strictly kills mobile elastic scrolling */
  position: relative;
}

/* ── TOP BAR ── */
/* =========================================
   RESPONSIVE TOPBAR + NAVIGATION
========================================= */

/* MOBILE MENU BUTTON */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

/* TOPBAR */
.topbar {
  background: var(--deep-blue);
  border-bottom: 1px solid var(--border);
  padding: 10px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
  font-family: "Space Mono", monospace;
  gap: 20px;
  flex-wrap: wrap;
}

.topbar span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar div {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.topbar a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: 0.3s;
}

.topbar a:hover {
  color: var(--light-blue);
}

/* NAVBAR */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(10, 22, 40, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 78px;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.logo-mark {
  display: flex;
  align-items: center;
}

.logo-mark img {
  width: 140px;
  margin-left: 0 !important;
  height: auto;
  transition: 0.3s;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: #38a8e0;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
  letter-spacing: 0.4px;
}

.nav-links a:hover {
  color: var(--accent);
}

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
  top: 130%;
  left: 0;
  background: #ffffff;
  min-width: 240px;
  padding: 12px 0;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.35s ease;
  z-index: 999;
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu li a {
  display: block;
  padding: 13px 22px;
  color: #222;
  font-size: 14px;
  font-weight: 500;
  transition: 0.3s;
}

.dropdown-menu li a:hover {
  background: rgba(0, 123, 255, 0.08);
  color: #007bff;
  padding-left: 28px;
}

/* SHOW DROPDOWN */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* REGISTER BUTTON */
.nav-cta {
  background: linear-gradient(135deg, var(--accent), #0077b6);
  color: #fff !important;
  padding: 11px 24px;
  border-radius: 10px;
  font-weight: 700 !important;
  transition: 0.3s !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-cta:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

/* COUNTDOWN */
.countdown-bar {
  background: #081424;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  text-align: center;
}

.countdown-label {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.countdown-timer {
  display: flex;
  align-items: center;
  gap: 14px;
}

.countdown-unit {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  min-width: 75px;
  padding: 10px 12px;
  text-align: center;
}

.countdown-num {
  display: block;
  color: #00d4ff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.countdown-unit span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.colon {
  color: #00d4ff;
  font-size: 24px;
  font-weight: bold;
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 991px) and (max-width: 480px) {
  /* nav {
    padding: 0 20px;
    height: 74px;
  }

  .logo-mark img {
    width: 70px !important;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: #081424;
    flex-direction: column;
    align-items: flex-start;
    padding: 110px 30px 40px;
    gap: 10px;
    transition: 0.4s ease;
    overflow-y: auto;
  } */

  /* Toggle Button Setup */
  .menu-toggle {
    display: flex !important;
    z-index: 10001;
  }

  /* Core Mobile Navigation Drawer */
  .nav-links {
    position: fixed !important;
    top: 74px !important;

    /* 1. Base the position on the edge of the screen */
    right: 0 !important;
    left: auto !important;

    width: 280px !important;
    max-width: 280px !important;
    min-width: 280px !important;
    height: calc(100vh - 74px) !important;

    /* 2. Hide it by pushing its layout 100% to the right via transform */
    transform: translateX(100%) !important;
    visibility: hidden !important;

    /* 3. Smooth transition using hardware-accelerated transform */
    transition:
      transform 0.35s ease-in-out,
      visibility 0.35s !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
    padding: 20px !important;
    margin: 0 !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    background: #021227 !important;
    z-index: 9999 !important;
    box-sizing: border-box !important;
  }

  /* 4. Slide back to neutral position when active */
  .nav-links.active {
    transform: translateX(0) !important;
    visibility: visible !important;
  }

  /* Structural block resets for list items */
  .nav-links li,
  .nav-links li:last-child {
    width: 100% !important;
    min-width: 0 !important;
  }

  .nav-links a,
  .nav-links li:last-child a {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 14px 0;
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  /* Mobile Dropdown Styling Reset */
  .dropdown-menu {
    position: static !important;
    width: 100% !important;
    min-width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none !important;
    box-shadow: none !important;
    background: rgba(255, 255, 255, 0.05) !important;
    margin-top: 8px;
    padding: 8px 0;
  }

  /* Display Dropdown when parent contains .active class */
  .dropdown.active .dropdown-menu {
    display: block !important;
  }

  .dropdown-menu li a {
    color: rgba(255, 255, 255, 0.75) !important;
    padding: 12px 18px !important;
    font-size: 14px !important;
    border-bottom: none !important;
  }

  .dropdown-menu li a:hover {
    color: #00d4ff !important;
    background: rgba(255, 255, 255, 0.04) !important;
    padding-left: 18px !important; /* Prevents shifting animation on mobile layout */
  }

  /* Component Layout Adjustments */
  nav {
    padding: 0 20px;
    height: 74px;
  }

  .logo-mark img {
    width: 70px !important;
  }

  .logo img {
    max-width: 180px;
    width: 100%;
    height: auto;
  }

  .nav-cta {
    margin-top: 12px;
    width: 100%;
    text-align: center;
  }

  nav .hero-badge {
    display: none !important;
  }

  .topbar {
    padding: 10px 18px;
    justify-content: center;
    text-align: center;
  }

  .topbar div {
    justify-content: center;
  }

  .countdown-bar {
    gap: 18px;
    padding: 18px;
  }

  .countdown-timer {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 576px) {
  .topbar {
    font-size: 11px;
    line-height: 1.6;
  }

  .topbar div {
    gap: 10px;
  }

  nav {
    padding: 0 16px;
  }

  .logo-mark img {
    width: 70px !important;
  }

  .countdown-bar {
    padding: 18px 12px;
  }

  .countdown-unit {
    min-width: 65px;
    padding: 10px;
  }

  .countdown-num {
    font-size: 22px;
  }

  .countdown-label {
    font-size: 12px;
  }

  .colon {
    display: none;
  }
}

/* =========================================
   BREADCRUMB SECTION
========================================= */

.breadcrumb-section {
  position: relative;
  padding: 55px 0 90px;
  overflow: hidden;
  background: linear-gradient(90deg, #03142d 0%, #071f45 45%, #0b1630 100%);
  border-top: 1px solid rgba(0, 191, 255, 0.15);
  border-bottom: 1px solid rgba(0, 191, 255, 0.12);
}

/* =========================================
   BACKGROUND OVERLAY
========================================= */

.breadcrumb-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(0, 212, 255, 0.08),
    transparent 35%
  );
}

/* =========================================
   FLOATING GLOW SHAPES
========================================= */

.breadcrumb-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  z-index: 0;
  pointer-events: none;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(0, 212, 255, 0.12);
  top: -100px;
  right: -50px;
}

.shape-2 {
  width: 250px;
  height: 250px;
  background: rgba(255, 102, 0, 0.08);
  bottom: -120px;
  left: -70px;
}

.shape-3 {
  width: 180px;
  height: 180px;
  background: rgba(0, 255, 200, 0.08);
  top: 40%;
  left: 35%;
}

/* =========================================
   LAYOUT
========================================= */

.breadcrumb-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
}

/* =========================================
   LEFT SIDE
========================================= */

.breadcrumb-left {
  flex: 1;
  min-width: 280px;
}

.breadcrumb-subtitle {
  display: inline-block;
  color: #00cfff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 15px;
  text-transform: uppercase;
  line-height: 1.5;
}

.breadcrumb-left h1 {
  color: #fff;
  font-size: 56px;
  line-height: 1.1;
  margin-bottom: 18px;
  font-weight: 700;
  word-break: break-word;
}

/* =========================================
   BREADCRUMB NAVIGATION
========================================= */

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.breadcrumb-nav li {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
}

.breadcrumb-nav li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: 0.3s ease;
}

.breadcrumb-nav li a:hover,
.breadcrumb-nav .active {
  color: #00cfff;
}

/* =========================================
   RIGHT SIDE VISUAL
========================================= */

.breadcrumb-visual {
  position: relative;
  width: 320px;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* =========================================
   MAIN ORBIT
========================================= */

.banner_img {
  width: 86% !important;
  height: 90% !important;
  z-index: 1;
  margin-bottom: 10px;
  margin-left: 75px;
  margin-top: -15px;
}

.medical-orbit {
  position: relative;
  width: 280px;
  height: 280px;
  animation: rotateMain 18s linear infinite;
}

/* =========================================
   CENTER CORE
========================================= */

.center-core {
  position: absolute;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: linear-gradient(135deg, #00cfff, #0066ff);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 35px rgba(0, 207, 255, 0.5);
  animation: floatY 4s ease-in-out infinite;
}

.center-core img {
  width: 60%;
  object-fit: contain;
}

/* =========================================
   ORBIT RINGS
========================================= */

.orbit {
  position: absolute;
  border: 1px solid rgba(0, 207, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.orbit-1 {
  width: 160px;
  height: 160px;
}

.orbit-2 {
  width: 220px;
  height: 220px;
}

.orbit-3 {
  width: 280px;
  height: 280px;
}

/* =========================================
   FLOATING ICONS
========================================= */

.floating-icon {
  position: absolute;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(0, 207, 255, 0.18);
  backdrop-filter: blur(12px);

  display: flex;
  align-items: center;
  justify-content: center;

  color: #00cfff;
  font-size: 22px;

  box-shadow: 0 0 20px rgba(0, 207, 255, 0.08);
}

/* =========================================
   ICON POSITIONS
========================================= */

.icon-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.icon-2 {
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.icon-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.icon-4 {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* =========================================
   ANIMATIONS
========================================= */

@keyframes rotateMain {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatY {
  0% {
    transform: translate(-50%, -50%) translateY(0px);
  }

  50% {
    transform: translate(-50%, -50%) translateY(-12px);
  }

  100% {
    transform: translate(-50%, -50%) translateY(0px);
  }
}

/* =========================================
   LARGE LAPTOPS
========================================= */

@media (max-width: 1200px) {
  .breadcrumb-left h1 {
    font-size: 48px;
  }

  .breadcrumb-visual {
    width: 290px;
    height: 290px;
  }

  .medical-orbit {
    width: 250px;
    height: 250px;
  }
}

/* =========================================
   TABLETS
========================================= */

@media (max-width: 991px) {
  .breadcrumb-section {
    padding: 100px 0 80px;
  }

  .breadcrumb-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .breadcrumb-left {
    width: 100%;
  }

  .breadcrumb-left h1 {
    font-size: 42px;
  }

  .breadcrumb-visual {
    width: 260px;
    height: 260px;
    margin: 0 auto;
  }

  .medical-orbit {
    width: 230px;
    height: 230px;
  }

  .center-core {
    width: 95px;
    height: 95px;
  }

  .floating-icon {
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .orbit-1 {
    width: 140px;
    height: 140px;
  }

  .orbit-2 {
    width: 190px;
    height: 190px;
  }

  .orbit-3 {
    width: 230px;
    height: 230px;
  }
}

/* =========================================
   MOBILE DEVICES
========================================= */

@media (max-width: 767px) {
  .breadcrumb-section {
    padding: 90px 0 70px;
  }

  .breadcrumb-content {
    gap: 32px;
  }

  .breadcrumb-subtitle {
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  .breadcrumb-left h1 {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .breadcrumb-nav {
    gap: 8px;
  }

  .breadcrumb-nav li {
    font-size: 13px;
  }

  .breadcrumb-visual {
    width: 220px;
    height: 220px;
  }

  .medical-orbit {
    width: 200px;
    height: 200px;
  }

  .center-core {
    width: 80px;
    height: 80px;
  }

  .floating-icon {
    width: 46px;
    height: 46px;
    font-size: 18px;
  }

  .orbit-1 {
    width: 120px;
    height: 120px;
  }

  .orbit-2 {
    width: 165px;
    height: 165px;
  }

  .orbit-3 {
    width: 200px;
    height: 200px;
  }

  .shape-1 {
    width: 180px;
    height: 180px;
  }

  .shape-2 {
    width: 160px;
    height: 160px;
  }

  .shape-3 {
    width: 120px;
    height: 120px;
  }
}

/* =========================================
   SMALL MOBILE DEVICES
========================================= */

@media (max-width: 480px) {
  .breadcrumb-section {
    padding: 80px 10px 60px;
  }

  .breadcrumb-left h1 {
    font-size: 28px;
  }

  .breadcrumb-subtitle {
    font-size: 11px;
  }

  .breadcrumb-nav li {
    font-size: 12px;
  }

  .breadcrumb-visual {
    width: 190px;
    height: 190px;
  }

  .medical-orbit {
    width: 170px;
    height: 170px;
  }

  .center-core {
    width: 68px;
    height: 68px;
  }

  .floating-icon {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .orbit-1 {
    width: 100px;
    height: 100px;
  }

  .orbit-2 {
    width: 140px;
    height: 140px;
  }

  .orbit-3 {
    width: 170px;
    height: 170px;
  }
}

/* ── HERO ── */
/* =========================================
   HERO SECTION RESPONSIVE DESIGN
========================================= */

/* .hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 80px 80px;
  background-image: url(/assets/img/Banner1.png);
} */

/* BACKGROUND */
/* .hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, #0d3a6a 0%, #0a1628 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, #001529 0%, transparent 70%);
} */

/* .hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.35;
} */

/* MOLECULE SVG */
/* .hero-molecules {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 650px;
  height: 650px;
  opacity: 0.08;
  animation: floatMolecule 10s ease-in-out infinite;
} */

/* @keyframes floatMolecule {
  0%,
  100% {
    transform: translateY(-50%) rotate(0deg);
  }
  50% {
    transform: translateY(-53%) rotate(3deg);
  }
} */

/* CONTENT */
/* .hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: -97px;
} */

.hero {
  position: relative;
  padding: 0;
}

.hero-banner-img {
  width: 100%;
  display: block;
}

.hero-overlay-content {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

/* BADGE */
.hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid var(--accent);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeUp 0.8s ease both;
  backdrop-filter: blur(10px);
  width: fit-content;
}

/* BADGE */
nav .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid var(--accent);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 22px;
  animation: fadeUp 0.8s ease both;
  backdrop-filter: blur(10px);
  width: fit-content;
  margin-left: -2rem;
  margin-top: 25px;
}

.pulse {
  width: 15px;
  height: 15px;
  background: #00d88f;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 6vw, 28px);
  font-weight: 900;
  line-height: 1.08;
  margin-top: -18px;
  margin-bottom: 22px;
  color: #fff;
  animation: fadeUp 0.8s 0.1s ease both;
  max-width: 900px;
  /* text-align: center; */
  margin-left: 68px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero .hero-badge {
    font-size: 10px;
    padding: 7px 16px;
    letter-spacing: 1px;
    margin-bottom: 18px;
  }

  nav .hero-badge {
    font-size: 10px;
    padding: 7px 16px;
    letter-spacing: 1px;
    margin-bottom: 6px;
    margin-left: -10rem;
  }

  .hero h1 {
    line-height: 1.15;
  }
}

/* PULSE */
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 180, 216, 0.6);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(0, 180, 216, 0);
  }
}

.hero h1 span {
  color: #d22e43;
  display: inline-block;
  font-size: 57px;
}

/* THEME */
.hero-theme {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.2s ease both;
  line-height: 1.5;
}

/* PARAGRAPH */
.hero p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
  max-width: 640px;
  margin-bottom: 38px;
  animation: fadeUp 0.8s 0.3s ease both;
}

/* META */
.hero-meta {
  display: flex;
  gap: 24px;
  margin-bottom: 42px;
  animation: fadeUp 0.8s 0.4s ease both;
  flex-wrap: wrap;
}

.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 18px;
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.hero-meta-item .icon {
  width: 48px;
  height: 48px;
  background: rgba(0, 180, 216, 0.12);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.hero-meta-item strong {
  display: block;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 2px;
}

.hero-meta-item span {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* BUTTONS */
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.5s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #0077b6);
  color: #fff;
  padding: 15px 34px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 4px 24px rgba(0, 180, 216, 0.3);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0, 180, 216, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 34px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-outline:hover {
  border-color: var(--accent);
  background: rgba(0, 180, 216, 0.08);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   LARGE TABLET
========================================= */

@media (max-width: 1200px) {
  .hero {
    padding: 120px 40px 80px;
  }

  .hero-molecules {
    width: 500px;
    height: 500px;
    right: -120px;
  }
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 110px 30px 70px;
    text-align: center;
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
    margin-top: -60px;
  }

  .hero h1 {
    font-size: clamp(34px, 7vw, 58px);
    line-height: 1.15;
  }

  .hero-theme {
    font-size: 20px;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
    font-size: 16px;
  }

  .hero-meta {
    justify-content: center;
    gap: 18px;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-molecules {
    width: 420px;
    height: 420px;
    opacity: 0.05;
    right: 50%;
    transform: translate(50%, -50%);
  }
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {
  .hero {
    padding: 90px 20px 60px;
  }

  .hero .hero-badge {
    font-size: 10px;
    letter-spacing: 1px;
    padding: 7px 16px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero h1 span {
    font-size: 22px;
  }

  .hero-theme {
    font-size: 18px;
    margin-bottom: 18px;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 30px;
  }

  .hero-meta {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .hero-meta-item {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    padding: 15px 20px;
  }

  .hero-molecules {
    width: 320px;
    height: 320px;
    opacity: 0.04;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .hero {
    padding: 80px 16px 50px;
  }

  .hero h1 {
    font-size: 18px;
    text-align: left;
  }

  .hero-theme {
    font-size: 16px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero-meta-item {
    padding: 12px 14px;
    gap: 10px;
  }

  .hero-meta-item .icon {
    width: 42px;
    height: 42px;
    font-size: 18px;
  }

  .hero-meta-item strong {
    font-size: 14px;
  }

  .hero-meta-item span {
    font-size: 11px;
  }

  .btn-primary,
  .btn-outline {
    font-size: 14px;
    border-radius: 10px;
  }

  .hero-molecules {
    width: 250px;
    height: 250px;
  }
}

/* ── STATS BAR ── */
/* =========================================
   STATS BAR
========================================= */

.stats-bar {
  background: var(--card-bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  flex-wrap: wrap;
}

/* SINGLE STAT */
.stat-item {
  flex: 1;
  min-width: 220px;
  max-width: 260px;
  text-align: center;
  padding: 10px 32px;
  border-right: 1px solid var(--border);
  transition: 0.3s ease;
}

.stat-item:last-child {
  border-right: none;
}

/* HOVER EFFECT */
.stat-item:hover {
  transform: translateY(-4px);
}

/* NUMBER */
.stat-num {
  font-family: "Playfair Display", serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

/* LABEL */
.stat-label {
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.6;
}

/* =========================================
   TABLET RESPONSIVE
========================================= */

@media (max-width: 991px) {
  .stats-bar {
    padding: 35px 25px;
    justify-content: center;
    gap: 25px 0;
  }

  .stat-item {
    min-width: 45%;
    max-width: 50%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 25px 20px;
  }

  .stat-item:nth-last-child(-n + 2) {
    border-bottom: none;
  }
}

/* =========================================
   MOBILE RESPONSIVE
========================================= */

@media (max-width: 767px) {
  .stats-bar {
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
  }

  .stat-item {
    width: 100%;
    max-width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 24px 10px;
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .stat-num {
    font-size: 38px;
  }

  .stat-label {
    font-size: 12px;
    letter-spacing: 1px;
  }
}

/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {
  .stats-bar {
    padding: 20px 15px;
  }

  .stat-item {
    padding: 22px 8px;
  }

  .stat-num {
    font-size: 32px;
  }

  .stat-label {
    font-size: 11px;
    line-height: 1.5;
  }
}

/* ── SECTION COMMONS ── */
/* ─────────────────────────────
   SECTION COMMONS
───────────────────────────── */
section {
  padding: 30px 40px;
}

.section-label {
  font-family: "Space Mono", monospace;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-sub {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
  max-width: 580px;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-sub {
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* ─────────────────────────────
   ABOUT SECTION
───────────────────────────── */
.about-section {
  background: var(--deep-blue);
  overflow: hidden;
}

.about-grid {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 80px;
  align-items: center;
}

/* ─────────────────────────────
   CONFERENCE CHAIR SECTION
───────────────────────────── */
.chair-section {
  background: var(--deep-blue);
  overflow: hidden;
}

.chair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* ─────────────────────────────
   CONFERENCE C0-CHAIR SECTION
───────────────────────────── */
.co-chair-section {
  background: var(--deep-blue);
  overflow: hidden;
}

.co-chair-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

@media (max-width: 767px) {
  .chair-grid {
    grid-template-columns: none;
  }
  .co-chair-grid {
    grid-template-columns: none;
  }
}

/* ─────────────────────────────
   PROFILE CARD
───────────────────────────── */
.profile-card {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(12px);
  overflow: hidden;
  min-height: auto;
  height: auto;
}

.about-section .hero-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--accent);
  color: #fff;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-family: "Space Mono", monospace;
  letter-spacing: 1px;
  font-weight: 700;
}

.profile-img {
  width: 220px;
  height: 220px;
  margin: 0 auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}

/* .profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.profile-content h3 {
  font-size: 32px;
  margin-bottom: 12px;
  color: #fff;
  line-height: 1.3;
}

.profile-deg {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
}

.profile-desc {
  color: var(--muted);
  line-height: 1.9;
  font-size: 15px;
}

/* ─────────────────────────────
   FEATURES
───────────────────────────── */
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.feature-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 180, 216, 0.06);
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  transition: 0.3s ease;
}

.feature-chip:hover {
  transform: translateY(-3px);
  background: rgba(0, 180, 216, 0.12);
}

.feature-chip .emoji {
  font-size: 18px;
  flex-shrink: 0;
}

/* ─────────────────────────────
   LARGE LAPTOPS
───────────────────────────── */
@media (max-width: 1200px) {
  .about-grid {
    gap: 60px;
  }

  .profile-content h3 {
    font-size: 28px;
  }
}

/* ─────────────────────────────
   TABLETS
───────────────────────────── */
@media (max-width: 991px) {
  section {
    padding: 80px 25px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .profile-card {
    max-width: 650px;
    margin: 0 auto;
  }

  .section-title {
    font-size: 40px;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }

  .profile-img {
    width: 200px;
    height: 200px;
  }
}

/* ─────────────────────────────
   MOBILE DEVICES
───────────────────────────── */
@media (max-width: 767px) {
  section {
    padding: 70px 18px;
  }

  .section-label {
    font-size: 10px;
    letter-spacing: 3px;
  }

  .section-title {
    font-size: 32px;
    line-height: 1.3;
  }

  .profile-card {
    padding: 35px 22px;
    border-radius: 22px;
  }

  .about-section .hero-badge {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin-bottom: 20px;
  }

  .profile-img {
    width: 170px;
    height: 170px;
    margin-bottom: 22px;
  }

  .profile-content h3 {
    font-size: 24px;
  }

  .profile-deg {
    font-size: 13px;
  }

  .profile-desc {
    font-size: 14px;
    line-height: 1.8;
  }

  .about-features {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-chip {
    font-size: 13px;
    padding: 13px 15px;
  }

  .feature-chip .emoji {
    font-size: 16px;
  }
}

/* ─────────────────────────────
   SMALL MOBILE DEVICES
───────────────────────────── */
@media (max-width: 480px) {
  section {
    padding: 60px 14px;
  }

  .section-title {
    font-size: 28px;
  }

  .profile-card {
    padding: 28px 18px;
  }

  .profile-img {
    width: 145px;
    height: 145px;
  }

  .profile-content h3 {
    font-size: 22px;
  }

  .profile-deg {
    font-size: 12px;
    line-height: 1.7;
  }

  .profile-desc {
    font-size: 13px;
  }

  .feature-chip {
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 12px;
  }
}

/* ── THEMES ── */
/* ─────────────────────────────
   THEMES SECTION
───────────────────────────── */

.themes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.theme-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
  cursor: default;
  height: 100%;
}

.theme-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0, 180, 216, 0.15);
}

.theme-icon {
  font-size: 36px;
  margin-bottom: 16px;
  line-height: 1;
}

.theme-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.4;
  color: #fff;
}

.theme-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

.theme-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag {
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid rgba(0, 180, 216, 0.2);
  color: var(--accent);
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 50px;
  font-family: "Space Mono", monospace;
  white-space: nowrap;
}

/* ─────────────────────────────
   LARGE LAPTOPS
───────────────────────────── */
@media (max-width: 1200px) {
  .themes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ─────────────────────────────
   TABLETS
───────────────────────────── */
@media (max-width: 991px) {
  .themes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .theme-card {
    padding: 24px 20px;
  }

  .theme-card h3 {
    font-size: 18px;
  }

  .theme-card p {
    font-size: 13px;
  }
}

/* ─────────────────────────────
   MOBILE DEVICES
───────────────────────────── */
@media (max-width: 767px) {
  .themes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .theme-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .theme-icon {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .theme-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
  }

  .theme-card p {
    font-size: 13px;
    line-height: 1.65;
  }

  .theme-tags {
    gap: 6px;
    margin-top: 14px;
  }

  .tag {
    font-size: 10px;
    padding: 4px 10px;
  }
}

/* ─────────────────────────────
   SMALL MOBILE DEVICES
───────────────────────────── */
@media (max-width: 480px) {
  .theme-card {
    padding: 20px 16px;
  }

  .theme-icon {
    font-size: 28px;
  }

  .theme-card h3 {
    font-size: 16px;
  }

  .theme-card p {
    font-size: 12px;
  }

  .tag {
    font-size: 9px;
    padding: 4px 8px;
  }
}
/* ─────────────────────────────
   AGENDA SECTION
───────────────────────────── */

.agenda-section {
  background: var(--deep-blue);
  overflow: hidden;
}

/* ─────────────────────────────
   TABS
───────────────────────────── */

.agenda-tabs {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.agenda-tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.agenda-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.agenda-tab:not(.active):hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ─────────────────────────────
   PANELS
───────────────────────────── */

.agenda-panel {
  display: none;
}

.agenda-panel.active {
  display: block;
}

/* ─────────────────────────────
   DAY HEADER
───────────────────────────── */

.agenda-day-header {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 32px;
  margin-bottom: 24px;
}

.day-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.day-title-area h3 {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  margin-bottom: 4px;
  line-height: 1.3;
  color: #fff;
}

.day-title-area p {
  color: var(--accent);
  font-size: 14px;
  font-family: "Space Mono", monospace;
}

/* ─────────────────────────────
   PLENARY
───────────────────────────── */

.agenda-plenary {
  background: linear-gradient(
    135deg,
    rgba(0, 180, 216, 0.12),
    rgba(231, 111, 81, 0.08)
  );
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 14px;
  padding: 22px 28px;
  margin-bottom: 20px;
}

.plenary-label {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.agenda-plenary h4 {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  margin-bottom: 12px;
  line-height: 1.4;
  color: #fff;
}

.plenary-topics {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ─────────────────────────────
   SESSION GRID
───────────────────────────── */

.sessions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.session-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  transition:
    border-color 0.25s ease,
    transform 0.25s ease;
  height: 100%;
}

.session-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.session-label {
  font-family: "Space Mono", monospace;
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.session-card h4 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  margin-bottom: 14px;
  line-height: 1.5;
  color: #fff;
}

.session-topics {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.session-topics li {
  font-size: 13px;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.6;
}

.session-topics li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 12px;
}

/* ─────────────────────────────
   POSTER BAR
───────────────────────────── */

.poster-bar {
  background: rgba(244, 162, 97, 0.08);
  border: 1px solid rgba(244, 162, 97, 0.25);
  border-radius: 12px;
  padding: 18px 24px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  line-height: 1.6;
}

/* ─────────────────────────────
   LARGE LAPTOPS
───────────────────────────── */

@media (max-width: 1200px) {
  .sessions-grid {
    gap: 18px;
  }
}

/* ─────────────────────────────
   TABLETS
───────────────────────────── */

@media (max-width: 991px) {
  .agenda-tabs {
    gap: 10px;
  }

  .agenda-tab {
    padding: 11px 22px;
    font-size: 13px;
  }

  .agenda-day-header {
    padding: 24px;
  }

  .day-title-area h3 {
    font-size: 24px;
  }

  .sessions-grid {
    grid-template-columns: 1fr;
  }

  .agenda-plenary {
    padding: 20px 22px;
  }

  .session-card {
    padding: 20px;
  }

  .poster-bar {
    padding: 16px 20px;
  }
}

/* ─────────────────────────────
   MOBILE DEVICES
───────────────────────────── */

@media (max-width: 767px) {
  .agenda-tabs {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 6px;
    scrollbar-width: none;
  }

  .agenda-tabs::-webkit-scrollbar {
    display: none;
  }

  .agenda-tab {
    flex-shrink: 0;
    padding: 10px 18px;
    font-size: 12px;
    border-radius: 8px;
  }

  .agenda-day-header {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
    padding: 20px;
  }

  .day-icon {
    font-size: 40px;
  }

  .day-title-area h3 {
    font-size: 22px;
  }

  .day-title-area p {
    font-size: 12px;
  }

  .agenda-plenary {
    padding: 18px;
    border-radius: 12px;
  }

  .agenda-plenary h4 {
    font-size: 18px;
  }

  .plenary-label {
    font-size: 9px;
    letter-spacing: 2px;
  }

  .session-card {
    padding: 18px;
    border-radius: 12px;
  }

  .session-card h4 {
    font-size: 16px;
  }

  .session-topics li {
    font-size: 12px;
    line-height: 1.6;
  }

  .poster-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 18px;
    font-size: 13px;
  }
}

/* ─────────────────────────────
   SMALL MOBILE DEVICES
───────────────────────────── */

@media (max-width: 480px) {
  .agenda-tab {
    padding: 9px 16px;
    font-size: 11px;
  }

  .agenda-day-header {
    padding: 18px 16px;
  }

  .day-title-area h3 {
    font-size: 20px;
  }

  .agenda-plenary {
    padding: 16px;
  }

  .agenda-plenary h4 {
    font-size: 17px;
  }

  .session-card {
    padding: 16px;
  }

  .session-card h4 {
    font-size: 15px;
  }

  .session-topics li {
    font-size: 11px;
  }

  .poster-bar {
    padding: 14px 16px;
    font-size: 12px;
  }
}

/* ── AUDIENCE ── */
/* ─────────────────────────────
   AUDIENCE SECTION
───────────────────────────── */

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.audience-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
  height: 100%;
}

.audience-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.audience-icon {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 1;
}

.audience-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.4;
}

.audience-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* ─────────────────────────────
   LARGE LAPTOPS
───────────────────────────── */

@media (max-width: 1200px) {
  .audience-grid {
    gap: 20px;
  }

  .audience-card {
    padding: 28px 24px;
  }
}

/* ─────────────────────────────
   TABLETS
───────────────────────────── */

@media (max-width: 991px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .audience-card {
    padding: 26px 22px;
  }

  .audience-icon {
    font-size: 36px;
  }

  .audience-card h3 {
    font-size: 17px;
  }

  .audience-card p {
    font-size: 13px;
  }
}

/* ─────────────────────────────
   MOBILE DEVICES
───────────────────────────── */

@media (max-width: 767px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audience-card {
    padding: 22px 18px;
    border-radius: 14px;
  }

  .audience-icon {
    font-size: 32px;
    margin-bottom: 14px;
  }

  .audience-card h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .audience-card p {
    font-size: 13px;
    line-height: 1.65;
  }
}

/* ─────────────────────────────
   SMALL MOBILE DEVICES
───────────────────────────── */

@media (max-width: 480px) {
  .audience-card {
    padding: 20px 16px;
  }

  .audience-icon {
    font-size: 28px;
  }

  .audience-card h3 {
    font-size: 15px;
  }

  .audience-card p {
    font-size: 12px;
  }
}

/* ─────────────────────────────
   VENUE SECTION
───────────────────────────── */

.venue-section {
  background: var(--deep-blue);
  overflow: hidden;
}

.venue-grid {
  display: grid;
  /* grid-template-columns: 1fr 1fr; */
  gap: 60px;
  align-items: center;
}

/* ─────────────────────────────
   VENUE INFO
───────────────────────────── */

.venue-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1.3;
  color: var(--white);
}

.venue-info .univ {
  color: var(--accent);
  font-family: "Space Mono", monospace;
  font-size: 13px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.venue-info p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 28px;
}

/* ─────────────────────────────
   VENUE DETAILS
───────────────────────────── */

.venue-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.venue-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.venue-detail .icon-box {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.venue-detail strong {
  display: block;
  font-size: 14px;
  color: var(--white);
  margin-bottom: 3px;
  line-height: 1.4;
}

.venue-detail span {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ─────────────────────────────
   VENUE MAP
───────────────────────────── */

.venue-map {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  height: 420px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-placeholder {
  text-align: center;
  color: var(--muted);
  position: relative;
  z-index: 2;
}

.map-placeholder .big-icon {
  font-size: 64px;
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.map-placeholder h4 {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.map-placeholder p {
  font-size: 14px;
  line-height: 1.7;
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 180, 216, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 180, 216, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
}

.map-content {
  position: relative;
  z-index: 1;
  padding: 32px;
}

/* ─────────────────────────────
   LARGE LAPTOPS
───────────────────────────── */

@media (max-width: 1200px) {
  .venue-grid {
    gap: 45px;
  }

  .venue-info h3 {
    font-size: 30px;
  }
}

/* ─────────────────────────────
   TABLETS
───────────────────────────── */

@media (max-width: 991px) {
  .venue-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .venue-info h3 {
    font-size: 28px;
  }

  .venue-map {
    height: 360px;
  }

  .map-content {
    padding: 24px;
  }
}

/* ─────────────────────────────
   MOBILE DEVICES
───────────────────────────── */

@media (max-width: 767px) {
  .venue-grid {
    gap: 32px;
  }

  .venue-info h3 {
    font-size: 24px;
  }

  .venue-info .univ {
    font-size: 12px;
    margin-bottom: 18px;
  }

  .venue-info p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 24px;
  }

  .venue-details {
    gap: 14px;
  }

  .venue-detail {
    gap: 12px;
  }

  .venue-detail .icon-box {
    width: 38px;
    height: 38px;
    font-size: 16px;
    border-radius: 8px;
  }

  .venue-detail strong {
    font-size: 13px;
  }

  .venue-detail span {
    font-size: 12px;
  }

  .venue-map {
    height: 300px;
    border-radius: 16px;
  }

  .map-placeholder .big-icon {
    font-size: 52px;
    margin-bottom: 12px;
  }

  .map-placeholder h4 {
    font-size: 20px;
  }

  .map-placeholder p {
    font-size: 13px;
  }

  .map-grid {
    background-size: 24px 24px;
  }

  .map-content {
    padding: 20px;
  }
}

/* ─────────────────────────────
   SMALL MOBILE DEVICES
───────────────────────────── */

@media (max-width: 480px) {
  .venue-info h3 {
    font-size: 22px;
  }

  .venue-info p {
    font-size: 13px;
  }

  .venue-detail .icon-box {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }

  .venue-detail strong {
    font-size: 12px;
  }

  .venue-detail span {
    font-size: 11px;
  }

  .venue-map {
    height: 260px;
  }

  .map-placeholder .big-icon {
    font-size: 42px;
  }

  .map-placeholder h4 {
    font-size: 18px;
  }

  .map-placeholder p {
    font-size: 12px;
  }

  .map-content {
    padding: 16px;
  }
}

/* ── REGISTER ── */
/* ─────────────────────────────
   REGISTER SECTION
───────────────────────────── */

.register-section {
  background: linear-gradient(135deg, #0d2240 0%, #001020 50%, #0a1628 100%);
  position: relative;
  overflow: hidden;
}

.register-section::before {
  content: "PROMEDICON";
  position: absolute;
  font-family: "Playfair Display", serif;
  font-size: 200px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  left: -20px;
  bottom: -40px;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

/* ─────────────────────────────
   INNER CONTENT
───────────────────────────── */

.register-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* .register-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1.2;
  color: #fff;
} */

.register-inner p {
  color: var(--muted);
  font-size: 17px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ─────────────────────────────
   FORM
───────────────────────────── */

.register-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  text-align: left;
  backdrop-filter: blur(10px);
}

/* ─────────────────────────────
   FORM GRID
───────────────────────────── */

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

/* ─────────────────────────────
   LABELS
───────────────────────────── */

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.5;
}

/* ─────────────────────────────
   INPUTS
───────────────────────────── */

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  width: 100%;
  transition:
    border-color 0.25s ease,
    background 0.25s ease;
  outline: none;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.form-group select option {
  background: var(--navy);
}

/* ─────────────────────────────
    CAPTCHA 
───────────────────────────── */

.captcha-group {
  margin-top: 15px;
}

.captcha-box {
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #f5f7fb;

  border: 2px solid #e5e9f2;

  padding: 15px;

  border-radius: 10px;

  margin-bottom: 10px;
}

#captchaQuestion {
  font-size: 20px;
  font-weight: 700;
  color: #0d2240;
}

#refreshCaptcha {
  width: 40px;
  height: 40px;

  border: none;

  background: #0d2240;

  color: white;

  border-radius: 50%;

  cursor: pointer;
}

#captchaAnswer {
  width: 100%;
  padding: 14px;

  border: 1px solid #ddd;

  border-radius: 8px;
}

#captchaError {
  display: block;
  margin-top: 5px;

  color: red;

  font-size: 13px;
}

/* ─────────────────────────────
   BUTTON
───────────────────────────── */

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), #0077b6);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  margin-top: 8px;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
  box-shadow: 0 4px 24px rgba(0, 180, 216, 0.3);
}

.submit-btn:hover {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 180, 216, 0.35);
}

/* ─────────────────────────────
   LARGE LAPTOPS
───────────────────────────── */

@media (max-width: 1200px) {
  .register-inner h2 {
    font-size: 42px;
  }

  .register-section::before {
    font-size: 160px;
  }
}

/* ─────────────────────────────
   TABLETS
───────────────────────────── */

@media (max-width: 991px) {
  .register-inner {
    max-width: 100%;
  }

  .register-inner h2 {
    font-size: 38px;
  }

  .register-inner p {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .register-form {
    padding: 32px 28px;
  }

  .form-row {
    gap: 16px;
  }

  .register-section::before {
    font-size: 120px;
    bottom: -20px;
  }
}

/* ─────────────────────────────
   MOBILE DEVICES
───────────────────────────── */

@media (max-width: 767px) {
  .register-inner h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .register-inner p {
    font-size: 14px;
    line-height: 1.75;
    margin-bottom: 28px;
  }

  .register-form {
    padding: 24px 20px;
    border-radius: 16px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 16px;
  }

  .form-group.full {
    grid-column: auto;
  }

  .form-group label {
    font-size: 12px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 13px;
    padding: 12px 14px;
    border-radius: 8px;
  }

  .submit-btn {
    padding: 14px;
    font-size: 15px;
    border-radius: 10px;
  }

  .register-section::before {
    font-size: 80px;
    left: -10px;
    bottom: 0;
  }
}

/* ─────────────────────────────
   SMALL MOBILE DEVICES
───────────────────────────── */

@media (max-width: 480px) {
  .register-inner h2 {
    font-size: 28px;
  }

  .register-inner p {
    font-size: 13px;
  }

  .register-form {
    padding: 20px 16px;
  }

  .form-group label {
    font-size: 11px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 12px;
    padding: 11px 12px;
  }

  .submit-btn {
    font-size: 14px;
    padding: 13px;
  }

  .register-section::before {
    font-size: 60px;
    bottom: 10px;
  }
}

/* ─────────────────────────────
   FOOTER
───────────────────────────── */

footer {
  background: #06101e;
  border-top: 1px solid var(--border);
  padding: 80px 40px 40px;
  overflow: hidden;
}

/* ─────────────────────────────
   FOOTER GRID
───────────────────────────── */

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-partners h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.partner-item {
  background: rgba(255, 255, 255, 0.04);
  padding: 15px;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 25px;
  transition: 0.3s;
}

.partner-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px);
}

.partner-item img {
  max-height: 65px;
  max-width: 180px;
  width: auto;
  margin-bottom: 12px;
  object-fit: contain;
}

.partner-item h5 {
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

.mt-4 {
  margin-top: 30px;
}

.footer-secretariat h4 {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.secretariat-box {
  padding: 16px 18px;

  background: rgba(255, 255, 255, 0.04);

  border-radius: 12px;

  margin-bottom: 15px;

  transition: 0.3s;

  border-left: 3px solid rgba(255, 255, 255, 0.15);
}

.secretariat-box:hover {
  background: rgba(255, 255, 255, 0.07);

  border-left: 3px solid #4da3ff;
}

.secretariat-box h5 {
  color: #ffffff;

  font-size: 15px;

  font-weight: 700;

  margin-bottom: 10px;
}

.secretariat-box p {
  margin-bottom: 8px;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.7;
}

.secretariat-box a {
  margin-bottom: 8px;

  color: var(--muted);

  font-size: 13px;

  line-height: 1.7;
}

.secretariat-box strong {
  color: #ffffff;

  font-weight: 600;
}

/* ─────────────────────────────
   BRAND
───────────────────────────── */

.footer-brand p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
  margin: 16px 0 24px;
  max-width: 280px;
}

/* ─────────────────────────────
   SOCIALS
───────────────────────────── */

.footer-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-btn {
  width: 38px;
  height: 38px;
  background: rgba(0, 180, 216, 0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 16px;
  text-decoration: none;
  transition:
    background 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}

.social-btn:hover {
  background: rgba(0, 180, 216, 0.2);
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* ─────────────────────────────
   FOOTER COLUMNS
───────────────────────────── */

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.5;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
}

.footer-col ul li {
  line-height: 1.5;
}

.footer-col ul a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s ease;
}

.footer-col ul a:hover {
  color: var(--accent);
}

/* ─────────────────────────────
   NEWSLETTER
───────────────────────────── */

.newsletter-input-wrap {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.newsletter-input-wrap input {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  outline: none;
  width: 100%;
}

.newsletter-input-wrap input:focus {
  border-color: var(--accent);
}

.newsletter-input-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.newsletter-input-wrap button {
  background: var(--accent);
  border: none;
  border-radius: 8px;
  padding: 11px 18px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  font-size: 13px;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
  white-space: nowrap;
}

.newsletter-input-wrap button:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* ─────────────────────────────
   FOOTER BOTTOM
───────────────────────────── */

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer-bottom a {
  color: var(--accent);
  text-decoration: none;
}

/* ─────────────────────────────
   LARGE LAPTOPS
───────────────────────────── */

@media (max-width: 1200px) {
  .footer-grid {
    gap: 40px;
  }
}

/* ─────────────────────────────
   TABLETS
───────────────────────────── */

@media (max-width: 991px) {
  footer {
    padding: 70px 25px 35px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 30px;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 12px;
  }
}

/* ─────────────────────────────
   MOBILE DEVICES
───────────────────────────── */

@media (max-width: 767px) {
  footer {
    padding: 60px 18px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .footer-col h4 {
    font-size: 13px;
    margin-bottom: 16px;
  }

  .footer-brand p {
    font-size: 13px;
    line-height: 1.75;
    margin: 14px 0 20px;
  }

  .footer-col ul {
    gap: 10px;
  }

  .footer-col ul a {
    font-size: 13px;
  }

  .social-btn {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }

  .newsletter-input-wrap {
    flex-direction: column;
    gap: 12px;
  }

  .newsletter-input-wrap input,
  .newsletter-input-wrap button {
    width: 100%;
  }

  .newsletter-input-wrap button {
    padding: 12px;
    font-size: 13px;
  }

  .footer-bottom {
    padding-top: 24px;
    font-size: 12px;
  }
}

/* ─────────────────────────────
   SMALL MOBILE DEVICES
───────────────────────────── */

@media (max-width: 480px) {
  footer {
    padding: 50px 14px 24px;
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-brand p {
    font-size: 12px;
  }

  .footer-col h4 {
    font-size: 12px;
  }

  .footer-col ul a {
    font-size: 12px;
  }

  .social-btn {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .newsletter-input-wrap input {
    font-size: 12px;
    padding: 10px 12px;
  }

  .newsletter-input-wrap button {
    font-size: 12px;
    padding: 10px 12px;
  }

  .footer-bottom {
    font-size: 11px;
    line-height: 1.6;
  }
}

/* ─────────────────────────────
   COUNTDOWN BAR
───────────────────────────── */

.countdown-bar {
  background: linear-gradient(
    90deg,
    rgba(0, 180, 216, 0.12),
    rgba(231, 111, 81, 0.08)
  );
  border-bottom: 1px solid var(--border);
  padding: 18px 40px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.countdown-label {
  font-size: 13px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.6;
}

.countdown-timer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.countdown-unit {
  text-align: center;
  min-width: 55px;
}

.countdown-num {
  font-family: "Space Mono", monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent);
  display: block;
  line-height: 1;
}

.countdown-unit span {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.colon {
  font-family: "Space Mono", monospace;
  font-size: 28px;
  color: var(--accent);
  align-self: flex-start;
  margin-top: 2px;
  line-height: 1;
}

/* ─────────────────────────────
   SVG MOLECULE
───────────────────────────── */

.mol-svg {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

/* ─────────────────────────────
   SCROLLBAR
───────────────────────────── */

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--navy);
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 6px;
}

/* ─────────────────────────────
   PROFILE CARD
───────────────────────────── */

.profile-card {
  background: linear-gradient(135deg, #001f3f, #0d3a6a);
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  max-width: 420px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.profile-card .hero-badge {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  background: #00b4d8;
  color: #fff;
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  z-index: 2;
}

.profile-img {
  width: 200px;
  height: 200px;
  margin: 28px auto 15px;
  border-radius: 10%;
  overflow: hidden;
  border: 3px solid #00b4d8;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-content h3 {
  color: #ffffff;
  font-size: 20px;
  margin-bottom: 8px;
  line-height: 1.4;
}

.profile-deg {
  color: #00b4d8;
  font-size: 13px;
  margin-bottom: 12px;
  line-height: 1.6;
}

.profile-desc {
  font-size: 13px;
  color: #cbd5e1;
  line-height: 1.7;
}

/* ─────────────────────────────
   LARGE LAPTOPS
───────────────────────────── */

@media (max-width: 1200px) {
  .countdown-bar {
    gap: 24px;
    padding: 16px 30px;
  }
}

/* ─────────────────────────────
   TABLETS
───────────────────────────── */

@media (max-width: 991px) {
  .countdown-bar {
    flex-direction: column;
    gap: 18px;
    padding: 18px 24px;
  }

  .countdown-timer {
    gap: 14px;
  }

  .countdown-num {
    font-size: 24px;
  }

  .colon {
    font-size: 24px;
  }

  .profile-card {
    max-width: 100%;
    padding: 24px 20px;
  }

  .profile-img {
    width: 180px;
    height: 180px;
  }

  .profile-content h3 {
    font-size: 19px;
  }
}

/* ─────────────────────────────
   MOBILE DEVICES
───────────────────────────── */

@media (max-width: 767px) {
  .countdown-bar {
    padding: 16px 18px;
    gap: 14px;
  }

  .countdown-label {
    font-size: 12px;
  }

  .countdown-timer {
    gap: 10px;
  }

  .countdown-unit {
    min-width: 45px;
  }

  .countdown-num {
    font-size: 20px;
  }

  .countdown-unit span {
    font-size: 9px;
    letter-spacing: 1px;
  }

  .colon {
    font-size: 20px;
    margin-top: 0;
  }

  .profile-card {
    border-radius: 14px;
    padding: 22px 16px;
  }

  .profile-card .hero-badge {
    font-size: 10px;
    padding: 5px 10px;
    top: 10px;
  }

  .profile-img {
    width: 150px;
    height: 150px;
    margin-top: 32px;
    border-width: 2px;
  }

  .profile-content h3 {
    font-size: 17px;
  }

  .profile-deg {
    font-size: 12px;
  }

  .profile-desc {
    font-size: 12px;
    line-height: 1.65;
  }
}

/* ─────────────────────────────
   SMALL MOBILE DEVICES
───────────────────────────── */

@media (max-width: 480px) {
  .countdown-bar {
    padding: 14px 12px;
  }

  .countdown-timer {
    gap: 8px;
  }

  .countdown-unit {
    min-width: 38px;
  }

  .countdown-num {
    font-size: 17px;
  }

  .countdown-unit span {
    font-size: 8px;
  }

  .colon {
    font-size: 17px;
  }

  .profile-card {
    padding: 20px 14px;
  }

  .profile-card .hero-badge {
    font-size: 9px;
    padding: 4px 9px;
  }

  .profile-img {
    width: 130px;
    height: 130px;
  }

  .profile-content h3 {
    font-size: 16px;
  }

  .profile-deg {
    font-size: 11px;
  }

  .profile-desc {
    font-size: 11px;
  }
}
