/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

body {
  background-color: #f8f9fa;
  font-family: "Inter", sans-serif !important;
  margin: 0;
  padding: 0;
}

/* Logo styles */
.logo-img {
  height: 55px !important;
  width: auto;
  transition: all 0.3s ease;
}

/* For smaller screens */
@media (max-width: 768px) {
  .logo-img {
    height: 30px;
  }
}

/* For very small screens */
@media (max-width: 480px) {
  .logo-img {
    height: 50px;
  }
}

.roaming-work-section table tr td.roaming-work-section-left-td span {
  color: #aaa;
  font-size: 1rem;
}

.
/* Inner pages - sticky from start */
.always-sticky {
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: #fff; /* or your nav background */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* optional */
}

span.wc-block-mini-cart__badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #f38b2b;
    color: #1b1b1b;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.always-sticky .navbar {
  position: relative;
}

.always-sticky .navbar .nav-link {
  color: #1b1b1b !important;
}

.always-sticky .mobile-menu-toggle i{
  color: #1b1b1b !important;
}

/* Sticky navbar styles */
.navbar.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  animation: slideDown 0.5s ease;
  z-index: 1000;
}

.navbar.sticky .navbar-brand {
  color: #1b1b1b;
}

.navbar.sticky .nav-link {
  color: #1b1b1b !important;
}

.navbar.sticky .icon-link {
  color: #1b1b1b;
}

.navbar.sticky .nav-link:hover,
.navbar.sticky .nav-link:focus {
  background-color: rgba(0, 0, 0, 0.05);
}



@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Navigation Styles */
.navbar {
  padding: 15px 0;
  background-color: transparent;
  position: relative;
  z-index: 1000;
}

/* Logo positioning */
.navbar-brand {
  display: flex;
  align-items: center;
  margin: 0 !important;
  padding: 0;
  padding-right: 15px; /* Add padding to prevent logo from being cut off */
}

.nav-link {
  color: white !important;
  font-size: 1rem;
  margin: 0 10px;
  position: relative;
  transition: all 0.3s ease;
  padding: 8px 15px !important;
  border-radius: 20px;
}

.nav-item {
  position: static;
}

/* New hover effect for nav items */
.nav-link:hover,
.nav-link:focus {
  background-color: rgba(255, 255, 255, 0.2);
  transform: scale(1.05);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.contact-btn {
  background-color: #8de4b5;
  color: black !important;
  border-radius: 50px;
  padding: 10px 25px !important;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.05);
  background-color: #7ad0a2;
}

/* Icon Links Styling */
.icon-link {
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  color: white !important;
}

.icon-link:hover {
  background-color: rgb(146 146 146 / 90%);
  transform: scale(1.1);
}

/* Cart Badge */
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #f38b2b;
  color: #1b1b1b;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* User Icon Specific */
.user-icon {
  background-color: #00000052;
}

/* Cart Icon Specific */
.cart-icon {
  position: relative;
}

.icon-link .wc-block-mini-cart {
  background-color: #00000052 !important;
  border-radius: 50% !important;
}

/* Add these styles to your CSS file */

/* Hero section modifications */
.hero-section {
  background-image: url("https://ecotel.codemelodies.com/main.jpg");
  background-size: cover;
  background-position: center;
  height: 650px;
  position: relative;

  border-radius: 30px;
  margin: 20px;
  margin-bottom: 50px;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 30px;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  height: 100%;
  display: flex;
  align-items: center;
}

.hero-text-container {
  max-width: 800px;
  text-align: left;
  margin-left: 0;
  animation: fadeIn 1s ease-out;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 10px;
  opacity: 0;
}

.main-title {
  animation: slideInLeft 1s ease-out forwards;
  animation-delay: 0.3s;
}

.secondary-title {
  animation: slideInRight 1s ease-out forwards;
  animation-delay: 0.6s;
  color: #fecd59; /* Using the mint color from your CSS */
}

.highlight-text {
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: rgba(113, 230, 175, 0.3); /* Semi-transparent mint color */
  z-index: -1;
  transform: scaleX(0);
  transform-origin: left;
  animation: expandWidth 0.8s ease-out forwards;
  animation-delay: 1.2s;
}

.hero-buttons {
  margin-top: 40px;
  display: flex;
  gap: 20px;
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
  animation-delay: 1s;
}

.hero-btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn {
  background-color: white;
  color: #1b1b1b;
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

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

.secondary-btn:hover {
  background-color: white;
  color: #1b1b1b;
  transform: translateY(-3px);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes expandWidth {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.2rem !important;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .hero-btn {
    width: 100%;
    text-align: center;
  }

  .logo-img {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2rem;
  }

  .logo-img {
    height: 50px;
  }
}

/* Fixed Mega Menu Styles */

.dropdown-wrapper {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: -100px;

  background-color: white;
  border-radius: 20px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 1000;

  width: 1000px; /* Increased width */
  display: grid;

  gap: 30px;
  padding: 30px !important;
  grid-template-columns: repeat(3, 1fr);
}

/* Image-Text Group */
.image-text-group {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.menu-image {
  width: 100px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Quick Links Column */
.quick-links-column .mega-menu-item {
  margin-bottom: 15px;
}

.quick-links-column .mega-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.quick-links-column .mega-menu-link:hover {
  background-color: #f5f5f5;
}

.menu-contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 15px 0;
  padding: 10px;
  background-color: #f8f9fa;
  border-radius: 8px;
}

.menu-contact-info i {
  color: #8de4b5;
}
.mega-menu-image-column {
  border-left: 2px solid #eee;
  padding-left: 30px;
}

.mega-menu-category-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0 20px;
}

.mega-menu-image {
  border-radius: 10px;
  overflow: hidden;
  margin-top: 20px;
}

.mega-menu-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.mega-menu-header {
  font-size: 1.4rem;
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid #8de4b5;
}

.mega-menu-item {
  margin-bottom: 20px;
}

.mega-menu-link {
  font-size: 1rem;
  padding: 8px 0;
}

.dropdown-wrapper:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}

.mega-menu-header {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  color: #333;
  display: flex;
  align-items: center;
}

.mega-menu-header i {
  margin-left: 10px;
}

.mega-menu-category {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 15px;
  color: #333;
}

.mega-menu-item {
  margin-bottom: 30px;
}

.mega-menu-link {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  text-decoration: none;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  transition: all 0.2s ease;
}

.mega-menu-link:hover {
  color: #555;
}

.mega-menu-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

/* Arrow animation on hover */
.mega-menu-link:hover i {
  transform: translateX(5px);
}

.mega-menu-description {
  color: #666;
  font-size: 0.9rem;
}

/* Pricing Section Styles */
.pricing-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
  padding: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.pricing-card {
  background-color: white;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
  flex: 1;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  width: 100%;
  border-top: 10px solid #fecd59;
}

.old-price {
    font-size: 14px;
    font-weight: 800;
    text-decoration: line-through;
    line-height: 36px;
}

.pricing-card:hover {
  background-color: #8de4b5;
  transform: scale(1.05);
  z-index: 10;
  flex: 1.1;
}

.pricing-card:not(:hover) {
  transition: all 0.3s ease;
}

.pricing-container:hover .pricing-card:not(:hover) {
  flex: 0.95;
}

.plan-name {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.price-button {
  background-color: #8de4b5;
  color: black;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: bold;
  margin: 15px 0;
  width: 100%;

  align-self: center;
}

.tagline {
  text-align: center;
  font-style: italic;
  margin-bottom: 30px;
}

.features {
  margin-top: auto;
  list-style-type: none;
  padding-left: 0;
}

.features li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.features li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: black;
  border-radius: 50%;
  margin-right: 10px;
  position: relative;
}

.features li::after {
  content: "✓";
  color: white;
  position: absolute;
  margin-left: 6px;
  font-size: 12px;
}

.select-button {
  background-color: black;
  text-align: center;
  color: white;
  border: none;
  border-radius: 5px;
  padding: 10px 30px;
  font-weight: bold;
  margin-top: 20px;
  width: 100%;
  max-width: 200px;
  align-self: center;
}

.card-inner {
  background-color: white;
  border-radius: 15px;
  padding: 20px;
  margin-bottom: 20px;
}

.pricing-section-title {
  text-align: center;
  margin: 50px 0 30px;
  font-size: 2.5rem;
  font-weight: bold;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
}

@media (max-width: 992px) {
  .pricing-container {
    flex-direction: column;
  }

  .pricing-card:hover {
    transform: scale(1.02);
  }

  .hero-title {
    font-size: 3rem;
  }

  .navbar-collapse {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 20px;
    border-radius: 10px;
    margin-top: 10px;
  }

  .mega-menu {
    position: static;
    width: 100%;
    max-width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding: 15px;
    margin-top: 10px;
    background-color: rgba(255, 255, 255, 0.9);
  }
}

/* Features Section Styles */
.features-section {
  padding: 100px 0;
  background-color: #f8f9fa;
  opacity: 0;
  transform: translateY(50px);
  animation: slideUp 1s ease-out forwards;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.features-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 60px;
  text-align: left;
  line-height: 1.2;
}

.highlight {
  color: #333;
  position: relative;
  display: inline-block;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #8de4b5;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline 1.5s ease-out forwards;
  animation-delay: 1s;
}

@keyframes underline {
  to {
    transform: scaleX(1);
  }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-box {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #8de4b5 0%, #6ed5a4 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

.feature-box:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-box:hover::before {
  opacity: 0.05;
}

.icon-wrapper {
  width: 70px;
  height: 70px;
  background: #f8f9fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
}

.feature-box:hover .icon-wrapper {
  animation: spin 0.5s ease-out;
}

.icon-wrapper i {
  font-size: 28px;
  color: #333;
  transition: all 0.3s ease;
}

.feature-box:hover .icon-wrapper i {
  transform: scale(1.2);
  color: #8de4b5;
}

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

@keyframes spin {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}

.feature-box h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  z-index: 2;
}

.feature-box p {
  color: #666;
  line-height: 1.6;
  margin: 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .features-section {
    padding: 60px 0;
  }

  .features-title {
    font-size: 2rem;
    text-align: center;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-box {
    padding: 30px 20px;
  }
}

.subscription-features-alt {
  padding: 100px 0;
  background-color: white;
  overflow: hidden;
}

.title-wrapper {
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.title {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 20px;
}

.highlight {
  display: block;
  font-size: 3.5rem;
  color: #333;
}

.title-line {
  width: 100px;
  height: 3px;
  background: #8de4b5;
  position: relative;
  overflow: hidden;
}

.title-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #8de4b5;
  transform: translateX(-100%);
  animation: drawLine 1s ease-out forwards;
  animation-delay: 0.8s;
}

@keyframes drawLine {
  to {
    transform: translateX(0);
  }
}

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

.feature-flip-card {
  opacity: 0;
  transform: translateY(30px);
  height: 150px;
}

.feature-flip-card[data-index="1"] {
  animation: fadeInUp 0.6s ease-out forwards 0.2s;
}
.feature-flip-card[data-index="2"] {
  animation: fadeInUp 0.6s ease-out forwards 0.4s;
}
.feature-flip-card[data-index="3"] {
  animation: fadeInUp 0.6s ease-out forwards 0.6s;
}
.feature-flip-card[data-index="4"] {
  animation: fadeInUp 0.6s ease-out forwards 0.8s;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
  cursor: pointer;
}

.feature-flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.flip-card-front {
  border: 1px solid #eee;
}

.flip-card-back {
  background: linear-gradient(135deg, #8de4b5, #6ed5a4);
  transform: rotateY(180deg);
  color: white;
}

.icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f8f9fa;
  border-radius: 12px;
  transform: rotate(45deg);
  transition: all 0.5s ease;
  animation: morphShape 3s infinite alternate;
}

@keyframes morphShape {
  0% {
    border-radius: 12px;
    transform: rotate(45deg) scale(1);
  }
  50% {
    border-radius: 50%;
    transform: rotate(45deg) scale(1.1);
  }
  100% {
    border-radius: 12px;
    transform: rotate(45deg) scale(1);
  }
}

.icon-wrapper i {
  font-size: 24px;
  color: #333;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.flip-card-front span {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
}

.back-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.back-content i {
  font-size: 28px;
  margin-bottom: 5px;
}

.back-content span {
  font-size: 1.1rem;
  font-weight: bold;
}

.hover-line {
  width: 40px;
  height: 2px;
  background: white;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.flip-card-back:hover .hover-line {
  transform: scaleX(1);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .title {
    font-size: 2.5rem;
  }

  .highlight {
    font-size: 3rem;
  }
}

.main-referral-section {
  padding: 100px 0;
  background-color: white;
  overflow: hidden;

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 1;
    animation: popIn 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
  }

  .main-title {
    font-size: 3.13rem;
    font-weight: bold;
    margin-bottom: 15px;
    position: relative;
  }

  .main-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: #71e6af;
  }

  .subtitle {
    font-size: 1.5rem;
    color: #1b1b1b;
    margin-top: 30px;
  }

  .steps-container {
    position: relative;
  }

  .step-block {
    margin-bottom: 100px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
  }

  .step-block[data-step="1"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.2s;
  }
  .step-block[data-step="2"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.4s;
  }
  .step-block[data-step="3"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.6s;
  }

  .step-content {
    display: flex;
    gap: 50px;
    align-items: center;
  }

  .reverse {
    flex-direction: row-reverse;
  }

  .image-box {
    flex: 1;
    position: relative;
  }

  .image-frame {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:nth-child(1) .image-frame {
    background-color: #71e6af;
    padding: 20px;
  }

  .step-block:nth-child(2) .image-frame {
    background-color: #fecd59;
    padding: 20px;
  }

  .step-block:nth-child(3) .image-frame {
    background-color: #ff7eb3; /* Using a pink color for the third frame */
    padding: 20px;
  }

  .step-block:hover .image-frame {
    transform: translateY(-10px);
  }

  .step-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:hover .step-image {
    transform: scale(1.05);
  }

  .text-box {
    flex: 1;
    padding: 30px;
    position: relative;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:hover .text-box {
    transform: translateY(-10px);
  }

  .step-number {
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 5rem;
    font-weight: bold;
    color: #1b1b1b;
    opacity: 0.1;
    z-index: 0;
  }

  .text-box h3 {
    font-size: 2rem;
    color: #1b1b1b;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .text-box p {
    font-size: 1.1rem;
    color: #1b1b1b;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .bonus-text {
    font-size: 1.2rem;
    font-weight: bold;
  }

  .highlight {
    color: #71e6af;
    position: relative;
    display: inline-block;
  }

  .action-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background-color: #71e6af;
    color: #1b1b1b;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
  }

  .action-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .action-btn:hover::after {
    transform: translateX(0);
  }

  .action-btn.dark {
    background-color: #1b1b1b;
    color: white;
  }

  .connector {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: -1;
  }

  .connector svg {
    width: 100%;
    height: 100%;
  }

  .path {
    fill: none;
    stroke: #71e6af;
    stroke-width: 2;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 2s ease-out forwards;
  }

  .path-pink {
    fill: none;
    stroke: #ff7eb3;
    stroke-width: 2;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 2s ease-out forwards;
  }

  .step-block:nth-child(2) .path {
    stroke: #fecd59;
  }
}

.standard-referral-section {
  padding: 80px 0px 0px;
  background-color: white;
  overflow: hidden;

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: popIn 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
  }

  .main-title {
    font-size: 3.13rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
  }

  .main-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: #71e6af;
  }

  .subtitle {
    font-size: 1.5rem;
    color: #1b1b1b;
    margin-top: 30px;
  }

  .steps-container {
    position: relative;
  }

  .step-block {
    margin-bottom: 100px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
  }

  .step-block[data-step="1"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.2s;
  }
  .step-block[data-step="2"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.4s;
  }
  .step-block[data-step="3"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.6s;
  }

  .step-content {
    display: flex;
    gap: 50px;
    align-items: center;
  }

  .reverse {
    flex-direction: row-reverse;
  }

  .image-box {
    flex: 1;
    position: relative;
  }

  .image-frame {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:nth-child(1) .image-frame {
    background-color: #71e6af;
    padding: 20px;
  }

  .step-block:nth-child(2) .image-frame {
    background-color: #fff15d;
    padding: 20px;
  }

  .step-block:nth-child(3) .image-frame {
    background-color: #ff7eb3; /* Using a pink color for the third frame */
    padding: 20px;
  }

  .step-block:hover .image-frame {
    transform: translateY(-10px);
  }

  .step-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:hover .step-image {
    transform: scale(1.05);
  }

  .text-box {
    flex: 1;
    padding: 30px;
    position: relative;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:hover .text-box {
    transform: translateY(-10px);
  }

  .step-number {
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 5rem;
    font-weight: bold;
    color: #1b1b1b;
    opacity: 0.1;
    z-index: 0;
  }

  .text-box h3 {
    font-size: 2rem;
    color: #1b1b1b;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .text-box p {
    font-size: 1.1rem;
    color: #1b1b1b;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .bonus-text {
    font-size: 1.2rem;
    font-weight: bold;
  }

  .highlight {
    color: #71e6af;
    position: relative;
    display: inline-block;
  }

  .action-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background-color: #71e6af;
    color: #1b1b1b;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
  }

  .action-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .action-btn:hover::after {
    transform: translateX(0);
  }

  .action-btn.dark {
    background-color: #1b1b1b;
    color: white;
  }

  .connector {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: -1;
  }

  .connector svg {
    width: 100%;
    height: 100%;
  }

  .path {
    fill: none;
    stroke: #71e6af;
    stroke-width: 2;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 2s ease-out forwards;
  }

  .path-pink {
    fill: none;
    stroke: #ff7eb3;
    stroke-width: 2;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 2s ease-out forwards;
  }

  .step-block:nth-child(2) .path {
    stroke: #fff15d;
  }

}


.page-55plus-referral-section {
  padding: 0px 0 80px;
  background-color: white;
  overflow: hidden;

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: popIn 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
  }

  .main-title {
    font-size: 3.13rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
  }

  .main-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: #71e6af;
  }

  .subtitle {
    font-size: 1.5rem;
    color: #1b1b1b;
    margin-top: 30px;
  }

  .steps-container {
    position: relative;
  }

  .step-block {
    margin-bottom: 100px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
  }

  .step-block[data-step="1"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.2s;
  }
  .step-block[data-step="2"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.4s;
  }
  .step-block[data-step="3"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.6s;
  }

  .step-content {
    display: flex;
    gap: 50px;
    align-items: center;
  }

  .reverse {
    flex-direction: row-reverse;
  }

  .image-box {
    flex: 1;
    position: relative;
  }

  .image-frame {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:nth-child(1) .image-frame {
    background-color: #fff15d;
    padding: 20px;
  }

  .step-block:nth-child(2) .image-frame {
    background-color: #ffd3b3;
    padding: 20px;
  }

  .step-block:nth-child(3) .image-frame {
    background-color: #fff15d; /* Using a pink color for the third frame */
    padding: 20px;
  }

  .step-block:hover .image-frame {
    transform: translateY(-10px);
  }

  .step-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:hover .step-image {
    transform: scale(1.05);
  }

  .text-box {
    flex: 1;
    padding: 30px;
    position: relative;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:hover .text-box {
    transform: translateY(-10px);
  }

  .step-number {
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 5rem;
    font-weight: bold;
    color: #1b1b1b;
    opacity: 0.1;
    z-index: 0;
  }

  .text-box h3 {
    font-size: 2rem;
    color: #1b1b1b;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .text-box p {
    font-size: 1.1rem;
    color: #1b1b1b;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .bonus-text {
    font-size: 1.2rem;
    font-weight: bold;
  }

  .highlight {
    color: #71e6af;
    position: relative;
    display: inline-block;
  }

  .action-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background-color: #71e6af;
    color: #1b1b1b;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
  }

  .action-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .action-btn:hover::after {
    transform: translateX(0);
  }

  .action-btn.dark {
    background-color: #1b1b1b;
    color: white;
  }

  .connector {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: -1;
  }

  .connector svg {
    width: 100%;
    height: 100%;
  }

  .path {
    fill: none;
    stroke: #fff15d;
    stroke-width: 2;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 2s ease-out forwards;
  }

  .path-pink {
    fill: none;
    stroke: #fff15d;
    stroke-width: 2;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 2s ease-out forwards;
  }

  .step-block:nth-child(2) .path {
    stroke: #ffd3b3;
  }

}

.student-referral-section {
  padding: 80px 0px 0px;
  background-color: white;
  overflow: hidden;

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: popIn 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
  }

  .main-title {
    font-size: 3.13rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
  }

  .main-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: #71e6af;
  }

  .subtitle {
    font-size: 1.5rem;
    color: #1b1b1b;
    margin-top: 30px;
  }

  .steps-container {
    position: relative;
  }

  .step-block {
    margin-bottom: 100px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
  }

  .step-block[data-step="1"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.2s;
  }
  .step-block[data-step="2"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.4s;
  }
  .step-block[data-step="3"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.6s;
  }

  .step-content {
    display: flex;
    gap: 50px;
    align-items: center;
  }

  .reverse {
    flex-direction: row-reverse;
  }

  .image-box {
    flex: 1;
    position: relative;
  }

  .image-frame {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:nth-child(1) .image-frame {
    background-color: #09ccea;
    padding: 20px;
  }

  .step-block:nth-child(2) .image-frame {
    background-color: #71e6af;
    padding: 20px;
  }

  .step-block:nth-child(3) .image-frame {
    background-color: #f7d8ab; /* Using a pink color for the third frame */
    padding: 20px;
  }

  .step-block:hover .image-frame {
    transform: translateY(-10px);
  }

  .step-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:hover .step-image {
    transform: scale(1.05);
  }

  .text-box {
    flex: 1;
    padding: 30px;
    position: relative;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:hover .text-box {
    transform: translateY(-10px);
  }

  .step-number {
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 5rem;
    font-weight: bold;
    color: #1b1b1b;
    opacity: 0.1;
    z-index: 0;
  }

  .text-box h3 {
    font-size: 2rem;
    color: #1b1b1b;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .text-box p {
    font-size: 1.1rem;
    color: #1b1b1b;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .bonus-text {
    font-size: 1.2rem;
    font-weight: bold;
  }

  .highlight {
    color: #71e6af;
    position: relative;
    display: inline-block;
  }

  .action-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background-color: #71e6af;
    color: #1b1b1b;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
  }

  .action-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .action-btn:hover::after {
    transform: translateX(0);
  }

  .action-btn.dark {
    background-color: #1b1b1b;
    color: white;
  }

  .connector {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: -1;
  }

  .connector svg {
    width: 100%;
    height: 100%;
  }

  .path {
    fill: none;
    stroke: #09ccea;
    stroke-width: 2;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 2s ease-out forwards;
  }

  .path-pink {
    fill: none;
    stroke: #f7d8ab;
    stroke-width: 2;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 2s ease-out forwards;
  }

  .step-block:nth-child(2) .path {
    stroke: #71e6af;
  }

}

.om-oss-referral-section {
  padding: 80px 0 10px;
  background-color: white;
  overflow: hidden;

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: popIn 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
  }

  .main-title {
    font-size: 3.13rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
  }

  .main-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: #71e6af;
  }

  .subtitle {
    font-size: 1.5rem;
    color: #1b1b1b;
    margin-top: 30px;
  }

  .steps-container {
    position: relative;
  }

  .step-block {
    margin-bottom: 100px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
  }

  .step-block[data-step="1"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.2s;
  }
  .step-block[data-step="2"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.4s;
  }
  .step-block[data-step="3"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.6s;
  }

  .step-content {
    display: flex;
    gap: 50px;
    align-items: center;
  }

  .reverse {
    flex-direction: row-reverse;
  }

  .image-box {
    flex: 1;
    position: relative;
  }

  .image-frame {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:nth-child(1) .image-frame {
    background-color: #b9ced1;
    padding: 20px;
  }

  .step-block:nth-child(2) .image-frame {
    background-color: #a5ff84;
    padding: 20px;
  }

  .step-block:nth-child(3) .image-frame {
    background-color: #f7d8ab; /* Using a pink color for the third frame */
    padding: 20px;
  }

  .step-block:hover .image-frame {
    transform: translateY(-10px);
  }

  .step-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:hover .step-image {
    transform: scale(1.05);
  }

  .text-box {
    flex: 1;
    padding: 30px;
    position: relative;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:hover .text-box {
    transform: translateY(-10px);
  }

  .step-number {
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 5rem;
    font-weight: bold;
    color: #1b1b1b;
    opacity: 0.1;
    z-index: 0;
  }

  .text-box h3 {
    font-size: 2rem;
    color: #1b1b1b;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .text-box p {
    font-size: 1.1rem;
    color: #1b1b1b;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .bonus-text {
    font-size: 1.2rem;
    font-weight: bold;
  }

  .highlight {
    color: #71e6af;
    position: relative;
    display: inline-block;
  }

  .action-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background-color: #71e6af;
    color: #1b1b1b;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
  }

  .action-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .action-btn:hover::after {
    transform: translateX(0);
  }

  .action-btn.dark {
    background-color: #1b1b1b;
    color: white;
  }

  .connector {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: -1;
  }

  .connector svg {
    width: 100%;
    height: 100%;
  }

  .path {
    fill: none;
    stroke: #b9ced1;
    stroke-width: 2;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 2s ease-out forwards;
  }

  .path-pink {
    fill: none;
    stroke: #f7d8ab;
    stroke-width: 2;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 2s ease-out forwards;
  }

  .step-block:nth-child(2) .path {
    stroke: #a5ff84;
  }

}

.hållbarhet-referral-section {
  padding: 80px 0px 0px;
  background-color: white;
  overflow: hidden;

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }

  .header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: popIn 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
  }

  .main-title {
    font-size: 3.13rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
  }

  .main-title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background-color: #71e6af;
  }

  .subtitle {
    font-size: 1.5rem;
    color: #1b1b1b;
    margin-top: 30px;
  }

  .steps-container {
    position: relative;
  }

  .step-block {
    margin-bottom: 100px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
  }

  .step-block[data-step="1"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.2s;
  }
  .step-block[data-step="2"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.4s;
  }
  .step-block[data-step="3"] {
    animation: slideUp 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards 0.6s;
  }

  .step-content {
    display: flex;
    gap: 50px;
    align-items: center;
  }

  .reverse {
    flex-direction: row-reverse;
  }

  .image-box {
    flex: 1;
    position: relative;
  }

  .image-frame {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:nth-child(1) .image-frame {
    background-color: #65ab73;
    padding: 20px;
  }

  .step-block:nth-child(2) .image-frame {
    background-color: #aaad82;
    padding: 20px;
  }

  .step-block:nth-child(3) .image-frame {
    background-color: #f7d8ab; /* Using a pink color for the third frame */
    padding: 20px;
  }

  .step-block:hover .image-frame {
    transform: translateY(-10px);
  }

  .step-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:hover .step-image {
    transform: scale(1.05);
  }

  .text-box {
    flex: 1;
    padding: 30px;
    position: relative;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  .step-block:hover .text-box {
    transform: translateY(-10px);
  }

  .step-number {
    position: absolute;
    top: -30px;
    left: 30px;
    font-size: 5rem;
    font-weight: bold;
    color: #1b1b1b;
    opacity: 0.1;
    z-index: 0;
  }

  .text-box h3 {
    font-size: 2rem;
    color: #1b1b1b;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .text-box p {
    font-size: 1.1rem;
    color: #1b1b1b;
    line-height: 1.6;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }

  .bonus-text {
    font-size: 1.2rem;
    font-weight: bold;
  }

  .highlight {
    color: #71e6af;
    position: relative;
    display: inline-block;
  }

  .action-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    background-color: #71e6af;
    color: #1b1b1b;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
  }

  .action-btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
  }

  .action-btn:hover::after {
    transform: translateX(0);
  }

  .action-btn.dark {
    background-color: #1b1b1b;
    color: white;
  }

  .connector {
    position: absolute;
    bottom: -80px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: -1;
  }

  .connector svg {
    width: 100%;
    height: 100%;
  }

  .path {
    fill: none;
    stroke: #65ab73;
    stroke-width: 2;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 2s ease-out forwards;
  }

  .path-pink {
    fill: none;
    stroke: #f7d8ab;
    stroke-width: 2;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawPath 2s ease-out forwards;
  }

  .step-block:nth-child(2) .path {
    stroke: #aaad82;
  }

}



.coverage-map-section {
  padding: 100px 0;
  background-color: white;
}

.coverage-map-section .coverage-container {
  background-color: #f8f9fa;
  border-radius: 20px;

  max-width: 1360px;
  margin: 0 auto;
}

.coverage-box {
  background-color: #f7f7f7;
}
.coverage-box h2 {
  font-size: 2.6rem;
}
.coverage-box p {
  font-size: 1.06rem;
  line-height: 1.6;
}
.coverage-box .btn {
  font-size: 1rem;
  border-radius: 50px;
}

.coverage-box .btn:hover {
  background-color: #97f5bb;
  border: 1px solid #97f5bb;
  color: #212529;
}


.number-feature-section {
  background-color: #fccc4c;
  
}

.number-feature-container {
  padding: 20px;
  max-width: 1360px;
  margin: 0 auto;
}

.number-feature-section .icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.number-feature-section .box-subtle {
    background-color: #FFFFFF4A;
}

.number-feature-section .box-subtle p{
  font-size: 0.85rem;
  color: #1b1b1b;
  line-height: 1.6;
}


.climate-smart-section {
  background-color: #f0f0f0;
  height: 500px;
  margin-top: 80px;
}






.good-check-section {
  background-color: #fccc4c;
}

.good-check-container {
  padding: 20px;
  max-width: 1360px;
  margin: 0 auto;
}

.good-check-section .icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.good-check-section .box-subtle {
    background-color: #FFFFFF4A;
}

.good-check-section .box-subtle p{
  font-size: 0.85rem;
  color: #1b1b1b;
  line-height: 1.6;
}


.numberflytt-feature-section {
  background-color: #f0f0f0;
  
}

.numberflytt-feature-container {
  padding: 20px;
  max-width: 1360px;
  margin: 0 auto;
}

.numberflytt-feature-section .icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.numberflytt-feature-section .box-subtle {
    background-color: #fff;
}

.numberflytt-feature-section .box-subtle p{
  font-size: 0.85rem;
  color: #1b1b1b;
  line-height: 1.6;
}

.further-questions-container {
  padding: 20px;
  max-width: 1360px;
  margin: 0 auto;
}

.further-questions-section .accordion-collapse {
  transition: height 0.4s ease, opacity 0.4s ease;
  overflow: hidden;
}

.further-questions-section .accordion-body {
  transition: opacity 0.4s ease;
}

.further-questions-section .accordion-button::after {
  filter: invert(55%) sepia(56%) saturate(527%) hue-rotate(92deg) brightness(92%) contrast(85%);
}

.further-questions-section .accordion-button:not(.collapsed) {
  box-shadow: none;
}


.further-questions-section .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
  outline: none;
}
.further-questions-section .accordion-button:not(.collapsed) {
  box-shadow: none;
  border: none;
}

.om-oss-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.om-oss-feature-section {
  background-color: #fccc4c;
}
.om-oss-feature-container {
  padding: 20px;
  max-width: 1360px;
  margin: 0 auto;
}


.om-oss-telecom-section {
  background-color: #fff;
}
.om-oss-telecom-container {
  padding: 20px;
  max-width: 1360px;
  margin: 0 auto;
}


.point-check-section {
  background-color: #fccc4c;
}

.point-check-container {
  padding: 20px;
  max-width: 1360px;
  margin: 0 auto;
}

.point-check-section .icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.point-check-section .box-subtle {
    background-color: #fff;
}

.point-check-section .box-subtle p{
  font-size: 0.85rem;
  color: #1b1b1b;
  line-height: 1.6;
}

.frequently-questions-section {
  background-color: #fff;
}
/* Smooth transition */


.frequently-questions-section .accordion-collapse {
  transition: height 0.4s ease, opacity 0.4s ease;
  overflow: hidden;
}

.frequently-questions-section .accordion-body {
  transition: opacity 0.4s ease;
}

/* Accordion button custom */
.frequently-questions-section .accordion-button {
  background-color: #1b1b1b !important;
  color: #90f3c1 !important;
  font-size: 1.1rem;
  padding: 1rem 1.25rem !important;
}

.frequently-questions-section .accordion-button:focus {
  box-shadow: none;
}


/* Change accordion arrow to green */
.frequently-questions-section .accordion-button::after {
  filter: brightness(0) saturate(100%) invert(69%) sepia(32%) saturate(511%) hue-rotate(88deg) brightness(99%) contrast(87%);
}

/* Optional: Smooth transition on toggle */
.frequently-questions-section .accordion-button {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.terms-condition-container {
  padding: 20px;
  max-width: 1360px;
  margin: 0 auto;
}


.contactus-form-section {
  background-color: #f0f0f0;
}

.contactus-form-container {
  padding: 20px;
  max-width: 1360px;
  margin: 0 auto;
}

.contactus-form-section .form-control:focus {
  box-shadow: none;
  outline: none;
  border-color: #ccc;
}

.contactus-form-section input::placeholder,
.contactus-form-section textarea::placeholder {
  color: #b0b0b0; /* Light gray */
  opacity: 1;
  font-size: 14px;
}

/* Remove transition border glow if using Bootstrap */
.contactus-form-section .form-control {
  transition: none !important;
}

.contactus-form-section form button:hover {
  background-color: #97F5BB;
  color: black;
  border: 1px solid #97F5BB;
}

.tree-nation-section {
  background-color: #f0f0f0;
}

.why-trees-section {
  background-color: #f0f0f0;
}

.tree-nation-feature-section {
  background-color: #f0f0f0;
}

.tree-nation-feature-container {
  padding: 20px;
  max-width: 1360px;
  margin: 0 auto;
}

.tree-nation-feature-section .icon-wrapper {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tree-nation-feature-section .box-subtle {
    background-color: #fff;
}

.tree-nation-feature-section .box-subtle p{
  font-size: 0.85rem;
  color: #1b1b1b;
  line-height: 1.6;
}

.support-guides-container {
  padding: 20px;
  max-width: 1360px;
  margin: 0 auto;
}

.footer-column.desktop {
  display: block;
}

.footer-column.mobile {
  display: none;
}


.tackningskartan-section {
  background-color: #fccc4c;
  
}

.tackningskartan-section img {
  width: 38%;
}
.tackningskartan-section p {
  color: #000;
  font-size: 22px;
  font-weight: 700;
  line-height: 2;
}

.om-oss-telecom-section a{
  background: #97F5BB;
  color: #000;
}


.om-oss-telecom-section a:hover {
  background: #000;
  color: #97F5BB;
}

.mast-density-section .mast-density-container {
  padding: 20px;
  max-width: 1360px;
  margin: 0 auto;
}

/* footer */

@keyframes popIn {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  70% {
    opacity: 1;
    transform: scale(1.05);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

@media (max-width: 992px) {
  .main-referral-section, .standard-referral-section, .page-55plus-referral-section, .student-referral-section, .om-oss-referral-section, .hållbarhet-referral-section {
    .step-content,
    .reverse {
      flex-direction: column;
    }

    .connector {
      display: none;
    }

    .step-block {
      margin-bottom: 60px;
    }

    .main-title {
      font-size: 2.5rem;
    }

    .subtitle {
      font-size: 1.2rem;
    }
  }
  
}

@media (max-width: 576px) {
  .main-referral-section, .standard-referral-section, .page-55plus-referral-section, .student-referral-section, .om-oss-referral-section, .hållbarhet-referral-section {
    .main-title {
      font-size: 2rem;
    }

    .text-box h3 {
      font-size: 1.5rem;
    }

    .step-number {
      font-size: 3rem;
    }
  }

  .tackningskartan-section img {
    width: 30%;
  }
  .tackningskartan-section p {
    font-size: 12px;
    text-align: center;
  }

  .page-55plus-referral-section #step-image3 {
    height: 220px !important;
  }

   
}

:root {
  --mint: #71e6af;
  --yellow: #fecd59;
  --dark: #1b1b1b;
  --light-mint: rgba(113, 230, 175, 0.1);
}

.eco-section {
  position: relative;
  padding: 0px 0px 80px;
  background-color: white;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.leaf {
  position: absolute;
  background-color: var(--mint);
  opacity: 0.2;
  border-radius: 50% 5% 50% 50%;
  transform: rotate(45deg);
  transition: all 0.5s ease;
}

.leaf-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -100px;
  animation: floatComplex 20s ease-in-out infinite;
}

.leaf-2 {
  width: 200px;
  height: 200px;
  bottom: 50px;
  right: -50px;
  animation: floatComplex 18s ease-in-out infinite reverse;
}

.leaf-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 10%;
  animation: floatComplex 15s ease-in-out infinite 2s;
}

.leaf-4 {
  width: 100px;
  height: 100px;
  top: 30%;
  right: 20%;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  animation: morphLeaf 12s ease-in-out infinite 1s;
}

.leaf-5 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 30%;
  border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
  animation: morphLeaf 10s ease-in-out infinite 1.5s alternate;
}

@keyframes floatComplex {
  0% {
    transform: translateY(0) rotate(45deg) scale(1);
  }
  25% {
    transform: translateY(-15px) rotate(48deg) scale(1.02);
  }
  50% {
    transform: translateY(-25px) rotate(42deg) scale(1);
  }
  75% {
    transform: translateY(-10px) rotate(47deg) scale(0.98);
  }
  100% {
    transform: translateY(0) rotate(45deg) scale(1);
  }
}

@keyframes morphLeaf {
  0% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(45deg) scale(1);
  }
  33% {
    border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
    transform: rotate(48deg) scale(1.05);
  }
  66% {
    border-radius: 80% 20% 50% 50% / 75% 20% 80% 25%;
    transform: rotate(42deg) scale(0.95);
  }
  100% {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transform: rotate(45deg) scale(1);
  }
}

.tree {
  position: absolute;
  opacity: 0.15;
}

.tree-1 {
  top: 10%;
  right: 5%;
  width: 80px;
  height: 120px;
  background-color: var(--mint);
  clip-path: polygon(50% 0%, 20% 100%, 80% 100%);
  animation: swayComplex 10s ease-in-out infinite;
}

.tree-1::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 35%;
  width: 30%;
  height: 20px;
  background-color: var(--mint);
}

.tree-2 {
  bottom: 15%;
  right: 15%;
  width: 60px;
  height: 90px;
  background-color: var(--mint);
  clip-path: polygon(50% 0%, 20% 100%, 80% 100%);
  animation: swayComplex 12s ease-in-out infinite reverse;
}

.tree-2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 35%;
  width: 30%;
  height: 15px;
  background-color: var(--mint);
}

@keyframes swayComplex {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  25% {
    transform: rotate(3deg) translateY(-5px);
  }
  50% {
    transform: rotate(-2deg) translateY(-8px);
  }
  75% {
    transform: rotate(2deg) translateY(-3px);
  }
  100% {
    transform: rotate(0deg) translateY(0);
  }
}

.water-drop {
  position: absolute;
  background-color: #6bbfff;
  opacity: 0.2;
  border-radius: 50% 50% 50% 0;
  transform: rotate(45deg);
}

.drop-1 {
  width: 50px;
  height: 50px;
  top: 40%;
  right: 30%;
  animation: dropAnimation 15s ease-in-out infinite 0.5s;
}

.drop-2 {
  width: 30px;
  height: 30px;
  bottom: 40%;
  left: 25%;
  animation: dropAnimation 12s ease-in-out infinite 1s;
}

.drop-3 {
  width: 40px;
  height: 40px;
  top: 70%;
  right: 10%;
  animation: dropAnimation 18s ease-in-out infinite 1.5s;
}

@keyframes dropAnimation {
  0% {
    transform: rotate(45deg) translateY(0) scale(1);
    opacity: 0.2;
  }
  25% {
    transform: rotate(48deg) translateY(-15px) scale(1.1);
    opacity: 0.25;
  }
  50% {
    transform: rotate(42deg) translateY(-25px) scale(0.9);
    opacity: 0.15;
  }
  75% {
    transform: rotate(47deg) translateY(-10px) scale(1.05);
    opacity: 0.2;
  }
  100% {
    transform: rotate(45deg) translateY(0) scale(1);
    opacity: 0.2;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.eco-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.text-column {
  flex: 1;
  position: relative;
  background-color: var(--mint);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
  animation: pulseBox 6s ease-in-out infinite alternate;
}

@keyframes pulseBox {
  0% {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
  }
  100% {
    box-shadow: 0 20px 40px rgba(113, 230, 175, 0.2);
  }
}

.badge {
  display: inline-block;
  padding: 8px 16px;
  background-color: white;
  color: var(--dark);
  font-weight: bold;
  border-radius: 30px;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.badge-text {
  position: relative;
  z-index: 2;
}

.badge-meter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
  z-index: 1;
}

.badge-meter-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background-color: rgba(0, 0, 0, 0.05);
  animation: fillBadge 2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards 1s;
  z-index: 1;
}

.badge-meter-label {
  position: relative;
  z-index: 2;
  margin-left: 5px;
  opacity: 0;
  display: none;
  animation: fadeInWithScale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards 2.5s;
}

@keyframes fillBadge {
  0% {
    width: 0;
  }
  60% {
    width: 90%;
  }
  100% {
    width: 100%;
  }
}

@keyframes fadeInWithScale {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.eco-title {
  font-size: 4rem;
  font-weight: bold;
  color: white;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.2s;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.eco-description {
  font-size: 1.2rem;
  line-height: 1.6;
  color: white;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.4s;
}

.earth-icon {
  display: inline-block;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.6s;
}

.globe {
  position: relative;
  width: 60px;
  height: 60px;
  perspective: 1000px;
}

.globe-sphere {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: white;
  animation: pulseGlobe 4s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.globe-highlight {
  position: absolute;
  top: 10%;
  left: 10%;
  width: 20%;
  height: 20%;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  filter: blur(5px);
  animation: moveHighlight 8s linear infinite;
}

@keyframes moveHighlight {
  0% {
    top: 10%;
    left: 10%;
  }
  25% {
    top: 15%;
    left: 60%;
  }
  50% {
    top: 60%;
    left: 70%;
  }
  75% {
    top: 70%;
    left: 30%;
  }
  100% {
    top: 10%;
    left: 10%;
  }
}

.globe-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 30px;
  margin-left: -35px;
  margin-top: -15px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  transform: rotateX(80deg);
  animation: rotateRing 10s linear infinite;
}

.ring-2 {
  width: 60px;
  height: 40px;
  margin-left: -30px;
  margin-top: -20px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  animation: rotateRing 15s linear infinite reverse;
}

@keyframes pulseGlobe {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.7);
  }
}

@keyframes rotateRing {
  from {
    transform: rotateX(80deg) rotateZ(0deg);
  }
  to {
    transform: rotateX(80deg) rotateZ(360deg);
  }
}

.eco-button {
  position: relative;
  padding: 12px 30px;
  background-color: white;
  color: var(--dark);
  border: none;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  text-decoration: none;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.8s;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.eco-button span {
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.button-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: var(--yellow);
  border-radius: 30px;
  transform: translate(-50%, -50%);
  transition: all 0.5s ease-out;
  z-index: 1;
}

.eco-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.eco-button:hover .button-ripple {
  width: 103%;
  height: 103%;
}

.eco-button:hover span {
  color: var(--dark);
}

.visual-column {
  flex: 1.5;
  position: relative;
}

.image-container {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.image-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.image-container::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 50px;
  height: 50px;
  background-color: var(--mint);
  opacity: 0.2;
  border-radius: 50% 5% 50% 50%;
  transform: rotate(45deg);
  z-index: 1;
  animation: floatComplex 10s ease-in-out infinite;
}

.image-container::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 70px;
  height: 70px;
  background-color: var(--mint);
  opacity: 0.2;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  transform: rotate(45deg);
  z-index: 1;
  animation: morphLeaf 12s ease-in-out infinite reverse;
}

.eco-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  animation: fadeInWithScale 1s cubic-bezier(0.215, 0.61, 0.355, 1) forwards 0.6s;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.image-container:hover .eco-image {
  transform: scale(1.03);
}

.eco-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}

.particle {
  position: absolute;
  background-color: var(--mint);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 10s ease-in-out infinite;
}

.particle-1 {
  width: 15px;
  height: 15px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.particle-2 {
  width: 10px;
  height: 10px;
  top: 70%;
  left: 20%;
  animation-delay: 2s;
}

.particle-3 {
  width: 12px;
  height: 12px;
  top: 40%;
  right: 15%;
  animation-delay: 1s;
}

.particle-4 {
  width: 8px;
  height: 8px;
  top: 30%;
  right: 25%;
  animation-delay: 3s;
}

.particle-5 {
  width: 10px;
  height: 10px;
  bottom: 10%;
  left: 40%;
  animation-delay: 1.5s;
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.5;
  }
  50% {
    transform: translateY(-100px) scale(0.8);
    opacity: 0.2;
  }
  100% {
    transform: translateY(-200px) scale(0);
    opacity: 0;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (max-width: 992px) {
  .eco-content {
    flex-direction: column;
  }

  .eco-title {
    font-size: 3rem;
  }

  .text-column {
    margin-bottom: 40px;
  }

  .visual-column {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .eco-section {
    padding: 0px 0px 80px;
  }

  .eco-title {
    font-size: 2.5rem;
  }

  .eco-description {
    font-size: 1rem;
  }
}

:root {
  --mint: #71e6af;
  --yellow: #fecd59;
  --dark: #1b1b1b;
  --grey: #a0a0a0;
}

.eco-counter-section {
  position: relative;
  height: 80vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120%;
  background-image: url("https://images.unsplash.com/photo-1501854140801-50d01698950b?q=80&w=1920");
  background-size: cover;
  background-position: center;
  transform: translateY(0);
  transition: transform 0.5s ease-out;
  z-index: 1;
  filter: grayscale(100%);
}

.eco-counter-section.active .parallax-background {
  filter: grayscale(0%);
  transition: filter 4s ease-out;
}

.overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
  opacity: 1;
  transition: opacity 4s ease-out, background 4s ease-out;
}

.eco-counter-section.active .overlay-gradient {
  opacity: 0.7;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 100%);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 3;
}

.counter-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.counter-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 100%;
}

.counter-box {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  flex: 1;
  max-width: 420px;
  transform: translateY(50px);
  opacity: 0;
  transition: transform 1.2s ease-out, opacity 1.2s ease-out, background-color 2s ease-out;
}

.eco-counter-section.active .left-counter {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.5s;
}

.eco-counter-section.active .right-counter {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.8s;
}

.counter-number {
  font-size: 5rem;
  font-weight: bold;
  color: var(--dark);
  display: inline-block;
  line-height: 1;
}

.counter-plus {
  font-size: 3rem;
  font-weight: bold;
  color: var(--mint);
  display: inline-block;
  line-height: 1;
  margin-left: 5px;
}

.counter-label {
  font-size: 1.5rem;
  color: var(--dark);
  margin-top: 10px;
}

.equals-sign {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  font-weight: bold;
  color: var(--mint);
  height: 80px;
  width: 80px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transform: scale(0);
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.eco-counter-section.active .equals-sign {
  transform: scale(1);
  opacity: 1;
  transition-delay: 1.2s;
}

.tree-animation {
  position: absolute;
  bottom: -30px;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
}

.tree {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-bottom: 30px solid var(--mint);
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.tree::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -5px;
  width: 10px;
  height: 10px;
  background-color: #8b4513;
}

.eco-counter-section.active .tree {
  opacity: 1;
  transform: translateY(0);
}

.tree-1 {
  left: 20%;
  transition-delay: 1.5s;
}

.tree-2 {
  left: 50%;
  transition-delay: 1.8s;
}

.tree-3 {
  left: 80%;
  transition-delay: 2.1s;
}

.co2-animation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.co2-particle {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: var(--grey);
  border-radius: 50%;
  opacity: 0;
  transform: scale(1);
  transition: background-color 1.5s ease-out;
}

.eco-counter-section.active .co2-particle {
  animation: fadeOutUp 3s forwards;
  background-color: var(--mint);
}

.particle-1 {
  top: 20%;
  left: 20%;
  animation-delay: 1.5s;
}

.particle-2 {
  top: 30%;
  right: 20%;
  animation-delay: 1.8s;
}

.particle-3 {
  top: 50%;
  left: 30%;
  animation-delay: 2.1s;
}

.particle-4 {
  bottom: 30%;
  right: 30%;
  animation-delay: 2.4s;
}

.particle-5 {
  bottom: 20%;
  left: 40%;
  animation-delay: 2.7s;
}

@keyframes fadeOutUp {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0.8;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-100px) scale(0);
  }
}

@media (max-width: 992px) {
  .counter-container {
    flex-direction: column;
    gap: 50px;
  }

  .counter-box {
    max-width: 100%;
  }

  .equals-sign {
    margin: 10px 0;
  }
}

@media (max-width: 576px) {
  .eco-counter-section {
    height: auto;
    padding: 100px 0;
  }

  .counter-number {
    font-size: 3.5rem;
  }

  .counter-plus {
    font-size: 2rem;
  }

  .counter-label {
    font-size: 1.2rem;
  }
}

:root {
  --mint: #71e6af;
  --yellow: #fecd59;
  --dark: #1b1b1b;
  --grey: #a0a0a0;
  --light-grey: #f5f5f5;
}

.contact-section {
  position: relative;
  padding: 120px 0;
  background-color: white;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.leaf {
  position: absolute;
  background-color: var(--mint);
  opacity: 0.05;
  border-radius: 50% 5% 50% 50%;
  transform: rotate(45deg);
}

.leaf-1 {
  width: 400px;
  height: 400px;
  top: -200px;
  left: -200px;
  animation: floatSlow 20s ease-in-out infinite;
}

.leaf-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  right: -150px;
  animation: floatSlow 15s ease-in-out infinite reverse;
}

.leaf-3 {
  width: 200px;
  height: 200px;
  top: 50%;
  right: 10%;
  animation: floatSlow 18s ease-in-out infinite 2s;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(-20px) rotate(45deg);
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.contact-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-info {
  flex: 1;
  padding-right: 20px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--dark);
  display: block;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.contact-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 15px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards 0.2s;
}

.title-underline {
  width: 80px;
  height: 5px;
  background-color: var(--mint);
  margin-bottom: 30px;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  animation: scaleIn 0.8s ease-out forwards 0.4s;
}

@keyframes scaleIn {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

.contact-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--dark);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards 0.4s;
}

.contact-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(20px);
}

.feature-item:nth-child(1) {
  animation: fadeInUp 0.8s ease-out forwards 0.6s;
}

.feature-item:nth-child(2) {
  animation: fadeInUp 0.8s ease-out forwards 0.8s;
}

.feature-item:nth-child(3) {
  animation: fadeInUp 0.8s ease-out forwards 1s;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--mint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover .feature-icon {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(113, 230, 175, 0.3);
}

.feature-text h3 {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 1rem;
  color: var(--grey);
}

.contact-form-container {
  flex: 1.2;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  padding: 40px;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s ease-out forwards 0.4s;
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background-color: var(--mint);
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-group {
  flex: 1;
  position: relative;
}

input,
textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-size: 1rem;
  background-color: var(--light-grey);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  font-family: "Inter", sans-serif;
}

textarea {
  resize: none;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--mint);
  box-shadow: 0 0 0 3px rgba(113, 230, 175, 0.1);
}

.input-focus-effect {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--mint);
  transition: width 0.3s ease;
}

.textarea-effect {
  bottom: 4px;
}

input:focus ~ .input-focus-effect,
textarea:focus ~ .input-focus-effect {
  width: 100%;
}

.form-privacy {
  font-size: 0.8rem;
  color: var(--grey);
  line-height: 1.5;
}

.submit-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: var(--mint);
  color: var(--dark);
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  align-self: flex-start;
  margin-top: 10px;
  font-family: "Inter", sans-serif;
}

.button-icon {
  transition: transform 0.3s ease;
}

.submit-button:hover {
  background-color: var(--dark);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.submit-button:hover .button-icon {
  transform: translateX(5px);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-info {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .contact-title {
    font-size: 2.8rem;
  }

  .form-row {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .contact-section {
    padding: 80px 0;
  }

  .contact-title {
    font-size: 2.2rem;
  }

  .contact-form-container {
    padding: 30px 20px;
  }
}

/* Product Showcase Section */
.product-showcase-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.showcase-wrapper {
  display: flex;
  gap: 20px;
  max-width: 100%;
}

.showcase-panel {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Panel sizing - left smaller, right wider */
.dark-panel {
  flex: 0.8; /* Smaller width */
  background-color: #1b1b1b;
  color: white;
  z-index: 2; /* Higher z-index to appear above on hover */
}

.light-panel {
  flex: 1.2; /* Wider width */
  color: white;
  background-image: url("<?php echo get_template_directory_uri(); ?>/assets/images/pos-background.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

/* Panel overlay for darkening effect */
.panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  transition: background-color 0.5s ease;
  z-index: 1;
}

.light-panel:hover .panel-overlay {
  background-color: rgba(0, 0, 0, 0.3);
}

/* Hover effects */
.showcase-panel:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  flex-grow: 1.1; /* Slightly increase width on hover */
  z-index: 3; /* Ensure hovered panel is on top */
}

.panel-content {
  padding: 60px;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.panel-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.dark-panel .panel-title {
  animation-delay: 0.2s;
}

.light-panel .panel-title {
  animation-delay: 0.4s;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-size: 3.5rem;
}

.panel-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards 0.4s;
}

.showcase-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background-color: #8de4b5;
  color: #1b1b1b;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards 0.6s;
  position: relative;
  overflow: hidden;
}

.showcase-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.showcase-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.showcase-btn:hover::before {
  transform: translateX(0);
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.showcase-btn:hover .btn-arrow {
  transform: translateX(5px);
}

.light-btn {
  background-color: #8de4b5;
}

/* Device Display */
.device-container {
  position: relative;
  margin: 20px auto 40px;
  max-width: 100%;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards 0.5s;
  transition: transform 0.5s ease;
}

.device-container:hover {
  transform: scale(1.05);
}

.device-image {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  transition: all 0.5s ease;
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Box shadow animation */
@keyframes shadowPulse {
  0% {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  100% {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }
}

.showcase-panel:hover {
  animation: shadowPulse 1s ease-out forwards;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .showcase-wrapper {
    flex-direction: column;
  }

  .showcase-panel {
    min-height: auto;
    flex: 1 !important; /* Reset flex on mobile */
  }

  .panel-content {
    padding: 40px 30px;
  }

  .panel-title {
    font-size: 2.5rem;
  }

  .showcase-panel:hover {
    transform: translateY(-5px);
    flex-grow: 1;
  }
}

@media (max-width: 768px) {
  .panel-title {
    font-size: 2rem !important;
  }

  .panel-content {
    padding: 30px 20px;
  }
}

/* Google Fonts Import */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap");

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

body {
  font-family: "Inter", sans-serif;
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Showcase Section */
.eco-showcase-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.eco-showcase-section.eco-visible {
  opacity: 1;
  transform: translateY(0);
}

.eco-showcase-wrapper {
  display: flex;
  gap: 20px;
  position: relative;
}

.eco-showcase-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(30px);
  flex: 1;
}

/* Border styles as requested */
.eco-left-panel {
  border: none;
  border-radius: 30px;
}

.eco-middle-panel {
  border: none;
  border-radius: 30px;
}

.eco-right-panel {
  border: none;
  border-radius: 30px;
}

/* Border shine effect */
.eco-border-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  z-index: 3;
  transition: left 0.8s ease;
  pointer-events: none;
}

.eco-showcase-panel:hover .eco-border-shine {
  left: 100%;
}

.eco-showcase-section.eco-visible .eco-showcase-panel {
  opacity: 1;
  transform: translateY(0);
}

.eco-showcase-section.eco-visible .eco-left-panel {
  transition-delay: 0.2s;
}

.eco-showcase-section.eco-visible .eco-middle-panel {
  transition-delay: 0.4s;
}

.eco-showcase-section.eco-visible .eco-right-panel {
  transition-delay: 0.6s;
}

/* Panel Overlay */
.eco-panel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
  transition: background 0.3s ease;
}

/* Left Panel - Forest Background */
.eco-left-panel {
  background-image: url("https://images.unsplash.com/photo-1448375240586-882707db888b?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  z-index: 2;
}

/* Middle Panel - Animation Panel */
.eco-middle-panel {
  background: linear-gradient(135deg, #8de4b5 0%, #6ed5a4 100%);
  display: flex;
  justify-content: center;
  align-items: flex-end;
  z-index: 1;
  padding-bottom: 40px;
}

/* Right Panel - Image Background */
.eco-right-panel {
  background-image: url("https://images.unsplash.com/photo-1516214104703-d870798883c5?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80");
  background-size: cover;
  background-position: center;
  color: white;
  position: relative;
}

/* Panel Content */
.eco-panel-content {
  padding: 2.5rem;
  max-width: 100%;
  position: relative;
  z-index: 2;
}

.eco-panel-title {
  font-size: 2.25rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.eco-panel-description {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Button Styling */
.eco-showcase-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #8de4b5;
  color: #1e3a2f;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.eco-showcase-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}

.eco-showcase-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.eco-showcase-btn:hover::before {
  transform: translateX(0);
}

.eco-btn-arrow {
  transition: transform 0.3s ease;
}

.eco-showcase-btn:hover .eco-btn-arrow {
  transform: translateX(5px);
}

/* Case Study Badge */
.eco-btn-arrow {
  transition: transform 0.3s ease;
}

.eco-showcase-btn:hover .eco-btn-arrow {
  transform: translateX(5px);
}

/* Case Study Badge */
.eco-case-study-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background-color: #8de4b5;
  color: #1e3a2f;
  font-weight: bold;
  border-radius: 20px;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}

/* New Forest Animation for Middle Panel */
.eco-animation-container {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.eco-forest-container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding: 0 20px;
}

.eco-tree-container {
  position: relative;
  margin: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.5s ease;
}

.eco-tree {
  color: #1e3a2f;
  font-size: 36px;
  margin-bottom: 5px;
  transform-origin: bottom center;
  animation: treeGrow 3s ease-out forwards;
}

.eco-tree-1 {
  animation-delay: 0.2s;
}
.eco-tree-2 {
  animation-delay: 0.5s;
}
.eco-tree-3 {
  animation-delay: 0.8s;
}
.eco-tree-4 {
  animation-delay: 1.1s;
}
.eco-tree-5 {
  animation-delay: 1.4s;
}

.eco-hidden {
  opacity: 0;
  transform: scale(0);
}

.eco-tree-grow {
  animation: appearAndGrow 1s ease-out forwards;
}

.eco-bubble-container {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 100px;
  overflow: hidden;
}

.eco-bubble {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  opacity: 0;
}

.eco-bubble-1 {
  animation: bubbleRise 4s ease-out infinite;
  animation-delay: 0.2s;
}

.eco-bubble-2 {
  animation: bubbleRise 4s ease-out infinite;
  animation-delay: 1.2s;
}

.eco-bubble-3 {
  animation: bubbleRise 4s ease-out infinite;
  animation-delay: 2.2s;
}

/* Hover Effects - Width Expansion and Up/Down Movement */
.eco-showcase-panel {
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.eco-showcase-wrapper:hover .eco-showcase-panel {
  flex: 0.8;
}

.eco-showcase-wrapper .eco-showcase-panel:hover {
  flex: 1.5;
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 3;
}

.eco-showcase-panel.eco-moving {
  animation: upDownMove 3s ease-in-out infinite;
}

.eco-showcase-panel:hover .eco-panel-overlay {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

/* Animations */
@keyframes treeGrow {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes appearAndGrow {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bubbleRise {
  0% {
    bottom: -10px;
    opacity: 0;
    width: 8px;
    height: 8px;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    bottom: 120px;
    opacity: 0;
    width: 4px;
    height: 4px;
  }
}

@keyframes upDownMove {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .eco-showcase-wrapper {
    flex-direction: column;
  }

  .eco-showcase-panel {
    min-height: 350px;
  }

  .eco-showcase-wrapper:hover .eco-showcase-panel {
    flex: 1;
  }

  .eco-showcase-wrapper .eco-showcase-panel:hover {
    flex: 1;
    transform: translateY(-10px);
  }

  .eco-panel-title {
    font-size: 1.75rem;
  }

  .eco-panel-content {
    padding: 1.5rem;
  }
}

@media (max-width: 768px) {
  .eco-showcase-section {
    padding: 40px 0;
  }

  .eco-showcase-panel {
    min-height: 300px;
  }

  .eco-panel-title {
    font-size: 1.5rem;
  }

  .eco-forest-container {
    padding: 0 10px;
  }

  .eco-tree {
    font-size: 28px;
  }

  .eco-tree-container {
    margin: 0 5px;
  }
}

/* Footer Styles */
:root {
  --mint: #71e6af;
  --yellow: #fecd59;
  --dark: #1b1b1b;
  --grey: #a0a0a0;
}
/* Footer Animation Styles */
.footer-section {
  background-color: #1b1b1b;
  color: white;
  padding: 80px 0 30px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.footer-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 80px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.footer-column.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #71e6af;
  transition: width 0.5s ease;
}

.footer-title.hover::after,
.footer-column:hover .footer-title::after {
  width: 100%;
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e0e0e0;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-icon::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #71e6af;
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
  z-index: -1;
}

.social-icon.hover::before,
.social-icon:hover::before {
  transform: scale(1);
}

.social-icon.hover,
.social-icon:hover {
  color: #1b1b1b;
  transform: translateY(-3px);
}

.company-info {
  font-size: 0.9rem;
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #e0e0e0;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-links a::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #71e6af;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: #71e6af;
  transform: translateX(5px);
}

.footer-links a:hover::before {
  width: 100%;
}

.footer-logo-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.footer-logo-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.logo-bubble {
  width: 40px;
  height: 40px;
  background-color: #71e6af;
  border-radius: 50% 50% 50% 0;
  margin-bottom: -5px;
  transform: rotate(-10deg);
  position: relative;
  margin-left: 65px;
  transition: transform 0.3s ease;
}

.logo-bubble.animate {
  animation: float 4s ease-in-out infinite;
}

.logo-bubble.pulse {
  animation: pulse 0.5s ease-in-out;
}

.footer-logo {
  margin-top: 10px;
}

.footer-logo img {
    width: 130px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: #a0a0a0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.footer-bottom.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.footer-leaf {
  position: absolute;
  background-color: #71e6af;
  opacity: 0;
  border-radius: 50% 5% 50% 50%;
  transform: rotate(45deg);
  transition: opacity 1s ease, transform 1s ease;
}

.footer-leaf.visible {
  opacity: 0.03;
}

.leaf-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
}

.leaf-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
}

.leaf-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 10%;
}

/* Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(-10deg);
  }
  50% {
    transform: translateY(-10px) rotate(-5deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1) rotate(-10deg);
  }
  50% {
    transform: scale(1.2) rotate(-5deg);
  }
  100% {
    transform: scale(1) rotate(-10deg);
  }
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(-20px) rotate(45deg);
  }
}

/* Responsive styles */
@media (max-width: 992px) {
  .footer-content {
    gap: 30px;
  }

  .footer-column {
    flex-basis: calc(33.333% - 30px);
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .footer-column {
    flex-basis: calc(50% - 30px);
  }
}

@media (max-width: 576px) {
  .footer-section {
    padding: 60px 0 30px;
  }

  .footer-content {
    flex-direction: column;
    gap: 40px;
  }

  .footer-column {
    flex-basis: 100%;
  }

  .footer-logo {
    font-size: 2.5rem;
  }
}

/* for mobile */
/* Mobile Menu Styles */
/* Mobile Menu Styles */
/* Mobile Menu Styles - Fixed to prevent desktop conflicts */
.mobile-menu-wrapper {
  display: none; /* Hide by default on all devices */
}

@media (max-width: 992px) {
  .navbar {
    padding: 0 !important; /* Override the default padding */
  }

  .mobile-menu-wrapper {
    display: block; /* Only show on mobile */
  }

  /* Hide default navbar elements */
  .navbar-toggler,
  .navbar-collapse {
    display: none !important;
  }

  /* Semi-transparent sticky navbar with blur effect */
  .navbar.sticky {
    background-color: rgba(255, 255, 255, 0.8) !important; /* Semi-transparent white */
    backdrop-filter: blur(10px); /* Blur effect */
    -webkit-backdrop-filter: blur(10px); /* For Safari */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
  }

  /* Logo centering animation when navbar becomes sticky */
  .navbar.sticky .navbar-brand {
    position: relative;
    animation: centerLogo 0.5s forwards 0.2s; /* Delay of 200ms before starting */
    margin-left: auto;
    margin-right: auto;
    display: block;
    text-align: center;
    padding: 20px 20px;
    border-radius: 12px;
    background-color: transparent;
    overflow: hidden; /* For the shine effect */
    width: 100%;
  }

  /* More visible leaf background */
  .navbar.sticky .navbar-brand::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 30%;
    width: 60px;
    height: 50px;
    background-color: rgba(113, 230, 175, 0.35); /* Increased opacity */
    border-radius: 50% 5% 50% 50%; /* Leaf-like shape */
    transform: translate(-50%, -50%) rotate(45deg);
    z-index: -1;
    animation: pulseLeaf 3s infinite ease-in-out;
  }

  /* Stronger shine effect animation */
  .navbar.sticky .navbar-brand::after {
    content: "";
    position: absolute;
    top: -50%;
    left: -100%;
    width: 80%; /* Wider shine */
    height: 200%; /* Taller shine for more visibility */
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9) /* More opaque white */, transparent);
    transform: rotate(25deg); /* Angled shine for better visibility */
    z-index: 1;
    animation: shineEffect 10s infinite 3s;
  }

  /* Ensure the logo is above the effects */
  .navbar.sticky .logo-img {
    height: 55px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  /* Mobile Menu Toggle Button - IMPORTANT FIXES HERE */
  .mobile-menu-toggle {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: none !important;
    box-shadow: none !important;
  }

  /* Add a specific class for the JS toggle functionality */
  .js-mobile-menu-toggle {
    z-index: 1001;
  }

  .mobile-menu-toggle:hover {
    transform: translateY(-50%) scale(1.1);
  }

  .mobile-menu-icon {
    font-size: 24px;
    color: white;
  }

  /* When navbar is sticky, adjust icon color */
  .navbar.sticky .mobile-menu-toggle .mobile-menu-icon {
    color: #333;
  }

  /* Mobile Menu Overlay */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }

  .mobile-menu-overlay.closing {
    opacity: 0;
    display: block;
    transition: opacity 0.5s ease-out;
  }

  /* Mobile Menu Container */
  .mobile-menu-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  }

  /* Opening Animation */
  .mobile-menu-overlay.active .mobile-menu-container {
    transform: translateY(0);
    animation: bounceIn 0.8s;
  }

  /* Closing Animation - Vanishing Effect */
  .mobile-menu-overlay.closing .mobile-menu-container {
    animation: vanishOut 0.6s forwards;
    opacity: 1;
  }

  /* Mobile Menu Header */
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center; /* Ensure vertical alignment */
    padding: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
  }

  /* Mobile menu close button repositioned to align with logo */
  .mobile-menu-close {
    position: static; /* Change from absolute to static for normal flow */
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
    z-index: 10;
    margin-left: 15px; /* Add some spacing between logo and close button */
  }

  .mobile-menu-logo {
    height: 50px;
    width: auto;
  }

  /* Mobile menu close button repositioned to bottom right */
  .mobile-menu-close {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .mobile-menu-close:hover {
    background-color: #eee;
  }

  /* Mobile menu container with padding at bottom for close button */
  .mobile-menu-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
    padding-bottom: 80px; /* Add padding for close button */
  }

  /* Mobile Menu Items */
  .mobile-menu-items {
    list-style: none;
    padding: 20px;
    margin: 0;
    overflow-y: auto;
    flex: 1;
  }

  .mobile-menu-item {
    margin-bottom: 15px;
    text-align: left;
  }

  .mobile-menu-link {
    font-size: 20px;
    color: #333;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    transition: all 0.6s ease;
  }

  .mobile-menu-link:hover {
    color: #8de4b5;
  }

  /* Submenu Styles */
  .submenu-arrow {
    transition: transform 0.6s ease;
  }

  /*.mobile-menu-item .submenu-arrow {
    transform: rotate(90deg);
  }*/

  .mobile-menu-item.active .submenu-arrow {
    transform: rotate(90deg);
  }


 /* CSS */
  .mobile-submenu {
    max-height: 0;
    overflow: hidden;
    list-style: none;
    transition: max-height 0.6s ease-in-out;
  }

  .mobile-submenu.active {
    text-decoration: none;
    list-style: none;
    max-height: 500px;
  }


  .mobile-submenu li {
    margin: 10px 0;
  }

  .mobile-submenu a {
    color: #666;
    text-decoration: none;
    font-size: 18px;
    display: block;
    padding: 10px 0;
    transition: all 0.6s ease;
  }

  .mobile-submenu a:hover {
    color: #8de4b5;
  }

  /* Hide submenu arrows for items without submenus */
  /*.mobile-menu-item:not(.has-submenu) .submenu-arrow {
    display: none;
  }*/

  /* Animations */
  @keyframes centerLogo {
    0% {
      transform: translateX(0);
    }
    20% {
      transform: translateX(15px);
    }
    100% {
      transform: translateX(0);
    }
  }

  @keyframes shineEffect {
    0% {
      left: -150%;
    }
    30%,
    100% {
      left: 150%;
    }
  }

  @keyframes pulseLeaf {
    0%,
    100% {
      transform: translate(-50%, -50%) rotate(45deg) scale(1);
      opacity: 0.35;
    }
    50% {
      transform: translate(-50%, -50%) rotate(45deg) scale(1.3);
      opacity: 0.5;
    }
  }

  @keyframes bounceIn {
    0% {
      transform: translateY(100%);
    }
    60% {
      transform: translateY(-10%);
    }
    80% {
      transform: translateY(5%);
    }
    100% {
      transform: translateY(0);
    }
  }

  @keyframes vanishOut {
    0% {
      transform: translateY(0) scale(1);
      opacity: 1;
    }
    20% {
      transform: translateY(0) scale(0.98);
      opacity: 0.9;
    }
    100% {
      transform: translateY(30px) scale(0.8);
      opacity: 0;
    }
  }
}

/* Update the sticky navbar styling for mobile */
@media (max-width: 992px) {
  .navbar {
    padding: 0 !important; /* Override the default padding */
  }
  /* When navbar is sticky, adjust the layout */
  .navbar.sticky {
    background-color: rgba(255, 255, 255, 0.95) !important; /* More opaque white */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    display: flex;
    align-items: center;
    height: 80px; /* Increased height for sticky navbar */
  }

  /* Container alignment to match site elements */
  .navbar .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* Match padding with other site elements */
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    height: 100%;
  }

  /* Left-align the logo when sticky */
  .navbar.sticky .navbar-brand {
    position: relative;
    margin: 0 !important;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  /* Adjust logo size when sticky */
  .navbar.sticky .logo-img {
    height: 50px; /* Increased height */
  }

  /* Position the menu toggle on the far right when sticky */
  .navbar.sticky .mobile-menu-toggle {
    position: static !important; /* Use natural positioning */
    margin-left: auto; /* Push to the right */
    transform: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Style for mobile menu icon when sticky */
  .navbar.sticky .mobile-menu-toggle .mobile-menu-icon {
    color: #1b1b1b !important; /* Black color */
    font-size: 24px;
  }

  /* Remove the leaf background and shine effect when sticky for cleaner look */
  .navbar.sticky .navbar-brand::before,
  .navbar.sticky .navbar-brand::after {
    display: none;
  }
}

/* Adjust navbar for mobile - menu icon on far right, logo on far left */
@media (max-width: 992px) {
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px; /* Match padding with other site elements */
    height: 80px; /* Increased height */
  }

  /* Logo positioning */
  .navbar-brand {
    display: flex;
    align-items: center;
    margin: 0 !important;
    padding: 0;
  }

  /* Menu toggle positioning - far right */
  .mobile-menu-toggle {
    margin-left: auto; /* Push to the right */
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: static !important; /* Use natural positioning */
    transform: none !important;
    z-index: 1001;
  }

  /* Menu icon styling */
  .mobile-menu-icon {
    font-size: 24px;
    color: #1b1b1b; /* Black color */
  }

  /* Ensure vertical alignment */
  .navbar-brand,
  .mobile-menu-toggle {
    align-self: center;
  }
}

/* subscription-features-alt  mobiel version */
/* Mobile-specific styles for subscription-features-alt section */
@media (max-width: 992px) {
  /* Make features grid 2 columns on mobile */
  .subscription-features-alt .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
  }

  /* Keep container white, only change icon background */
  .subscription-features-alt .flip-card-front {
    background-color: white;
    color: #333;
  }
  .subscription-features-alt .flip-card-front .icon-wrapper i {
    color: #fff;
  }

  /* Change only the icon shape background to yellow */
  .subscription-features-alt .icon-shape {
    background-color: #fecd59;
  }

  /* Keep text color dark */
  .subscription-features-alt .flip-card-front span {
    color: #333;
  }

  /* Move mobile menu toggle to top left in navbar */
  .mobile-menu-toggle {
    position: absolute;
    top: 15px;
    left: 15px;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    animation: none;
    z-index: 1001;
  }

  .mobile-menu-icon {
    font-size: 24px;
    color: white;
  }

  /* When navbar is sticky, adjust icon color */
  .navbar.sticky .mobile-menu-toggle .mobile-menu-icon {
    color: #fff;
  }

  /* Hide the bottom fixed menu toggle when we have the top one */
  .navbar + .mobile-menu-wrapper .mobile-menu-toggle {
    display: none;
  }
}

/* For very small screens, make features 1 column */
@media (max-width: 576px) {
  .subscription-features-alt .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile-specific styles for subscription-features-alt section */
@media (max-width: 576px) {
  /* Make features grid 2 columns on mobile devices too */
  .subscription-features-alt .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
  }

  .subscription-features-alt .flip-card-front span {
    color: black;
    font-size: 0.9rem;
    font-weight: lighter;
  }

  /* Keep icon background yellow and text white */
  .subscription-features-alt .flip-card-front .icon-wrapper i {
    color: white;
  }

  .subscription-features-alt .icon-shape {
    background-color: #fecd59;
  }
}

/* Menu icon positioning in navbar - more specific selectors to override existing styles */
@media (max-width: 992px) {
  /* Target the specific mobile menu toggle in the navbar */
  .navbar .container .mobile-menu-toggle {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: none !important;
    box-shadow: none !important;
    animation: none !important;
    z-index: 1001 !important;
    display: flex !important;
  }

  /* Ensure the container has proper positioning */
  .navbar .container {
    position: relative;
  }

/* Add these styles to your existing CSS file */

/* Mobile menu header with icons */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.mobile-header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile menu logo */
.mobile-menu-logo {
  height: 50px;
  width: auto;
}

/* Mobile menu close button repositioned to bottom right */
.mobile-menu-close {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
  z-index: 10;
}

.mobile-menu-close:hover {
  background-color: #eee;
}

/* Mobile menu container with padding at bottom for close button */
.mobile-menu-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  padding-bottom: 80px; /* Add padding for close button */
}

/* Mobile menu items with more space */
.mobile-menu-items {
  list-style: none;
  padding: 20px;
  margin: 0;
  overflow-y: auto;
  flex: 1;
}

/* Adjust navbar for mobile - menu icon on right */
@media (max-width: 992px) {
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .mobile-menu-toggle {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: 0 !important;
    transform: none !important;
    order: 3;
  }
  
  .navbar-brand {
    order: 1;
    margin: 0 !important;
  }
  
  /* Hide mobile icons container in navbar */
  .mobile-icons-container {
    display: none !important;
  }
  
  /* Style for mobile icons in menu */
  .mobile-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 0.9rem !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  
  /* Sticky navbar adjustments */
  .navbar.sticky {
    padding: 0px 0;
  }
  
  .navbar.sticky .navbar-brand {
    animation: none;
    margin: 0 !important;
    padding: 0;
  }
  
  .navbar.sticky .mobile-menu-toggle {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: 0 !important;
  }
}

/* Update the mobile menu styles to ensure proper horizontal alignment */
@media (max-width: 992px) {
  /* Make sure the container uses proper flexbox */
  .navbar .container {
    display: flex;
    flex-direction: row; /* Force horizontal layout */
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 80px;
    width: 100%;
  }
  
  /* Prevent the navbar-brand from taking full width */
  .navbar-brand {
    display: inline-flex;
    width: auto;
    margin: 0 !important;
    padding: 0;
    flex: 0 0 auto; /* Don't grow or shrink */
  }
  
  /* Prevent the mobile-menu-toggle from taking full width */
  .mobile-menu-toggle {
    display: inline-flex !important;
    width: auto;
    margin-left: auto; /* Push to the right */
    position: static !important;
    transform: none !important;
    flex: 0 0 auto; /* Don't grow or shrink */
  }
  
  /* Ensure the logo is left-aligned */
  .navbar.sticky .navbar-brand {
    margin: 0 !important;
    padding: 0;
    text-align: left;
    width: auto;
    display: inline-flex;
    justify-content: flex-start;
  }
  
  /* Remove any animations that might interfere */
  .navbar.sticky .navbar-brand {
    animation: none !important;
  }
  
  /* Ensure the menu icon is right-aligned */
  .navbar.sticky .mobile-menu-toggle {
    margin-left: auto;
  }
  
  /* Fix any potential issues with d-lg-none class */
  .d-lg-none {
    display: inline-flex !important;
  }
}

/* subscription-features-alt  mobiel version */
/* Mobile-specific styles for subscription-features-alt section */
@media (max-width: 992px) {
  /* Make features grid 2 columns on mobile */
  .subscription-features-alt .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
  }

  /* Keep container white, only change icon background */
  .subscription-features-alt .flip-card-front {
    background-color: white;
    color: #333;
  }
  .subscription-features-alt .flip-card-front .icon-wrapper i {
    color: #fff;
  }

  /* Change only the icon shape background to yellow */
  .subscription-features-alt .icon-shape {
    background-color: #fecd59;
  }

  /* Keep text color dark */
  .subscription-features-alt .flip-card-front span {
    color: #333;
  }

  /* Move mobile menu toggle to top left in navbar */
  .mobile-menu-toggle {
    position: absolute;
    top: 15px;
    left: 15px;
    width: auto;
    height: auto;
    background: none;
    box-shadow: none;
    animation: none;
    z-index: 1001;
  }

  .mobile-menu-icon {
    font-size: 24px;
    color: white;
  }

  /* When navbar is sticky, adjust icon color */
  .navbar.sticky .mobile-menu-toggle .mobile-menu-icon {
    color: #fff;
  }

  /* Hide the bottom fixed menu toggle when we have the top one */
  .navbar + .mobile-menu-wrapper .mobile-menu-toggle {
    display: none;
  }
}

/* For very small screens, make features 1 column */
@media (max-width: 576px) {
  .subscription-features-alt .features-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile-specific styles for subscription-features-alt section */
@media (max-width: 576px) {
  /* Make features grid 2 columns on mobile devices too */
  .subscription-features-alt .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
  }

  .subscription-features-alt .flip-card-front span {
    color: black;
    font-size: 0.9rem;
    font-weight: lighter;
  }

  /* Keep icon background yellow and text white */
  .subscription-features-alt .flip-card-front .icon-wrapper i {
    color: white;
  }

  .subscription-features-alt .icon-shape {
    background-color: #fecd59;
  }
}

/* Menu icon positioning in navbar - more specific selectors to override existing styles */
@media (max-width: 992px) {
  /* Target the specific mobile menu toggle in the navbar */
  .navbar .container .mobile-menu-toggle {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    width: auto;
    height: auto;
    background: none !important;
    box-shadow: none !important;
    animation: none !important;
    z-index: 1001 !important;
    display: flex !important;
  }

  /* Ensure the container has proper positioning */
  .navbar .container {
    position: relative;
  }

/* Add these styles to your existing CSS file */

/* Mobile menu header with icons */
.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  position: relative;
}

.mobile-header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Mobile menu logo */
.mobile-menu-logo {
  height: 50px;
  width: auto;
}

/* Mobile menu close button repositioned to bottom right */
.mobile-menu-close {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
  z-index: 10;
}

.mobile-menu-close:hover {
  background-color: #eee;
}

/* Mobile menu container with padding at bottom for close button */
.mobile-menu-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  padding-bottom: 80px; /* Add padding for close button */
}

/* Mobile menu items with more space */
.mobile-menu-items {
  list-style: none;
  padding: 20px;
  margin: 0;
  overflow-y: auto;
  flex: 1;
}

/* Adjust navbar for mobile - menu icon on right */
@media (max-width: 992px) {
  .navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .mobile-menu-toggle {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: 0 !important;
    transform: none !important;
    order: 3;
  }
  
  .navbar-brand {
    order: 1;
    margin: 0 !important;
  }
  
  /* Hide mobile icons container in navbar */
  .mobile-icons-container {
    display: none !important;
  }
  
  /* Style for mobile icons in menu */
  .mobile-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 0.9rem !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  
  /* Sticky navbar adjustments */
  .navbar.sticky {
    padding: 0px 0;
  }
  
  .navbar.sticky .navbar-brand {
    animation: none;
    margin: 0 !important;
    padding: 0;
  }
  
  .navbar.sticky .mobile-menu-toggle {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: 0 !important;
  }
}

.menu-back-button{
    position: absolute;
    bottom: 20px;
    right: 30px;
    font-size: 1.2rem;
    background-color: #00000052 !important;
    border-radius: 50px;
    padding: 5px 15px;
    width: 40px;
    height: 40px;
    color: #fff;
}

.menu-back-button .fa-xmark {
  font-size: 24px;
}

/* Additional mobile menu styles to ensure consistency */
@media (max-width: 992px) {
  /* Mobile menu header styling */
  .mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
    position: relative;
  }

  /* Mobile menu logo */
  .mobile-menu-logo {
    height: 40px;
    width: auto;
  }

  /* Mobile header icons container */
  .mobile-header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  /* Mobile icon styling */
  .mobile-icon {
    width: 40px !important;
    height: 40px !important;
    font-size: 0.9rem !important;
    color: #fff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  /* Close button styling */
  .menu-back-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #00000052 !important;
    cursor: pointer;
    z-index: 10;
    font-size: 0px;
    color: #fff;
  }

  .menu-back-button .fa-xmark {
    font-size: 24px;
  }

  .menu-back-button:hover {
    background-color: #00000052;
  }

  /* Ensure mobile menu container has proper padding */
  .mobile-menu-container {
    padding-bottom: 80px; /* Add padding for close button */
  }

  /* Fix for always-sticky header */
  .always-sticky .mobile-menu-icon {
    color: #1b1b1b !important;
  }

  /* Ensure mobile menu toggle is visible and properly styled */
  .mobile-menu-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  /* Ensure mobile menu overlay covers the entire screen */
  .mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .mobile-menu-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Prevent body scrolling when menu is open */
  body.menu-open {
    overflow: hidden;
  }
}




/* Mobile Footer Styles - Only applied on mobile devices */
@media (max-width: 768px) {

  .section-title {
    font-size: 1.8rem;
  }
  /* Reorganize footer content for mobile */
  .footer-section {
    padding: 50px 0 30px; /* Reduce padding on mobile */
  }

  /* Change the order of elements in the footer */
  .footer-section .container {
    display: flex;
    flex-direction: column;
  }

  /* STEP 1: Move the menu columns to the top */
  .footer-content {
    order: 1; /* Place menu columns first */
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 30px;
    flex-direction: row;
  }
  .footer-column.desktop {
    display: none;
  }

  .footer-column.mobile {
    display: block;
    text-align: center;
  }
  /* Make all menu columns take up 50% width and left-align them */
  .footer-column {
    flex: 0 0 50%; /* Exactly two columns */
    padding-right: 10px;
    margin-bottom: 20px;
    flex-basis: calc(50% - 30px);

  }

  /* Left-align all text in menu columns */
  .footer-column .footer-title,
  .footer-column .footer-links,
  .footer-column .footer-links li,
  .footer-column .footer-links a {
    text-align: left !important;
  }

  /* STEP 2: Move the social section between menu columns and logo */
  .footer-social-section {
    order: 2; /* Place after menu columns, before logo */
    width: 100%;
    text-align: center;
    margin: 0 auto 30px;
    max-width: 300px;
  }

  /* Center social icons */
  .social-icons {
    justify-content: center;
    margin-bottom: 15px;
  }

  /* Center company info */
  .company-info {
    text-align: center;
    margin-bottom: 15px;
    font-size: 0.85rem; /* Smaller font */
  }

  /* STEP 3: Move logo container to the bottom */
  .footer-logo-container {
    order: 3; /* Place at the bottom */
    width: 100%;
    margin-top: 0;
  }

  /* Smaller logo on mobile */
  .footer-logo {
    font-size: 2.5rem;
  }

  /* Smaller copyright text */
  .footer-bottom {
    font-size: 0.75rem;
    order: 4; /* Place at the very bottom */
  }

  /* Reduce font sizes for better readability */
  .footer-title {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .footer-text {
    font-size: 0.9rem;
  }

  .footer-links a {
    font-size: 0.85rem;
  }

  .footer-links li {
    margin-bottom: 8px; /* Reduce spacing between links */
  }
}
}
}

#headermg {
  display: none !important;
}

#headerimg {
  display: none !important;
}

#footer[role="contentinfo"] {
  display: none;
}

hr {
  display: none;
}