:root {
  --primary-dark: #0a1f1c;
  --light-gray: #f4f4f9;
  --text-gray: #64748b;
  --white: #ffffff;
  --font-main: "Manrope", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  color: var(--primary-dark);
  line-height: 1.6;
}
.logoAndName {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logoAndName img {
  width: 40px;
  height: 40px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.bg-light {
  background: var(--light-gray);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.navbar {
  padding: 24px 0;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -1px;
}

.logo span {
  font-weight: 400;
  color: var(--text-gray);
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 0.95rem;
}
.login {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  margin-right: 24px;
}

.btn-dark {
  background: var(--primary-dark);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  border: none;
  cursor: pointer;
}

.btn-outline {
  border: 1px solid #ddd;
  color: var(--primary-dark);
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
}

.hero {
  text-align: center;
  padding: 80px 0;
}
.hero_img {
  filter: blur(0.5px);
}
.w_name {
  position: absolute;
  bottom: 175px;
  left: 75px;
  font-size: 120px;
  font-weight: 800;
  color: white;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.sub-badge {
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-gray);
}

.hero h1 {
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 24px 0;
}

.hero p {
  max-width: 650px;
  margin: 0 auto 40px;
  color: var(--text-gray);
  font-size: 1.1rem;
}

.hero-image-box {
  margin-top: 60px;
  position: relative;
  border-radius: 32px;
  overflow: hidden;
}

.hero-image-box img {
  width: 100%;
  height: 550px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  top: 40px;
  left: 40px;
  background: rgba(255, 255, 255, 0.9);
  padding: 24px;
  border-radius: 16px;
  text-align: left;
  backdrop-filter: blur(10px);
}
.about-section {
  margin-top: -100px;
}

.dark-section {
  background: var(--primary-dark);
  color: var(--white);
  padding: 100px 0;
  border-radius: 48px;
  margin: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
}

.icon-circle {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.2rem;
}

.step-list {
  list-style: none;
  margin: 32px 0;
}

.step-list li {
  padding: 16px 0;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.step-list li span {
  color: var(--primary-dark);
  font-weight: 800;
  margin-right: 20px;
  font-size: 1.1rem;
}

.rounded-img {
  width: 100%;
  border-radius: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
}

.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 16px;
  margin-bottom: 16px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-family: inherit;
}

.social-links {
  margin-top: 24px;
  display: flex;
  gap: 16px;
}

.social-links a {
  font-size: 1.5rem;
  color: var(--primary-dark);
}

.main-footer {
  padding: 40px 0;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-gray);
}

/* 950px */

@media (max-width: 950px) {
  .grid-2,
  .feature-grid,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.5rem;
  }
  .nav-links {
    display: none;
  }
  .hero-image-box img {
    height: 400px;
  }
  .w_name {
    font-size: 60px;
    bottom: 100px;
    left: 20px;
  }
  .download-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .download-text_heading {
    font-size: 1.9rem;
  }

  .download-text_desc {
    max-width: 90%;
  }

  .store-buttons {
    gap: 16px;
  }
}

/* 500 px */
@media (max-width: 500px) {
  .navbar .container {
    padding: 0 16px;
  }

  .logo {
    font-size: 1.1rem;
  }

  .btn-dark {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  .download-text_heading {
    font-size: 1.6rem;
  }
  .download-text_heading {
    font-size: 1.6rem;
  }

  .store-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* CAREERS */

.careers-grid {
  margin-top: 40px;
}

.career-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  text-align: left;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease;
}

.career-card:hover {
  transform: translateY(-6px);
}

.career-card h3 {
  margin-bottom: 10px;
}

.career-card p {
  color: var(--text-gray);
  margin-bottom: 20px;
}

/* DOWNLOAD APP SECTION */

.download-wrapper {
  display: flex; /* simpler without image */
  justify-content: center;
  align-items: flex-start;
  text-align: center;
}

.download-text_heading {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--primary-dark);
  font-weight: bold;
}

.download-text_desc {
  color: var(--text-gray);
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.store-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--primary-dark);
  color: white;
  padding: 12px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

.store-btn i {
  font-size: 1.8rem;
}

.store-btn small {
  display: block;
  font-size: 0.7rem;
}

/* --- Add these styles to your style.css --- */

/* Hide toggle icon by default */
.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

@media (max-width: 950px) {
  .menu-toggle {
    display: block; /* Show hamburger on mobile */
    order: 2;
  }

  .nav-cta {
    display: none; /* Optional: hide CTA on small mobile to save space */
  }

  .nav-links {
    display: none; /* Hide standard links */
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%; /* Sits right below the nav */
    left: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #eee;
    text-align: center;
    gap: 20px;
    z-index: 999;
  }

  /* When JS adds this class, the menu appears */
  .nav-links.active {
    display: flex;
  }
}

/* Desktop: Hide the icon by default */
.btn-icon {
  display: none;
}

@media (max-width: 950px) {
  /* 1. Ensure the CTA is visible on mobile (reverting the previous 'display: none') */
  .nav-cta {
    display: block;
    order: 1; /* Keeps it to the left of the hamburger if needed */
    margin-left: auto;
    margin-right: 15px;
  }

  /* 2. Hide the text and style the button as a circle */
  .download-btn {
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%; /* Makes it a circular icon button */
  }

  .btn-text {
    display: none; /* Hide "Download App" text */
  }

  .btn-icon {
    display: inline-block; /* Show the download icon */
    font-size: 1rem;
  }
}
