/* Global Trade India Expo 2026 - Ultra Premium Light Design V2 */
/* Theme: White, Light Gray, Gold, Glassmorphism, Clean */

/* Import Oswald Font */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@300;400;500;600;700&display=swap');

/* 1. Variables & Reset */
:root {
  --primary-bg: #ffffff;
  --secondary-bg: #f8f9fa;
  --accent-gold: #1e4bd1;
  /* Logo Blue */
  --accent-gold-hover: #1639a0;
  --text-primary: #1e264f;
  /* Logo Navy */
  --text-secondary: #4a5568;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.1);
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --neon-blue: #2acdc1;
  /* Logo Teal */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-oswald: 'Oswald', sans-serif;
  /* Add Oswald var */
  --transition-speed: 0.3s;
}

/* Base Reset & Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  /* Prevent unwanted horizontal scroll */
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

/* ... (Rest of existing code) ... */

/* =========================================
   NEW FOOTER STYLES (LIGHT THEME)
   ========================================= */
.new-footer {
  background-color: #f8f9fa;
  /* Light Gray */
  color: var(--text-primary);
  /* Dark Text */
  padding-top: 80px;
  padding-bottom: 30px;
  font-family: var(--font-body);
  position: relative;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.footer-logo img {
  height: 70px;
  margin-bottom: 25px;
  /* No white bg needed if logo handles it, or keep it if logo is transparent */
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-heading {
  font-family: var(--font-oswald);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 30px;
  height: 3px;
  background: var(--accent-gold);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: var(--text-secondary);
  font-size: 14px;
}

.footer-contact-item i {
  color: var(--accent-gold);
  font-size: 18px;
  margin-top: 3px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.social-link:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(30, 75, 209, 0.3);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 13px;
  color: #9aa5b1;
}

.footer-bottom p {
  margin: 0;
}


/* =========================================
   DUMMY CHAT WIDGET (WHATSAPP STYLE)
   ========================================= */
.chat-widget-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.chat-toggle-btn {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  /* WhatsApp Green */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.3s;
  border: none;
}

.chat-toggle-btn:hover {
  transform: scale(1.1);
}

.chat-popup {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 350px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  transform-origin: bottom right;
}

.chat-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.chat-header {
  background-color: #0d4a41;
  /* Dark Green Header */
  color: white;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-header-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-size: 18px;
}

.chat-brand-icon-box {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-brand-icon-box img {
  width: 100%;
  height: auto;
}

.chat-header-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.chat-header-info span {
  font-size: 12px;
  opacity: 0.8;
}

.chat-body {
  background-color: #E5DDD5;
  /* WhatsApp BG pattern color */
  background-image: url('https://user-images.githubusercontent.com/15075759/28719144-86dc0f70-73b1-11e7-911d-60d70fcded21.png');
  padding: 20px;
  height: 250px;
  overflow-y: auto;
}

.chat-message-bubble {
  background: white;
  padding: 10px 15px;
  border-radius: 0 12px 12px 12px;
  position: relative;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  font-size: 14px;
  line-height: 1.4;
  color: #111;
  margin-bottom: 5px;
  animation: fadeIn 0.3s ease forwards;
}

.chat-message-bubble::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 0;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid white;
}

.chat-sender-name {
  font-size: 12px;
  color: #888;
  margin-bottom: 4px;
  display: block;
}

.chat-footer {
  padding: 15px;
  background: #f9f9f9;
  text-align: center;
}

.chat-start-btn {
  background-color: #25D366;
  color: white;
  border: none;
  padding: 10px 24px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  text-decoration: none;
  width: 100%;
  justify-content: center;
}

.chat-start-btn:hover {
  background-color: #20bd5a;
  color: white;
}

.powered-by {
  font-size: 10px;
  color: #999;
  margin-top: 8px;
  display: block;
  text-align: center;
}

/* End Chat Widget */

body {
  font-family: var(--font-body);
  background-color: var(--primary-bg);
  color: var(--text-primary);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
}

a {
  text-decoration: none;
  transition: all var(--transition-speed) ease;
}

/* 2. Glassmorphism Utilities */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px 0 var(--glass-shadow);
  border-radius: 16px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-gold);
}

/* 3. Navigation (Sticky & Glass) */
.navbar-v2 {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.nav-link-v2 {
  color: var(--text-primary) !important;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  padding: 0.5rem 1rem;
}

.nav-link-v2::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--accent-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-link-v2:hover::after {
  width: 80%;
}

/* 4. Hero Section (Cinematic) */
.hero-section-v2 {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 180px;
  /* Added to clear fixed header */
}

/* ... existing code ... */

/* 9. Form Specific Styles (Light Mode / Glass) */
.form-page-wrapper {
  padding-top: 180px;
  /* Increased to account for V2 header */
  padding-bottom: 4rem;
  /* ... */
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  /* Lighten the video slightly if needed, or rely on overlay */
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Overlay removed for clean video look */
  background: transparent;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 20px;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #ffffff;
  /* White text */
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  /* Strong shadow for visibility */
  /* Removed gradient text clip for solid white visibility */
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  /* White with slight opacity */
  margin-bottom: 3rem;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  /* Shadow */
}

.hero-badge {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.2);
  /* Slight background for better contrast */
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* 5. Buttons (Gold & Outline) */
.btn-cta-gold {
  background: var(--accent-gold);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-cta-gold:hover {
  background-color: var(--text-primary);
  color: #fff;
  box-shadow: 0 6px 20px rgba(10, 25, 47, 0.3);
  transform: translateY(-3px);
}

.btn-cta-outline {
  background: transparent;
  border: 2px solid var(--text-primary);
  color: var(--text-primary);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

/* Small Button Modifiers */
.btn-cta-gold.v2-sm,
.btn-cta-outline.v2-sm {
  padding: 0.7rem 1.8rem;
  font-size: 13px;
}

.btn-cta-gold.v2-sm br+small,
.btn-cta-outline.v2-sm br+small {
  font-size: 10px;
}

/* =========================================
   PARTNERSHIP OPPORTUNITIES SECTION
   ========================================= */
.partner-opp-section {
  position: relative;
  background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 50%, #e8ecf1 100%);
  padding: 80px 0;
  color: var(--text-primary);
  overflow: hidden;
}

.partner-opp-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(10, 25, 47, 0.04) 0%, transparent 50%);
  z-index: 1;
}

.partner-opp-section .container {
  position: relative;
  z-index: 2;
}

/* --- Partner Card (Zone-card style) --- */
.partner-opp-card {
  position: relative;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.partner-opp-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

/* Background image */
.partner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.partner-opp-card:hover .partner-img {
  transform: scale(1.08);
}

/* Gradient overlay — sits on top of the image */
.partner-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 22px 18px;
  text-align: center;
  z-index: 2;
}

/* Icon circle */
.partner-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.partner-opp-card:hover .partner-icon {
  background: var(--accent-gold);
  color: #fff;
  border-color: var(--accent-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

/* Title */
.partner-title,
.partner-opp-card h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

/* Details text */
.partner-opp-details {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.45;
  text-align: center;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.partner-opp-card:hover .partner-opp-details {
  max-height: 200px;
  opacity: 1;
}

.partner-opp-details strong {
  color: var(--accent-gold);
}

.hero-v2-title {
  color: #ffffff !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-v2-subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
}


.btn-cta-outline:hover {
  background: var(--text-primary);
  color: #fff;
  border-color: var(--text-primary);
  transform: translateY(-3px);
}

/* 6. Quick Stats (Floating Glass) */
.stats-bar {
  position: relative;
  z-index: 10;
  margin-top: 0;
  padding-bottom: 4rem;
}

.stat-box {
  text-align: center;
  color: var(--text-primary);
  background: #fff;
  /* Solid white or very light glass */
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  font-family: var(--font-heading);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  font-weight: 600;
}

/* 7. Features & Sectors */
.section-v2 {
  padding: 6rem 0;
  position: relative;
  background-color: #fcfcfc;
  /* Subtle off-white */
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 4rem auto;
}

.zone-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 250px;
  background: var(--primary-bg);
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.zone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Styling for Live Product Cards */
.zone-card.live-card .zone-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Default hover scale for live cards */
.zone-card.live-card:hover .zone-img {
  transform: scale(1.1);
}

.zone-card.live-card .img-secondary {
  z-index: 1;
}

.zone-card.live-card .img-primary {
  z-index: 2;
  animation: crossfade 6s infinite ease-in-out;
}

@keyframes crossfade {
  0%, 45% {
    opacity: 1;
  }
  50%, 95% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.sector-card {
  height: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.sector-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.sector-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  /* Light overlay option: white gradient */
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
  transition: all 0.4s ease;
}

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

.sector-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.sector-card a {
  color: var(--accent-gold);
  font-weight: 600;
}

/* 8. Registration Modal (Glass - Light) */
.modal-backdrop.show {
  opacity: 0.5;
  background-color: #0a192f;
}

.modal-content.glass-modal {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  color: var(--text-primary);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
  border-bottom: 1px solid var(--glass-border);
}

.modal-footer {
  border-top: 1px solid var(--glass-border);
}

.close-btn-custom {
  color: var(--text-primary);
  background: none;
  border: none;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.close-btn-custom:hover {
  color: var(--accent-gold);
}

.modal-option-btn {
  display: block;
  width: 100%;
  background: #f8f9fa;
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 1rem;
  text-align: left;
  transition: all 0.3s ease;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 15px;
}

.modal-option-btn i {
  font-size: 2rem;
  color: var(--accent-gold);
}

.modal-option-btn:hover {
  background: var(--accent-gold);
  color: #fff;
  transform: translateX(10px);
}

.modal-option-btn:hover i {
  color: #fff;
}

.modal-option-btn small {
  color: var(--text-secondary);
}

.modal-option-btn:hover small {
  color: rgba(255, 255, 255, 0.8);
}


/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-section-v2 {
    height: auto;
    min-height: 55vh;
    padding-bottom: 2rem;
    padding-top: 140px;
  }

  /* Fix overlapping buttons on mobile */
  .stats-bar {
    margin-top: 0;
    /* Remove negative margin on mobile so it doesn't overlap hero */
    padding-top: 2rem;
  }

  .stat-box {
    margin-bottom: 2rem;
  }
}

/* 9. Form Specific Styles (Light Mode / Glass) */
.form-page-wrapper {
  padding-top: 280px;
  /* Increased to account for taller V2 header */
  padding-bottom: 4rem;
  min-height: 100vh;
  /* Premium Light Background - slightly darker to make the white card pop */
  background: #f0f2f5;
  background-image:
    radial-gradient(at 0% 0%, rgba(212, 175, 55, 0.05) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(10, 25, 47, 0.05) 0px, transparent 50%);
  position: relative;
}

/* Subtle grid overlay */
.form-page-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  pointer-events: none;
}

.glass-form-container {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  /* Subtle border */
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  /* Stronger premium shadow */
  color: var(--text-primary);
  position: relative;
  z-index: 1;
}

.glass-form-container h3,
.glass-form-container h4,
.glass-form-container .feature-title {
  color: var(--text-primary);
  /* Cleaner look */
  border-bottom: 2px solid var(--accent-gold);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  display: inline-block;
  /* Underline only text */
}

.form-label,
.form-check-label {
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
}

/* Premium Light Inputs */
.form-control,
.form-select {
  background: #fcfcfc !important;
  /* Very subtle off-white */
  border: 1px solid #e0e0e0 !important;
  color: var(--text-primary) !important;
  border-radius: 8px;
  padding: 14px 18px;
  /* Larger touch area */
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
  background: #ffffff !important;
  border-color: var(--accent-gold) !important;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15) !important;
  transform: translateY(-2px);
  /* Micro-interaction */
}

.form-control::placeholder {
  color: #a0aec0 !important;
  font-weight: 400;
}

/* Step Indicator */
.step-item {
  color: var(--text-secondary);
  border-left: 3px solid rgba(0, 0, 0, 0.1);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

.step-item:hover {
  color: var(--text-primary);
}

.step-item.active {
  color: var(--accent-gold);
  border-left-color: var(--accent-gold);
  font-weight: 700;
}

.step-number {
  background: transparent;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
  display: block;
}

.step-item.active .step-number {
  background: transparent;
  color: var(--accent-gold);
}

/* Table in Light Mode */
.table {
  color: var(--text-primary);
}

.table td,
.table th {
  border-color: #eee;
  padding: 1rem;
}

.table thead th {
  background-color: #f8f9fa;
  border-bottom: 2px solid #eee;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

/* Accordion in Light Mode */
.accordion-item {
  border: 1px solid #eee;
  background: #fff;
  border-radius: 12px !important;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  margin-bottom: 1rem;
}

.accordion-button {
  background: #fff;
  color: var(--text-primary);
  font-weight: 600;
  padding: 1.2rem;
}

.accordion-button:not(.collapsed) {
  background: rgba(212, 175, 55, 0.05);
  color: var(--accent-gold);
}

.accordion-button::after {
  filter: none;
  /* Default dark arrow */
}

.accordion-body {
  background: #fff;
  padding: 1.5rem;
  border-top: 1px solid #eee;
}

/* File Upload */
.custom-file-upload {
  border: 2px dashed #d0d7de;
  background: #f8f9fa;
  color: var(--text-secondary);
  padding: 3rem;
  border-radius: 16px;
}

.custom-file-upload:hover {
  border-color: var(--accent-gold);
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Fix for select options */
option {
  background-color: #fff;
  color: #333;
}

/* Checking Checkbox */
.form-check-input {
  border-color: #d0d7de;
  width: 1.2em;
  height: 1.2em;
  margin-top: 0.2em;
}

.form-check-input:checked {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
}

/* Logo kept as original (colorful) */
img[src*="logo.png"],
img[src*="logo.webp"] {
  /* No filter needed for colorful logo on light bg */
}

/* =========================================
   NEW HEADER STYLES (MATCHING REFERENCE IMAGE)
   ADDED FOR V2 REDESIGN
   ========================================= */

:root {
  --header-top-bg: #ffffff;
  /* Light Top Bar */
  --header-gold: #d4af37;
  --header-nav-bg: #ffffff;
  --header-text-main: #071126;
  /* Dark Navy for text on light bg */
}

.new-main-header {
  width: 100%;
  position: fixed;
  /* Was relative, but needs to be fixed for fixed-top */
  top: 0;
  left: 0;
  z-index: 1030;
  /* Bootstrap standard */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  font-family: var(--font-body, 'Montserrat', sans-serif);
  background: #fff;
}

/* TOP BAR */
.header-top-row {
  background-color: var(--header-top-bg);
  padding: 10px 0;
  /* Reduced padding slightly */
  color: var(--header-text-main);
  position: relative;
  /* border-bottom removal for zigzag flow */
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 15px;
}

@media (max-width: 992px) {
  .header-flex {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
  }

  /* Categories strip as compact full-width row below logo on mobile */
  .h-categories-wrapper {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-top: 6px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding: 4px 0 0;
  }

  .h-logo img {
    height: 50px;
  }
}

/* Logo Section */
.h-logo-section {
  display: flex;
  align-items: center;
  gap: 20px;
}

.h-logo img {
  height: 90px;
  width: auto;
  padding: 0;
  object-fit: contain;
}

.h-date-block {
  border-left: 1px solid rgba(0, 0, 0, 0.1);
  padding-left: 15px;
  display: flex;
  flex-direction: column;
}

.h-date {
  font-size: 16px;
  font-weight: 800;
  color: var(--header-text-main);
  letter-spacing: 1px;
  line-height: 1.2;
}

.h-venue {
  font-size: 10px;
  text-transform: uppercase;
  color: #666;
  letter-spacing: 0.5px;
}

/* Categories Strip (Center) - SCROLLABLE */
.h-categories-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  max-width: 600px;
  /* Limit width */
  margin: 0 auto;
  position: relative;
}

.h-categories {
  display: flex;
  gap: 0;
  overflow-x: scroll;
  /* Must be scrollable for JS */
  scroll-behavior: auto;
  /* Disable smooth scroll for the auto-scroller to precise control */
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.h-categories::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

/* Scroll Buttons */
.scroll-btn {
  background: white;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: var(--header-text-main);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.scroll-btn:hover {
  background: var(--accent-gold);
  color: white;
  border-color: var(--accent-gold);
}

.scroll-btn.left {
  margin-right: 10px;
}

.scroll-btn.right {
  margin-left: 10px;
}


@media (max-width: 1200px) {
  .h-categories-wrapper {
    max-width: 400px;
  }

  .h-categories {
    padding-bottom: 5px;
  }
}

@media (max-width: 768px) {
  .header-flex {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }

  .h-logo img {
    height: 42px;
  }

  .h-categories-wrapper {
    order: 3;
    width: 100%;
    max-width: 100%;
    margin-top: 4px;
    padding: 3px 0 0;
  }

  .cat-box {
    font-size: 9px;
    padding: 5px 8px;
    min-width: 70px;
  }

  .header-top-row {
    padding: 5px 0 !important;
    padding-bottom: 12px !important;
  }

  .scroll-btn {
    display: none;
  }

  .btn-apply-exhibit {
    padding: 5px 12px;
    font-size: 11px;
  }

  .btn-apply-exhibit span {
    font-size: 13px;
  }
}

.cat-box {
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
  padding: 6px 15px;
  text-align: center;
  color: var(--header-text-main);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.3s;
  min-width: 100px;
  white-space: nowrap;
  /* Prevent wrapping in scroll mode */
  line-height: 1.2;
}

.cat-box:first-child {
  border-left: 1px solid rgba(0, 0, 0, 0.05);
}

.cat-box:hover {
  color: var(--header-gold);
  background: rgba(0, 0, 0, 0.02);
}

/* Zigzag Pattern for Header */
.header-zigzag-bottom::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 10px;
  background:
    linear-gradient(45deg, transparent 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667%),
    linear-gradient(-45deg, transparent 33.333%, #ffffff 33.333%, #ffffff 66.667%, transparent 66.667%);
  background-size: 20px 20px;
  background-position: 0 0;
  /* Align pattern */
  /* We need a border or darker bg behind it to see the zigzag? 
     Actually user wants pattern ON top bar. 
     Let's try a border-image or repeating linear gradient border effect */
}

/* Alternative Zigzag Border */
.header-top-row {
  border-bottom: none;
  position: relative;
  padding-bottom: 16px;
}

/* Zigzag Separator */
.header-top-zigzag {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background:
    linear-gradient(135deg, white 25%, transparent 25%) -10px 0,
    linear-gradient(225deg, white 25%, transparent 25%) -10px 0,
    linear-gradient(315deg, white 25%, transparent 25%),
    linear-gradient(45deg, white 25%, transparent 25%);
  background-size: 20px 20px;
  background-color: #e0e0e0;
  /* The color OF THE BORDER LINE essentially */
}

/* Re-doing Zigzag to be simpler and cleaner */
.zigzag-border {
  height: 6px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background-image:
    linear-gradient(135deg, white 25%, transparent 25%),
    linear-gradient(225deg, white 25%, transparent 25%),
    linear-gradient(315deg, white 25%, transparent 25%),
    linear-gradient(45deg, white 25%, transparent 25%);
  background-position: -10px 0, -10px 0, 0 0, 0 0;
  background-size: 20px 20px;
  background-color: #d1d5db;
  /* Grey Border Color */
}

/* CTA Section */
.h-cta-section {
  display: flex;
  align-items: center;
}

.h-cta-section a.text-white {
  color: var(--header-text-main) !important;
}

/* Glowing Warning Pulse Animation for Button */
@keyframes pulse-blue-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

.btn-apply-exhibit {
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  /* Primary Blue Gradient */
  color: #fff !important;
  font-weight: 800;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 4px;
  text-align: center;
  line-height: 1.2;
  font-size: 13px;
  text-decoration: none;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* Animation */
  animation: pulse-blue-glow 2s infinite;
}

.btn-apply-exhibit small {
  display: block;
  font-size: 10px;
  font-weight: 400;
  opacity: 0.9;
}

.btn-apply-exhibit span {
  display: block;
  font-size: 16px;
}

.btn-apply-exhibit:hover {
  transform: translateY(-2px);
  animation: none;
  box-shadow: 0 0 25px rgba(13, 110, 253, 1);
  /* Stronger Glow */
}

/* BOTTOM NAVBAR */
.header-bottom-nav {
  background: #f8f9fa;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 0;
}

.h-nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
  gap: 5px;
}

.h-nav-item {
  position: relative;
}

.h-nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 16px 12px;
  color: #1e264f;
  /* Dark navy text */
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  transition: 0.3s;
  border-bottom: 3px solid transparent;
}

.h-nav-link:hover,
.h-nav-item.active .h-nav-link {
  color: var(--accent-gold);
  /* Using V2 variable */
  background: linear-gradient(to bottom, transparent, rgba(30, 75, 209, 0.03));
  border-bottom-color: var(--accent-gold);
}

.h-nav-links-icon {
  opacity: 0.5;
}

/* Responsive Styles */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--header-text-main);
  cursor: pointer;
}

@media (max-width: 992px) {
  .h-nav-list {
    display: none;
  }

  .header-bottom-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
}

/* Zigzag Decoration */
.zigzag-border {
  position: absolute;
  bottom: -10px;
  /* Adjusted position */
  left: 0;
  width: 100%;
  height: 20px;
  /* Simpler, Robust Zigzag Pattern */
  background:
    linear-gradient(135deg, #0d6efd 25%, transparent 25%) -10px 0,
    linear-gradient(225deg, #0d6efd 25%, transparent 25%) -10px 0,
    linear-gradient(315deg, #0d6efd 25%, transparent 25%),
    linear-gradient(45deg, #0d6efd 25%, transparent 25%);
  background-size: 20px 20px;
  background-color: transparent;
  /* Ensure background is transparent so only the blue triangles show */
  z-index: 1050;
  /* High Z-Index to sit on top of everything */
  opacity: 1;
  /* Full opacity */
}

/* ... existing animation ... */
@keyframes pulse-blue-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(13, 110, 253, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(13, 110, 253, 0);
  }
}

/* Fix Hero Video Z-Index issues */
.hero-section-v2 {
  /* Ensure content stacks correctly */
  position: relative;
  min-height: 100vh;
  /* Allow expansion, don't clip */
  height: auto;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 260px;
  /* Increased padding to 260px to fully clear header */
  padding-bottom: 80px;
  /* Ensure space at bottom for buttons */
  z-index: 1;
}

.hero-video-bg {
  z-index: 0 !important;
  /* Bring it up from -1 */
}

/* ... existing ... */

/* Footer & Sidebar Logos Circular */
.footer-logo img,
.sidebar-brand img,
.chat-brand-icon-box img {
  border-radius: 50%;
  object-fit: cover;
  /* Ensure it fills the circle nicely if not square */
}

.hero-overlay {
  /* ... */
  z-index: 1 !important;
  /* Above video */
}

.hero-content {
  z-index: 2 !important;
  /* Above overlay */
}

/* =========================================
   NEW HOME SECTIONS: PRODUCT ZONES & LOGO SLIDERS
   ========================================= */

/* Product Zones (Golden Glow) */
.product-zones-section {
  /* Light clean background */
  background: linear-gradient(135deg, #f8f9fa 0%, #eef1f5 50%, #e8ecf1 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: var(--text-primary);
}

/* Subtle accent overlay */
.product-zones-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.zone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 991px) {
  .zone-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .zone-grid {
    grid-template-columns: 1fr;
  }
}

.zone-card {
  position: relative;
  height: 350px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.zone-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.zone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.zone-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  text-align: center;
}

.zone-title {
  font-family: var(--font-oswald);
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  line-height: 1.3;
}

/* Infinite Logo Slider */
.logo-slider-section {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

.logo-slider-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollLogos 40s linear infinite;
}

.logo-item {
  margin: 0 40px;
  flex-shrink: 0;
  /* Placeholder Styling for Dummy Logos since we don't have images */
  font-family: var(--font-oswald);
  font-size: 24px;
  font-weight: 700;
  color: #ccc;
  text-transform: uppercase;
  border: 2px solid #eee;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 80px;
  background: #fcfcfc;
}

.logo-item:hover {
  color: var(--text-primary);
  border-color: var(--accent-gold);
  transform: scale(1.05);
}

/* If real images used */
.logo-item img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: all 0.3s;
}

.logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Pause on hover */
.logo-slider-track:hover {
  animation-play-state: paused;
}

/* =========================================
   MANUAL SLIDER STYLES (REPLACING INFINITE)
   ========================================= */

.slider-viewport {
  overflow-x: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  padding: 10px 0;
}

.slider-viewport::-webkit-scrollbar {
  display: none;
}

.slider-content {
  display: inline-flex;
  gap: 30px;
  padding: 0 40px;
  /* Space for arrows */
}

/* 2-Row Layout for Exhibitors */
.slider-content.column-flow {
  display: inline-grid;
  grid-template-rows: repeat(2, auto);
  grid-auto-flow: column;
  gap: 20px 40px;
  /* Row Gap, Column Gap */
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.slider-arrow:hover {
  background: var(--accent-gold);
  color: #fff;
  border-color: var(--accent-gold);
}

.slider-arrow.prev {
  left: 0;
}

.slider-arrow.next {
  right: 0;
}

.dotted-separator {
  border-bottom: 2px dotted #ccc;
  width: 100%;
  opacity: 0.5;
}

/* Ensure logo items don't shrink in grid */
.logo-item {
  width: 180px;
  /* Fixed width for uniformity */
  margin: 0 !important;
  /* Reset margin from previous style */
}

/* =========================================
   LOGO CARD STYLES (DUMMY LOGOS)
   ========================================= */

.logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 80px;
  background: #fff;
  border: 1px solid #f0f0f0;
  border-radius: 6px;
  font-family: var(--font-oswald, sans-serif);
  font-weight: 700;
  color: #cbd5e1;
  /* Light gray for inactive */
  text-transform: uppercase;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.logo-card:hover {
  border-color: var(--accent-gold);
  color: var(--text-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.logo-card.active {
  border: 2px solid #3b82f6;
  /* Blue border like reference */
  color: #1e293b;
  /* Dark text */
  background: #fff;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

/* Chat Label */
.chat-toggle-btn .chat-label {
  margin-left: 8px;
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}

.chat-toggle-btn {
  width: auto;
  padding: 0 20px;
  border-radius: 30px;
}

/* =========================================
   SEAMLESS MARQUEE (CONTINUOUS SCROLL)
   ========================================= */

.marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 20px;
  /* Masking for smooth edges */
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 30px;
  /* Space between items */
  /* Animation defaults */
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* Hover Pause */
.marquee-container:hover .marquee-track {
  animation-play-state: paused;
}

/* Keyframes for seamless scrolling */
/* Assumption: The track contains Two identical sets of items.
   Moving -50% shifts exactly one full width of the original set. */

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.animate-left {
  animation-name: scrollLeft;
  animation-duration: 30s;
  /* Adjust speed via JS or class */
}

.animate-right {
  animation-name: scrollRight;
  animation-duration: 30s;
}

/* Ensure Logo Cards look good in the track */
.marquee-track .logo-card {
  flex-shrink: 0;
  /* Prevent squishing */
}

/* Support for Images in Logo Cards */
.logo-card img {
  max-width: 80%;
  max-height: 60%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 1;
  transition: all 0.3s ease;
}

.logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* Remove text styles when image is present if needed, 
   but simplistic approach is fine as img replaces text content. */
/* Utility for footer links */
.hover-white:hover {
  color: #fff !important;
  text-decoration: underline !important;
}

/* ===========================================
   EMBED MODE - for iframe loading
   =========================================== */
body.embed-mode .new-main-header,
body.embed-mode .mobile-menu,
body.embed-mode .modern-footer,
body.embed-mode footer,
body.embed-mode .glass-modal,
body.embed-mode #regModal {
  display: none !important;
}

body.embed-mode .form-page-wrapper {
  padding-top: 20px !important;
  margin-top: 0 !important;
}

body.embed-mode .glass-form-container {
  margin-top: 0 !important;
}

body.embed-mode {
  background: transparent !important;
}

/* Sticky Social Media Sidebar */
.sticky-social-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 10px;
  border-radius: 10px 0 0 10px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 15px;
  transition: all 0.3s ease;
}

.sticky-social-bar a {
  color: #333;
  font-size: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 5px;
  background: #f8f9fa;
}

.sticky-social-bar a:hover {
  color: #fff;
  transform: scale(1.1);
}

.sticky-social-bar a.linkedin:hover {
  background: #0077b5;
}

.sticky-social-bar a.twitter:hover {
  background: #000;
}

.sticky-social-bar a.youtube:hover {
  background: #ff0000;
}

.sticky-social-bar a.instagram:hover {
  background: #e1306c;
}

.sticky-social-bar a.facebook:hover {
  background: #1877f2;
}

/* Social Media Continuous Marquee */
.social-marquee-container {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
  mask-image: linear-gradient(to right, transparent, black 3%, black 97%, transparent);
}

.social-marquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: socialScroll 60s linear infinite;
  padding: 10px 0;
}

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

@keyframes socialScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.social-carousel-card {
  flex-shrink: 0;
  width: 340px;
}

@media (max-width: 767px) {
  .social-carousel-card {
    width: 290px;
  }
}

.social-feed-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-feed-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, .15) !important;
}

/* Glowing Gold Pulse Animation for Submit Buttons */
@keyframes pulse-gold-glow {
  0% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
  70% { box-shadow: 0 0 0 12px rgba(212, 175, 55, 0); }
  100% { box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}
.btn-glow-gold {
  animation: pulse-gold-glow 2s infinite;
}

/* Hide login links site-wide */
a[href="/login"] { display: none !important; }