* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* HERO SECTION */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 5%;
  background: #f0f4ff;
  border-radius: 0 0 20px 20px;
}

.hero-text {
  flex: 1 1 400px;
  text-align: left;
}

.hero-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #2563eb;
}

.hero-text p {
  font-size: 1.2rem;
  color: #555;
  max-width: 600px;
}

.hero-image {
  flex: 1 1 300px;
  text-align: center;
}

.hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.use-now-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background-color: #2563eb; /* vibrant blue */
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.use-now-btn:hover {
  background-color: #1e4fd1;
}


/* SECTION HEADINGS */
.section-heading {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  margin: 50px 0 20px;
  color: #2563eb;
}

/* TOOL CARDS */
.container {
  max-width: 1200px;
  margin: 20px auto 40px;
  padding: 0 20px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.tool-card {
  background: white;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tool-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.tool-card a {
  text-decoration: none;
  color: #2563eb;
  font-size: 1.3rem;
  font-weight: 600;
  display: block;
  margin-bottom: 10px;
}

.tool-card p {
  font-size: 0.95rem;
  color: #555;
}

/* ABOUT SECTION */
.about-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  padding: 50px 5%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  max-width: 1100px;
  margin: 60px auto;
}

.about-text {
  flex: 1 1 450px;
  text-align: left;
}

.about-text h3 {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 15px;
}

.about-text p {
  font-size: 1.1rem;
  color: #444;
}

.about-image {
  flex: 1 1 350px;
  text-align: center;
}

.about-image img {
  width: 100%;
  max-width: 450px;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  display: block;
  margin: 0 auto;

}

/* CONTACT SECTION */
.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1000px;
  margin: 60px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.contact-info, .contact-form {
  flex: 1 1 300px;
}

.contact h3 {
  font-size: 1.7rem;
  color: #2563eb;
  margin-bottom: 10px;
}

.contact p {
  font-size: 1rem;
  color: #555;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.contact-form button {
  background: #2563eb;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background: #1d4ed8;
}

/* ========================== */
/* 📱 RESPONSIVE QUERIES */
/* ========================== */

/* Tablets */
@media (max-width: 992px) {
  .hero,
  .about-flex {
    flex-direction: column;
    text-align: center;
  }

  .hero-text,
  .about-text {
    text-align: center;
  }

  .hero-text h2,
  .about-text h3 {
    font-size: 2rem;
  }

  .hero-text p,
  .about-text p {
    font-size: 1.05rem;
  }

  .hero-image img,
  .about-image img {
    max-width: 90%;
    margin-top: 20px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-text h2 {
    font-size: 1.8rem;
  }

  .hero-text p,
  .about-text p,
  .contact p {
    font-size: 1rem;
  }

  .tool-card a {
    font-size: 1.15rem;
  }

  .tool-card p {
    font-size: 0.9rem;
  }

  .section-heading {
    font-size: 1.5rem;
  }

  .about-text h3,
  .contact h3 {
    font-size: 1.5rem;
  }

  .contact {
    padding: 20px;
  }
}
@media (max-width: 768px) {
  .hero-image,
  .about-image {
    display: none;
  }
}