/* =========================
   GLOBAL RESET (safe to include)
========================= */

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

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background: #fff;
}

/* =========================
   HEADER
========================= */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

/* Logo */
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.logo-container img {
  height: 50px;
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #222;
}

.logo-text span {
  color: #90E91B;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}

nav ul li a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #90E91B;
}

/* =========================
   DROPDOWN
========================= */

.dropdown {
  position: relative;
}

.toggle-area {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 0.3rem;
}

.dropdown-btn {
  border: none;
  background: none;
  font-size: 0.9rem;
  cursor: pointer;
}

.dropdown-content {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  min-width: 220px;
  display: none;
  flex-direction: column;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.dropdown-content a {
  padding: 0.8rem 1rem;
  text-decoration: none;
  color: #222;
  transition: 0.3s;
}

.dropdown-content a:hover {
  background: #90E91B;
  color: #fff;
}

.dropdown.open .dropdown-content {
  display: flex;
}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background: #222;
}

/* =========================
   HERO
========================= */

.solution-hero {
  height: 65vh;
  min-height: 420px;
  margin-top: 80px; /* IMPORTANT for fixed header */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.solution-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.75), rgba(0,0,0,0.6));
}

.solution-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 1rem;
}

.solution-hero h1 {
  font-size: 3rem;
}

.solution-hero p {
  color: #ddd;
  margin-top: 0.5rem;
}

/* =========================
   CONTENT
========================= */

.solution-content {
  padding: 5rem 2rem;
  max-width: 1000px;
  margin: auto;
}

.solution-content p {
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #444;
}

/* =========================
   FEATURES
========================= */

.features {
  background: #f9f9f9;
  padding: 4rem 2rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: auto;
}

.feature-box {
  background: #fff;
  padding: 2rem;
  border-radius: 14px;
  text-align: center;
  transition: 0.3s;
}

.feature-box:hover {
  transform: translateY(-5px);
}

.feature-box i {
  color: #90E91B;
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* =========================
   CTA
========================= */

.cta {
  text-align: center;
  padding: 5rem 2rem;
  position: relative;
  z-index: 1;
  margin-top: 2rem;
}

.cta h2 {
  margin-bottom: 1.2rem;
}

.cta a {
  display: inline-block;
  background: #90E91B;
  padding: 1rem 2.2rem;
  border-radius: 40px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  transition: 0.3s ease;
  position: relative;
  z-index: 2;
}

.cta a:hover {
  background: #7ed916;
  transform: translateY(-3px);
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 900px) {

  nav ul {
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    display: none;
    padding: 1rem;
  }

  nav.open ul {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .solution-hero h1 {
    font-size: 2.2rem;
  }
}
