/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #0f0f1a;
  color: #fff;
  line-height: 1.6;
}

/* Navbar Styles */
.navbar {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  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%;
}

.logo-icon {
  margin-right: 0.5rem;
  font-size: 2rem;
  transition: transform 0.3s ease;
}

.logo:hover .logo-icon {
  transform: rotate(15deg);
}

/* Navigation Links */
.nav-menu {
  display: flex;
  list-style: none;
}

.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;
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #1a1a2e;
  list-style: none;
  padding: 0.5rem 0;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  min-width: 150px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown-menu li {
  padding: 0.5rem 1rem;
}

.dropdown-menu a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.dropdown-menu a:hover {
  color: #e94560;
}

.dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* User Profile */
.user-profile {
  position: relative;
}

.profile-image {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.profile-image:hover {
  transform: scale(1.1);
  border: 2px solid #e94560;
}

.profile-dropdown .dropdown-menu {
  right: 0;
  left: auto;
}

/* 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;
}

/* Responsive Navbar */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #1a1a2e;
    position: absolute;
    top: 60px;
    left: 0;
    padding: 1rem;
    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);
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 1rem;
  }

  .logo {
    font-size: 1.5rem;
  }

  .logo-icon {
    font-size: 1.5rem;
  }

  .profile-image {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 480px) {
  .logo-text {
    display: none;
  }

  .logo-icon {
    margin-right: 0;
  }

  .profile-image {
    width: 30px;
    height: 30px;
  }
}

/* Roadmap Section */
.roadmap {
  padding: 4rem 2rem;
  background: #0f0f1a;
  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(0, 0, 0, 0.1);
  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: linear-gradient(45deg, #3498db, #6c5ce7);
  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);
}

/* 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;
  }
}

/* Slider Section */
.slider-section {
  text-align: center;
  margin: 40px auto;
  max-width: 100%;
}

.slider-title {
  font-size: 32px;
  margin-bottom: 20px;
}

.slider-container {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  width: 100%;
}

.slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 33.33%;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  color: white;
  padding: 50px;
  border-radius: 8px;
  text-align: center;
  font-size: 24px;
}

.slide i {
  font-size: 40px;
  margin-bottom: 15px;
}

.slide h3 {
  font-size: 28px;
  margin: 10px 0;
}

.slide p {
  font-size: 18px;
}

.slider-arrow {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 24px;
}

.left-arrow {
  left: 20px;
}

.right-arrow {
  right: 20px;
}

/* Responsive Slider */
@media (max-width: 1024px) {
  .slide {
    flex: 0 0 50%;
  }
}

@media (max-width: 768px) {
  .slide {
    flex: 0 0 100%;
  }
}

/* Info Containers Section */
.info-containers {
  padding: 50px 20px;
  background: #0f0f1a;
  text-align: center;
}

.main-container {
  position: relative;
  background: linear-gradient(135deg, #3d3d65, #16213e);
  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: #0e476d;
  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;
}

.video-box img {
  max-width: 70%;
  height: 70%;
  border-radius: 15px;
  transition: transform 0.3s ease;
}

.video-box img:hover {
  transform: scale(1.05);
}

.section-divider {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 80px 0 0;
}

/* Footer */
.footer {
  background-color: #0f0f1a;
  color: #ecf0f1;
  padding: 30px 20px 20px;
  font-family: 'Arial', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.footer-brand, .footer-contact, .footer-newsletter {
  flex: 1 1 200px;
  margin-bottom: 10px;
}

.footer-logo {
  width: 150px;
  margin-bottom: 10px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  color: #bdc3c7;
  margin-bottom: 10px;
}

.footer-heading {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-links ul, .footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li, .footer-contact ul li {
  margin-bottom: 8px;
}

.footer-links ul li a, .footer-contact ul li {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: #ffffff;
}

.footer-contact ul li i {
  margin-right: 8px;
  color: #3498db;
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

.newsletter-form input {
  flex: 1;
  padding: 8px;
  border: none;
  border-radius: 5px;
  font-size: 14px;
}

.newsletter-form button {
  padding: 8px 16px;
  background-color: #3498db;
  color: #ffffff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
}

.newsletter-form button:hover {
  background-color: #2980b9;
}

.footer-newsletter-text {
  font-size: 12px;
  color: #bdc3c7;
  margin-top: 8px;
}

.footer-social {
  text-align: center;
  margin: 15px 0;
}

.footer-social a {
  color: #bdc3c7;
  font-size: 18px;
  margin: 0 8px;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #3498db;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
  color: #bdc3c7;
}

.footer-legal {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}

.footer-legal li {
  display: inline;
  margin: 0 8px;
}

.footer-legal li a {
  color: #bdc3c7;
  text-decoration: none;
}

.footer-legal li a:hover {
  color: #ffffff;
}

/* Responsive Footer */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-brand, .footer-contact, .footer-newsletter {
    margin-bottom: 20px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form button {
    width: 100%;
  }
}

/* Responsive Intro Section */
@media (max-width: 768px) {
  .intro-section {
    padding: 50px 0;
  }

  .col-md-6 {
    width: 100%;
    text-align: center;
  }

  .display-2--intro {
    font-size: 2.5rem;
  }

  .display-2--description {
    font-size: 1rem;
  }

  .btn-rounded {
    padding: 10px 20px;
  }

  .video-box img {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .row {
    flex-direction: column-reverse;
  }

  .intro-section {
    padding: 20px 0;
  }

  .display-2--intro {
    font-size: 2rem;
  }

  .display-2--description {
    font-size: 0.9rem;
  }

  .btn-rounded {
    font-size: 0.9rem;
    padding: 8px 18px;
  }

  .video-box img {
    max-width: 90%;
    margin-top: 20px;
  }
}








