* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

body {
  background-color: #f7f9fc;
  color: #1a1a1a;
  font-family:"Manrope", sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 5%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}



.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #007bff;
}

.nav-buttons button {
  margin-left: 10px;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  transition: 0.3s;
}

.login-btn {
  background: transparent;
  border: 1px solid #007bff;
  color: #007bff;
}

.login-btn:hover {
  background: #007bff;
  color: #fff;
}

.signup-btn {
  background: #007bff;
  color: #fff;
}

.signup-btn:hover {
  background: #005fcc;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 5%;
  flex-wrap: wrap;
}

.hero-content {
  max-width: 550px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.cta-buttons button {
  margin-right: 1rem;
  padding: 0.9rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.primary-btn {
  background: #000;
  color: #fff;
}

.primary-btn:hover {
  background: #333;
}

.secondary-btn {
  background: black;
  color: white;
}

.secondary-btn:hover {
  background:#333;
}

.hero-image img {
  max-width: 450px;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Responsive (Mobile) */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
  }

  .nav-links {
    display: none;
  }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
  }

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

  .hero-content p {
    font-size: 1rem;
  }

  .hero-image img {
    margin-bottom: 2rem;
    max-width: 320px;
  }

  .cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }
}

/* Why Choose Section */
.why-choose {
  text-align: center;
  padding: 4rem 5%;
  background-color: #f7f9fc;
}

.why-choose h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 0.5rem;
}

.subtitle {
  color: #666;
  font-size: 1rem;
  margin-bottom: 3rem;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  justify-content: center;
}

.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  padding: 2rem 1rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.feature-card img {
  width: 90px;
  height: auto;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #222;
}

.feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.4;
}

/* Responsive for Mobile */
@media (max-width: 992px) {
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .features {
    grid-template-columns: 1fr;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .feature-card img {
    width: 70px;
  }

  .why-choose h2 {
    font-size: 1.8rem;
  }
}

/* Find It Section */
.find-it {
  padding: 5rem 5%;
  background-color: #f9fafc;
  font-family: 'Poppins', sans-serif;
}

.find-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}

/* Left text area */
.find-text {
  flex: 1 1 40%;
  min-width: 300px;
}

.find-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.find-text p {
  font-size: 1rem;
  color: #555;
  max-width: 400px;
  line-height: 1.6;
}

/* Right features grid */
.find-features {
  flex: 1 1 55%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.feature-item i {
  font-size: 1.4rem;
  color: #e63946;
  margin-top: 2px;
}

.feature-item p {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 992px) {
  .find-container {
    flex-direction: column;
  }

  .find-text h2 {
    font-size: 2rem;
  }

  .find-features {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 600px) {
  .find-text h2 {
    font-size: 1.8rem;
  }

  .feature-item i {
    font-size: 1.2rem;
  }
}

/* Testimonials Section */
.testimonials {
  background-color: #f8fafc;
  padding: 5rem 5%;
  font-family: 'Poppins', sans-serif;
}

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

.testimonials h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 2rem;
}

.testimonial-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}

.testimonial-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.testimonial-text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.2rem;
}

.testimonial-text .role {
  color: #777;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

/* Stars */
.stars {
  color: #ffb400;
  margin-bottom: 1.5rem;
}

.quote {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Profile Buttons */
.profile-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.profile-buttons button {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 0.8rem 1.2rem;
  font-size: 0.95rem;
  color: #222;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
  width: 180px;
}

.profile-buttons button i {
  color: #111;
  margin-bottom: 0.3rem;
}

.profile-buttons button span {
  color: #888;
  font-size: 0.85rem;
}

.profile-buttons button.active {
  background-color: #e0f2fe;
  border-color: #38bdf8;
}

.profile-buttons button:hover {
  background-color: #f0f9ff;
}

/* Image */
.testimonial-image {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.testimonial-image img {
  width: 260px;
  height: 260px;
  border-radius: 20px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
  .testimonial-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .testimonial-image img {
    width: 200px;
    height: 200px;
  }
}

@media (max-width: 600px) {
  .profile-buttons {
    flex-direction: column;
    width: 100%;
  }

  .profile-buttons button {
    width: 100%;
    align-items: center;
  }
}

