
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9f9fb;
  color: #222;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2b61ff;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.2rem;
}

.nav-link.active {
  font-weight: bold;
  color: #007bff;
  border-bottom: 2px solid #007bff; /* underline effect */
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-links .nav-btn {
  background-color: #2b61ff;
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px;
  font-weight: 600;
}

/* Hero Section */
.hero {
  background-color: #eaf1ff;
  padding: 4rem 2rem;
  text-align: center;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.cta-btn {
  background-color: #2b61ff;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
}

/* Make Tools Section Bigger */
.tools-section {
  padding: 80px 5%;
  background-color: #f9f9f9;
}

.section-title {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 60px;
  color: #333;
}

/* --- Tools Section Styling --- */
.tools-section {
  padding: 80px 5%;
  background-color: #f9f9f9;
}

.section-title {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 60px;
}

/* --- Tool Category Title --- */
.tool-category {
  margin-bottom: 60px;
}

.tool-category h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* --- Tool Cards Grid --- */
.tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* --- Tool Card Styling --- */
.tool-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between; 
  height: 260px; 
  background-color: #ffffff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0e0e0;
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-4px);
}

.tool-card h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tool-card p {
  font-size: 1.05rem;
  color: #555;
  margin-bottom: 20px;
  flex-grow: 1; /* Allows description to take remaining space */
}

/* --- Tool Button --- */
.tool-btn {
  align-self: flex-start;
  font-size: 1rem;
  font-weight: bold;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.tool-btn:hover {
  background-color: #0056b3;
}

/* Optional: Add color coding for “Coming Soon” */
.tool-btn[disabled],
.tool-btn[href="#"] {
  background-color: #007bff;
  opacity: 0.8;
  cursor: not-allowed;
}

/* Features Section */
.features-section {
  background-color: #f1f1f1;
  padding: 80px 5%;
}

.features-list {
  list-style-type: none;
  padding: 0;
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.features-list li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.9rem;
  color: #777;
  background-color: #f0f0f0;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: flex-end;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .cta-btn {
    padding: 8px 16px;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .tool-category h3 {
    font-size: 1.2rem;
  }
}

.copyright{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #ffffff;
    font-weight: 300;
    margin-top: 20px;
}
.copyright i{
    color: #ff004f;
}