
      /* Modern Header Styles */
      .modern-navbar {
        position: fixed;
        top: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 95%;
        max-width: 1400px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 25px;
        padding: 15px 30px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
      }

      .modern-navbar.scrolled {
        width: 85%;
        max-width: 1200px;
        top: 15px;
        padding: 12px 25px;
        background: rgba(242, 241, 237, 0.95);
        backdrop-filter: blur(25px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
      }

      .modern-navbar .navbar-brand {
        transition: all 0.3s ease;
      }

      
      .modern-navbar.scrolled .navbar-brand img {
        height: 55px; /* smaller when scrolled */
        width: auto;
      }

      /* Fix for horizontal navigation */
      .modern-navbar .navbar-nav {
        flex-direction: row !important;
        gap: 0.5rem;
        align-items: center;
      }

      .modern-navbar .nav-item {
        margin: 0;
      }

      .modern-navbar .nav-link {
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 500;
        padding: 8px 16px !important;
        border-radius: 15px;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        white-space: nowrap;
      }

      .modern-navbar.scrolled .nav-link {
        color: var(--dark_em) !important;
      }

      .modern-navbar .nav-link::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(224, 178, 120, 0.2),
          transparent
        );
        transition: left 0.5s ease;
      }

      .modern-navbar .nav-link:hover::before {
        left: 100%;
      }

      .modern-navbar .nav-link:hover {
        color: var(--primary) !important;
        background: rgba(224, 178, 120, 0.1);
        transform: translateY(-2px);
      }

      .modern-navbar .btn_primary {
        background: linear-gradient(
          135deg,
          var(--primary),
          var(--dark_primary)
        );
        border: none;
        padding: 10px 20px;
        border-radius: 20px;
        font-weight: 500;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .modern-navbar .btn_primary::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(255, 255, 255, 0.2),
          transparent
        );
        transition: left 0.5s ease;
      }

      .modern-navbar .btn_primary:hover::before {
        left: 100%;
      }

      .modern-navbar .btn_primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(224, 178, 120, 0.4);
      }

      .modern-navbar .dropdown-toggle {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 8px 12px;
        transition: all 0.3s ease;
      }

      .modern-navbar.scrolled .dropdown-toggle {
        background: rgba(38, 53, 47, 0.1);
        border-color: rgba(38, 53, 47, 0.2);
      }

      .modern-navbar .dropdown-toggle:hover {
        background: rgba(224, 178, 120, 0.2);
        transform: scale(1.05);
      }

      .modern-navbar .mobile-toggle {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        padding: 8px 12px;
        transition: all 0.3s ease;
      }

      .modern-navbar.scrolled .mobile-toggle {
        background: rgba(38, 53, 47, 0.1);
        border-color: rgba(38, 53, 47, 0.2);
      }

      .modern-navbar .mobile-toggle svg {
        fill: rgba(255, 255, 255, 0.9);
        transition: all 0.3s ease;
      }

      .modern-navbar.scrolled .mobile-toggle svg {
        fill: var(--dark_em);
      }

      .modern-navbar .mobile-toggle:hover {
        background: rgba(224, 178, 120, 0.2);
        transform: rotate(90deg);
      }

      /* Animated Logo */
   .logo-container {
    position: relative;
    overflow: hidden;
    height: 55px; /* fixed height */
    }

.logo-container::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(224, 178, 120, 0.3),
        transparent
    );
    transition: left 0.8s ease;
    }

        .logo-container:hover::after {
        left: 100%;
        }
      .logo-container img {
        height: 100%;       /* fits within the 45px height */
        width: auto;        /* keeps aspect ratio */
        object-fit: contain; /* ensures it doesn’t get stretched */
        display: block;
        }

      /* Video Hero Section */
      .video-hero {
        position: relative;
        height: 100vh;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
      }

      .video-hero video {
        position: absolute;
        top: 50%;
        left: 50%;
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        transform: translate(-50%, -50%);
        z-index: -1;
        object-fit: cover;
      }

      .video-hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.4);
        z-index: 1;
      }

      .video-hero-content {
        position: relative;
        z-index: 2;
        text-align: center;
        color: white;
        max-width: 800px;
        padding: 0 20px;
      }

      .video-hero-content h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1.5rem;
        opacity: 0;
        transform: translateY(50px);
        animation: fadeInUp 1s ease-out 0.5s forwards;
      }

      .video-hero-content p {
        font-size: 1.25rem;
        margin-bottom: 2rem;
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease-out 1s forwards;
      }

      .video-hero-content .btn-group {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 1s ease-out 1.5s forwards;
      }

      @keyframes fadeInUp {
        to {
          opacity: 1;
          transform: translateY(0);
        }
      }

      /* Roadmap Section */
      .roadmap-section {
        background: linear-gradient(135deg, #26352f 0%, #1a2420 100%);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
      }

 .roadmap-phase {
  background: rgba(240, 241, 237, 0.05);
  border: 1px solid rgba(224, 178, 120, 0.3);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden; /* important */
}

/* blur layer */
.roadmap-phase::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  backdrop-filter: blur(6px);
  background: rgba(0,0,0,0.3);
  z-index: 1;
}

/* Coming Soon text */
.roadmap-phase::after {
  content: "Coming Soon";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,0.6);
  padding: 10px 20px;
  border-radius: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 2;
}

.roadmap-phase:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(224, 178, 120, 0.1);
}


       .about-section {
        background: linear-gradient(135deg, #26352f 0%, #1a2420 100%);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
      }
      .phase-number {
        display: inline-block;
        background: var(--primary);
        color: var(--dark_em);
        width: 60px;
        height: 60px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        font-size: 1.5rem;
        margin-bottom: 20px;
      }

      /* Swiss Heritage Section */
      .swiss-heritage {
        background: var(--light_em);
        padding: 100px 0;
        position: relative;
      }

      .swiss-flag {
        position: absolute;
        top: 50px;
        right: 50px;
        opacity: 0.1;
        font-size: 200px;
      }

      /* AI Technology Section */
      .ai-tech-section {
        background: linear-gradient(45deg, #26352f, #1a2420);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
      }

      .ai-tech-section::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23E0B278" opacity="0.1"/></svg>')
          repeat;
        animation: float 20s infinite linear;
      }

      @keyframes float {
        0% {
          transform: translateY(0px);
        }
        100% {
          transform: translateY(-100px);
        }
      }

      .tech-card {
        background: rgba(240, 241, 237, 0.05);
        border: 1px solid rgba(224, 178, 120, 0.2);
        border-radius: 15px;
        padding: 30px;
        height: 100%;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
      }

      .tech-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(
          90deg,
          transparent,
          rgba(224, 178, 120, 0.1),
          transparent
        );
        transition: left 0.5s ease;
      }

      .tech-card:hover::before {
        left: 100%;
      }

      .tech-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary);
      }

      /* Enhanced Cube Swiper */
      .enhanced-cube-section {
        padding: 100px 0;
        background: var(--light_em);
      }

      .cubeSwiper .swiper-slide {
        height: 620px;
        border-radius: 20px;
        position: relative;
        overflow: hidden;
      }

      @media (max-width: 992px) {
        .cubeSwiper .swiper-slide {
          height: 420px;
        }
      }

      .cubeSwiper .swiper-slide img {
        border-radius: 20px;
        position: absolute;
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
      }

      .cubeSwiper .swiper-slide:hover img {
        transform: scale(1.05);
      }

      .cube-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
        color: white;
        padding: 40px 30px 30px;
        transform: translateY(100%);
        transition: transform 0.3s ease;
      }

      .cubeSwiper .swiper-slide:hover .cube-overlay {
        transform: translateY(0);
      }

      .dropDownMenu {
        background: #ffffffb6;
        backdrop-filter: blur(10px);
      }

      /* Stats Counter Animation */
      .stat-number {
        font-size: 3rem;
        font-weight: bold;
        color: var(--primary);
      }

      /* Floating Animation */
      .floating {
        animation: floating 3s ease-in-out infinite;
      }

      @keyframes floating {
        0%,
        100% {
          transform: translateY(0px);
        }
        50% {
          transform: translateY(-20px);
        }
      }

      /* Pulse Animation */
      .pulse {
        animation: pulse 2s infinite;
      }

      @keyframes pulse {
        0% {
          transform: scale(1);
        }
        50% {
          transform: scale(1.05);
        }
        100% {
          transform: scale(1);
        }
      }

      /* Mobile Responsive */
      @media (max-width: 768px) {
        .modern-navbar {
          width: 95%;
          padding: 12px 20px;
        }

        .modern-navbar.scrolled {
          width: 90%;
          padding: 10px 15px;
        }

        .video-hero-content h1 {
          font-size: 2.5rem;
        }

        .modern-navbar .navbar-nav {
          display: none !important;
        }
      }
