.elementor-2203 .elementor-element.elementor-element-f52730f{--display:flex;}.elementor-2203 .elementor-element.elementor-element-f52730f.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-2203 .elementor-element.elementor-element-5aedac6{width:100%;max-width:100%;}.elementor-2203 .elementor-element.elementor-element-5aedac6.elementor-element{--align-self:stretch;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:361px){.elementor-2203 .elementor-element.elementor-element-f52730f{--width:90.157%;}}@media(max-width:1199px) and (min-width:361px){.elementor-2203 .elementor-element.elementor-element-f52730f{--width:1253px;}}/* Start custom CSS for html, class: .elementor-element-5aedac6 *//* TARGETED FULL WIDTH FIX - Only affects header and hero sections */
/* Force full width ONLY on the lifecycle header */
.lifecycle-header {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100vw !important;
  margin: 0 !important;
  padding: 0 !important;
  z-index: 1000;
  background: transparent;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

/* Force full width ONLY on the lifecycle hero */
.lifecycle-hero {
  position: relative !important;
  width: 100vw !important;
  height: 100vh !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Force full width on the parent Elementor sections ONLY if they contain lifecycle header/hero */
.elementor-element:has(.lifecycle-header),
.elementor-element:has(.lifecycle-hero) {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

/* Alternative approach if :has() doesn't work - target by data attributes */
.elementor-element[data-element_type="html"]:has(.lifecycle-header),
.elementor-element[data-element_type="html"]:has(.lifecycle-hero) {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

/* Force the Elementor container to full width ONLY for sections containing your lifecycle elements */
.elementor-section:has(.lifecycle-header) > .elementor-container,
.elementor-section:has(.lifecycle-hero) > .elementor-container {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* Fallback method - if :has() .elementor-2203 .elementor-element.elementor-element-5aedac6 doesn't work in your browser */
/* You can manually add a custom CSS class to your Elementor sections */
.full-width-section {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  max-width: none !important;
}

.full-width-section .elementor-container {
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
}

/* Import Font & Icons */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* Reset */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  width: 100%;
  overflow-x: hidden;
}

/* Header */
.lifecycle-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
}

.header-container {
  width: 100%;
  margin: 0;
  padding: 20px 40px; /* smaller, uniform padding */
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box; /* ensures padding doesn't create gaps */
}

/* Logo */
.lifecycle-header .logo {
  flex-shrink: 0;
}

.lifecycle-header .logo img {
  max-height: 90px;
  width: auto;
  display: block;
  animation: logoBounce 4s ease-in-out infinite;
}

/* Gentle bounce animation for logo image */
@keyframes logoBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Menu */
.lifecycle-header .nav-menu {
  flex-grow: 1;
}

.lifecycle-header .nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 60px;
}

.lifecycle-header .nav-menu ul li {
  position: relative;
}

.lifecycle-header .nav-menu ul li a {
  text-decoration: none;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.lifecycle-header .nav-menu ul li a:hover {
  color: #ff6600;
}

/* Caret Arrow */
.lifecycle-header .nav-menu ul li a i {
  margin-left: 6px;
  font-size: 12px;
}

/* Dropdown setup */
.lifecycle-header .nav-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0;
  background: rgba(0, 0, 0, 0.95);
  padding: 10px 0;
  list-style: none;
  min-width: 180px;
  border-radius: 6px;
  z-index: 1000;
}

.lifecycle-header .nav-menu .dropdown-menu li a {
  color: #ffffff;
  text-transform: none;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 400;
  display: block;
  padding: 10px 20px;
}

.lifecycle-header .nav-menu .dropdown-menu li a:hover {
  background: #111;
  color: #ff6600;
}

.lifecycle-header .nav-menu .dropdown:hover .dropdown-menu {
  display: block;
}

/* Icons */
.header-icons {
  display: flex;
  align-items: center;
  gap: 25px;
}

.header-icons a {
  color: #ffffff;
  font-size: 18px;
  transition: color 0.3s ease;
}

.header-icons a:hover {
  color: #ff6600;
}

/* Hamburger (hidden on desktop) */
.hamburger {
  display: none;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  z-index: 1100;
}

/* Mobile Close Button */
.mobile-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 22px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
}

/* Hero Slider - Continuous Sliding Animation */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.slide-track {
  display: flex;
  width: 600%; /* 6 slides × 100% */
  height: 100%;
  animation: slideAnimation 15s linear infinite; /* 5s per slide × 3 slides */
}

.slide {
  width: 16.666%; /* 100% ÷ 6 slides */
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

@keyframes slideAnimation {
  0% { transform: translateX(0); }
  33.33% { transform: translateX(-16.666%); }
  66.66% { transform: translateX(-33.333%); }
  100% { transform: translateX(-50%); } /* Reset to start */
}

/* Hero */
.lifecycle-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0; /* remove any default margin */
  padding: 0;
}

.lifecycle-hero .overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 1;
}

.lifecycle-hero .hero-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding: 0 20px;
  animation: fadeInUp 1.5s ease-out;
}

/* Typing Animation */
.typed-text {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.1;
  white-space: nowrap;
  border-right: 3px solid #fff;
  width: 0;
  overflow: hidden;
  margin: 0 auto 25px auto;
  color: #ffffff;
  animation: typing 3s steps(20, end) forwards, blink 0.75s step-end infinite;
}

@keyframes typing {
  from { width: 0; }
  to { width: 14ch; } /* Length of "Live the Cycle" */
}

@keyframes blink {
  50% { border-color: transparent; }
}

.lifecycle-hero .hero-content p {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 40px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.3;
  animation: fadeIn 2s ease-in;
}

.lifecycle-hero .hero-btn {
  display: inline-block;
  padding: 16px 42px;
  background: #ffffff;
  color: #000000;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  transition: all 0.3s ease;
  animation: fadeInUp 2.5s ease-in;
}

.lifecycle-hero .hero-btn:hover {
  background: #f2f2f2;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 992px) {
  .header-container {
    padding: 15px 15px; /* keep edges flush on mobile */
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Align hamburger, logo, icons in one row */
  .hamburger {
    display: block;
    order: 1;
  }

  .logo {
    order: 2;
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .logo img {
    max-height: 70px;
  }

  .header-icons {
    order: 3;
    display: flex;
    align-items: center;
    gap: 20px;
  }

  /* Show mobile close button */
  .mobile-close {
    display: block;
  }

  /* Mobile nav drawer */
  .nav-menu {
    position: fixed;
    top: 0; left: -100%;
    width: 250px;
    height: 100%;
    background: #111;
    padding-top: 80px;
    transition: left 0.3s ease;
    z-index: 9999;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-menu ul {
    flex-direction: column;
    gap: 25px;
    padding-left: 20px;
  }

  /* Hero text resize */
  .typed-text {
    font-size: 2.2rem;
  }

  .lifecycle-hero .hero-content p {
    font-size: 1rem;
  }

  .lifecycle-hero .hero-btn {
    padding: 14px 32px;
    font-size: 13px;
  }
}

<script>
  // Mobile Menu Toggle
  const hamburger = document.getElementById('hamburger');
  const navMenu = document.getElementById('nav-menu');
  const mobileClose = document.getElementById('mobile-close');

  hamburger.addEventListener('click', () => {
    navMenu.classList.toggle('active');
  });

  // Mobile Close Button
  mobileClose.addEventListener('click', () => {
    navMenu.classList.remove('active');
  });

  // Close menu when clicking outside (optional)
  document.addEventListener('click', (e) => {
    if (!navMenu.contains(e.target) && !hamburger.contains(e.target)) {
      navMenu.classList.remove('active');
    }
  });
</script>/* End custom CSS */