* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background-color:#000;
  color: #e2e8f0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8%;
  background: linear-gradient(135deg, #050505, #0b1c22, #008ca0);;
  border-bottom: 1px solid #1e293b;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  color:#eaeaea;
  font-size: 20px;
}

/* NAV */
nav {
  display: flex;
  gap: 25px;
  align-items: center;
  transition: 0.3s ease;
}

nav a {
  text-decoration: none;
  color: #cbd5f5;
  font-weight: bold;
}

nav a:hover {
  border-bottom: 2px solid white;
  transform: scale(1.03);
  transition: 0.5s ease;
  color: white;
}

nav button {
 background: #00f7ff;
  color: #000;
  border: none;
  padding: 6px 15px;
  border-radius: 6px;
}

.menu-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: white;
}

@media(max-width: 768px) {

  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 70px;
    right: 0;
    background: #020617;
    width: 200px;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    display: none;
  }

  nav a {
    margin: 10px 0;
  }

  nav button {
    margin-top: 10px;
    width: 100%;
  }

  nav.active {
    display: flex;
  }
}

.about-section {
  height: 400px;
  background: url('../images/html.avif') center/cover no-repeat;
  position: relative;
}

.about-overlay {
  background: rgba(0, 0, 0, 0.8);
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-container {
  width: 90%;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  color: white;
}

.about-content {
  flex: 1;
}

.about-heading {
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.about-heading span {
  background: linear-gradient(90deg, #00f7ff, #00c3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 60%;
  height: 3px;
  background: linear-gradient(90deg, #00f7ff, transparent);
  border-radius: 2px;
}

.about-heading:hover {
  text-shadow: 0 0 10px rgba(0, 247, 255, 0.7);
  transition: 0.3s;
}
.about-content p {
  color: #ccc;
  margin-bottom: 15px;
  line-height: 1.6;
}

.about-features {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-box {
  background: rgba(255,255,255,0.06);
  padding: 15px;
  border-radius: 8px;
  transition: 0.3s;
  border: 1px solid rgba(255,255,255,0.1);
}

.feature-box:hover {
  transform: translateY(-5px);
  border-color: #00f7ff;
  box-shadow: 0 5px 15px rgba(0, 247, 255, 0.2);
}

.feature-box h4 {
  color: #00f7ff;
  margin-bottom: 5px;
}

.feature-box p {
  color: #bbb;
  font-size: 14px;
}

@media(max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

.contact {
  padding: 80px 8%;
  display: flex;
  justify-content: center;
}

.contact-container {
  width: 400px;
  padding: 30px;
  border-radius: 12px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  box-shadow: 0 0 25px rgba(0, 247, 255, 0.2);
}

.contact-heading {
  text-align: center;
  margin-bottom: 25px;
  font-size: 28px;
}

.contact-heading span {
  background: linear-gradient(90deg, #00f7ff, #00c3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.input-box {
  position: relative;
  margin-bottom: 20px;
}

.input-box input,
.input-box textarea {
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 1px solid #555;
  border-radius: 6px;
  color: white;
  outline: none;
}

.input-box textarea {
  height: 100px;
  resize: none;
}

.input-box label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #aaa;
  pointer-events: none;
  transition: 0.3s;
  /* background: #0f172a; */
  padding: 0 5px;
}

.input-box input:focus + label,
.input-box input:valid + label,
.input-box textarea:focus + label,
.input-box textarea:valid + label {
  top: -8px;
  font-size: 12px;
  color: #00f7ff;
}

.input-box input:focus,
.input-box textarea:focus {
  border-color: #00f7ff;
  box-shadow: 0 0 10px rgba(0, 247, 255, 0.3);
}

.contact-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(90deg, #00f7ff, #00c3ff);
  color: black;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.contact-btn:hover {
  box-shadow: 0 0 15px rgba(0, 247, 255, 0.5);
  transform: translateY(-2px);
}

@media(max-width: 768px) {
  .contact-container {
    width: 100%;
  }
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: linear-gradient(135deg, #050505, #0b1c22, #008ca0);
  padding: 30px;
  border-radius: 12px;
  width: 320px;
  color: white;
  box-shadow: 0 0 20px rgba(0, 247, 255, 0.3);
  animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
  from { transform: scale(0.8); }
  to { transform: scale(1); }
}

.modal-content h2 {
  margin-bottom: 15px;
}

.modal-content input {
  width: 100%;
  margin: 10px 0;
  padding: 10px;
  border-radius: 6px;
  border: none;
}

.modal-button {
  width: 100%;
  padding: 10px;
  background: #00f7ff;
  color: black;
  border: none;
  border-radius: 6px;
  margin-top: 10px;
  margin-bottom: 15px;
}

.modal-content span {
  float: right;
  cursor: pointer;
}

@media(max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  .about-grid {
    flex-direction: column;
  }
}
.small-footer {
  background: linear-gradient(135deg, #050505, #0b1c22, #008ca0);
  border-top: 1px solid #1e293b;
  padding: 20px 8%;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  color: #cbd5f5;
  font-size: 14px;
}

.small-footer p {
  margin: 5px 0;
}

.footer-links {
  display: flex;
  gap: 15px;
}

.footer-links a {
  text-decoration: none;
  color: #cbd5f5;
  transition: 0.3s;
}

.footer-links a:hover {
  color: #00f7ff;
  text-shadow: 0 0 10px #00f7ff;
}

@media (max-width: 600px) {
  .small-footer {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
