body {
  margin: 0;
  font-family: 'Manrope', sans-serif;
  color: #111;
  background: #fff;
}
h1, h2 {
  font-weight: 900;
}
a {
  text-decoration: none;
  color: inherit;
}



/* ---------- Full-bleed hero video (replace existing .hero / .hero-video) ---------- */
.hero {
  position: relative;
  width: 100vw;          /* full viewport width */
  height: 100vh;         /* full viewport height (change if you want shorter) */
  left: 50%;
  transform: translateX(-50%); /* prevents horizontal scroll caused by 100vw on scrollbars */
  overflow: hidden;
  margin: 0;
  z-index: 0;
  box-sizing: border-box;
}

.hero video.hero-video {
  position: absolute;
  inset: 0;              /* top:0; right:0; bottom:0; left:0; */
  width: 100vw;          /* ensure it covers full viewport width */
  height: 100%;
  object-fit: cover;     /* cover the area, crop if needed */
  left: 50%;
  transform: translateX(-50%); /* center properly */
  z-index: 0;
  pointer-events: none;  /* video won't intercept clicks (optional) */
}

/* avoid page horizontal scroll from full-bleed sections */
html, body {
  overflow-x: hidden;
}



/* Sections */
section:not(.hero) {
  max-width: 1400px;
  margin: auto;
  padding: 80px 20px;
}


section h2 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
}

/* Services Grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.box {
  background: #f4f4f4;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}
.box:hover {
  background: #ffe6e6;
}

/* Work Gallery */
.images img {
  width: 100%;
  border-radius: 8px;
}

/* Events */
.events img {
  width: 100%;
  border-radius: 12px;
  margin-top: 20px;
}

/* Contact */
.contact form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact input,
.contact textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.contact button {
  padding: 12px;
  background: #b3001b;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}
.contact button:hover {
  background: #8a0014;
}


.services-page .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* exactly 3 columns per row */
  gap: 30px;
  margin-top: 30px;
  justify-items: stretch;
  align-items: stretch;
}

.services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 30px;
  margin-top: 30px;
  justify-items: stretch;
  align-items: stretch;
}


.service-box {
  background: #f9f9f9;
  border: 1px solid #eee;
  height: 380px;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: 0.3s ease;
}
.service-box:hover {
  background: #fff0f0;
  border-color: #d11c2b;
}
.service-box h3 {
  margin-bottom: 10px;
  color: #b3001b;
}
.service-box p {
  font-size: 15px;
  line-height: 1.5;
  color: #333;
}

.contact-page {
  text-align: center;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
  justify-content: center;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  min-width: 250px;
  text-align: left;
  font-size: 16px;
}

.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  background: #b3001b;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #8a0014;
}

.work-page {
  text-align: center;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.portfolio-item {
  background: #fafafa;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}
.portfolio-item:hover {
  transform: translateY(-5px);
}
.portfolio-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}
.portfolio-item h3 {
  font-size: 18px;
  color: #b3001b;
  margin-bottom: 8px;
}
.portfolio-item p {
  font-size: 15px;
  color: #333;
}

.insights-page {
  text-align: center;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.blog-post {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  transition: 0.3s;
  box-shadow: 0 6px 14px rgba(0,0,0,0.03);
}

.blog-post:hover {
  background: #fff5f5;
  transform: translateY(-4px);
}

.blog-post img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.blog-post h3 {
  font-size: 18px;
  color: #b3001b;
  margin-bottom: 10px;
}

.blog-post p {
  font-size: 15px;
  color: #333;
  margin-bottom: 10px;
}

.blog-post a {
  font-weight: bold;
  color: #b3001b;
  font-size: 14px;
}

.events-page {
  text-align: center;
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.event-item {
  background: #fdfdfd;
  border-radius: 10px;
  padding: 20px;
  text-align: left;
  transition: 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.event-item:hover {
  background: #fff2f2;
  transform: translateY(-5px);
}

.event-item img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.event-item h3 {
  font-size: 18px;
  color: #b3001b;
  margin-bottom: 10px;
}

.event-item p {
  font-size: 15px;
  color: #333;
}

@import url('https://fonts.googleapis.com/icon?family=Material+Icons');

.impact-section {
  background: #000;
  color: #fff;
  padding: 110px 10% 0;
  font-family: 'Manrope', sans-serif;
  overflow: hidden;
}

.impact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.impact-text {
  flex: 1;
  min-width: 300px;
}

.impact-text h2 {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 30px;
  margin-left: -100px;
}

.impact-text .accent {
  color: #ff3c00;
  text-shadow: 0 0 10px rgba(255, 60, 0, 0.5);
}

.impact-stats {
  list-style: none;
  padding: 0;
  margin: 0;
}

.impact-stats li {
  font-size: 1rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.impact-stats li .material-icons {
  color: #00e0b8;
  font-size: 1.4rem;
}

.read-more-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  background: #fff;
  color: #000;
  border-radius: 50%;
  font-size: 2rem;
  margin-top: 30px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.read-more-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.impact-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}

.impact-image img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 30px rgba(255, 255, 255, 0.08));
}

/* Scroll Banner */
.scroll-banner {
  margin-top: 80px;
  background: #fff;
  color: #000;
  overflow: hidden;
  white-space: nowrap;
}

.scroll-text {
  display: inline-block;
  font-size: 1.5rem;
  font-weight: 900;
  padding: 20px 0;
  animation: scrollText 20s linear infinite;
}

@keyframes scrollText {
  0% { transform: translateX(100%); }
  100% { transform: translateX(-100%); }
}


* Scroll to top button */
#scrollTopBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: none;
  border: 2px solid #fff;
  color: #fff;
  font-size: 1.5rem;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 99;
  transition: background 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
  background: #fff;
  color: #000;
  transform: scale(1.1);
}

#chat-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #e94b0b;
  color: white;
  font-size: 24px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  cursor: pointer;
  z-index: 999;
}

#chat-widget {
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 320px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  overflow: hidden;
  display: none;
  z-index: 999;
}

.chat-header {
  background: #912b14;
  color: white;
  padding: 10px;
  position: relative;
  display: flex;
  align-items: center;
}

.chat-header .agent-photo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.chat-header .close-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

#chat-body,
#chat-confirmation {
  padding: 15px;
}

.bot-msg {
  background: #f1f1f1;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 14px;
}

#chat-form input,
#chat-form textarea {
  width: 100%;
  padding: 8px;
  margin: 5px 0;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}

#chat-form textarea {
  resize: none;
  height: 60px;
}

#chat-form label {
  font-size: 12px;
  display: block;
  margin: 8px 0;
}

#chat-form button {
  background: #f55c13;
  color: white;
  padding: 10px;
  width: 100%;
  border: none;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s;
}

#chat-form button:hover {
  background: #d94b0b;
}

.user-msg {
  background: #f55c13;
  color: white;
  padding: 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.bot-reply {
  background: #f1f1f1;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
}

.powered-by {
  text-align: center;
  font-size: 11px;
  color: gray;
  padding: 10px;
}

.powered-by span {
  color: #e94b0b;
}

/* Container Section */
.campaign-tiles-section {
  padding: 40px 0;
  background: #fff;
  overflow: hidden;
}

/* Common Row Style */
.campaign-row {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  margin-bottom: 30px;
}

/* Track to Scroll Tiles */
.campaign-track {
  display: flex;
  gap: 20px;
  animation: scroll 80s linear infinite;
}

.campaign-row.ltr .campaign-track {
  animation-direction: reverse;
}

.campaign-tile {
  position: relative;
  flex: 0 0 auto;
  width: 200px;
  height: 120px;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.campaign-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* Hover Zoom */
.campaign-tile:hover img {
  transform: scale(1.1);
}

/* Hover Info Overlay */
.campaign-tile .info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.6);
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 8px;
  opacity: 0;
  transition: opacity 0.3s;
}

.campaign-tile:hover .info {
  opacity: 1;
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}



.about-us-section {
  background: #fff;
  padding: 100px 5%;
  overflow: hidden;
  position: relative;
  max-width: 1400px;
}

.about-us-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.about-text {
  flex: 1;
}

.about-title {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  color: #111;
}

.about-title .highlight {
  color: #ff3838;
}

.about-subtitle {
  color: #ff3838;
  font-weight: 600;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-description {
  margin-top: 15px;
  color: #444;
  line-height: 1.7;
  max-width: 500px;
}

/* === Galaxy Burst Effect === */
.galaxy-grid {
  flex: 1;
  width: 360px;
  height: 360px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 15px;
  position: relative;
  margin: auto;
  perspective: 1000px;
}

.tile {
  width: 110px;
  height: 110px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  animation: galaxy-burst 1.2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

.tile img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}
.tile:hover img { transform: scale(1.08); }

/* === Keyframes: explode outward like stars === */
@keyframes galaxy-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
  }
  40% {
    opacity: 1;
    transform: translate(var(--x), var(--y)) scale(1.1) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: translate(var(--x), var(--y)) scale(1) rotate(0deg);
  }
}

/* === Define outward directions for each tile (like a starburst) === */
.tile:nth-child(1) { --x: -150px; --y: -150px; animation-delay: 0.1s; }
.tile:nth-child(2) { --x: 0px;    --y: -170px;  animation-delay: 0.2s; }
.tile:nth-child(3) { --x: 150px;  --y: -150px;  animation-delay: 0.3s; }
.tile:nth-child(4) { --x: -180px; --y: 0px;     animation-delay: 0.4s; }
.tile:nth-child(5) { --x: 0px;    --y: 0px;     animation-delay: 0.5s; } /* center tile */
.tile:nth-child(6) { --x: 180px;  --y: 0px;     animation-delay: 0.6s; }
.tile:nth-child(7) { --x: -150px; --y: 150px;   animation-delay: 0.7s; }
.tile:nth-child(8) { --x: 0px;    --y: 170px;   animation-delay: 0.8s; }
.tile:nth-child(9) { --x: 150px;  --y: 150px;   animation-delay: 0.9s; }

/* Optional: soft glowing aura effect */
.galaxy-grid::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 120px; height: 120px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,56,56,0.3), transparent 70%);
  filter: blur(40px);
  z-index: -1;
  animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50% { transform: translate(-50%, -50%) scale(1.3); opacity: 0.4; }
}

/* Responsive */
@media (max-width: 900px) {
  .about-us-container {
    flex-direction: column;
    text-align: center;
  }
  .galaxy-grid {
    width: 300px;
    height: 300px;
  }
  .tile { width: 90px; height: 90px; }
}

.services-section {
  padding: 100px 10%;
  background: linear-gradient(135deg, #ff4d4d, #d92323, #b30000);
  color: #fff;
  text-align: center;
  overflow: hidden;
  max-width: 1400px;
}

.services-title {
  font-size: 2.5rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.highlight {
  color: #ff3c00;
}

.services-subtitle {
  font-size: 1.1rem;
  color: #aaa;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.service-box {
  background: linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px 30px;
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateX(-50px);
}

.service-box.in-view {
  opacity: 1;
  transform: translateX(0);
}

.service-box:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 0 30px rgba(255, 60, 0, 0.25);
  transform: translateY(-10px) scale(1.03);
}

.service-icon {
  width: 60px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.service-box:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-box h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.service-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ccc;
  margin-bottom: 20px;
}

.service-box a {
  text-decoration: none;
  color: #ff3c00;
  font-weight: 600;
  letter-spacing: 0.8px;
  transition: color 0.3s ease;
}

.service-box a:hover {
  color: #fff;
}



/* ===== IMPACT SECTION ===== */
.impact-section {
  position: relative;
  padding: 120px 8%;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff, #f7f7f7, #efefef);
  background-size: 200% 200%;
  animation: bgMove 12s ease infinite;
  color: #222;
  max-width: 1400px;
}

@keyframes bgMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.impact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.impact-text {
  flex: 1 1 45%;
  animation: fadeInLeft 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

.impact-text h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 35px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #111;
}

.impact-text .accent {
  color: #e73c3e;
  background: linear-gradient(90deg, #ff4040, #ff7676);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.impact-stats {
  list-style: none;
  padding: 0;
  margin: 0 0 50px;
}

.impact-stats li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1.1rem;
  position: relative;
  transition: transform 0.3s ease, color 0.3s ease;
  color: #444;
}

.impact-stats li:hover {
  transform: translateX(10px);
  color: #ff4747;
}

.impact-stats span.material-icons {
  color: #ff4747;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.impact-stats li:hover span.material-icons {
  transform: scale(1.3) rotate(10deg);
}

/* ===== HANGING VIDEO SETUP ===== */
.logo-chain {
  position: relative;
  width: 220px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform-origin: top center;
  animation: swing 3.0s ease-in-out infinite;
}

.chain-link {
  width: 8px;
  height: 105px;
  background: linear-gradient(to bottom, #5e5d5d, #3f3d3d);
  margin: 0;
  position: relative;
  border-radius: 2px;
}

.chain-link.broken {
  height: 12px;
  transform: rotate(6deg);
  background: linear-gradient(to bottom, #777 60%, transparent 100%);
  margin-top: -2px;
}

/* ===== HANGING VIDEO ===== */
.hanging-video {
  width: 180px;
  height: 180px;
  margin-top: 6px;
  border-radius: 12px;
  overflow: hidden;
  object-fit: cover;
  box-shadow: 0 0 25px rgba(255, 71, 71, 0.4);
  transform-origin: top center;
  border: 3px solid rgba(255, 71, 71, 0.4);
  background: #fff;
}

/* ===== SWING ANIMATION ===== */
@keyframes swing {
  0% { transform: rotate(8deg); }
  50% { transform: rotate(-4deg); }
  100% { transform: rotate(8deg); }
}

.logo-chain .hanging-video {
  animation: logoSwing 3.5s ease-in-out infinite;
  animation-delay: 0.1s;
}

@keyframes logoSwing {
  0% { transform: rotate(-4deg); }
  50% { transform: rotate(4deg); }
  100% { transform: rotate(-4deg); }
}

/* ===== HOVER REACTION ===== */
.logo-chain:hover {
  animation-duration: 2s;
}

.logo-chain:hover .hanging-video {
  animation-duration: 2s;
  box-shadow: 0 0 40px rgba(255, 71, 71, 0.6);
  border-color: rgba(255, 71, 71, 0.6);
}




.read-more-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff4747;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  font-size: 26px;
  text-decoration: none;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(255, 71, 71, 0.5);
}

.read-more-circle:hover {
  background: #fff;
  color: #ff4747;
  box-shadow: 0 0 25px rgba(255, 71, 71, 0.8);
  border: 1px solid #ff4747;
}

.impact-image {
  flex: 1 1 45%;
  text-align: right;
  animation: fadeInRight 1.2s ease forwards;
  opacity: 0;
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

.impact-image img {
  max-width: 100%;
  width: 520px;
  filter: drop-shadow(0px 0px 25px rgba(255, 71, 71, 0.15));
  animation: floatImg 5s ease-in-out infinite;
}

@keyframes floatImg {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* ===== SCROLL BANNER ===== */
.scroll-banner {
  position: absolute;
  bottom: 0;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}

.scroll-text {
  white-space: nowrap;
  display: inline-block;
  font-size: 1.2rem;
  color: #ff4747;
  padding: 15px 0;
  animation: scrollLeft 20s linear infinite;
  text-shadow: 0 0 10px rgba(255, 71, 71, 0.4);
  font-weight: 600;
  letter-spacing: 1px;
}

@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .impact-container {
    flex-direction: column;
    text-align: center;
  }

  .impact-image {
    text-align: center;
    margin-top: 40px;
  }

  .impact-text h2 {
    font-size: 2.2rem;
  }

  .read-more-circle {
    margin: 0 auto;
  }
}
