/* =====================================
   GLOBAL THEME
===================================== */
:root {
  --bg: #0a2540;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.8);
  --accent: #635bff;
  --accent2: #00d4ff;
  --gradient: linear-gradient(120deg, #0a2540 0%, #2d0b6e 40%, #00d4ff 100%);
  --radius: 20px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --t: 0.3s ease;
}

/* =====================================
   BASE STYLES
===================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  scroll-behavior: smooth;
  overflow-x: hidden;
}
.container { width: 92%; max-width: 1200px; margin: 0 auto; }
a { color: inherit; text-decoration: none; transition: color var(--t); }
h1, h2, h3 { font-family: "Space Grotesk", sans-serif; }

/* =====================================
   NAVBAR
===================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; width: 100%;
  background: rgba(10, 37, 64, 0.6);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  z-index: 1000;
}
.nav-wrap {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0;
}
.logo { font-size: 1.4rem; font-weight: 700; }
.logo span { color: var(--accent2); }

.nav-links {
  display: flex; gap: 1.3rem; align-items: center;
}
.nav-links a:hover { color: var(--accent2); }

.nav-cta {
  display: flex; gap: 0.6rem; align-items: center;
}
.btn {
  padding: 0.55rem 1rem;
  border-radius: 14px;
  font-weight: 600;
  transition: var(--t);
  cursor: pointer;
}
.btn.primary {
  background: linear-gradient(90deg, var(--accent2), var(--accent));
  color: #fff;
  box-shadow: 0 0 20px rgba(99, 91, 255, 0.35);
}
.btn.primary:hover { transform: translateY(-3px) scale(1.02); }
.btn.ghost {
  border: 2px solid var(--accent);
  color: #fff;
}
.btn.ghost:hover {
  background: var(--accent);
}
.icon-btn {
  background: none; border: none;
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}
.burger { display: none; }


/* =====================================
   👤 ACCOUNT ICON — Responsive & Polished
===================================== */
.account-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.5rem;
}

.account-icon img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff10;
  padding: 6px;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
  cursor: pointer;
}

.account-icon img:hover {
  transform: scale(1.1);
  background: rgba(99, 91, 255, 0.25);
  box-shadow: 0 0 10px rgba(99, 91, 255, 0.3);
}

/* =====================================
   📱 MOBILE OPTIMIZATION
===================================== */
@media (max-width: 900px) {
  .nav-cta {
    display: flex;
    align-items: center;
    gap: 0.8rem;
  }

  .account-icon img {
    width: 40px;
    height: 40px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }

  /* Ensures proper spacing from burger menu */
  .burger {
    margin-left: 0.5rem;
  }

  /* Prevents overlap or crowding */
  .navbar .nav-wrap {
    padding-right: 10px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .account-icon img {
    width: 36px;
    height: 36px;
    padding: 6px;
  }
}

/* =====================================
   HERO SECTION — with Image Slider & Mobile Responsive
===================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 100px;
  color: #fff;
  background: var(--gradient);
  background-size: 200% 200%;
  animation: heroPulse 12s ease-in-out infinite;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent 70%);
  z-index: 1;
}

@keyframes heroPulse {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  z-index: 2;
  position: relative;
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-text {
  z-index: 3;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
  line-height: 1.2;
}

.hero-text h1 span {
  background: linear-gradient(90deg, #00d4ff, #635bff, #00e0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 300% 100%;
  animation: shimmer 6s linear infinite;
}

@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero-text p {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 1.8rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons a {
  font-size: 1rem;
  padding: 0.7rem 1.4rem;
}

/* =====================================
   HERO SLIDER AREA
===================================== */
.hero-slider {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 340px;
  overflow: hidden;
  border-radius: 25px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.hero-slider .slide {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.2s ease, transform 1.5s ease;
}

.hero-slider .slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.hero-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
}

/* =====================================
   HERO ANIMATION
===================================== */
@keyframes floatUpDown {
  from { transform: translateY(0); }
  to { transform: translateY(-15px); }
}

/* =====================================
   RESPONSIVE DESIGN
===================================== */
@media (max-width: 900px) {
  .hero {
    text-align: center;
    padding: 130px 20px 80px;
    height: auto;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-text {
    order: 1;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin: 0 auto 1.5rem;
    max-width: 90%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-slider {
    order: 2;
    margin: 2.5rem auto 0;
    max-width: 340px;
    height: 260px;
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-buttons a {
    font-size: 0.9rem;
    padding: 0.6rem 1.1rem;
  }

  .hero-slider {
    max-width: 300px;
    height: 220px;
  }
}


/* =====================================
   SECTIONS
===================================== */
.section { padding: 90px 0; position: relative; z-index: 5; }
.section.alt {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), transparent);
}
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 0.4rem;
}
.section-head p { color: var(--muted); }

/* HOW IT WORKS / FEATURES */
.steps, .features {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.step-card, .feature {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all var(--t);
}
.step-card:hover, .feature:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.25);
}
.ic, .fi { font-size: 1.6rem; margin-bottom: 0.6rem; display: block; }

/* =====================================
   FAQ SECTION
===================================== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem 1.5rem;
  background: transparent;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background var(--t);
}
.faq-question:hover {
  background: rgba(255, 255, 255, 0.08);
}
.faq-question span {
  font-size: 1.4rem;
  color: var(--accent2);
  font-weight: bold;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.5rem;
  color: var(--muted);
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 1rem 1.5rem;
}
.faq-item.open .faq-question span {
  color: var(--accent);
  transform: rotate(90deg);
}

/* =====================================
   FOOTER
===================================== */
.footer {
  background: #0b1b2d;
  color: #fff;
  margin-top: 40px;
}
.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  padding: 3rem 0;
}
.foot-col h4 {
  color: var(--accent2);
  margin-bottom: 0.4rem;
}
.foot-col a {
  color: var(--muted);
  display: block;
  margin-bottom: 0.4rem;
  transition: color var(--t);
}
.foot-col a:hover {
  color: var(--accent2);
}
.foot-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1rem 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* =====================================
   RESPONSIVE
===================================== */
@media (max-width: 900px) {
  .hero {
    text-align: center;
    height: auto;
    padding: 130px 0 80px;
  }
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-image img {
    margin: 2rem auto 0;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    background: rgba(10, 37, 64, 0.95);
    position: absolute;
    top: 70px;
    right: 0; left: 0;
    text-align: center;
    padding: 1rem 0;
  }
  .nav-links.show { display: flex; }
  .burger { display: inline-block; }
}

/* =====================================
   💬 WHATSAPP FLOATING BUTTON
===================================== */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}




/* =====================================
   🌍 ABOUT PAGE — FIXED & ENHANCED
===================================== */

/* ===== HERO SECTION ===== */
.about-hero {
  position: relative;
  text-align: center;
  color: #fff;
  padding: 160px 20px 120px;
  background: linear-gradient(120deg, #0a2540 0%, #2d0b6e 40%, #00d4ff 100%);
  background-size: 300% 300%;
  animation: heroGradient 10s ease infinite;
  overflow: hidden;
}

@keyframes heroGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.06), transparent 60%);
}

.about-hero .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero h1 span {
  background: linear-gradient(90deg, #00d4ff, #635bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto;
}

/* ===== STORY SECTION ===== */
.about-story {
  background: #fff;
  padding: 100px 20px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.story-text h2 {
  font-size: 2rem;
  color: #0a2540;
  margin-bottom: 1rem;
}

.story-text p {
  color: #333;
  line-height: 1.7;
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.story-img img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.story-img:hover img {
  transform: scale(1.03);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

/* ===== MISSION / VISION ===== */
.mission {
  background: linear-gradient(135deg, #0a2540, #2d0b6e);
  color: #fff;
  padding: 100px 20px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mission-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 18px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(99,91,255,0.3);
}

.mission-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.mission-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.mission-card p {
  opacity: 0.9;
  line-height: 1.7;
  font-size: 1rem;
}

/* ===== TEAM SECTION ===== */
.team {
  background: #f8faff;
  padding: 100px 20px;
  text-align: center;
}

.section-head {
  margin-bottom: 3rem;
}

.section-head h2 {
  font-size: 2.2rem;
  color: #0a2540;
}

.section-head .muted {
  color: #6c757d;
  font-size: 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  background: #fff;
  border-radius: 20px;
  padding: 1.5rem 1rem 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 35px rgba(99,91,255,0.15);
}

/* Circular Image */
.team-photo {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid transparent;
  background: linear-gradient(135deg, #00d4ff, #635bff);
  padding: 3px;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

/* Overlay Icons */
.team-photo .overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,37,64,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  opacity: 0;
  transition: opacity 0.35s ease;
  border-radius: 50%;
}

.team-card:hover .overlay {
  opacity: 1;
}

.team-photo .overlay a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.team-photo .overlay a:hover img {
  transform: scale(1.2);
}

.team-card h3 {
  margin-top: 1rem;
  font-weight: 700;
  color: #0a2540;
  font-size: 1.1rem;
}

.team-card p {
  color: #6c757d;
  font-size: 0.95rem;
}

/* ===== Ensure Visibility (Fix for hidden sections) ===== */
.section, .story-grid, .mission-card, .team-card {
  opacity: 1 !important;
  transform: none !important;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .story-grid, .mission-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .story-img {
    order: -1;
  }

  .about-hero h1 {
    font-size: 2.3rem;
  }

  .team-photo {
    width: 150px;
    height: 150px;
  }
}


/* =====================================
   🔒 PRIVACY POLICY PAGE
===================================== */
.privacy-hero {
  text-align: center;
  color: #fff;
  padding: 160px 20px 100px;
  background: linear-gradient(120deg, #0a2540 0%, #2d0b6e 40%, #00d4ff 100%);
  background-size: 300% 300%;
  animation: heroGradient 10s ease infinite;
}

.privacy-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.privacy-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto;
}

/* ===== POLICY CONTENT ===== */
.privacy-content {
  background: #fff;
  padding: 100px 20px;
}

.policy-container {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: #333;
}

.policy-container h2 {
  font-size: 1.5rem;
  color: #0a2540;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.policy-container p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.policy-container ul {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}

.policy-container a {
  color: #00aaff;
  text-decoration: underline;
}

.policy-container .last-updated {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .privacy-hero h1 {
    font-size: 2.1rem;
  }

  .policy-container h2 {
    font-size: 1.3rem;
  }
}


/* =====================================
   ⚖️ TERMS & CONDITIONS PAGE
===================================== */
.terms-hero {
  text-align: center;
  color: #fff;
  padding: 160px 20px 100px;
  background: linear-gradient(120deg, #0a2540 0%, #2d0b6e 40%, #00d4ff 100%);
  background-size: 300% 300%;
  animation: heroGradient 10s ease infinite;
}

.terms-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.terms-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto;
}

/* ===== TERMS CONTENT ===== */
.terms-content {
  background: #fff;
  padding: 100px 20px;
}

.terms-container {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: #333;
}

.terms-container h2 {
  font-size: 1.5rem;
  color: #0a2540;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.terms-container p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.terms-container ul {
  margin: 1rem 0 1.5rem 1.5rem;
  list-style: disc;
}

.terms-container a {
  color: #00aaff;
  text-decoration: underline;
}

.terms-container .last-updated {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #666;
  font-style: italic;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .terms-hero h1 {
    font-size: 2.2rem;
  }

  .terms-container h2 {
    font-size: 1.3rem;
  }
}




/* =====================================
   🖌️ Global H2 Brush Stroke Style
===================================== */
h2 {
  position: relative;
  display: inline-block;
  font-weight: 700;
  color: #0a2540;
  font-family: 'Space Grotesk', sans-serif;
  z-index: 1;
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Brush-stroke white highlight behind all h2 */
h2::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: 50%;
  transform: translateY(-50%) rotate(-1deg);
  height: 1.3em;
  background: #fff;
  border-radius: 4px;
  z-index: -1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

/* Center alignment when used in headers */
.section-head h2 {
  text-align: center;
  display: inline-block;
}

/* Optional: subtle animation for polish */
@keyframes brushFadeIn {
  from {
    opacity: 0;
    transform: translateY(10px) rotate(-1deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-1deg);
  }
}
h2 {
  animation: brushFadeIn 0.6s ease both;
}

/* Responsive tweak */
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}




/* =====================================
   🏢 OFFICE / LOCATION SECTION
===================================== */
.office-section {
  background: #f8f9fc;
  padding: 100px 20px;
}

.office-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.office-info h3 {
  font-size: 1.5rem;
  color: #0a2540;
  margin-bottom: 1rem;
}

.office-info p {
  font-size: 1rem;
  margin-bottom: 0.8rem;
  color: #333;
  line-height: 1.6;
}

.office-info a {
  color: #007bff;
  text-decoration: underline;
}

.office-map iframe {
  width: 100%;
  height: 350px;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 900px) {
  .office-grid {
    grid-template-columns: 1fr;
  }

  .office-info {
    text-align: center;
  }

  .office-map iframe {
    height: 300px;
  }
}


/* =====================================
   🤝 CLIENT / PARTNER LOGO CAROUSEL
===================================== */
.partners-section {
  background: #f8f9fc;
  text-align: center;
  padding: 100px 20px;
}

.logo-carousel {
  overflow: hidden;
  position: relative;
  margin-top: 3rem;
}

.logo-track {
  display: flex;
  width: calc(250px * 12);
  animation: scroll 25s linear infinite;
}

.logo-track img {
  width: 180px;
  height: auto;
  margin: 0 40px;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-track img:hover {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.05);
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Pause on hover */
.logo-carousel:hover .logo-track {
  animation-play-state: paused;
}

/* Responsive Design */
@media (max-width: 768px) {
  .logo-track img {
    width: 120px;
    margin: 0 20px;
  }
}



