/* Updated Color Variables */
:root {
  --primary:  #0066FF;    /* Blue */
  --accent: #D9AF26;      /* Gold-ish */
  --lime: #BDD926;        /* Lime Green */
  --teal: #26D99B;        /* Teal */
  --dark: #0f0f0f;        /* Very dark */
  --light: #ffffff;       /* White */
  --text: #eeeeee;        /* Light Gray */
}

/* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
 --teal: #26D99B;
  color: #333;
}

.header {
background: linear-gradient(135deg, #6A00D7, #0066FF);

  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 9999;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo img {
  height: 45px;
}

.nav {
  display: flex;
  align-items: center;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-list li {
  position: relative;
}

.nav-list li.dropdown > a::after {
  content: " ▼";
  font-size: 12px;
  margin-left: 6px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.nav-list a {
color: #FFFFFF;

  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--light);
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--light);
  border-radius: 5px;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  z-index: 1000;
  margin-top: 5px;
  padding-left: 0;
  list-style: none;
}

.dropdown:hover > .dropdown-menu,
.dropdown-menu:hover {
  display: flex;
  flex-direction: column;
}

.dropdown-menu li {
  margin-bottom: 10px;
}

.dropdown-menu li a {
  padding: 10px 15px;
  font-weight: 400;
  color: var(--dark);
  display: block;
  border-radius: 5px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.dropdown-menu li a:hover {
  background: var(--lime);
  color: var(--dark);
}

.dropdown:hover > a::after {
  transform: rotate(-180deg);
}

.cta-btn {
  background: var(--lime);
  color: var(--dark);
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background: var(--lime);
}

.mobile-menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: var(--accent);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  right: 0;
  width: 250px;
  height: calc(100% - 70px);
  background: var(--dark);
  padding: 25px 20px;
  flex-direction: column;
  overflow-y: auto;
  z-index: 10000;
}

.mobile-nav ul {
  list-style: none;
  padding-left: 0;
}

.mobile-nav ul li {
  margin-bottom: 18px;
}

.mobile-nav a {
  color: var(--light);
  font-size: 16px;
  text-decoration: none;
  display: block;
  font-weight: 500;
  transition: color 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--accent);
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 15px;
  margin-top: 8px;
  flex-direction: column;
  list-style: none;
}

.mobile-dropdown-menu li {
  margin-bottom: 10px;
}

.mobile-dropdown.open > .mobile-dropdown-menu {
  display: flex;
}

.mobile-dropdown > a::after {
  content: '▼';
  font-size: 12px;
  float: right;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.mobile-dropdown.open > a::after {
  transform: rotate(-180deg);
}

@media (max-width: 768px) {
  .nav,
  .cta-btn {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
  }

  .mobile-nav.show {
    display: flex;
  }
}

