/* =====================================================================
   C CUBE STUDIO – casting.css (Fixed + Extended ~600+ lines)
   - Fixes hamburger showing as a single line
   - Keeps Bootstrap collapse working
   - Adds polished visuals + utilities you can actually use
   - Split into tidy sections with lots of comments so it's easy to edit
   ===================================================================== */

/* ---------------------------------------------------------------------
   0) ROOT + RESET
   --------------------------------------------------------------------- */
:root {
  /* Core palette */
  --bg-dark: #0a0a0a;
  --bg-dark-2: #141414;
  --bg-dark-3: #1b1b1b;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-2: rgba(255, 255, 255, 0.08);
  --glass: rgba(255, 255, 255, 0.06);
  --glass-strong: rgba(255, 255, 255, 0.12);
  --accent: #f0c040; /* Gold */
  --accent-2: #ffc75f; /* lighter */
  --accent-3: #ffb400; /* hover */
  --white: #ffffff;
  --muted: #aaa;
  --muted-2: #c9c9c9;
  --error: #ff4d4f;
  --success: #36d399;
  --warning: #ffb020;
  --info: #3abff8;

  /* Typography */
  --font-main: "Poppins", "Segoe UI", Tahoma, Arial, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas,
    "Liberation Mono", "Courier New", monospace;

  /* Radii + shadow */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 18px;
  --shadow-1: 0 6px 20px rgba(0, 0, 0, 0.35);
  --shadow-2: 0 10px 30px rgba(0, 0, 0, 0.45);
  --ring: 0 0 0 2px rgba(240, 192, 64, 0.4);

  /* Transitions */
  --fast: 120ms ease;
  --ease: 240ms ease;
  --slow: 420ms ease;
}

/* Global reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-main);
  background: var(--bg-dark);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img,
video {
  max-width: 100%;
  height: auto;
}
img {
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ease);
}
a:hover {
  color: var(--accent);
}
:focus-visible {
  outline: none;
  box-shadow: var(--ring);
  border-radius: 8px;
}

/* Utility to prevent background scroll when drawers are open */
.no-scroll {
  overflow: hidden;
}

/* ---------------------------------------------------------------------
   1) HEADER / NAVBAR
   --------------------------------------------------------------------- */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: saturate(140%) blur(6px);
}

.navbar {
  padding: 0.8rem 1rem;
}

/* Brand */
.navbar-brand.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar-brand .logo-img {
  max-height: 45px;
  width: auto;
}
.navbar-brand h2 {
  font-size: 1.45rem;
  margin: 0;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Nav links */
.navbar-nav {
  margin-left: auto;
  display: flex;
  gap: 0.35rem;
}
.navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: background var(--ease), color var(--ease), transform var(--fast);
}
.navbar-nav .nav-link:hover {
  color: #000;
  background: var(--accent);
  transform: translateY(-1px);
}
.navbar-nav .nav-link.active {
  color: #000;
  background: var(--accent);
}

/* Collapse container */
.navbar-collapse {
  background: #111;
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 1rem;
}

/* -------------------------------
   HAMBURGER MENU FIXED (3-BARS)
   ------------------------------- */
.navbar-toggler.custom-toggler {
  display: none; /* shown only in mobile via media query */
  width: 40px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 2000;
}

/* Remove Bootstrap's default icon completely */
.navbar-toggler.custom-toggler .navbar-toggler-icon {
  display: none !important;
  background: none !important;
}

/* Show 3 bars properly */
.navbar-toggler.custom-toggler .bar {
  display: block; /* VERY IMPORTANT — forces each bar into its own line */
  width: 100%;
  height: 3px;
  margin: 6px 0; /* equal spacing between bars */
  border-radius: 2px;
  background-color: var(--accent);
  transition: transform 0.4s ease, opacity 0.3s ease, background 0.3s ease;
}

/* Animate into "X" when active */
.navbar-toggler.custom-toggler.active .bar.top {
  transform: translateY(9px) rotate(45deg);
}
.navbar-toggler.custom-toggler.active .bar.middle {
  opacity: 0;
}
.navbar-toggler.custom-toggler.active .bar.bottom {
  transform: translateY(-9px) rotate(-45deg);
}

/* Hover effect */
.navbar-toggler.custom-toggler:hover .bar {
  background-color: var(--accent-3);
}

/* Show toggle on mobile only */
@media (max-width: 991px) {
  .navbar-toggler.custom-toggler {
    display: block;
  }
  .navbar-collapse {
    text-align: center;
  }
  .navbar-nav {
    flex-direction: column;
    gap: 6px;
  }
}

/* ---------------------------------------------------------------------
   2) HERO SECTION
   --------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 0 16px;
  overflow: hidden;
}
.hero .bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55));
  z-index: -1;
}
.hero h1 {
  font-size: clamp(2rem, 5.8vw, 3.4rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: 0.6px;
  text-shadow: 0 0 18px rgba(240, 192, 64, 0.35);
}
.hero p {
  color: var(--muted);
  max-width: 760px;
  margin: 1rem auto 0;
  font-size: 1.12rem;
}
.hero .btn {
  margin-top: 1rem;
}

/* Section padding util */
section {
  padding: 80px 0;
}
.section-title {
  font-size: 2.1rem;
  text-align: center;
  margin-bottom: 0.4rem;
  color: var(--accent);
  font-weight: 700;
}
.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.2rem;
}

/* ---------------------------------------------------------------------
   3) SERVICES (generic card hover)
   --------------------------------------------------------------------- */
.glass {
  background: var(--glass);
  border: 1px solid var(--glass-strong);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

#services .glass {
  padding: 28px;
  transition: transform var(--ease), box-shadow var(--ease);
}
#services .glass:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 22px rgba(240, 192, 64, 0.55);
}
#services i {
  color: var(--accent);
  font-size: 2rem;
  margin-bottom: 14px;
}

/* ---------------------------------------------------------------------
   4) TRAINERS
   --------------------------------------------------------------------- */
#trainers {
  background: var(--bg-dark-2);
}
.trainer-card {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 34px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--glass-strong);
  backdrop-filter: blur(10px);
  transition: transform var(--ease), box-shadow var(--ease);
}
.trainer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(240, 192, 64, 0.45);
}
.trainer-card.reverse {
  flex-direction: row-reverse;
}
.trainer-img {
  flex: 0 0 170px;
  height: 190px;
  overflow: hidden;
  border-radius: var(--radius);
}
.trainer-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform var(--slow);
}
.trainer-card:hover .trainer-img img {
  transform: scale(1.05);
}
.trainer-info {
  flex: 1;
}
.trainer-name {
  font-size: 1.28rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 700;
}
.trainer-title {
  font-size: 0.98rem;
  color: var(--accent);
  margin-bottom: 11px;
  letter-spacing: 0.3px;
}
.trainer-desc {
  font-size: 0.94rem;
  color: var(--muted);
}

@media (max-width: 991px) {
  .trainer-card,
  .trainer-card.reverse {
    flex-direction: column;
    text-align: center;
  }
  .trainer-img {
    max-width: 250px;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 520px) {
  .trainer-img {
    max-width: 190px;
  }
}

/* ---------------------------------------------------------------------
   5) CLASSES GRID – uniform height
   --------------------------------------------------------------------- */
#classes .class-item {
  padding: 20px;
  text-align: center;
  border-radius: var(--radius);
  border: 1px solid var(--glass-strong);
  background: var(--glass);
  backdrop-filter: blur(12px);
  transition: transform var(--ease), box-shadow var(--ease);
  min-height: 350px; /* use first box height */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

#classes .class-item img {
  width: 100%;
  height: 160px; /* uniform image height */
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 14px;
  transition: transform var(--slow);
}

#classes .class-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 0 20px rgba(240, 192, 64, 0.55);
}

#classes .class-item:hover img {
  transform: scale(1.05);
}

#classes h5 {
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 700;
}

#classes p {
  color: var(--muted);
  font-size: 0.98rem;
}

/* ---------------------------------------------------------------------
   6) PORTFOLIO CREATION
   --------------------------------------------------------------------- */
#portfolio-creation {
  background: var(--bg-dark-2);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 0; /* added spacing top/bottom */
}

/* Heading */
#portfolio-creation h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-shadow: 0 0 18px rgba(240, 192, 64, 0.65);
}

/* Description */
#portfolio-creation .text-muted {
  color: var(--muted);
  font-size: 1.12rem;
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* List styling */
#portfolio-creation ul {
  list-style: none;
  padding-left: 0;
  margin: 0 0 22px;
}

#portfolio-creation li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.02rem;
  transition: transform var(--ease), color var(--ease);
}

#portfolio-creation li i {
  color: var(--accent);
  transition: transform var(--ease);
}

#portfolio-creation li:hover {
  color: var(--accent);
  transform: scale(1.04);
}

#portfolio-creation li:hover i {
  transform: rotate(14deg);
}

/* Swirling glow backdrop */
#portfolio-creation::before {
  content: "";
  position: absolute;
  inset: -25% -25% auto auto;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(240, 192, 64, 0.07) 15%,
    transparent 70%
  );
  animation: rotate-glow 28s linear infinite;
  z-index: 0;
}

#portfolio-creation .container {
  position: relative;
  z-index: 1;
}

/* Center Bootstrap row & column */
#portfolio-creation .row {
  justify-content: center; /* horizontally center columns */
}

#portfolio-creation .col-lg-6 {
  display: flex;
  flex-direction: column;
  align-items: center; /* centers all inner content */
  text-align: center;
}

/* CTA button style that matches brand */
.btn.glow-btn {
  background: var(--accent);
  color: #000;
  font-weight: 800;
  border-radius: 36px;
  padding: 14px 30px;
  box-shadow: 0 0 16px rgba(240, 192, 64, 0.65),
    0 0 36px rgba(240, 192, 64, 0.4);
  transition: transform var(--ease), box-shadow var(--ease),
    background var(--ease);
}

.btn.glow-btn:hover {
  background: var(--accent-3);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 26px rgba(240, 192, 64, 1), 0 0 52px rgba(240, 192, 64, 0.85);
}

/* Glow rotation keyframes */
@keyframes rotate-glow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Responsive tweaks for smaller screens */
@media (max-width: 991px) {
  #portfolio-creation h2 {
    font-size: 2.2rem;
  }
  #portfolio-creation .text-muted {
    font-size: 1rem;
    max-width: 90%;
  }
  #portfolio-creation li {
    font-size: 0.95rem;
  }
}

/* ---------------------------------------------------------------------
   7) CONTACT ENHANCEMENTS
   --------------------------------------------------------------------- */

/* Contact form glass */
.contact-form .glass {
  padding: 2rem;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Inputs */
.glass-input {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  margin-bottom: 1rem;
  transition: background var(--ease), box-shadow var(--ease);
}
.glass-input::placeholder {
  color: #bfbfbf;
}
.glass-input:focus {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 12px rgba(240, 192, 64, 0.55);
  outline: none;
}

/* Contact info panel */
.company-info {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  padding: 2rem;
}

/* Info links (phone/email) */
.company-info ul li a {
  color: var(--white);
  transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}
.company-info ul li a:hover {
  color: var(--accent);
  text-shadow: 0 0 12px rgba(240, 192, 64, 0.8),
    0 0 24px rgba(240, 192, 64, 0.6);
  transform: scale(1.05);
}

/* Submit button */
.btn.glow-btn {
  padding: 12px 28px;
  border-radius: 36px;
  font-weight: 800;
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 16px rgba(240, 192, 64, 0.65),
    0 0 36px rgba(240, 192, 64, 0.4);
  transition: transform var(--ease), box-shadow var(--ease),
    background var(--ease);
}
.btn.glow-btn:hover {
  background: var(--accent-3);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 26px rgba(240, 192, 64, 1), 0 0 52px rgba(240, 192, 64, 0.85);
}

/* Optional: subtle swirling glow behind contact section */
#contact {
  position: relative;
  overflow: hidden;
  text-align: center;
}
#contact::before {
  content: "";
  position: absolute;
  inset: -25% -25% auto auto;
  width: 150%;
  height: 150%;
  background: radial-gradient(
    circle,
    rgba(240, 192, 64, 0.05) 15%,
    transparent 70%
  );
  animation: rotate-glow 30s linear infinite;
  z-index: 0;
}
#contact .container {
  position: relative;
  z-index: 1;
}
@keyframes rotate-glow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ---------------------------------------------------------------------
   8) FOOTER
   --------------------------------------------------------------------- */
footer {
  background: #000;
  color: var(--muted);
  padding: 22px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
footer a {
  color: var(--white);
  margin: 0 10px;
}
footer a:hover {
  color: var(--accent);
}

/* ---------------------------------------------------------------------
   9) LOADER (3D cube + quotes)
   --------------------------------------------------------------------- */
#loader {
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.cube-wrapper {
  perspective: 1000px;
  margin-bottom: 18px;
  z-index: 2;
}
.cube {
  position: relative;
  width: 90px;
  height: 90px;
  transform-style: preserve-3d;
  animation: spin 2.5s infinite linear;
}
.face {
  position: absolute;
  width: 90px;
  height: 90px;
  border: 2px solid #111;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}
.front {
  background: #ff3b3b;
  transform: rotateY(0deg) translateZ(45px);
}
.back {
  background: #007bff;
  transform: rotateY(180deg) translateZ(45px);
}
.left {
  background: #00c851;
  transform: rotateY(-90deg) translateZ(45px);
}
.right {
  background: #ffbb33;
  transform: rotateY(90deg) translateZ(45px);
}
.top {
  background: #f0c040;
  transform: rotateX(90deg) translateZ(45px);
}
.bottom {
  background: #6f42c1;
  transform: rotateX(-90deg) translateZ(45px);
}
@keyframes spin {
  0% {
    transform: rotateX(0) rotateY(0);
  }
  50% {
    transform: rotateX(180deg) rotateY(180deg);
  }
  100% {
    transform: rotateX(360deg) rotateY(360deg);
  }
}
.loader-quotes {
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  margin-top: 14px;
  z-index: 3;
  animation: fadeIn 1s ease-in-out infinite alternate;
}
@keyframes fadeIn {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 1;
  }
}

/* ---------------------------------------------------------------------
   10) WHATSAPP FLOAT (present in your HTML)
   --------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 28px;
  z-index: 1200;
  box-shadow: var(--shadow-2);
  transition: transform var(--ease), box-shadow var(--ease);
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

/* ---------------------------------------------------------------------
   11) SCROLLBAR (nice but subtle)
   --------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}
::-webkit-scrollbar-track {
  background: #0b0b0b;
}
::-webkit-scrollbar-thumb {
  background: #2b2b2b;
  border-radius: 10px;
  border: 3px solid #0b0b0b;
}
::-webkit-scrollbar-thumb:hover {
  background: #3b3b3b;
}

/* ---------------------------------------------------------------------
   12) UTILITY CLASSES (spacing, layout, text helpers)
   --------------------------------------------------------------------- */
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 0.25rem !important;
}
.mt-2 {
  margin-top: 0.5rem !important;
}
.mt-3 {
  margin-top: 1rem !important;
}
.mt-4 {
  margin-top: 1.5rem !important;
}
.mt-5 {
  margin-top: 3rem !important;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 0.25rem !important;
}
.mb-2 {
  margin-bottom: 0.5rem !important;
}
.mb-3 {
  margin-bottom: 1rem !important;
}
.mb-4 {
  margin-bottom: 1.5rem !important;
}
.mb-5 {
  margin-bottom: 3rem !important;
}
.pt-0 {
  padding-top: 0 !important;
}
.pt-1 {
  padding-top: 0.25rem !important;
}
.pt-2 {
  padding-top: 0.5rem !important;
}
.pt-3 {
  padding-top: 1rem !important;
}
.pt-4 {
  padding-top: 1.5rem !important;
}
.pt-5 {
  padding-top: 3rem !important;
}
.pb-0 {
  padding-bottom: 0 !important;
}
.pb-1 {
  padding-bottom: 0.25rem !important;
}
.pb-2 {
  padding-bottom: 0.5rem !important;
}
.pb-3 {
  padding-bottom: 1rem !important;
}
.pb-4 {
  padding-bottom: 1.5rem !important;
}
.pb-5 {
  padding-bottom: 3rem !important;
}
.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}
.px-3 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}
.px-4 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}
.text-center {
  text-align: center !important;
}
.text-muted {
  color: var(--muted) !important;
}
.rounded-xs {
  border-radius: var(--radius-xs) !important;
}
.rounded-sm {
  border-radius: var(--radius-sm) !important;
}
.rounded {
  border-radius: var(--radius) !important;
}
.rounded-lg {
  border-radius: var(--radius-lg) !important;
}
.shadow-1 {
  box-shadow: var(--shadow-1) !important;
}
.shadow-2 {
  box-shadow: var(--shadow-2) !important;
}

/* Accent text + gradient utilities */
.text-accent {
  color: var(--accent) !important;
}
.bg-surface {
  background: var(--surface) !important;
}
.bg-glass {
  background: var(--glass) !important;
  backdrop-filter: blur(10px);
}

/* ---------------------------------------------------------------------
   13) AOS & BOOTSTRAP TWEAKS (safe overrides)
   --------------------------------------------------------------------- */
/* Ensure AOS animations are not clipped by overflow parents on mobile */
[data-aos] {
  will-change: transform, opacity;
}

/* Make Bootstrap cards and modals match theme if used later */
.card {
  background: var(--surface);
  border: 1px solid var(--glass-strong);
  border-radius: var(--radius);
  color: var(--white);
}
.modal-content {
  background: var(--bg-dark-2);
  color: var(--white);
  border-radius: var(--radius);
}

/* Dropdown (if used) */
.dropdown-menu {
  background: var(--bg-dark-2);
  color: var(--white);
  border: 1px solid var(--glass-strong);
}
.dropdown-item {
  color: var(--white);
}
.dropdown-item:hover {
  background: var(--accent);
  color: #000;
}

/* Navbar toggler focus ring (cleaner) */
.navbar-toggler:focus {
  box-shadow: none;
}

/* ---------------------------------------------------------------------
   14) RESPONSIVE FINE-TUNING
   --------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: clamp(2rem, 5.2vw, 3.1rem);
  }
}

@media (max-width: 991px) {
  section {
    padding: 64px 0;
  }
  .navbar-nav .nav-item {
    margin: 6px 0;
  }
  .hero h1 {
    letter-spacing: 0.2px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.9rem;
  }
  .section-subtitle {
    font-size: 0.98rem;
  }
  #portfolio-creation h2 {
    font-size: 2.2rem;
  }
  #portfolio-creation .text-muted {
    font-size: 1.02rem;
  }
}

@media (max-width: 560px) {
  .navbar-brand h2 {
    font-size: 1.28rem;
  }
  .hero p {
    font-size: 1.02rem;
  }
}

@media (max-width: 420px) {
  .section-title {
    font-size: 1.58rem;
  }
  .section-subtitle {
    font-size: 0.92rem;
  }
}

/* ---------------------------------------------------------------------
   15) ANIMATION HELPERS
   --------------------------------------------------------------------- */
.fade-up {
  animation: fadeUp 0.6s var(--ease) both;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scale-in {
  animation: scaleIn 0.28s var(--ease) both;
}
@keyframes scaleIn {
  from {
    transform: scale(0.98);
    opacity: 0.7;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* ---------------------------------------------------------------------
   16) FORMS – consistent look with Bootstrap
   --------------------------------------------------------------------- */
label {
  font-weight: 600;
  color: var(--muted-2);
  margin-bottom: 6px;
}
.form-label {
  color: var(--muted-2);
}
.form-control.glass-input {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.form-control.glass-input:focus {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(240, 192, 64, 0.55);
  box-shadow: 0 0 0 0.2rem rgba(240, 192, 64, 0.25);
}

/* Validation states (if you use Bootstrap validation) */
.is-valid.form-control {
  border-color: var(--success) !important;
}
.is-invalid.form-control {
  border-color: var(--error) !important;
}

/* ---------------------------------------------------------------------
   17) BADGES / PILLS (handy utility)
   --------------------------------------------------------------------- */
.badge-soft {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}
.badge-accent {
  background: rgba(240, 192, 64, 0.16);
  border-color: rgba(240, 192, 64, 0.35);
  color: var(--accent);
}

/* ---------------------------------------------------------------------
   18) TABLES (if needed later)  
   --------------------------------------------------------------------- */
.table-dark {
  --bs-table-bg: var(--bg-dark-2);
  --bs-table-color: var(--white);
  --bs-table-border-color: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
}
.table-dark thead th {
  color: var(--accent);
  font-weight: 700;
}
.table-dark tbody tr:hover {
  background: rgba(255, 255, 255, 0.04);
}

/* ---------------------------------------------------------------------
   19) TOOLTIPS & POPOVERS
   --------------------------------------------------------------------- */
.tooltip-inner {
  background: var(--bg-dark-2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.popover {
  background: var(--bg-dark-2);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

/* ---------------------------------------------------------------------
   20) ACCORDION (theme if used)
   --------------------------------------------------------------------- */
.accordion-button {
  background: var(--bg-dark-2);
  color: var(--white);
}
.accordion-button:not(.collapsed) {
  background: var(--bg-dark-3);
  color: var(--accent);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}
.accordion-body {
  background: var(--bg-dark-2);
  color: var(--muted);
}

/* ---------------------------------------------------------------------
   21) PROGRESS (theme if used)
   --------------------------------------------------------------------- */
.progress {
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  height: 10px;
}
.progress-bar {
  background: linear-gradient(90deg, var(--accent), #ffd36b);
}

/* ---------------------------------------------------------------------
   22) NAV PILLS (optional)
   --------------------------------------------------------------------- */
.nav-pills .nav-link {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-pills .nav-link.active {
  color: #000;
  background: var(--accent);
  border-color: var(--accent);
}

/* ---------------------------------------------------------------------
   23) TABS (optional)
   --------------------------------------------------------------------- */
.nav-tabs {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-tabs .nav-link {
  color: var(--muted);
}
.nav-tabs .nav-link.active {
  color: var(--accent);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.18) rgba(255, 255, 255, 0.18) transparent;
}

/* ---------------------------------------------------------------------
   24) CAROUSEL (if you add later)
   --------------------------------------------------------------------- */
.carousel-item {
  transition: transform 0.6s ease, opacity 0.4s ease;
}
.carousel-caption {
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  border-radius: 10px;
  padding: 0.75rem 1rem;
}

/* ---------------------------------------------------------------------
   25) CODE & PRE blocks (dev notes)
   --------------------------------------------------------------------- */
code,
pre,
kbd,
samp {
  font-family: var(--font-mono);
}
pre {
  background: #0f0f0f;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: auto;
}

/* ---------------------------------------------------------------------
   26) PRINT OPTIMIZATION (optional but nice)
   --------------------------------------------------------------------- */
@media print {
  header,
  footer,
  .whatsapp-float,
  #loader {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
  a {
    color: #000;
    text-decoration: underline;
  }
}

/* ---------------------------------------------------------------------
   27) ACCESSIBILITY NICE-TO-HAVES
   --------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (prefers-contrast: more) {
  :root {
    --accent: #ffd84d;
  }
  a:hover,
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    filter: contrast(1.2);
  }
}

/* ---------------------------------------------------------------------
   28) EXTRAS (chips, tags, callouts)
   --------------------------------------------------------------------- */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.82rem;
}
.tag i {
  color: var(--accent);
}

.callout {
  border-left: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.06);
  padding: 0.9rem 1rem;
  border-radius: 10px;
}

/* ---------------------------------------------------------------------
   29) DEBUG HELPERS (turn on temporarily while building)
   --------------------------------------------------------------------- */
/* .outline * { outline: 1px dashed rgba(240,192,64,.6); } */
/* .debug-bg { background: rgba(240,192,64,.08) !important; } */

/* =====================================================================
   END OF FILE
   ===================================================================== */
