:root {
  --body-bg-color: #f8fafc;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #183134;
  --link-color: #52c5ac;
  --header-bg-color: #183134;
  --font-family: system-ui;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url("/images/body-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
}
h3 {
  font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}

section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}

h2,
h3 {
  color: var(--heading-color) !important;
}

.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

.twitter-tweet {
  width: 279px !important;
}

.x {
  display: flex;
  justify-content: center;
}
.error_page {
  min-height: 70vh;
}

.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}

.navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}
.navbar.scrolled {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 255, 255, 0.12);
}


.hero-section {
  padding: 115px 0 30px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.gradient-bg {
  background: linear-gradient(
    135deg,
    var(--hero-gradient1),
    var(--hero-gradient2)
  );
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 77px 0;
  }
}
.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
/* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 61px;
    left: 15px;
    right: 15px;
    background-color: color-mix(
      in srgb,
      var(--header-bg-color) 65%,
      transparent
    );
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}

.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

.dropdown.open .dropdown-menu {
  display: block;
}

@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.contact-container {
  width: 500px;
  margin: 100px auto 35px;
  padding: 15px 21px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
  color: black !important;
}

@media screen and (max-width: 768px) {
  .contact-container {
    width: 100%;
    padding: 15px;
  }
}
.contact-header {
  text-align: center;
  margin-bottom: 20px;
}

.contact-header i {
  font-size: 2rem;
  color: #0d6efd;
  margin-bottom: 10px;
}

.email-link {
  display: block;
  margin-top: 15px;
  text-align: center;
  font-weight: bold;
  color: #0d6efd;
  text-decoration: none;
}
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--link-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}
.scroll-top i {
  font-size: 24px;
  color: var(--footer-bg-color);
  line-height: 0;
}
.scroll-top:hover {
  background-color: color-mix(in srgb, var(--link-color), transparent 20%);
  color: var(--footer-bg-color);
}
.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}
.heading {
  margin: 0 auto;
  padding: 30px 21px;
  color: #e5e7eb; /* light gray text for readability */
  backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.45); /* glassy dark overlay */
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.15); /* soft crypto glow */
}

/* Main Title */
.heading h2 {
  margin-bottom: 20px;
  font-weight: 700;
  background: linear-gradient(90deg, var(--link-color), #4c7dff);
  -webkit-background-clip: text;
  color: transparent; /* neon gradient text */
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* Subtitle */
.heading h3 {
  font-size: 1.6rem;
  margin-top: 35px;
  margin-bottom: 15px;
  font-weight: 600;
  color: #7dd3fc; /* soft neon blue */
}

/* Paragraphs */
.heading p {
  line-height: 1.7;
  font-size: 1rem;
  color: #d1d5db;
  margin-bottom: 18px;
}

/* Subtle hover highlight effect for the whole card */
.heading:hover {
  box-shadow: 0 0 35px rgba(0, 255, 255, 0.25);
  transition: all 0.3s ease;
}
.header {
  margin: 0 auto;
  padding: 15px 0;
  color: #dbeafe;
  position: relative;
}

/* Main Title (H2) */
.header h2 {
  font-weight: 700;
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 25px;
  /* Neon gradient text */
  background: linear-gradient(90deg, var(--link-color), #4c7dff);
  -webkit-background-clip: text;
  color: transparent;

  /* Glow */
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.5), 0 0 25px rgba(0, 255, 255, 0.2);
}

.header h2 {
  padding: 0 25px; /* creates space for the bars inside the width */
  position: relative;
  display: inline-block;
}

.header h2::before,
.header h2::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 3px;
  background: var(--link-color);
  border-radius: 4px;
  box-shadow: 0 0 8px var(--link-color);
}
.header h2::before {
  left: 0;
}

/* right bar inside */
.header h2::after {
  right: 0;
  background: linear-gradient(90deg, var(--link-color), #4c7dff);
  animation: glow-bar 3s infinite linear;
}

@keyframes glow-bar {
  0% {
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.7);
  }
  100% {
    box-shadow: 0 0 6px rgba(0, 255, 255, 0.3);
  }
}

/* Paragraph text */
.header p {
  margin-top: 18px;
  line-height: 1.7;
  font-size: 1rem;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
}
.title {
  font-size: 2.8rem;
  font-weight: 800;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  letter-spacing: 2px;

  /* Neon gradient */
  background: linear-gradient(
    90deg,
    var(--link-color) 0%,
    #4c7dff 50%,
    #00f6ff 100%
  );
  -webkit-background-clip: text;
  color: transparent;

  /* Deep glow */
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.45),
    0 0 20px rgba(0, 132, 255, 0.35), 0 0 35px rgba(0, 255, 255, 0.25);
}

/* Futuristic underline */
.title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;

  background: linear-gradient(90deg, var(--link-color), #4c7dff);
  border-radius: 3px;

  /* Glow */
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.4);

  /* Smooth animation */
  animation: cyberline 3s infinite linear;
}

/* Subtle shifting glow animation */
@keyframes cyberline {
  0% {
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.6);
  }
  100% {
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.2);
  }
}
.cust-img {
  box-shadow: inset 0 0 20px rgba(0, 255, 255, 0.15),
    0 0 25px rgba(0, 255, 255, 0.5), 0 0 45px rgba(0, 255, 255, 0.35);
  border-radius: 14px;
}
/* SECTION WRAPPER */
.tokens {
  margin: 25px auto;
  padding: 30px 19px;

  background: rgba(0, 0, 0, 0.45); /* glassmorphism */
  backdrop-filter: blur(12px);
  border-radius: 18px;

  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 0 20px rgba(0, 255, 255, 0.15), 0 0 35px rgba(0, 255, 255, 0.08);

  color: #dbeafe; /* soft bluish white text */
  position: relative;
}

/* TOP CYBER LINE (optional decoration) */
.tokens::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 40px;
  width: 120px;
  height: 3px;
  background: linear-gradient(90deg, #00f6ff, #4c7dff);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.5);
  border-radius: 4px;
}

/* MAIN TITLE */
.tokens h2 {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;

  background: linear-gradient(90deg, #00f6ff, #4c7dff);
  -webkit-background-clip: text;
  color: transparent;

  text-shadow: 0 0 12px rgba(0, 255, 255, 0.45),
    0 0 25px rgba(0, 255, 255, 0.25);

  position: relative;
  padding-bottom: 10px;
}

/* Animated underline */
.tokens h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 160px;
  margin-top: 15px;
  background: linear-gradient(90deg, #00f6ff, #4c7dff);
  border-radius: 5px;

  animation: glowline 3s infinite linear;
}

/* SUBTITLES */
.tokens h3 {
  margin-top: 21px;
  margin-bottom: 15px;
  font-size: 1.6rem;
  font-weight: 600;

  color: #7dd3fc;

  text-shadow: 0 0 8px rgba(0, 255, 255, 0.3), 0 0 15px rgba(0, 255, 255, 0.15);
}

/* PARAGRAPHS */
.tokens p {
  line-height: 1.75;
  font-size: 1.05rem;
  margin-bottom: 20px;
  color: #d1d5db;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.55);
}

/* Animation for underline glow */
@keyframes glowline {
  0% {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 22px rgba(0, 255, 255, 0.7);
  }
  100% {
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
  }
}
.img-effect {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
  100% {
    transform: translateY(0);
  }
}
.flex-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: 25px;
  list-style-position: inside;
}
.box {
  background: rgba(30, 34, 40, 0.65);
  border: 1px solid rgba(93, 225, 196, 0.08);
  border-radius: 16px;
  padding: 21px;
  transition: all 0.4s ease;
  height: 100%;
}

.box:hover {
  border-color: #5de1c4;
  box-shadow: 0 0 20px rgba(93, 225, 196, 0.3);
  transform: translateY(-6px);
}
/* WRAPPER */
.links {
  padding: 35px 21px;
  background: rgba(0, 0, 0, 0.45); /* glass effect */
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow: 0 0 18px rgba(0, 255, 255, 0.12), 0 0 28px rgba(0, 255, 255, 0.07);

  width: 279px;
  margin-bottom: 15px;
}

/* TITLE */
.links h2 {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 20px;

  background: linear-gradient(90deg, #00f6ff, #4c7dff);
  -webkit-background-clip: text;
  color: transparent;

  text-shadow: 0 0 10px rgba(0, 255, 255, 0.4), 0 0 18px rgba(0, 255, 255, 0.25);

  position: relative;
  padding-bottom: 8px;
}

/* Animated underline */
.links h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;

  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #00f6ff, #4c7dff);
  border-radius: 4px;

  animation: linkGlow 3s infinite linear;
}

/* LIST */
.sidebar-page-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.sidebar-page-list li {
  position: relative;
  margin-bottom: 14px;
  padding-left: 21px;
}

.sidebar-page-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;

  width: 10px;
  height: 10px;
  background: #00f6ff;

  transform: rotate(45deg); /* diamond */
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.7), 0 0 20px rgba(0, 255, 255, 0.4);
}

.sidebar-page-list a {
  text-decoration: none;
  font-size: 1rem;
  color: #dbeafe;
  padding: 0 12px;
  display: block;
  border-radius: 8px;

  transition: 0.25s ease;
  position: relative;
}

/* Hover Effect: glow + slight slide */
.sidebar-page-list a:hover {
  color: #00f6ff;
  transform: translateX(6px);

  text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);

  background: rgba(0, 255, 255, 0.08);
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.4), 0 0 20px rgba(0, 255, 255, 0.2);
}

/* Animation for underline glow */
@keyframes linkGlow {
  0% {
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.25);
  }
  50% {
    box-shadow: 0 0 16px rgba(0, 255, 255, 0.7);
  }
  100% {
    box-shadow: 0 0 8px rgba(0, 255, 255, 0.25);
  }
}
/* FOOTER BASE */
.footer {
  background: rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #dbeafe;
  margin-top: 60px;
}

/* LOGO */
.footer-logo {
  filter: drop-shadow(0 0 8px rgba(0,255,255,0.4));
}

.footer-desc {
  font-size: 0.95rem;
  color: #b4c2d8;
  line-height: 1.6;
}

/* TITLES */
.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;

  background: linear-gradient(90deg, #00f6ff, #4c7dff);
  -webkit-background-clip: text;
  color: transparent;

  text-shadow: 0 0 12px rgba(0,255,255,0.45);
}

/* QUICK LINKS */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
  padding-left: 18px;
  position: relative;
}

/* neon bullet markers */
.footer-links li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00f6ff;
  box-shadow: 0 0 6px #00f6ff, 0 0 12px rgba(0,255,255,0.5);
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #00f6ff;
  padding-left: 4px;
  text-shadow: 0 0 8px rgba(0,255,255,0.6);
}

/* NEWSLETTER */
.newsletter-desc {
  font-size: 0.95rem;
  color: #b4c2d8;
  margin-bottom: 12px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid rgba(0,255,255,0.25);
  background: rgba(0,0,0,0.35);
  color: #e5f2ff;
  outline: none;
  transition: 0.25s ease;
}

.newsletter-input:focus {
  border-color: #00f6ff;
  box-shadow: 0 0 12px rgba(0,255,255,0.35);
}

/* BUTTON */
.newsletter-btn {
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;

  background: linear-gradient(90deg, #00f6ff, #4c7dff);
  color: #000;
  font-weight: 700;

  box-shadow: 0 0 10px rgba(0,255,255,0.4);
  transition: 0.25s ease;
}

.newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 0 14px rgba(0,255,255,0.6),
    0 0 25px rgba(0,255,255,0.4);
}

/* COPYRIGHT */
.footer-copy {
  font-size: 0.95rem;
  color: #8fa5c2;
}
/* SECTION BACKGROUND */
.error_page {
  min-height: 70vh;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
}

/* CENTRAL BOX */
.error-box {
  max-width: 650px;
  padding: 40px 30px;
  margin: 0 auto;

  background: rgba(0, 0, 0, 0.45);
  border-radius: 18px;
  border: 1px solid rgba(0,255,255,0.12);

  box-shadow:
    0 0 18px rgba(0,255,255,0.15),
    0 0 35px rgba(0,255,255,0.08);
}

/* TITLE */
.error-title {
  font-size: 2.4rem;
  background: linear-gradient(90deg, #00f6ff, #4c7dff);
  -webkit-background-clip: text;
  color: transparent;

  text-shadow:
    0 0 12px rgba(0,255,255,0.45),
    0 0 28px rgba(0,255,255,0.25);
}

/* TEXT */
.error-text {
  color: #d1d5db;
  font-size: 1.1rem;
  text-shadow: 0 0 10px rgba(0,0,0,0.5);
}

/* BUTTON */
.error-btn {
  background: linear-gradient(90deg, #00f6ff, #4c7dff);
  border: none;
  color: #000 !important;
  transition: 0.25s ease;
  box-shadow: 0 0 12px rgba(0,255,255,0.45);
}

.error-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(0,255,255,0.7),
    0 0 35px rgba(0,255,255,0.4);
}

/* ICON */
.error-icon i {
  color: #ff4444;
  animation: pulseDanger 1.8s infinite ease-in-out;
  text-shadow: 0 0 12px rgba(255,50,50,0.7);
}

@keyframes pulseDanger {
  0%   { transform: scale(1);   opacity: 0.7; }
  50%  { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1);   opacity: 0.7; }
}
/* CONTAINER */
.contact-container {
  max-width: 650px;
  margin: 60px auto;
  padding: 40px 35px;

  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(12px);
  border-radius: 18px;

  border: 1px solid rgba(0,255,255,0.15);

  box-shadow:
    0 0 20px rgba(0,255,255,0.15),
    0 0 35px rgba(0,255,255,0.08);

  color: #dbeafe;
  text-align: left;
}

/* HEADER ICON */
.header-icon {
  font-size: 3rem;
  color: #00f6ff;
  text-shadow: 0 0 12px rgba(0,255,255,0.7);
}

/* SMALL TEXT */
.contact-header p {
  margin-top: 8px;
  color: #b4c2d8;
}

/* TITLE */
.contact-title {
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: 700;

  background: linear-gradient(90deg, #00f6ff, #4c7dff);
  -webkit-background-clip: text;
  color: transparent;

  text-shadow:
    0 0 12px rgba(0,255,255,0.45),
    0 0 25px rgba(0,255,255,0.25);
}

/* LABEL */
.form-label {
  color: #cfd8e3;
  font-weight: 600;
}

/* FORM INPUTS & TEXTAREA */
.contact-input {
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(0,255,255,0.25);
  color: #e4f2ff !important;
  padding: 12px 14px;
  border-radius: 10px;

  transition: 0.25s ease;
}

/* TEXTAREA */
.contact-textarea {
  resize: none;
}

/* INPUT FOCUS GLOW */
.contact-input:focus {
  border-color: #00f6ff;
  box-shadow:
    0 0 12px rgba(0,255,255,0.4),
    0 0 25px rgba(0,255,255,0.25);
  outline: none;
}

/* BUTTON */
.contact-btn {
  background: linear-gradient(90deg, #00f6ff, #4c7dff);
  border: none;
  color: #000 !important;
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 10px;

  box-shadow: 0 0 12px rgba(0,255,255,0.45);
  transition: 0.25s ease;
}

/* Button Hover */
.contact-btn:hover:enabled {
  transform: translateY(-2px);
  box-shadow:
    0 0 20px rgba(0,255,255,0.7),
    0 0 35px rgba(0,255,255,0.4);
}

/* EMAIL LINK */
.email-link {
  text-align: center;
  margin-top: 25px;
  color: #b4c2d8;
  font-size: 1rem;
}

.email-link i {
  color: #00f6ff;
  text-shadow: 0 0 10px rgba(0,255,255,0.6);
}
