@import url(./base.css);
/* Hero Section Styles */
.hero {
  position: relative;
  height: 100vh;
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
}

.slider-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.slider-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8); /* 80% opacity black overlay */
  z-index: 2;
}

.slider-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateX(100%);
  transition: transform 1s ease-in-out;
}

.slider-image.active {
  transform: translateX(0);
}

.slider-image.prev {
  transform: translateX(-100%);
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  /* text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1); */
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  color: var(--paper);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: var(--paper);
}

.actions {
  display: flex;
  gap: 1rem;
}

.actions button {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.actions button:hover {
  transform: translateY(-2px);
}

.actions button:first-child {
  background-color: var(--primary);
  color: var(--pale);
}

.actions button:last-child {
  background-color: transparent;
  border: 2px solid #ffffff;
  color: #ffffff;
}

/* Intro Section Styles */
.intro {
  padding: 6rem 4rem;
  background-color: var(--paper);
  /* width: 100vw; */
  /* overflow-x: hidden; */
}

.intro-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.intro-illustration {
  flex: 1;
  max-width: 500px;
}

.intro-illustration img {
  width: 100%;
  height: auto;
  /* animation: float 6s ease-in-out infinite; */
}

.intro-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.intro-text h1 {
  font-size: 3rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.intro-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--dark);
  opacity: 0.9;
}

.intro-text i {
  font-size: 1.3rem;
  color: var(--primary);
  font-style: italic;
  font-weight: 500;
  margin-top: 1rem;
  display: block;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .intro-content {
    flex-direction: column;
    text-align: center;
  }

  .intro-illustration {
    max-width: 400px;
    margin: 0 auto;
  }

  .intro-text {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .slider-container::after {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.7)
    );
  }
  .actions {
    transform: scale(0.9);
    /* background-color: red; */
    justify-content: center;
  }
  .actions button {
    min-width: max-content;
  }
  .intro {
    padding: 4rem 2rem;
  }

  .intro-text h1 {
    font-size: 2.5rem;
  }
  .hero-content {
    text-align: center;
  }
}

/* Units Section Styles */
.units {
  padding: 6rem 4rem;
  background-color: var(--paper);
}

.units-content {
  max-width: 1200px;
  margin: 0 auto;
}

.units h2 {
  font-size: 3rem;
  color: var(--dark);
  text-align: center;
  margin-bottom: 4rem;
}

.units-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.unit-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.unit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.unit-icon {
  width: max-content;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.unit-icon img {
  width: 250px;
}

.unit-card h3 {
  color: var(--dark);
  font-size: 1.3rem;
  margin: 0;
}

.unit-card p {
  color: var(--dark);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0;
}

.units-cta {
  text-align: center;
  margin-top: 2rem;
}

.cta-button {
  background-color: var(--primary);
  color: var(--paper);
  padding: 1rem 2.5rem;
  border-radius: 100px;
  font-size: 1.1rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: none;
  cursor: pointer;
  width: fit-content;
  display: inline-block;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(62, 184, 186, 0.3);
}

/* Responsive adjustments for units section */
@media (max-width: 1024px) {
  .units {
    padding: 4rem 2rem;
  }

  .units-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .units h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }

  .unit-card {
    padding: 1.5rem;
  }
}

/* Philosophy Section Styles */
.philosophy {
  padding: 6rem 4rem;
  background-color: var(--pale);
  overflow: hidden;
}

.philosophy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4rem;
}

.philosophy-shape {
  flex: 1;
  max-width: 600px;
  position: relative;
}

.philosophy-shape img {
  width: 100%;
  height: auto;
  transform-origin: center;
  /* animation: floatShape 8s ease-in-out infinite; */
}

.philosophy-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.philosophy-text h2 {
  font-size: 3.5rem;
  line-height: 1.2;
  color: var(--dark);
  margin: 0;
}

.philosophy-paragraphs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.philosophy-paragraphs p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--dark);
  opacity: 0.9;
  margin: 0;
}

.philosophy-paragraphs p:first-child {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--primary);
}

@keyframes floatShape {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Responsive adjustments for philosophy section */
@media (max-width: 1024px) {
  .philosophy-content {
    flex-direction: column;
    text-align: center;
  }

  .philosophy-shape {
    max-width: 400px;
    margin: 0 auto;
  }

  .philosophy-text {
    align-items: center;
  }

  .philosophy-text h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .philosophy {
    padding: 4rem 2rem;
  }

  .philosophy-text h2 {
    font-size: 2.5rem;
  }

  .philosophy-paragraphs p {
    font-size: 1.1rem;
  }

  .philosophy-paragraphs p:first-child {
    font-size: 1.3rem;
  }
}

/* Beliefs Section Styles */
.beliefs {
  padding: 6rem 2rem;
  background-color: #f8f9fa;
}

.beliefs-content {
  max-width: 1200px;
  margin: 0 auto;
}

.beliefs h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #1a1a1a;
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 1rem;
}

.belief-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #fff;
  height: 400px;
  cursor: pointer;
}

.belief-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.belief-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.belief-card:hover .belief-image {
  transform: scale(1.1);
}

.belief-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
}

.belief-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  color: #fff;
  z-index: 1;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.belief-card:hover .belief-content {
  transform: translateY(-10px);
}

.belief-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--paper);
}

.belief-content p {
  font-size: 1rem;
  line-height: 1.5;
  color: var(--paper);
  opacity: 0.9;
}

.light {
  color: var(--paper);
}

/* Responsive adjustments for beliefs section */
@media (max-width: 1024px) {
  .beliefs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .beliefs {
    padding: 4rem 1rem;
  }

  .beliefs-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .belief-card {
    height: 350px;
  }
}

/* Final CTA Section */
.cta {
  position: relative;
  padding: 120px 24px;
  text-align: center;
  background-image: url("https://res.cloudinary.com/dauv815j5/image/upload/v1750857216/WhatsApp_Image_2025-06-25_at_12.44.34_jz0bl3.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
}

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

.cta h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.cta-subtitle {
  font-size: 1.5rem;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.cta-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button,
.cta-button.primary,
.cta-button.secondary {
  display: inline-block;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
  width: fit-content;
  box-sizing: border-box;
}

.cta-button.primary {
  background: var(--primary);
  color: white;
  border: none;
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

@media (max-width: 768px) {
  .cta {
    padding: 80px 20px;
  }

  .cta h2 {
    font-size: 2.25rem;
  }

  .cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }

  .cta-actions {
    /* flex-direction: column; */
    min-width: max-content;
    gap: 1rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .cta-button,
  .cta-button.primary,
  .cta-button.secondary {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media (max-width: 480px) {
  .cta h2 {
    font-size: 1.75rem;
  }

  .cta-subtitle {
    font-size: 1.1rem;
  }

  .cta-actions {
    max-width: 280px;
  }
}

/* About Page Styles */
.about-hero {
  padding: 120px 5% 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  text-align: center;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.about-hero .lead {
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-hero p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.about-hero .highlight {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--accent-color);
}

/* Philosophy Section */
.philosophy-section {
  padding: 100px 5%;
  background-color: var(--light-bg);
}

.philosophy-content {
  display: flex;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-text {
  flex: 1;
}

.philosophy-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}

.philosophy-text .lead {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.philosophy-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.philosophy-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.philosophy-visual img {
  max-width: 100%;
  height: auto;
}

/* Process Section */
.process-section {
  padding: 100px 5%;
  background-color: white;
}

.process-content {
  max-width: 1200px;
  margin: 0 auto;
}

.process-content h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
  color: var(--primary-color);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-step {
  padding: 30px;
  background: var(--light-bg);
  border-radius: 10px;
  position: relative;
  transition: transform 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 30px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
}

.process-step h3 {
  margin-top: 20px;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.process-step p {
  color: var(--text-color);
  line-height: 1.6;
}

/* Differentiation Section */
.differentiation-section {
  padding: 100px 5%;
  background: linear-gradient(
    135deg,
    var(--secondary-color) 0%,
    var(--primary-color) 100%
  );
  color: white;
}

.differentiation-content {
  max-width: 1200px;
  margin: 0 auto;
}

.differentiation-content h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 60px;
}

.differentiation-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
}

.others,
.we {
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.others h3,
.we h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.others ul {
  list-style: none;
  padding: 0;
}

.others li {
  font-size: 1.2rem;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.others li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.we .highlight {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.arrow {
  font-size: 2rem;
  color: var(--accent-color);
}

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

  .about-hero .lead {
    font-size: 1.3rem;
  }

  .philosophy-content {
    flex-direction: column;
    text-align: center;
  }

  .differentiation-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .arrow {
    transform: rotate(90deg);
    margin: 20px 0;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }
}

/* Stacked Hero Drop Animation */
.stacked-hero-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.stacked-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s, transform 1s;
}

.stacked-hero-image.drop-out {
  opacity: 0;
  transform: translateY(100%);
  z-index: 1;
  transition: opacity 0.5s, transform 1s;
}

.stacked-hero-image.drop-out-horizontal {
  opacity: 0;
  transform: translateX(100%);
  z-index: 1;
  transition: opacity 0.5s, transform 1s;
}

.stacked-hero-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* 50% opacity black overlay */
  z-index: 100;
  pointer-events: none;
}

/* Accelerator Cards Section */
