/* Global Sourcing Trips - Branded Premium Design */
/* Theme: White, Warm Brown, Orange, Glassmorphism */

/* 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: #fbf7f2;
  /* Warm White */
  --accent-gold: #f26522;
  /* BRAND ORANGE */
  --accent-gold-hover: #d14d10;
  --text-primary: #2d2d2d;
  /* Dark Grey/Black */
  --text-secondary: #4a322d;
  /* BRAND BROWN */
  --glass-bg: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(242, 101, 34, 0.2);
  /* Orange tint border */
  --glass-shadow: rgba(0, 0, 0, 0.1);
  --neon-blue: #2acdc1;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --font-oswald: 'Oswald', sans-serif;
  --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;
  line-height: 1.6;
}

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

ul {
  list-style: none;
}

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

/* 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(242, 101, 34, 0.1);
  /* Subtle Orange */
  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) */
/* NEW HEADER STYLES */
.new-main-header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-top-row {
  background: #fff;
  padding: 10px 0;
  position: relative;
}

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

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

.h-logo img {
  height: 100px;
  width: auto;
  max-width: 350px;
  object-fit: contain;
}

.h-date-block {
  display: flex;
  flex-direction: column;
  border-left: 2px solid var(--accent-gold);
  padding-left: 15px;
}

.h-date {
  font-family: var(--font-oswald);
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1.2;
  font-size: 16px;
}

.h-venue {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 1px;
}

/* 7. Header Ad Ticker (Snake-like) - Image Only */
.header-ad-ticker {
  flex-grow: 1;
  overflow: hidden;
  max-width: 900px;
  position: relative;
  padding: 0 20px;
  height: 80px;
  /* Fixed height for header */
  display: flex;
  align-items: center;
  background: #fbf7f2;
  /* Match decoration or white */
  border-radius: 8px;
}

/* Reuse common marquee classes but scoped if needed */
.ad-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 20px;
  /* Tighter gap for images */
}

.animate-marquee-ads {
  animation: marqueeLeft 40s linear infinite;
}

.ad-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Image Item Styling */
.ad-item.type-image {
  position: relative;
  width: 120px;
  height: 68px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  background: #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ad-item.type-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ad-item.type-image:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.ad-item.type-image:hover img {
  transform: scale(1.1);
}

/* Remove old text/video specific styles */

.header-bottom-nav {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  background: #fbf7f2;
  /* Warm White */
}

.h-nav-list {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.h-nav-item {
  padding: 0;
}

.h-nav-link {
  display: block;
  padding: 12px 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
  position: relative;
  font-family: var(--font-oswald);
}

.h-nav-link:hover,
.h-nav-item.active .h-nav-link {
  color: var(--accent-gold);
  background: rgba(242, 101, 34, 0.05);
}

/* Header Dropdown */
.h-nav-item.dropdown .dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-top: 0;
  padding: 0;
  background: white;
}

.h-nav-item.dropdown .dropdown-item {
  font-family: var(--font-oswald);
  font-size: 14px;
  padding: 12px 20px;
  color: var(--text-primary);
  transition: all 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.h-nav-item.dropdown .dropdown-item:last-child {
  border-bottom: none;
}

.h-nav-item.dropdown .dropdown-item:hover {
  background: rgba(242, 101, 34, 0.05);
  color: var(--accent-gold);
  padding-left: 25px;
  /* Slight shift effect */
}

/* Events Section */
.event-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.event-card:hover {
  transform: translateY(-5px);
}

.event-header {
  height: 180px;
  position: relative;
  padding: 20px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-header-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  border-radius: 12px 12px 0 0;
}

.event-header-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.event-date-badge {
  background: white;
  color: #333;
  width: 50px;
  height: 55px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: flex-end;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.event-date-badge .month {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.event-date-badge .day {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  color: var(--text-primary);
}

.event-overlay-title {
  font-family: var(--font-oswald);
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.event-overlay-title.text-dark {
  text-shadow: none;
  color: #333 !important;
}

.event-body {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.event-title {
  font-family: var(--font-oswald);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-primary);
}

.event-meta {
  font-size: 13px;
  color: #666;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-meta i {
  color: #2ecc71;
  /* Green accent for events */
  width: 16px;
  text-align: center;
}

.event-desc {
  font-size: 14px;
  color: #555;
  margin: 15px 0 25px 0;
  line-height: 1.6;
  flex: 1;
}

.event-actions {
  display: flex;
  gap: 10px;
}

.btn-event-primary {
  background-color: #1b4d3e;
  /* Dark Green */
  color: white;
  border: none;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  flex: 1;
}

.btn-event-primary:hover {
  background-color: #143a2f;
  color: white;
}

.btn-event-outline {
  background-color: transparent;
  color: #333;
  border: 1px solid #ccc;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 6px;
  flex: 1;
}

.btn-event-outline:hover {
  background-color: #f8f9fa;
  color: #333;
  border-color: #bbb;
}

/* 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;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  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: var(--text-secondary);
  /* Brown for contrast on light overlay, or White if dark overlay */
  text-shadow: 0 4px 15px rgba(255, 255, 255, 0.5);
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 3rem;
  font-weight: 600;
}

.hero-badge {
  color: var(--text-secondary);
  font-size: 1.1rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.6);
  display: inline-block;
  padding: 5px 15px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  border: 1px solid var(--accent-gold);
}

/* 5. Buttons (Orange & 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(242, 101, 34, 0.3);
}

.btn-cta-gold:hover {
  background-color: var(--text-secondary);
  /* Hover to Brown */
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 50, 45, 0.3);
}

.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;
}

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

.btn-apply-exhibit {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--text-secondary);
  color: #fff;
  padding: 5px 20px;
  border-radius: 4px;
  line-height: 1.1;
  text-transform: uppercase;
  font-family: var(--font-oswald);
  transition: all 0.3s;
}

.btn-apply-exhibit:hover {
  background: var(--accent-gold);
  color: #fff;
}

.btn-apply-exhibit small {
  font-size: 0.7em;
  font-weight: 300;
  opacity: 0.8;
  letter-spacing: 0.5px;
}

/* 6. Blog Section */
.section-title-purple {
  color: #6f42c1 !important;
  /* Purple color from reference */
  font-weight: 300;
}

.blog-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.03);
  padding: 30px;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-title {
  color: #6f42c1;
  /* Purple color */
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.4;
}

.blog-excerpt {
  color: #6c757d;
  /* Muted text */
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* 7. Video Gallery Section */
.video-marquee-container {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  padding-bottom: 20px;
}

.video-marquee-track {
  display: flex;
  width: max-content;
}

.video-set {
  display: flex;
  gap: 20px;
  padding-right: 20px;
  /* Gap between sets */
}

.video-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.video-card {
  width: 320px;
  height: 180px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-overlay i {
  color: white;
  font-size: 3rem;
  opacity: 0.9;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: scale(1.02);
}

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

.video-card:hover .video-overlay {
  background: rgba(0, 0, 0, 0.1);
}

.video-card:hover .video-overlay i {
  transform: scale(1.2);
  color: #ff0000;
  /* YouTube Red */
}

.video-card:hover .video-info {
  transform: translateY(0);
}

.animate-left-slow {
  animation: marqueeLeft 60s linear infinite;
}

.btn-apply-exhibit span {
  font-size: 16px;
  font-weight: 700;
}


/* 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;
  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: var(--secondary-bg);
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  /* Brown Title */
}

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

/* Testimonial Cards */
.testimonial-card {
  padding: 2rem;
  text-align: left;
  position: relative;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 16px;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-primary);
  font-style: italic;
  margin-bottom: 1.5rem;
  min-height: 100px;
}

.testimonial-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 1.2rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), var(--text-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.testimonial-info h5 {
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  color: var(--text-primary);
  font-family: var(--font-body);
}

.testimonial-info span {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* 8. Logo Slider */
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee-track {
  display: inline-block;
}

.animate-left {
  animation: marqueeLeft 30s linear infinite;
}

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

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

.logo-card {
  display: inline-block;
  margin: 0 40px;
  vertical-align: middle;
}

.logo-card img {
  height: 60px;
  width: auto;
  opacity: 0.85;
  transition: all 0.3s;
}

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

/* 9. NEW FOOTER STYLES (BRAND DARK) */
/* Changed from light gray to Brand Brown for appeal */
.new-footer {
  background-color: var(--text-secondary);
  /* Dark Brown Background */
  color: #fff;
  padding-top: 80px;
  padding-bottom: 60px;
  font-family: var(--font-body);
  position: relative;
  border-top: 5px solid var(--accent-gold);
  /* Orange Top Border */
}

.footer-logo {
  background: #fff;
  padding: 8px;
  display: inline-block;
  border-radius: 50%;
  margin-bottom: 25px;
  width: 80px;
  height: 80px;
  overflow: hidden;
}

.footer-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.footer-desc {
  color: rgba(255, 255, 255, 0.7);
  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: #fff;
  /* White */
  position: relative;
  display: inline-block;
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  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: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}

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

  .hero-section-v2 {
    padding-top: 140px;
    height: auto;
    min-height: 90vh;
  }
}

/* =========================================
   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-branding {
  width: 45px;
  height: 45px;
  background: white;
  border-radius: 50%;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-branding 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 */
  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;
}

/* Animation Keyframes for Marquee */
@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }

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

/* 8. Sticky Social Sidebar */
.sticky-social-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: var(--primary-bg);
  padding: 15px 10px;
  border-radius: 10px 0 0 10px;
  box-shadow: -2px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-right: none;
}

.sticky-social-bar .social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fbf7f2;
  color: var(--text-secondary);
  font-size: 1.1rem;
  transition: all 0.3s ease;
  position: relative;
}

.sticky-social-bar .social-link:hover {
  background: var(--accent-gold);
  color: white;
  transform: translateX(-5px);
  box-shadow: 2px 5px 10px rgba(242, 101, 34, 0.2);
}

.sticky-social-bar .social-link[href*="linkedin"]:hover {
  background: #0077b5;
  box-shadow: 2px 5px 10px rgba(0, 119, 181, 0.2);
}

.sticky-social-bar .social-link[href*="youtube"]:hover {
  background: #ff0000;
  box-shadow: 2px 5px 10px rgba(255, 0, 0, 0.2);
}

.sticky-social-bar .social-link[href*="instagram"]:hover {
  background: #e1306c;
  box-shadow: 2px 5px 10px rgba(225, 48, 108, 0.2);
}

.sticky-social-bar .social-link[href*="facebook"]:hover {
  background: #1877f2;
  box-shadow: 2px 5px 10px rgba(24, 119, 242, 0.2);
}

.sticky-social-bar .social-link[href*="x.com"]:hover {
  background: #000000;
  box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.2);
}