/* ===============================
   SRJ Tools — Premium Styling
   =============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Header */
header {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(180deg, rgba(0,0,0,1) 50%, rgba(0,20,50,1) 100%);
}

.logo {
  width: 120px;
  filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.5));
  margin-bottom: 10px;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00bfff, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.subtitle {
  color: #ccc;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* Tool Section */
.tools-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  width: 90%;
  max-width: 1100px;
  margin: 60px auto;
  padding-bottom: 80px;
}

.tool-card {
  background: linear-gradient(180deg, #0a0a0a, #0d1a2e);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 119, 255, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 50px rgba(0, 150, 255, 0.4);
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 128, 255, 0.1), transparent);
  opacity: 0;
  transition: 0.3s;
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.tool-name {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}

.tool-sub {
  color: #9cc3ff;
  font-size: 0.9rem;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  padding: 40px 10px;
  background: #000;
  border-top: 1px solid #111;
}

/* Animation Base */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
}/* ===============================
   SRJ Tools — Premium Styling
   =============================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  background: #000;
  color: #fff;
  font-family: "Poppins", sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* Header */
header {
  text-align: center;
  padding: 60px 20px 40px;
  background: linear-gradient(180deg, rgba(0,0,0,1) 50%, rgba(0,20,50,1) 100%);
}

.logo {
  width: 120px;
  filter: drop-shadow(0 0 10px rgba(0, 123, 255, 0.5));
  margin-bottom: 10px;
}

h1 {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, #00bfff, #0066ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.subtitle {
  color: #ccc;
  font-size: 1rem;
  letter-spacing: 1px;
}

/* Tool Section */
.tools-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  width: 90%;
  max-width: 1100px;
  margin: 60px auto;
  padding-bottom: 80px;
}

.tool-card {
  background: linear-gradient(180deg, #0a0a0a, #0d1a2e);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  box-shadow: 0 0 25px rgba(0, 119, 255, 0.15);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.tool-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 50px rgba(0, 150, 255, 0.4);
}

.tool-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(0, 128, 255, 0.1), transparent);
  opacity: 0;
  transition: 0.3s;
}

.tool-card:hover::before {
  opacity: 1;
}

.tool-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.tool-name {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 5px;
}

.tool-sub {
  color: #9cc3ff;
  font-size: 0.9rem;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.9rem;
  color: #888;
  padding: 40px 10px;
  background: #000;
  border-top: 1px solid #111;
}

/* Animation Base */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
}




.scroll-top {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: linear-gradient(135deg, #0066ff, #00bfff);
  border: none;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  display: none;
  box-shadow: 0 0 15px rgba(0, 150, 255, 0.4);
  transition: transform 0.3s ease;
}
.scroll-top:hover {
  transform: scale(1.1);
}