/* Modern Reset & Base Setup */
:root {
  --primary: #0d6efd;
  --primary-hover: #0a58ca;
  --secondary: #ffc107;
  --bg-body: #f8f9fa;
  --bg-card: #ffffff;
  --text-main: #212529;
  --text-muted: #6c757d;
  --border-color: rgba(0, 0, 0, 0.08);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.3);
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-hover: 0 15px 40px rgba(13, 110, 253, 0.15);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --tech-glow: 0 0 20px rgba(13, 110, 253, 0.5);
}

body.dark-mode {
  --bg-body: #0a0e17; /* Darker tech blue-black */
  --bg-card: #111827;
  --text-main: #fcfcfc;
  --text-muted: #9ca3af;
  --border-color: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(10, 14, 23, 0.85);
  --glass-border: rgba(255, 255, 255, 0.05);
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.3);
  --shadow-md: 0 10px 30px rgba(0,0,0,0.4);
  --shadow-hover: 0 15px 40px rgba(13, 110, 253, 0.4);
  --tech-glow: 0 0 30px rgba(0, 198, 255, 0.6);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Base IT / Tech styling elements */
code, .cyber-subtitle, .type-effect {
  font-family: 'Fira Code', monospace;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

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

.gradient-text {
  background: linear-gradient(135deg, var(--primary), #00c6ff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* Diploma Text Target Animation */
.animated-diploma-text {
  animation: golden-glow 2s infinite alternate;
  transform-origin: center left;
  transition: transform 0.3s ease;
}
.animated-diploma-text:hover {
  transform: scale(1.02);
}

@keyframes golden-glow {
  0% { 
    box-shadow: 0 0 5px rgba(255, 159, 67, 0.1); 
    border-color: rgba(13, 110, 253, 0.4); 
  }
  100% { 
    box-shadow: 0 0 25px rgba(255, 159, 67, 0.4); 
    border-color: #ff9f43; 
  }
}

/* Feature Grid */
/* Header */
.header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  transition: var(--transition);
}

.header.scrolled { padding: 1rem 5%; box-shadow: var(--shadow-sm); }
.logo { font-size: 1.6rem; font-weight: 800; color: var(--primary); display: flex; align-items: center; }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-weight: 500; position: relative; }
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; width: 0%; height: 2px;
  background: var(--primary); transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.actions { display: flex; align-items: center; gap: 1rem; }

/* Buttons & Effects */
.btn {
  padding: 0.8rem 1.8rem; border-radius: 50px; font-weight: 600; cursor: pointer;
  display: inline-block; transition: var(--transition); border: none; position: relative;
  overflow: hidden; z-index: 1;
}

.btn-primary { background: var(--primary); color: #fff !important; }
.glow-btn::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radar-gradient; /* simplified glow logic below */
}
.glow-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(13, 110, 253, 0.6);
}

.pulse-btn {
  animation: btn-pulse 2s infinite;
}
@keyframes btn-pulse {
  0% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(13, 110, 253, 0); }
  100% { box-shadow: 0 0 0 0 rgba(13, 110, 253, 0); }
}

.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--text-main); }
.cyber-btn {
  border-radius: 4px;
  border: 1px solid var(--primary);
  text-transform: uppercase;
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
  letter-spacing: 1px;
}
.cyber-btn:hover {
  background: var(--primary);
  color: #fff !important;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.5), 0 0 20px rgba(13, 110, 253, 0.5);
}
.btn-outline:hover { background: var(--primary); color: #fff !important; }

.theme-toggle {
  background: transparent; border: none; font-size: 1.2rem; cursor: pointer; color: var(--text-main);
  padding: 0.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.theme-toggle:hover { background: var(--border-color); }

/* IT Hero Section */
.hero {
  min-height: 100vh; display: flex; align-items: center; padding: 8rem 5% 4rem;
  position: relative; overflow: hidden;
}

#particles-js {
  position: absolute; width: 100%; height: 100%; top: 0; left: 0; z-index: 0;
}

.hero-bg-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.3; }
.shape-1 { width: 500px; height: 500px; background: var(--primary); top: -100px; right: -100px; animation: float 10s ease-in-out infinite; }
.shape-2 { width: 400px; height: 400px; background: #00c6ff; bottom: -50px; left: -150px; animation: float 8s ease-in-out infinite alternate; }

.hero-content { max-width: 800px; margin: 0 auto; text-align: center; position: relative; z-index: 2; }

.cyber-badge {
  display: inline-block; padding: 0.5rem 1.5rem; background: rgba(13, 110, 253, 0.1);
  color: var(--primary); border-radius: 4px; font-weight: 600; font-size: 0.9rem; margin-bottom: 1.5rem;
  border: 1px solid rgba(13, 110, 253, 0.5);
  font-family: 'Fira Code', monospace;
  position: relative;
  overflow: hidden;
}
.cyber-badge::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.4), transparent);
  animation: cyber-scan 3s infinite linear;
}
@keyframes cyber-scan { 100% { left: 200%; } }

.hero h1 { font-size: 3.5rem; margin-bottom: 1.5rem; letter-spacing: -1px; }

/* Typing Effect Cursor */
.type-effect::after {
  content: '|';
  animation: blink 1s infinite;
  color: var(--primary);
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero p { font-size: 1.25rem; color: var(--text-muted); margin-bottom: 2.5rem; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 1.5rem; justify-content: center; }

@keyframes float { 0% { transform: translate(0, 0) scale(1); } 50% { transform: translate(30px, -30px) scale(1.05); } 100% { transform: translate(0, 0) scale(1); } }
.float-anim { animation: float 6s ease-in-out infinite; }

.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem; opacity: 0.7;
}
.mouse { width: 24px; height: 36px; border: 2px solid var(--text-main); border-radius: 12px; position: relative; }
.mouse::before {
  content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 6px; border-radius: 2px; background: var(--primary);
  animation: scroll-wheel 1.5s infinite;
}
@keyframes scroll-wheel { 0% { top: 6px; opacity: 1; } 100% { top: 20px; opacity: 0; } }

/* Info Strip */
.info-strip {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem;
  padding: 4rem 5%; background: var(--bg-card); position: relative;
  border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); z-index: 2;
}
.info-item { display: flex; align-items: flex-start; gap: 1.5rem; padding: 2rem; background: var(--bg-body); border-radius: 16px; border: 1px solid var(--border-color); transition: var(--transition); }
.info-item:hover { transform: translateY(-10px); box-shadow: var(--shadow-hover); border-color: var(--primary); }
.info-icon { font-size: 2.5rem; color: var(--primary); background: rgba(13, 110, 253, 0.1); width: 65px; height: 65px; display: flex; align-items: center; justify-content: center; border-radius: 16px; flex-shrink: 0; transition: var(--transition); }
.info-item:hover .info-icon { background: var(--primary); color: #fff; transform: scale(1.1) rotate(5deg); }
.info-text h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.info-text p { color: var(--text-muted); font-size: 0.95rem; }

/* Sections */
.section { padding: 8rem 5%; position: relative; }
.section-title { text-align: center; margin-bottom: 4rem; z-index: 2; position: relative; }
.section-title h2 { font-size: 2.8rem; margin-bottom: 1rem; }
.section-title p { color: var(--text-muted); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

.section-embed { background: rgba(255, 255, 255, 0.02); border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.embed-wrapper { max-width: 1200px; margin: 0 auto; display: grid; gap: 1.5rem; }
.embed-wrapper iframe { width: 100%; min-height: 720px; border-radius: 24px; border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 30px 90px rgba(0,0,0,0.12); overflow: hidden; }
.embed-image { width: 100%; max-width: 480px; justify-self: center; border-radius: 24px; border: 1px solid rgba(255,255,255,0.15); box-shadow: 0 25px 60px rgba(0,0,0,0.18); }
.embed-caption { color: var(--text-muted); font-size: 0.95rem; text-align: center; }
.embed-caption a { color: var(--primary); text-decoration: underline; }

/* Tech Grid Background pattern for programs */
.tech-grid-bg {
  background-image: 
    linear-gradient(var(--border-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* Programs CSS Grid & 5-Layout Flexbox */
.programs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 3rem; max-width: 1200px; margin: 0 auto; z-index: 2; position: relative; }

/* Specific layout for 5 items to center the bottom row */
.programs-5 { display: flex; flex-wrap: wrap; justify-content: center; }
.programs-5 .program-card { flex: 1 1 calc(33.333% - 2rem); min-width: 320px; max-width: 400px; }

.tech-card {
  background: var(--bg-card); border-radius: 20px; padding: 3rem 2.5rem; text-align: center;
  border: 1px solid var(--border-color); transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.4s ease, border-color 0.4s ease; position: relative;
  overflow: hidden; z-index: 1; transform-style: preserve-3d;
}

.tech-icon-wrapper {
  width: 90px; height: 90px; background: rgba(13, 110, 253, 0.05); border-radius: 50%;
  margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center;
  position: relative; border: 1px solid rgba(13, 110, 253, 0.2); transform: translateZ(30px);
}
.tech-icon-wrapper i { font-size: 3rem; color: var(--primary); }

.spin-icon { animation: rotate 10s linear infinite; }
.pulse-icon { animation: pulse 2s infinite alternate; }
@keyframes rotate { 100% { transform: rotate(360deg); } }
@keyframes pulse { 0% { transform: scale(1); } 100% { transform: scale(1.1); } }

.tech-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; transform: translateZ(20px); }
.tech-card p { color: var(--text-muted); margin-bottom: 1.5rem; transform: translateZ(15px); }
.course-list { list-style: none; text-align: left; margin-bottom: 1rem; transform: translateZ(25px); }
.course-list li { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.8rem; color: var(--text-main); font-weight: 500; font-family: 'Outfit', sans-serif;}
.course-list i { font-size: 1.2rem; color: var(--primary); }

/* Dynamic Interactive Glow from JS */
.card-glow {
  position: absolute; background: var(--primary); filter: blur(30px); opacity: 0; pointer-events: none; transition: opacity 0.5s ease;
}
.tech-card:hover { border-color: var(--primary); box-shadow: var(--shadow-hover); }

/* Partners & About Section - Cyber Image */
.about-section { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; max-width: 1200px; margin: 0 auto; align-items: center; }

.hcu-overview-section .section-title { margin-bottom: 3rem; }
.hcu-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; max-width: 1200px; margin: 0 auto; align-items: start; }
.hcu-card { background: var(--bg-card); border: 1px solid var(--border-color); border-radius: 24px; padding: 2rem; box-shadow: var(--shadow-md); }
.hcu-card h3 { font-size: 2rem; margin-top: 1rem; margin-bottom: 1rem; }
.hcu-card p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.hcu-card .section-badge { display: inline-block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: #fff; background: var(--primary); padding: 0.6rem 1rem; border-radius: 999px; margin-bottom: 1.5rem; }
.hcu-highlights { list-style: none; margin: 0 0 2rem; padding: 0; color: var(--text-main); }
.hcu-highlights li { margin-bottom: 1rem; display: flex; align-items: flex-start; gap: 0.8rem; font-size: 1rem; }
.hcu-highlights li::before { content: '•'; color: var(--primary); font-weight: 700; margin-top: 0.2rem; }
.hcu-carousel-card { display: grid; gap: 1rem; }
.hcu-carousel { position: relative; overflow: hidden; border-radius: 24px; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 35px 70px rgba(0,0,0,0.12); aspect-ratio: 16/9; background-color: rgba(0,0,0,0.03); }
.hcu-carousel-track { display: flex; transition: transform 0.5s ease; height: 100%; }
.hcu-carousel-slide { min-width: 100%; flex-shrink: 0; height: 100%; }
.hcu-carousel-slide img { width: 100%; height: 100%; display: block; object-fit: contain; }
.hcu-carousel-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.hcu-carousel-button { min-width: 48px; min-height: 48px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.14); background: rgba(0,0,0,0.55); color: #fff; cursor: pointer; display: grid; place-items: center; font-size: 1.2rem; transition: transform 0.25s ease, background 0.25s ease; }
.hcu-carousel-button:hover { transform: scale(1.05); background: rgba(0,0,0,0.75); }
.hcu-carousel-dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem; flex: 1; }
.hcu-carousel-dots button { width: 12px; height: 12px; border-radius: 50%; border: none; background: rgba(255,255,255,0.35); cursor: pointer; transition: background 0.25s ease, transform 0.25s ease; }
.hcu-carousel-dots button.active { background: var(--primary); transform: scale(1.15); }

.animated-border {
  position: relative; border-radius: 12px;
  padding: 4px; background: linear-gradient(45deg, var(--primary), #00c6ff, var(--primary));
  background-size: 300% 300%;
  animation: gradient-border 4s ease infinite;
}
@keyframes gradient-border { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.about-image { position: relative; overflow: hidden; box-shadow: var(--shadow-md); border-radius: 10px; background: var(--bg-card); display: flex; }
.about-image img { width: 100%; border-radius: 8px; transition: var(--transition); display: block; filter: contrast(1.1); }
.about-image:hover img { transform: scale(1.05); }

.tech-scanline {
  position: absolute; top: 0; left: 0; width: 100%; height: 2px;
  background: var(--primary); box-shadow: 0 0 10px var(--primary);
  animation: scan 4s linear infinite; z-index: 2; opacity: 0.7;
}
@keyframes scan { 0% { top: -10%; } 100% { top: 110%; } }

.about-overlay { position: absolute; bottom: 0; left: 0; width: 100%; padding: 2rem; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); color: #fff; z-index: 3;}
.about-overlay h4 { font-size: 1.6rem; margin-bottom: 0.2rem; color: #fff;}
.cyber-subtitle { color: #00c6ff; font-size: 0.9rem; margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 1px;}

.about-content h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.about-content p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.1rem; }

.partnership-logos { display: flex; gap: 2rem; margin-top: 2rem; padding-top: 2rem; border-top: 1px solid var(--border-color); align-items: center; }
.partner-item { text-align: center; }
.partner-logo { max-height: 80px; width: auto; margin-bottom: 0.5rem; object-fit: contain; filter: drop-shadow(0 4px 6px rgba(0,0,0,0.1)); transition: 0.3s; }
.partner-item:hover .partner-logo { transform: scale(1.1); filter: drop-shadow(0 10px 15px rgba(0,0,0,0.2)); }
.partner-item span { display: block; font-size: 0.8rem; color: var(--text-muted); font-family: 'Fira Code', monospace; }
.x-divider i { font-size: 2rem; color: var(--text-muted); opacity: 0.5; }

/* Pricing Section */
.pricing-section { background: var(--bg-card); }
.pricing-cards { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; max-width: 1000px; margin: 0 auto; }
.price-card { flex: 1; min-width: 320px; background: var(--bg-body); border-radius: 20px; padding: 3rem; text-align: center; border: 1px solid var(--border-color); transition: var(--transition); position: relative; }
.cyber-border { border-radius: 4px; }
.price-card:hover { transform: translateY(-10px); }

.price-card.featured {
  background: var(--primary); color: #fff; transform: scale(1.05); box-shadow: 0 20px 40px rgba(13, 110, 253, 0.3); border: none; border-radius: 4px;
}
.price-card.featured:hover { transform: scale(1.05) translateY(-5px); box-shadow: 0 30px 50px rgba(13, 110, 253, 0.4); }

.featured-badge { position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%); background: #ffc107; color: #000; padding: 0.5rem 1.5rem; border-radius: 30px; font-weight: 700; font-size: 0.9rem; letter-spacing: 1px; }

.price-card h3 { font-size: 1.5rem; margin-bottom: 1rem; }
.price { font-size: 3.5rem; font-weight: 800; margin-bottom: 0.5rem; font-family: 'Outfit', sans-serif;}
.price span { font-size: 1.2rem; color: var(--text-muted); font-weight: 500; }
.price-card.featured .price span { color: rgba(255, 255, 255, 0.7); }
.price-desc { margin-bottom: 2rem; color: var(--text-muted); }
.price-card.featured .price-desc { color: rgba(255,255,255,0.8); }

/* Footer */
footer { background: #050a14; color: #fff; padding: 4rem 5% 2rem; text-align: center; border-top: 1px solid rgba(0, 198, 255, 0.2); }
.footer-content { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; text-align: left; margin-bottom: 3rem; }
.footer-col h4 { font-size: 1.2rem; margin-bottom: 1.5rem; color: #fff; position: relative; display: inline-block; }
.footer-col h4::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 50%; height: 2px; background: var(--primary); }
.footer-col p, .footer-col a { color: rgba(255,255,255,0.6); line-height: 1.8; display: block; margin-bottom: 0.8rem; }
.footer-col a:hover { color: var(--primary); padding-left: 8px; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 0.9rem; }

/* Animations */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.5, 0, 0, 1); }
.reveal.active { opacity: 1; transform: translateY(0); }

/* Responsive */
@media (max-width: 992px) { .hero h1 { font-size: 2.8rem; } .about-section { grid-template-columns: 1fr; } .price-card.featured { transform: scale(1); } }
@media (max-width: 992px) { .hero h1 { font-size: 2.8rem; } .about-section { grid-template-columns: 1fr; } .hcu-card-grid { grid-template-columns: 1fr; } .price-card.featured { transform: scale(1); } }
@media (max-width: 992px) { .hero h1 { font-size: 2.8rem; } .about-section { grid-template-columns: 1fr; } .hcu-card-grid { grid-template-columns: 1fr; } .price-card.featured { transform: scale(1); } }
@media (max-width: 768px) {
  .mobile-menu-btn { display: block !important; }
  .nav-links {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: var(--bg-card); flex-direction: column; padding-top: 100px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5); transition: right 0.4s ease;
    z-index: 999; border-left: 1px solid var(--border-color);
  }
  .nav-links.active { right: 0; }
  .nav-links a { font-size: 1.2rem; width: 100%; padding: 15px 30px; border-bottom: 1px solid var(--border-color); }
  .nav-links a::after { display: none; }
  
  .hero h1 { font-size: 2.2rem; }
  .hero-buttons { flex-direction: column; }
  .info-item { flex-direction: column; align-items: center; text-align: center; }
  .section { padding: 5rem 5%; }
  .partnership-logos { flex-direction: column; gap: 1rem; }
  .x-divider { transform: rotate(90deg); }
  
  /* Premium Mobile Carousel Fix */
  .hcu-carousel {
    aspect-ratio: auto;
    height: 240px; /* Fixed, comfortable mobile height */
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.8); /* Dark background prevents ugly white letterboxing */
    box-shadow: inset 0 0 20px rgba(0,0,0,0.5);
  }
  .hcu-carousel-track {
    position: static;
    height: 100%;
  }
  .hcu-carousel-slide {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
  }
  .hcu-carousel-slide img {
    height: 100%;
    width: 100%;
    object-fit: contain; /* Guarantee no cropping */
    border-radius: 8px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
  }
  .hcu-carousel-toolbar { padding: 5px 0; margin-top: 10px; }
  .hcu-carousel-button { min-width: 40px; min-height: 40px; font-size: 1.2rem; background: var(--primary); }
}
