html, body {
  height: 100%;
  margin: 0;
  font-family: system-ui, sans-serif;
  background: radial-gradient(circle at top, #0a1a2f, #000);
  color: #e5e7eb;

}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1;
}

/* Footer styling */
footer {
  margin-top: auto;
  background: #020617;
  color: #fafafa;
  text-align: center;
  padding: 16px;
}
.footer-links {
  margin-top: 12px;
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #00e5ff;
  text-decoration: none;
  font-size: 14px;
}



.navbar {
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
}

nav a {
    color: #9ca3af;
    margin-left: 20px;
    text-decoration: none;
}

.hero {
    text-align: center;
    padding: 80px 20px;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    padding: 40px;
}

.tool-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    color: white;
}

.tool-card:hover {
    background: rgba(255, 255, 255, 0.12);
}
.back-home-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 22px;
  background: #00e5ff;
  color: #002b36;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.back-home-btn:hover {
  background: #ffffff;
  color: #000;
  transform: translateY(-2px);
}
/*-- ================= CASE CONVERTER PAGE ================= --*/
/* This is a CSS comment */
        * {
            box-sizing: border-box
        }

  

        
      .tool{
            width: 100%;
            max-width: 620px;
            margin: 20;
            display: grid;
            align-items: center;
            justify-content: center;
            font-family: Arial, Helvetica, sans-serif;
            background: rgba(2, 6, 23, .9);
            border-radius: 20px;
            padding: 28px;
            box-shadow: 0 30px 60px rgba(0, 0, 0, .6);
            text-align: center
        }
        
        h1 {
            margin: 0 0 6px;
            font-size: 26px
        }
        
        p {
            margin: 0 0 16px;
            color: #9ca3af;
            font-size: 14px
        }
        
        textarea {
            width: 100%;
            min-height: 180px;
            padding: 14px;
            border-radius: 14px;
            background: #020617;
            color: #e5e7eb;
            border: 1px solid #1f2933;
            font-size: 14px;
            resize: vertical
        }


