/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body Styling */
body {
  opacity: 0;
  transition: opacity 1s ease-in-out;
  font-family: 'Poppins', sans-serif;
  background: black;
  /* Solid black background */
  color: white;
  overflow-x: hidden;
  /* Prevent horizontal scroll */
  padding-top: 80px;
  /* Add padding to prevent content from being hidden behind the sticky header */
}

/* Header Styling */
.header {
  position: fixed;
  /* Make the header sticky */
  top: 0;
  width: 100%;
  z-index: 1000;
  /* Ensure it stays on top */
  background: rgba(0, 0, 0, 0.9);
  /* Semi-transparent black background */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  /* Subtle shadow for depth */
}

.navbar {
  padding: 15px 0;
}

.navbar-brand {
  font-size: 24px;
  font-weight: bold;
  color: white !important;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  color: white !important;
  font-size: 18px;
  font-weight: bold;
  margin: 0 15px;
  transition: color 0.3s ease, transform 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #ff6f61 !important;
  transform: scale(1.1);
}

.navbar-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
}

/* Black Transparent Overlay for Entire Page */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: -1;
}

.section {
  padding: 60px 0;
  position: relative;
}

.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-custom {
  background-color: #ff6f61;
  color: white;
  padding: 15px 30px;
  border-radius: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.btn-custom:hover {
  background-color: #ff3b2f;
  transform: scale(1.1);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
  color: #ff6f61;
  transition: transform 0.3s ease;
}

.feature-icon:hover {
  transform: scale(1.2);
}

.tool-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-10px);
}

/* Footer Styling */
footer {
  background: rgba(0, 0, 0, 0.2);
  padding: 30px 0;
}

footer .container {
  display: flex;
  flex-direction: column;
}

footer .row {
  justify-content: space-between;
  align-items: center;
}

footer .col-md-6.text-start {
  font-size: 14px;
  line-height: 1.6;
}

footer .col-md-6.text-end a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

footer .col-md-6.text-end a:hover {
  color: #ff6f61;
}

footer p {
  font-size: 14px;
  margin: 10px 0;
}

.tool-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.tool-card-link:hover .tool-card {
  transform: scale(1.05);
  transition: 0.2s ease-in-out;
}