        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'Poppins', sans-serif;
            background: #0a1f12;
            color: #fff;
            line-height: 1.6;
            min-height: 100vh;
            overflow-x: hidden;
            position: relative;
        }

        /* Animated Background */
        .bg-animation {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            background: linear-gradient(135deg, #0a1f12 0%, #1a4d2e 50%, #2d5a3d 100%);
        }

        .bg-animation::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: 
                radial-gradient(circle at 20% 30%, rgba(76, 175, 80, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(139, 195, 74, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(46, 125, 50, 0.05) 0%, transparent 50%);
            animation: backgroundShift 20s ease-in-out infinite;
        }

        @keyframes backgroundShift {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Animated background particles */
        .bg-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(76, 175, 80, 0.3);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 1; }
            50% { transform: translateY(-20px) rotate(180deg); opacity: 0.7; }
        }
  
  /* Navbar Styles */
 .navbar {
    background: #0a1f12;
    color: white;
    padding: 1rem 2rem;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid transparent;
    background-clip: padding-box;
    backdrop-filter: blur(10px);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 1.8rem;
    font-weight: 700;
    transition: transform 0.3s ease;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e94560, #ff6f61);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.logo:hover::after {
    width: 100%;
}

/* Navigation Links - Desktop */
.nav-menu {
    display: flex;
    list-style: none;
    transition: all 0.3s ease;
}

.nav-item {
    margin-left: 2rem;
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #e94560, #ff6f61);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #e94560;
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: all 0.3s ease;
}


@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #0a1f12;
        flex-direction: column;
        align-items: center;
        padding: 1rem 0;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease;
        opacity: 0;
        margin: 0;
    }

    .nav-menu.active {
        max-height: 500px;
        opacity: 0.85;
    }

    .nav-item {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
        margin-left: 0;
    }

    .nav-link {
        display: block;
        padding: 0.5rem 1rem;
    }
  }
  
  /* HERO SECTION + PREZENTARE */
  
  
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  flex-wrap: wrap; /* Mobile responsiveness */
}

.header__left {
  flex: 1;
  margin-right: 2rem;
}

.header__left h1 {
  line-height: 1.2;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.header__left p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.btn-wrapper {
  text-align: center;
}

.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary {
  background: #00530b;
  color: rgb(255, 255, 255);
}

.header__right {
  flex: 1;
  max-width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-logo {
  max-width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: contain;
}

/* RESPONSIVE MOBILE */

@media (max-width: 768px) {
  .header__container {
    flex-direction: column;
    text-align: center;
  }

  .header__right {
    margin-top: 2rem;
    max-width: 80%;
  }

  .header__left {
    margin-right: 0;
  }
}


  
  /* CATEGORIILE */
  .categories {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a1f12;
    color: #ffffff;
    overflow-x: hidden;
  }



  
  .categories h1 {
    line-height: 1;
    margin-bottom: 2rem;
    color: linear-gradient(135deg, #4CAF50, #8BC34A, #CDDC39);
    font-size: 1.8rem; /* Adjust font size for mobile */
    text-align: center; /* Center the title on mobile */
  }
  
  .categories__container {
    display: flex;
    flex-direction: column; /* Stack items on mobile */
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    
  }
  
  .categories__left {
    margin-right: 0; /* Remove margin for stacked layout */
    text-align: center; /* Center text on mobile */
  }
  
  .categories__left p {
    margin: 1rem 0 2rem;
    color: #ffffff;
    font-size: 1rem; /* Adjust font size for mobile */
  }
  
  .categories__right {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Responsive grid */
    gap: 1rem;
  }
  
  .category {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #0a1f12;
    color: #ffffff;
    overflow-x: hidden;
  }
  
  .category h5 {
    margin: 1rem 0 0.5rem;
    color: #ffffff;
    font-size: 1.1rem;
  }
  
  .category p {
    font-size: 0.9rem;
    color: #ffffff;
  }
  
  .category a {
    text-decoration: none;
    color: inherit;
  }
  
  .category h5 i {
    margin-right: 0.5rem; /* Add some spacing between the icon and text */
    font-size: 3.4rem; /* Adjust the size of the icon */
    color: #000000; /* Example color for the icons */
    vertical-align: middle; /* Align the icon vertically with the text */
  }

  /* Roadmap Section */
.roadmap {
  padding: 4rem 2rem;
    background: #0a1f12;
  position: relative;
  z-index: 1;
  text-align: center;
}

.roadmap-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 2rem;
  font-weight: 700;
}

.roadmap-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* Step Cards */
.step {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  padding: 2rem;
  margin: 4rem 0;
  text-align: center;
  width: 80%;
  max-width: 400px;
  position: relative;
  z-index: 1;
  backdrop-filter: blur(100px);
}

.step-icon {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 1rem;
}

.step h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #fff;
}

.step p {
  font-size: 1.1rem;
  color: #ccc;
}

/* Wiggly Arrow */
/* Wiggly Arrow */
.arrow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: calc(139% - 2rem); /* Adjusted to fit the roadmap steps */
  z-index: 0;
  pointer-events: none; /* Ensure the arrow doesn't interfere with clicks */
}

.arrow svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%; /* Smaller on desktop */
  height: 100%;
}

.arrow svg path {
  stroke: #ffffff;
  stroke-width: 2.9px;
  fill: none;
  stroke-dasharray: 10, 5; /* Dashed line effect */
}

/* Custom Wiggly Path */
.arrow svg path {
  d: path("M50,0 C50,50 30,100 50,150 C70,200 50,250 50,300 C50,350 70,400 50,450 C30,500 50,550 50,600");
}

/* Roadmap Button */
.roadmap-button-container {
  margin-top: 4rem;
  position: relative;
  z-index: 2;
}

.roadmap-button {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  font-weight: bold;
  text-transform: uppercase;
  border: none;
  border-radius: 50px;
  background: #00530b;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.roadmap-button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.5s ease;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
}

.info-containers {
  padding: 50px 20px;
     background: #0a1f12;
  text-align: center;
}

.main-container {
  position: relative;
   background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow 0.3s ease;
}

.main-container:hover {
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.main-content {
  padding: 20px;
}

.main-content h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #ffffff;
}

.main-content p {
  margin: 10px 0 0;
  color: #ffffff;
}

.secondary-container {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease, padding 0.5s ease;
  background-color: #01410c;
  color: white;
  padding: 0 20px;
}

.secondary-container p {
  margin: 0;
  padding: 20px 0;
}

.main-container.active .secondary-container {
  max-height: 200px;
  padding: 20px;
}

/* Click Me Bubble */
.click-bubble {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #e74c3c;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: bold;
  animation: bounce 2s infinite;
  opacity: 0.3;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Intro Section */
.intro-section {
  padding: 100px 0;
  background: #0f0f1a;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.intros {
  padding: 20px;
}

.display-2--intro {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  display: block;
}

.display-2--description {
  font-size: 1.2rem;
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 30px;
  display: block;
  max-width: 550px;
}

.btn-rounded {
  background-color: #3498db;
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-rounded:hover {
  background-color: #2980b9;
}

.btn-rounded i {
  margin-left: 10px;
}


.section-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 80px 0 0;
}

/* Responsive Roadmap */
@media (max-width: 1024px) {
  .roadmap-title {
    font-size: 2rem;
  }

  .step {
    width: 90%;
    max-width: 350px;
  }

  .step h3 {
    font-size: 1.5rem;
  }

  .step p {
    font-size: 1rem;
  }

  .roadmap-button {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
}

@media (max-width: 768px) {
  .roadmap-title {
    font-size: 1.8rem;
  }

  .step {
    width: 100%;
    max-width: 300px;
  }

  .step h3 {
    font-size: 1.3rem;
  }

  .step p {
    font-size: 0.9rem;
  }

  .arrow svg {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .roadmap-title {
    font-size: 1.5rem;
  }

  .step {
    padding: 1.5rem;
  }

  .step h3 {
    font-size: 1.2rem;
  }

  .step p {
    font-size: 0.8rem;
  }

  .roadmap-button {
    font-size: 0.9rem;
    padding: 0.7rem 1.2rem;
  }
}


  
  /* Responsive Navbar */
  @media (max-width: 1024px) {
    .nav-menu {
      display: none;
      flex-direction: column;
      width: 100%;
      background: #002e06;
      position: absolute;
      top: 60px;
      left: 0;
      padding: 2rem;
      border-radius: 0 0 8px 8px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }
  
    .nav-menu.active {
      display: flex;
    }
  
    .nav-item {
      margin: 0.5rem 0;
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .menu-toggle.active .bar:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
  
    .menu-toggle.active .bar:nth-child(2) {
      opacity: 0;
    }
  
    .menu-toggle.active .bar:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px);
    }
  
    .header__container {
      flex-direction: column;
      text-align: center;
    }
  
    .header__left {
      margin-right: 0;
      margin-bottom: 2rem;
    }
  
    .header__right {
      max-width: 80%;
    }
  
    .categories__container {
      grid-template-columns: 1fr;
    }
  
    .categories__left {
      margin-right: 0;
    }
  }
  
  @media (max-width: 768px) {
    .navbar {
      padding: 1rem;
    }
  
    .logo {
      font-size: 1.5rem;
    }
  
    .header__right {
      max-width: 100%;
    }
  }
  
  @media (max-width: 480px) {
    .logo-text {
      display: none;
    }
  
    .logo-icon {
      margin-right: 0;
    }
  }

/* Footer Section */
.footer-innovative {
  background: #0a1f12;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}

/* Call to Action Section */
.footer-cta-container {
  background: rgba(76, 175, 80, 0.2);
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.footer-cta-container::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('https://www.transparenttextures.com/patterns/green-dust-3.png');
  opacity: 0.1;
  z-index: 1;
}

.footer-cta {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-text {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

/* Social Links */
.social-links-footer {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 15px;
  z-index: 3;
}

.social-icon-footer {
  display: inline-flex;
  width: 45px;
  height: 45px;
  background: rgba(76, 175, 80, 0.3);
  color: #4CAF50;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-icon-footer:hover {
  background: #4CAF50;
  color: #0d2c0b;
  transform: rotate(360deg) scale(1.1);
  border-color: #8BC34A;
}

/* Footer Bottom Section */
.footer-bottom {
  background: #07290a;
  padding: 15px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  margin-right: 15px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #4caf50;
}

/* Make Terms & Conditions bigger and bolder */
.footer-links a.highlighted-link {
  font-weight: 700;
  font-size: 1.1rem;
  color: #a5d6a7; /* lighter green for emphasis */
}

.footer-copy {
  margin: 5px 0 0;
}

/* Responsive */
@media (max-width: 768px) {
  .social-links-footer {
    position: static;
    margin-top: 20px;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-links {
    justify-content: center;
  }
}

