/* RESET & BODY */
body, html {
  margin: 0; padding: 0;
  background-color: #000;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #ddd;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}

/* ==== FULLSCREEN REVEAL SECTION ==== */
.deepslate-hero {
  width: 100vw;
  height: 100vh;
  background-color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  user-select: none;
  cursor: none;
}

.deepslate-mask {
  font-size: 17vw;
  font-weight: 900;
  letter-spacing: 5px;
  color: transparent;
 background: radial-gradient(circle at var(--x, 5%) var(--y, 1%), #fff 0%, transparent 25%);

  -webkit-background-clip: text;
  background-clip: text;
  transition: background-position 0.05s ease;
  pointer-events: none;
}

/* ==== FOOTER ==== */
.deepslate-footer {
  background-color: #000;  /* <-- changed to full black */
  color: #ccc;
  padding: 60px 40px 40px;
  font-size: 1rem;
  line-height: 1.6;
  user-select: none;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.footer-section {
  flex: 1 1 220px;
  min-width: 220px;
}

.footer-section h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  border-bottom: 2px solid #555;
  padding-bottom: 5px;
  letter-spacing: 1px;
}

.footer-section p, .footer-section li {
  color: #aaa;
  font-weight: 400;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #aaa;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Newsletter form */
.footer-section form {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.footer-section input[type="email"] {
  flex: 1;
  padding: 10px;
  border: none;
  border-radius: 4px;
  background-color: #222;
  color: #ddd;
  font-size: 1rem;
}

.footer-section input[type="email"]::placeholder {
  color: #777;
}

.footer-section button {
  padding: 10px 20px;
  background: linear-gradient(135deg, #0a74da, #004080);
  border: none;
  border-radius: 4px;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.footer-section button:hover {
  background: linear-gradient(135deg, #004080, #0a74da);
}

/* Divider */
.deepslate-footer hr {
  border: 0;
  border-top: 1px solid #222;
  margin-bottom: 40px;
}

/* Footer Middle - Social Icons */
.footer-middle {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
  padding-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 30px;
}

.social-icon svg {
  width: 36px;
  height: 36px;
  fill: #888;
  transition: fill 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.social-icon:hover svg {
  fill: #0a74da; /* Bugatti blue accent */
  transform: scale(1.2);
}
.social-icon.linkedin svg,
.social-icon.twitter svg {
  width: 36px;
  height: 36px;
  fill: #888;
  transition: fill 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}

.social-icon.linkedin:hover svg,
.social-icon.twitter:hover svg {
  fill: #0a74da; /* Bugatti blue accent */
  transform: scale(1.2);
}


/* Responsive */
@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    gap: 40px;
  }
  .footer-section {
    min-width: 100%;
  }
  .footer-middle {
    gap: 20px;
  }
}






/* Base styles (from before) */
.header-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  padding: 0 20px;
}

.top-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}

.header-title {
  margin: 0 auto;
  text-align: center;
}

/* Responsive tweak for small screens */
@media (max-width: 400px) {
  .top-bar {
    flex-direction: column; /* stack buttons vertically */
    gap: 10px; /* less gap for smaller screen */
    align-items: center; /* center stack */
  }
  
  .top-bar a,
  .top-bar button {
    width: 100%; /* full width so buttons don’t shrink weirdly */
    max-width: 280px; /* limit max width to keep them not too wide */
    box-sizing: border-box;
  }

  .header-content {
    padding: 0 10px; /* less side padding */
  }

  .header-title {
    font-size: 1.5rem; /* scale down font a bit */
    padding: 0 5px;
  }
}






.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}
