
/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f6fa;
  overflow-x: hidden;
}

/* ========== NAVBAR ========== */
.navbar {
  width: 100%;
  height: 70px;
  background: linear-gradient(90deg, #240843, #5A2D82, #7D4BB1);
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 80px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  max-width: 1320px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

/* LOGO */
.logo img {
  height: 50px;
  width: auto;
}

/* CENTER MENU */
.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  justify-content: center;
  flex: 1;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #5A2D82;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* ========== BUTTONS ========== */
.nav-actions {
  display: flex;
  gap: 1rem;
  
}

.login-btn,
.signup-btn {
  padding: 10px 28px;
  border-radius: 15px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #fff;
  border: none;
  background: linear-gradient(90deg, #240843, #5A2D82, #7D4BB1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 1px solid #fff;
}

.login-btn:hover,
.signup-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
  border: 1px solid #fff;
}

/* ========== HAMBURGER ========== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  position: absolute;
  right: 25px;
  top: 22px;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ========== MOBILE SLIDE MENU ========== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 270px;
  height: 100vh;
  background: linear-gradient(135deg, #240843, #5A2D82, #7D4BB1);
  display: flex;
  flex-direction: column;
  padding: 80px 25px;
  transition: left 0.4s ease;
  z-index: 999;
}

.mobile-menu.active {
  left: 0;
  
  
}

.mobile-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 30px;
}

.mobile-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.1rem;
  transition: opacity 0.3s ease;
}

.mobile-links a:hover {
  color: #ffd700;
}

/* MOBILE ACTION BUTTONS */
.mobile-actions {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  
}

.mobile-actions .login-btn,
.mobile-actions .signup-btn {
  width: 80%;
  text-align: center;
  border: 1px solid #fff;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 992px) {
  .nav-links,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar-container {
    justify-content: space-between;
    padding: 0 20px;
  }

  .logo {
    position: absolute;
    left: 25px;
    top: 10px;
  }
}

@media (max-width: 480px) {
  .mobile-menu {
    width: 230px;
    padding: 70px 20px;
  }

  .mobile-menu ul li a {
    font-size: 16px;
  }
}









/* 2nd navbar  */


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


body {
  font-family: "Poppins", sans-serif;
  background: #0a0a0a;
  color: #fff;
  min-height: 100vh;
}


.navbar {
  width: 100%;
  background: linear-gradient(135deg, #240843, #5A2D82, #7D4BB1);
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}


.navbar-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;  
}

Logo
.logo img {
  width: 50px; 
  height: auto;
  display: block;
}


.get-started {
  background: linear-gradient(135deg, #240843, #5A2D82, #7D4BB1);
  color: white;
  border: 2px solid #ffffff;
  padding: 12px 35px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
.get-started-link {
  text-decoration: none;
}
a {
  text-decoration: none;
}

.get-started:hover {
  background: transparent;
  border-color: #fff;
  transform: translateY(-2px);
}


@media (max-width: 992px) {
  .navbar-container {
    padding: 0 20px;
  }
  .navbar {
  position: sticky;
  
  }

  .logo img {
    width: 180px;
  }

  .get-started {
    padding: 10px 28px;
    font-size: 0.95rem;
  }
}


@media (max-width: 600px) {
  .navbar-container {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 20px;
  }

  .logo img {
    width: 40px;
  }

  .get-started {
    padding: 6px 18px;
    font-size: 0.85rem;
  }
} */







/* FOOTER */
footer {
  width: 100%;
  background: linear-gradient(135deg, #240843, #5b2a86);
  color: #fff;
  padding: 60px 100px 20px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
  padding-bottom: 30px;
}

.footer-left {
  width: 35%;
  min-width: 250px;
  padding-right: 150px;
}

.footer-left img.footer-logo {
  height: 100px;
  margin-bottom: 10px;
}

.footer-left p {
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
}

.footer-right {
  display: flex;
  justify-content: space-between;
  width: 40%;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-column {
  width: 20%;
  min-width: 150px;
}

.footer-column h3 {
  margin-bottom: 8px;
  font-size: 16px;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 6px;
}

.footer-column ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
}

.footer-column ul li a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 15px;
  border-top: 1px solid #ffffff;
  font-size: 13px;
  width: 100%;
}

/* Tablet view */
@media (max-width: 992px) {
  footer {
    padding: 40px 40px 20px;
    text-align: center;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }

  .footer-right {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-column {
    width: 30%;
    min-width: 150px;
    text-align: center;
  }
}

/* Mobile view */
@media (max-width: 600px) {
  footer {
    padding: 30px 20px 20px;
  }

  .footer-column {
    width: 100%;
    text-align: center;
  }

  .footer-left {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }
}
