@charset "utf-8";
@keyframes fadeInDiagonal {
            0% {
                opacity: 0;
                transform: translateX(-20px) translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateX(0) translateY(0);
            }
        }
        
        .animate-fade-in-diagonal {
            animation: fadeInDiagonal 0.6s ease-out forwards;
        }
 /* Simple fade animation for lightbox */
        .fade-in { animation: fadeIn 0.3s ease; }
        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
        
        /* Prevent scrolling when lightbox is open */
        body.lightbox-open { overflow: hidden; }

  .panel00 {
    position: fixed;
    top: 0;
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    z-index: 1000;
  }
  
  #panel1 {
    background: #fff;
    height: 400px;
  }
  
  #panel2 {
    background: #fff;
    top: 400px;
    height: 400px;
  }
  
  #panel3 {
    background: #fff;
    height: 400px;
  }
  
  #panel4 {
    background: #fff;
    top: 400px;
    height: 400px;
  }

.bg-active  {background-image: url("../images/Selected.svg");background-repeat: no-repeat;background-position: left center;}

    /* Timeline */
    .timeline {
      position: relative;
    }
	.timeline-content h3  {font-family: "Outfit"; font-weight: 500;color: #1a1a1a;font-size: 30px;}

    /* Vertical Line */
    .timeline::before {
      content: '';
      position: absolute;
      left: 20px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: #e6e6e6;
    }

    /* Timeline Items */
    .timeline-item {
      position: relative;
      padding-left: 60px;
      margin-bottom: 40px;
      opacity: 0;
      animation: fadeInUp 0.6s forwards;
    }

    /* Animation Delays */
    .timeline-item:nth-child(1) { animation-delay: 0.8s; }
    .timeline-item:nth-child(2) { animation-delay: 0.10s; }
    .timeline-item:nth-child(3) { animation-delay: 0.12s; }
    .timeline-item:nth-child(4) { animation-delay: 0.14s; }
    .timeline-item:nth-child(5) { animation-delay: 1s; }

    /* Dot */
    .timeline-item::before {
      content: '';
      position: absolute;
      left: 14px;
      top: 10px;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: #32D674;
      border: 3px solid white;
      box-shadow: 0 0 0 4px #32D674;
      z-index: 1;
    }

    /* Different Colors */
    .timeline-item:nth-child(2)::before {
      background: #32D674;
      box-shadow: 0 0 0 4px #32D674;
    }
    .timeline-item:nth-child(3)::before {
      background: #32D674;
      box-shadow: 0 0 0 4px #32D674;
    }
    .timeline-item:nth-child(4)::before {
      background: #32D674;
      box-shadow: 0 0 0 4px #32D674;
    }
    .timeline-item:nth-child(5)::before {
      background: #32D674;
      box-shadow: 0 0 0 4px #32D674;
    }

    /* Content */
    .timeline-content {}

    .timeline-item:nth-child(2) .timeline-content {
      border-left-color: #4fd1c7;
    }
    .timeline-item:nth-child(3) .timeline-content {
      border-left-color: #f6ad55;
    }
    .timeline-item:nth-child(4) .timeline-content {
      border-left-color: #fc8181;
    }
    .timeline-item:nth-child(5) .timeline-content {
      border-left-color: #9f7aea;
    }

    /* Animations */
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes pulse {
      0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
      }
      70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(102, 126, 234, 0);
      }
      100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0);
      }
    }

    /* Animate dots when in view */
    .timeline-item.animate-dot::before {
      animation: pulse 1s;
    }

    /* Scroll-triggered animations */
    @media (prefers-reduced-motion: no-preference) {
      .timeline-item {
        animation-play-state: paused;
      }
      
      .timeline-item.in-view {
        animation-play-state: running;
      }
      
      .timeline-item.in-view::before {
        animation: pulse 1s;
      }
    }

.scroll-fade-card {
opacity: 0;
transform: translateY(20px);
transition: all 0.6s ease-out;
background: rgba(255, 255, 255, 0.15);
backdrop-filter: blur(20px);
-webkit-backdrop-filter: blur(20px);
border: 1px solid rgba(255, 255, 255, 0.2);
box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3),
  inset 0 1px 0 rgba(255, 255, 255, 0.3),
  inset 0 -1px 0 rgba(255, 255, 255, 0.3),
  inset 0 0 0px 0px rgba(255, 255, 255, 0);
}

.scroll-fade-card.visible {
opacity: 1;
transform: translateY(0);
}

/* Sustainaibility card scroll */
.slides-wrapper {
  margin-top: 63px;
}

.image {
  width: 50%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-top: 2.5rem;
}

.section {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}
.section-inner {
  height: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center
}

.section-2 .section-inner {
  height: auto;
  padding-bottom: 20vh;
}

.section-2 {
  background: #065B58;
  color: #fff;
  margin-top: 950px;
}

.section-1 {margin-top: -100px;}

		
/* Animation */

/* Hero Image */



/* accordion animations */
.accordion-content {
    transition: max-height 0.3s ease-out, opacity 0.2s ease;
    opacity: 0;
}

.accordion-content.active {
    opacity: 1;
}

/* Icon animations */
.icon-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
}

.icon-inner {
    position: relative;
    width: 100%;
    height: 100%;
}

.plus-icon, .minus-icon {
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.plus-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.minus-icon {
    opacity: 0;
    transform: scale(0.5) rotate(-90deg);
}

.accordion-btn.active .plus-icon {
    opacity: 0;
    transform: scale(0.5) rotate(90deg);
}

.accordion-btn.active .minus-icon {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

/* Hover effects */
.accordion-item {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.accordion-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}