                /* Base Navbar Style */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  padding: 15px 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: black;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  margin: 10px;
  text-decoration: none;
  color: black;
  font-weight: 500;
  display: inline-block;
}

.nav-buttons a {
  margin-left: 10px;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 500;
}

.login {
  color: #000;
}

.signup {
  background-color: #e63946;
  color: white;
}
#sign{
  color: white;
}

.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  top: 35px;
  left: 0;
  min-width: 180px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.dropdown-content a {
  display: block;
  padding: 10px 15px;
  color: #000;
  text-decoration: none;
}

.dropdown-content a:hover {
  background-color: #f2f2f2;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 26px;
  cursor: pointer;
}

/* Responsive Style */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    width: 100%;
    display: none;
    margin-top: 15px;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a,
  .dropdown {
    width: 100%;
    text-align: left;
    margin: 8px 0;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
  }

  .nav-buttons {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  .menu-toggle {
    display: block;
  }
}

body {
  font-family: 'Segoe UI', sans-serif;
  background: #f5f7fa;
  color: #333;
}

.tool-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 20px;
  text-align: center;
  text-decoration: none;
  color: #333;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card i {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
  display: block;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.card.red { border-left: 6px solid #f44336; }
.card.green { border-left: 6px solid #4CAF50; }
.card.blue { border-left: 6px solid #2196F3; }
.card.orange { border-left: 6px solid #FF9800; }
.card.purple { border-left: 6px solid #9C27B0; }

.header-section {
  text-align: center;
  margin: 40px auto;
  max-width: 800px;
}

.header-sectionh1 {
  max-width: 900px;
  margin: auto;
  line-height: 1.3;
}

.header-section p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
}



.site-footer {
  background-color: #f8f9fa;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  border-top: 1px solid #ddd;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  flex: 1 1 200px;
}

.footer-logo p {
  margin-top: 10px;
  color: #666;
}

.footer-links,
.footer-contact {
  flex: 1 1 150px;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 10px;
  font-weight: bold;
}

.footer-links ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li,
.footer-contact ul li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
  color: #444;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #e63946;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 14px;
  color: #888;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-links,
  .footer-contact {
    margin-top: 20px;
  }
}
        