* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", Arial, sans-serif;
  color: #000000;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Header */
.header {
  background: #ffffff;
  padding: 20px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 10px 0;
}

.header-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

#sdcce-logo {
  max-width: 240px;
}

.tagline {
  font-size: 12px;
  color: #666;
}

.header-cta {
  background: #53257f;
  color: #ffffff;
  padding: 10px 25px;
  text-decoration: none;
  border-radius: 25px;
  font-size: 2.4em;
  font-weight: 600;
  transition: all 0.3s ease;
  max-height: 90px;
}

.header-cta:hover {
  /* background: #3d1c5f; */
  background: #000;
  transform: scale(1.05);
}

.header-cta > svg#ext {
  height: 18px;
  fill: #fff;
  display: inline;
}

/* Hero with Parallax Effect */
.hero {
  margin-top: 80px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #53257f 0%, #3d1c5f 50%, #2a1442 100%);
  background-image: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/177530/landfill-bg2.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  /* backdrop-filter: blur(10px); */
  position: relative;
  position: relative;
  overflow: hidden;
}

/* .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background:
        radial-gradient(circle at 20% 50%, rgba(0, 173, 221, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 197, 40, 0.1) 0%, transparent 50%);
    } */

.hero-content {
  background: linear-gradient(135deg, #53257f 0%, #3d1c5f 50%, #2a1442 100%);
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  color: #ffffff;
}

.hero-eyebrow {
  font-size: 1rem;
  color: #ffc528;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 30px;
  line-height: 1.1;
}

.hero .from {
  color: #e24c2a;
}

.hero .arrow {
  color: #ffc528;
  font-size: 3rem;
  display: block;
  margin: 20px 0;
}

.hero .to {
  color: #00addd;
}

.hero .event {
  color: #ffc528;
  font-size: 4rem;
  display: block;
  margin: 20px 0;
}

.hero-description {
  font-size: 1.3rem;
  margin: 40px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: #ffc528;
  display: block;
}

.stat-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #ffffff;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  40% {
    transform: translateX(-50%) translateY(-10px);
  }

  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Story Section */
.story-section {
  padding: 100px 20px;
  background: #ffffff;
}

.story-container {
  max-width: 1000px;
  margin: 0 auto;
}

.story-intro {
  text-align: center;
  margin-bottom: 80px;
}

.story-intro h2 {
  font-size: 2.5rem;
  color: #53257f;
  margin-bottom: 20px;
  font-weight: 800;
}

.story-intro p {
  font-size: 1.2rem;
  color: #666;
  line-height: 1.8;
}

.transformation-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.flow-step {
  text-align: center;
  padding: 40px 20px;
  border-radius: 8px;
  position: relative;
}

.flow-step::after {
  content: "→";
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: #00addd;
  font-weight: 700;
}

.flow-step:last-child::after {
  display: none;
}

.flow-icon {
  display: block;
}

.flow-icon svg {
  width: 90px;
  height: 90px;
}

svg path {
  fill: #53257f;
  stroke: #53257f;
}

#icon-impact path,
#hands path {
  stroke-width: 2px;
  fill: #53257f;
}

.flow-step h3 {
  color: #53257f;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.flow-step p {
  color: #666;
}

/* Impact Section */
.impact-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.impact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); */
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.impact-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.impact-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(83, 37, 127, 0.15);
}

.impact-icon {
  width: 70px;
  height: 70px;
  margin: auto;
  background: linear-gradient(135deg, #53257f 0%, #3d1c5f 100%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.impact-icon img {
  height: 36px;
  width: 36px;
}

.impact-card h3 {
  color: #53257f;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.impact-card p {
  color: #666;
  line-height: 1.7;
}

/* Categories Carousel */
.categories-section {
  padding: 100px 20px;
  background: #ffffff;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  color: #53257f;
  margin-bottom: 20px;
  font-weight: 800;
}

.section-header p {
  font-size: 1.2rem;
  color: #666;
}

.categories-showcase {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
  grid-template-columns: 1fr;
  gap: 30px;
}

.category-showcase-card {
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
}

.category-showcase-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.category-image {
  /*   height: 200px; */
  width: 6rem;
  background: linear-gradient(135deg, #53257f 0%, #3d1c5f 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #ffffff;
  padding: 1rem;
}

.category-showcase-content {
  padding: 25px;
}

.category-showcase-content h3 {
  color: #53257f;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.category-showcase-content p {
  color: #666;
  font-size: 0.95rem;
}

/* Timeline Section */
.timeline-section {
  padding: 100px 20px;
  background: #53257f;
  color: #ffffff;
}

.timeline-container {
  max-width: 1000px;
  margin: 0 auto;
}

.timeline-header {
  text-align: center;
  margin-bottom: 60px;
}

.timeline-header h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.timeline-events {
  position: relative;
}

.timeline-event {
  display: flex;
  gap: 40px;
  margin-bottom: 60px;
  position: relative;
}

.timeline-date {
  min-width: 200px;
  text-align: right;
}

.timeline-date .date {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffc528;
  display: block;
}

.timeline-date .time {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.timeline-content {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  padding: 30px;
  border-radius: 12px;
  border-left: 4px solid #00addd;
}

.timeline-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #ffc528;
}

.timeline-content p {
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* CTA Section */
.cta-section {
  padding: 120px 20px;
  /*   background: linear-gradient(135deg, #00addd 0%, #0088aa 100%); */
  background: #fff;
  text-align: center;
  color: #000;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 197, 40, 0.2);
  border-radius: 50%;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.cta-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
}

.cta-button {
  display: inline-block;
  background: #ffc528;
  color: #000000;
  padding: 20px 60px;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
  background: #000000;
  color: #ffffff;
  padding: 60px 20px;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
  color: #ffc528;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #00addd;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid #333;
}

.bubbles {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

.bubble {
  position: absolute;
  bottom: -100px;
  background: rgba(0, 173, 221, 0.3);
  border-radius: 50%;
  animation: rise 15s infinite ease-in;
}

.bubble:nth-child(1) {
  width: 80px;
  height: 80px;
  left: 10%;
  animation-duration: 8s;
  animation-delay: 0s;
}

.bubble:nth-child(2) {
  width: 120px;
  height: 120px;
  left: 70%;
  animation-duration: 12s;
  animation-delay: 2s;
}

.bubble:nth-child(3) {
  width: 60px;
  height: 60px;
  left: 40%;
  animation-duration: 10s;
  animation-delay: 4s;
}

.bubble:nth-child(4) {
  width: 100px;
  height: 100px;
  left: 85%;
  animation-duration: 14s;
  animation-delay: 1s;
}

.bubble:nth-child(5) {
  width: 40px;
  height: 40px;
  left: 25%;
  animation-duration: 9s;
  animation-delay: 3s;
}

@keyframes rise {
  0% {
    bottom: -100px;
    transform: translateX(0);
  }

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

  100% {
    bottom: 110vh;
    transform: translateX(-100px);
  }
}

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

  .transformation-flow {
    grid-template-columns: 1fr;
  }

  .flow-step::after {
    content: "↓";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -40px;
    transform: translateX(-50%);
  }

  .timeline-event {
    flex-direction: column;
  }

  .timeline-date {
    text-align: left;
  }

  .cta-content h2 {
    font-size: 2rem;
  }
}

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

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

svg#ext path {
  fill: #fff !important;
}
