:root {
  --primary: #e0072d;
  --primary-hover: #c00626;
  --bg-dark: #111827;
  --bg-darker: #030712;
  --text-light: #f3f4f6;
  --text-gray: #9ca3af;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  background-color: var(--bg-darker);
  color: var(--text-light);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background-color 0.3s;
  padding: 1rem 0;
}

.navbar.scrolled {
  background-color: rgba(17, 24, 39, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
  height: 44px; 
  width: 150px;
}

.logo svg {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-gray);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--primary);
}

.contact-btn {
  background-color: var(--primary);
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.contact-btn:hover {
  background-color: var(--primary-hover);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  max-width: 48rem;
  margin-top: -5rem;
  padding-top: 180px;
  height: 680px;
  width: 1200px;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  word-wrap: break-word;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-primary svg {
  transition: transform 0.2s;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu-btn span {
  display: block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--text-light);
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    padding: 1rem;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
    /* Dropdown Styling */
    .dropdown {
      position: relative;
    }

    .dropdown-button {
      background: none;
      border: none;
      color: #ffffff;
      font-size: 16px;
      cursor: pointer;
      padding: 0;
    }

    .dropdown-button:hover {
      color: #e0072d;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      top: 100%; /* Aligns menu directly below the button */
      left: 0;
      background-color: rgba(255, 255, 255, 0.1); /* Transparent background */
      border-radius: 5px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
      z-index: 1000;
      width: 250px; /* Adjusted width for larger text */
      max-height: 400px; /* Set max height */
      overflow-y: auto; /* Add scroll for overflow */
      backdrop-filter: blur(10px); /* Glass effect */
    }

    .dropdown-content a {
      display: block;
      color: #ffffff;
      padding: 10px 15px;
      text-decoration: none;
      font-size: 14px; /* Smaller text for better fit */
      transition: background-color 0.3s, color 0.3s;
    }

    .dropdown-content a:hover {
      background-color: #111827; /* Hover color */
      color: #ffffff;
    }

    .dropdown:hover .dropdown-content {
      display: block;
    }

    /* Scrollbar Styling */
    .dropdown-content::-webkit-scrollbar {
      width: 1px;
    }
