@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --primary: #1a3c5e;
  --primary-light: #2563a8;
  --accent: #e8a020;
  --accent-light: #f5bc4a;
  --dark: #0d1b2a;
  --text: #2d3748;
  --text-light: #718096;
  --bg: #f7f9fc;
  --white: #ffffff;
  --border: #e2e8f0;
  --success: #38a169;
  --danger: #e53e3e;
  --warning: #d69e2e;
  --shadow: 0 4px 24px rgba(26,60,94,0.10);
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; color: var(--text); background: var(--bg); }

/* ===== NAVBAR ===== */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,60,94,0.08);
  position: sticky; top: 0; z-index: 1000;
  padding: 0;
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 70px;
}
.navbar-brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.navbar-brand img { height: 44px; object-fit: contain; }
.navbar-brand .brand-text { display: flex; flex-direction: column; }
.navbar-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--primary); line-height: 1.1;
}
.navbar-brand .brand-sub { font-size: 0.7rem; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px;
  color: var(--text); text-decoration: none; font-weight: 500; font-size: 0.9rem;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { background: var(--primary); color: var(--white); }
.nav-links .btn-enquiry {
  background: var(--accent); color: var(--dark) !important;
  font-weight: 600; padding: 9px 20px !important;
}
.nav-links .btn-enquiry:hover { background: var(--accent-light); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; height: 540px; overflow: hidden; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease; }
.slide.active { opacity: 1; z-index: 1; }
.slide img { width: 100%; height: 100%; object-fit: cover; }
.slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.75) 0%, rgba(26,60,94,0.5) 100%);
  display: flex; align-items: center; justify-content: flex-start;
  padding: 0 10%;
}
.slide-content { max-width: 600px; color: var(--white); }
.slide-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700;
  line-height: 1.2; margin-bottom: 16px;
}
.slide-content p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 28px; }
.slide-content .btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px;
  background: var(--accent); color: var(--dark); font-weight: 600; border-radius: 50px;
  text-decoration: none; font-size: 1rem; transition: var(--transition); }
.slide-content .btn:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,160,32,0.4); }
.slider-nav { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 2; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.5); cursor: pointer; transition: var(--transition); border: none; }
.slider-dot.active { background: var(--accent); width: 28px; border-radius: 5px; }
.slider-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  color: white; border: 1px solid rgba(255,255,255,0.3); width: 44px; height: 44px;
  border-radius: 50%; cursor: pointer; font-size: 1.1rem; z-index: 2;
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.slider-arrow:hover { background: var(--accent); border-color: var(--accent); }
.slider-arrow.prev { left: 20px; }
.slider-arrow.next { right: 20px; }

/* ===== MARQUEE BARS ===== */
.marquee-bar {
  background: var(--primary); color: var(--white); padding: 10px 0; overflow: hidden;
  display: flex; align-items: center;
}
.marquee-bar.gold { background: var(--accent); color: var(--dark); }
.marquee-label {
  background: var(--dark); color: var(--accent); padding: 0 20px;
  font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px;
  white-space: nowrap; height: 100%; display: flex; align-items: center;
  flex-shrink: 0;
}
.marquee-label.gold-label { background: var(--primary); color: white; }
.marquee-track { display: flex; gap: 40px; animation: marqueeScroll 25s linear infinite; white-space: nowrap; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; }
.marquee-item img { height: 40px; width: 60px; object-fit: cover; border-radius: 6px; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== SECTIONS ===== */
section { padding: 72px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block; background: rgba(26,60,94,0.08); color: var(--primary);
  padding: 6px 16px; border-radius: 50px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--dark);
  margin-bottom: 14px;
}
.section-title span { color: var(--primary-light); }
.section-desc { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.divider { width: 60px; height: 3px; background: var(--accent); margin: 16px auto 0; border-radius: 2px; }

/* ===== SERVICES GRID — MULTICOLOR ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 22px;
}
.service-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px 26px 28px;
  border: 1.5px solid transparent;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}
/* Colored top accent bar per card position */
.service-card:nth-child(8n+1) { border-top: 4px solid #3b82f6; }
.service-card:nth-child(8n+2) { border-top: 4px solid #10b981; }
.service-card:nth-child(8n+3) { border-top: 4px solid #f59e0b; }
.service-card:nth-child(8n+4) { border-top: 4px solid #ef4444; }
.service-card:nth-child(8n+5) { border-top: 4px solid #8b5cf6; }
.service-card:nth-child(8n+6) { border-top: 4px solid #06b6d4; }
.service-card:nth-child(8n+7) { border-top: 4px solid #ec4899; }
.service-card:nth-child(8n+8) { border-top: 4px solid #f97316; }
/* Subtle background tint matching top color */
.service-card:nth-child(8n+1) { background: linear-gradient(160deg, #eff6ff 0%, #fff 60%); }
.service-card:nth-child(8n+2) { background: linear-gradient(160deg, #ecfdf5 0%, #fff 60%); }
.service-card:nth-child(8n+3) { background: linear-gradient(160deg, #fffbeb 0%, #fff 60%); }
.service-card:nth-child(8n+4) { background: linear-gradient(160deg, #fef2f2 0%, #fff 60%); }
.service-card:nth-child(8n+5) { background: linear-gradient(160deg, #f5f3ff 0%, #fff 60%); }
.service-card:nth-child(8n+6) { background: linear-gradient(160deg, #ecfeff 0%, #fff 60%); }
.service-card:nth-child(8n+7) { background: linear-gradient(160deg, #fdf2f8 0%, #fff 60%); }
.service-card:nth-child(8n+8) { background: linear-gradient(160deg, #fff7ed 0%, #fff 60%); }

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
/* Icon colors per position */
.service-icon {
  width: 60px; height: 60px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 1.6rem; transition: var(--transition);
}
.service-card:nth-child(8n+1) .service-icon { background: #dbeafe; color: #2563eb; }
.service-card:nth-child(8n+2) .service-icon { background: #d1fae5; color: #059669; }
.service-card:nth-child(8n+3) .service-icon { background: #fef3c7; color: #d97706; }
.service-card:nth-child(8n+4) .service-icon { background: #fee2e2; color: #dc2626; }
.service-card:nth-child(8n+5) .service-icon { background: #ede9fe; color: #7c3aed; }
.service-card:nth-child(8n+6) .service-icon { background: #cffafe; color: #0891b2; }
.service-card:nth-child(8n+7) .service-icon { background: #fce7f3; color: #be185d; }
.service-card:nth-child(8n+8) .service-icon { background: #ffedd5; color: #ea580c; }

.service-card:hover .service-icon { transform: scale(1.15) rotate(-5deg); }
.service-card h3 {
  font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark);
  line-height: 1.3;
}
.service-card p { color: var(--text-light); font-size: 0.875rem; line-height: 1.65; }
/* Number badge */
.service-card::after {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 80px; height: 80px;
  border-radius: 50%;
  opacity: 0.06;
}
.service-card:nth-child(8n+1)::after { background: #2563eb; }
.service-card:nth-child(8n+2)::after { background: #059669; }
.service-card:nth-child(8n+3)::after { background: #d97706; }
.service-card:nth-child(8n+4)::after { background: #dc2626; }
.service-card:nth-child(8n+5)::after { background: #7c3aed; }
.service-card:nth-child(8n+6)::after { background: #0891b2; }
.service-card:nth-child(8n+7)::after { background: #be185d; }
.service-card:nth-child(8n+8)::after { background: #ea580c; }

/* ===== STATS ===== */
.stats-section { background: var(--primary); padding: 56px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 32px; }
.stat-item { text-align: center; color: var(--white); }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: var(--accent); line-height: 1;
}
.stat-label { font-size: 0.9rem; opacity: 0.8; margin-top: 6px; text-transform: uppercase; letter-spacing: 1px; }

/* ===== FEEDBACK ===== */
.feedback-section { background: linear-gradient(135deg, #f0f4f8 0%, #e8f0f8 100%); }
.feedback-track { display: flex; gap: 24px; animation: marqueeScroll 30s linear infinite; }
.feedback-track:hover { animation-play-state: paused; }
.feedback-card {
  min-width: 320px; background: var(--white); border-radius: var(--radius);
  padding: 28px; box-shadow: 0 2px 16px rgba(26,60,94,0.06);
  border: 1px solid var(--border); flex-shrink: 0;
}
.feedback-stars { color: var(--accent); margin-bottom: 12px; font-size: 1rem; }
.feedback-text { color: var(--text); font-size: 0.95rem; line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.feedback-author { display: flex; align-items: center; gap: 12px; }
.feedback-author img { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.feedback-author-info strong { display: block; font-size: 0.9rem; color: var(--dark); }
.feedback-author-info span { font-size: 0.8rem; color: var(--text-light); }

/* ===== ENQUIRY FORM — VIBRANT MULTICOLOR ===== */
.enquiry-section {
  background: linear-gradient(135deg, #f0f7ff 0%, #fdf4ff 40%, #fff7ed 100%);
  position: relative;
  overflow: hidden;
}
.enquiry-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.enquiry-section::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(168,85,247,0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; position: relative; z-index: 1; }
.enquiry-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--dark); margin-bottom: 20px;
  line-height: 1.2;
}
.enquiry-info p { color: var(--text-light); line-height: 1.8; margin-bottom: 28px; font-size: 1rem; }
.contact-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-list .icon {
  width: 42px; height: 42px; min-width: 42px;
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.contact-list li:nth-child(1) .icon { background: linear-gradient(135deg,#dbeafe,#bfdbfe); color: #2563eb; }
.contact-list li:nth-child(2) .icon { background: linear-gradient(135deg,#d1fae5,#a7f3d0); color: #059669; }
.contact-list li:nth-child(3) .icon { background: linear-gradient(135deg,#fce7f3,#fbcfe8); color: #be185d; }
.contact-list .info strong { display: block; font-size: 0.8rem; color: var(--text-light); margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-list .info span { font-size: 0.95rem; color: var(--dark); font-weight: 600; }

/* Form card */
.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 8px 48px rgba(59,130,246,0.10), 0 2px 12px rgba(168,85,247,0.06);
  border: 1.5px solid rgba(59,130,246,0.12);
  position: relative;
  overflow: hidden;
}
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 5px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #ec4899, #f59e0b, #10b981);
  background-size: 300% 100%;
  animation: formBarShift 4s linear infinite;
}
@keyframes formBarShift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; color: var(--dark);
  margin-bottom: 24px; margin-top: 8px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  display: block; font-size: 0.8rem; font-weight: 700;
  color: #475569; margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 11px 14px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; color: var(--text);
  background: #f8faff;
  transition: var(--transition);
}
.form-group input:focus  { border-color: #3b82f6; outline: none; background: #fff; box-shadow: 0 0 0 4px rgba(59,130,246,0.10); }
.form-group select:focus { border-color: #8b5cf6; outline: none; background: #fff; box-shadow: 0 0 0 4px rgba(139,92,246,0.10); }
.form-group textarea:focus { border-color: #ec4899; outline: none; background: #fff; box-shadow: 0 0 0 4px rgba(236,72,153,0.10); }
.form-group textarea { min-height: 100px; resize: vertical; }
/* Colored left border when focused via JS */
.form-group input:focus   { border-left-color: #3b82f6; border-left-width: 4px; }
.form-group select:focus  { border-left-color: #8b5cf6; border-left-width: 4px; }
.form-group textarea:focus{ border-left-color: #ec4899; border-left-width: 4px; }

.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 50%, #ec4899 100%);
  background-size: 200% 100%;
  color: white; border: none; border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: all 0.4s ease;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}
.btn-submit:hover {
  background-position: 100% 0;
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(139,92,246,0.4);
}
.btn-submit:active { transform: translateY(0); }

/* ===== FOOTER ===== */
footer { background: var(--dark); color: rgba(255,255,255,0.85); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand p { margin-top: 12px; font-size: 0.9rem; opacity: 0.7; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.social-link {
  width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7);
  text-decoration: none; transition: var(--transition); font-size: 0.85rem;
}
.social-link:hover { background: var(--accent); color: var(--dark); }
.footer-col h4 { font-size: 0.95rem; font-weight: 600; color: var(--white); margin-bottom: 16px; letter-spacing: 0.5px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08); margin-top: 48px;
  padding: 20px 0; display: flex; align-items: center; justify-content: space-between;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}

/* ===== CHATBOT ===== */
.chatbot-toggle {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: var(--primary);
  color: white; border: none; cursor: pointer; font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(26,60,94,0.4); transition: var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.chatbot-toggle:hover { background: var(--primary-light); transform: scale(1.1); }
.chatbot-window {
  position: fixed; bottom: 92px; right: 24px; z-index: 998;
  width: 340px; background: var(--white); border-radius: 16px;
  box-shadow: 0 8px 40px rgba(26,60,94,0.2); display: none; flex-direction: column;
  overflow: hidden; max-height: 480px;
}
.chatbot-window.open { display: flex; }
.chatbot-header {
  background: var(--primary); color: white; padding: 16px 18px;
  display: flex; align-items: center; gap: 12px;
}
.chatbot-header .bot-avatar {
  width: 36px; height: 36px; background: var(--accent); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--dark);
}
.chatbot-header h4 { font-size: 0.95rem; font-weight: 600; }
.chatbot-header span { font-size: 0.75rem; opacity: 0.8; }
.chatbot-body { padding: 16px; overflow-y: auto; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.chat-msg { max-width: 85%; padding: 10px 14px; border-radius: 12px; font-size: 0.88rem; line-height: 1.5; }
.chat-msg.bot { background: var(--bg); border: 1px solid var(--border); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--primary); color: white; align-self: flex-end; border-bottom-right-radius: 4px; }
.chatbot-footer { padding: 12px; border-top: 1px solid var(--border); display: flex; gap: 8px; }
.chatbot-footer input {
  flex: 1; padding: 9px 12px; border: 1.5px solid var(--border); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
}
.chatbot-footer button {
  padding: 9px 14px; background: var(--primary); color: white;
  border: none; border-radius: 8px; cursor: pointer; font-size: 0.9rem;
}

/* ===== ALERTS ===== */
.alert { padding: 14px 18px; border-radius: 9px; margin-bottom: 18px; font-size: 0.9rem; }
.alert-success { background: #f0fff4; border: 1px solid #9ae6b4; color: #276749; }
.alert-error { background: #fff5f5; border: 1px solid #fed7d7; color: #9b2c2c; }
.alert-info { background: #ebf8ff; border: 1px solid #bee3f8; color: #2a69ac; }

/* ===== PROJECTS ===== */
.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.project-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); transition: var(--transition); }
.project-card:hover { transform: translateY(-6px); }
.project-card img { width: 100%; height: 200px; object-fit: cover; }
.project-info { padding: 20px; }
.project-info h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 6px; color: var(--dark); }
.project-info p { font-size: 0.88rem; color: var(--text-light); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 70px; left: 0; right: 0;
    background: white; flex-direction: column; padding: 16px; box-shadow: var(--shadow); gap: 4px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .enquiry-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-slider { height: 380px; }
  .slide-content h1 { font-size: 1.6rem; }
  .chatbot-window { width: calc(100vw - 32px); right: 16px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== NOTICE TICKER BAR (between navbar and slider) ===== */
.notice-ticker-bar {
  background: #0d1b2a;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  height: 36px;
  border-bottom: 2px solid var(--accent);
  position: relative;
  z-index: 50;
}
.notice-ticker-label {
  background: var(--accent);
  color: #0d1b2a;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  white-space: nowrap;
  flex-shrink: 0;
}
.notice-ticker-label i { font-size: 0.8rem; }
.notice-ticker-track-wrap {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.notice-ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  color: rgba(255,255,255,0.88);
  font-size: 0.82rem;
}
.notice-ticker-track.paused { animation-play-state: paused; }
.notice-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
}
.notice-sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.9rem;
  padding: 0 4px;
}
.notice-type-badge {
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 2px 7px;
  border-radius: 3px;
  flex-shrink: 0;
}
.badge-notice {
  background: rgba(232,160,32,0.2);
  color: var(--accent);
  border: 1px solid rgba(232,160,32,0.35);
}
.badge-news {
  background: rgba(59,130,246,0.2);
  color: #7dd3fc;
  border: 1px solid rgba(59,130,246,0.3);
}
.notice-ticker-actions {
  display: flex;
  align-items: center;
  padding: 0 12px;
  background: rgba(255,255,255,0.04);
  border-left: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.notice-pause-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.5);
  width: 22px;
  height: 22px;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  transition: all 0.2s;
}
.notice-pause-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232,160,32,0.08);
}
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@media (max-width: 480px) {
  .notice-ticker-bar { height: 32px; }
  .notice-ticker-label { padding: 0 12px; font-size: 0.65rem; }
  .notice-ticker-label span { display: none; }
  .notice-ticker-track { font-size: 0.78rem; }
}

/* ===== SEAMLESS MARQUEE (JS-powered, no PHP duplicates) ===== */
.offered-scroll-track,
.news-scroll-track,
.feedback-scroll-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  width: max-content;
}
.offered-scroll-track  { animation: seamlessScroll 20s linear infinite; }
.news-scroll-track     { animation: seamlessScroll 25s linear infinite; color: rgba(255,255,255,0.88); font-size: 0.82rem; align-items: center; }
.feedback-scroll-track { animation: seamlessScroll 30s linear infinite; white-space: normal; }

.offered-scroll-track:hover,
.news-scroll-track:hover,
.feedback-scroll-track:hover { animation-play-state: paused; }

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