/* Reset and fonts */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #0d0d0d;
  color: #e0e0e0;
  overflow-x: hidden;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 1px solid #00fff7;
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #00fff7;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #00fff7;
}

/* Hero */
.hero {
  text-align: center;
  padding: 100px 20px;
  background: radial-gradient(circle at center, #121212, #000000);
}

.hero h1 {
  font-size: 3rem;
  color: #00fff7;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  padding: 12px 30px;
  font-size: 1rem;
  color: #000;
  background: #00fff7;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s;
}

.btn:hover {
  transform: scale(1.1);
}

/* Features */
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 60px 20px;
  gap: 30px;
}

.feature-card {
  background: #1c1c1c;
  border: 1px solid #00fff7;
  border-radius: 12px;
  padding: 30px;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-card h2 {
  color: #00fff7;
  margin-bottom: 10px;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  background: #111;
  color: #777;
  border-top: 1px solid #00fff7;
}

/* Animations */
.fade-in {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.delay-1 {
  animation-delay: 0.6s;
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-100px);
  animation: slideInLeft 1s ease forwards;
  animation-delay: 0.2s;
}

.slide-in-up {
  opacity: 0;
  transform: translateY(100px);
  animation: slideInUp 1s ease forwards;
  animation-delay: 0.4s;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(100px);
  animation: slideInRight 1s ease forwards;
  animation-delay: 0.6s;
}

.pulse {
  animation: pulse 2s infinite;
}

/* Keyframes */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0px rgba(0, 255, 247, 0.7);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 247, 0.8);
  }
}

.contact-form-section {
  padding: 80px 20px;
  text-align: center;
  background-color: #111;
  color: #e0e0e0;
}

.contact-form {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  background: #1c1c1c;
  border: 1px solid #00fff7;
  color: #fff;
  border-radius: 8px;
  transition: 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #0ff;
  outline: none;
  background-color: #222;
}

.dud {
  color: #00fff7;
  opacity: 0.4;
  font-family: monospace;
}

body {
	 display: grid;
	 grid-template-rows: 1fr 10rem auto;
	 grid-template-areas: "main" "." "footer";
	 overflow-x: hidden;
	 background: #f5f7fa;
	 min-height: 100vh;
	 font-family: 'Open Sans', sans-serif;
}
 body .footer {
	 z-index: 1;
	 --footer-background: #ed5565;
	 display: grid;
	 position: relative;
	 grid-area: footer;
	 min-height: 12rem;
}
 body .footer .bubbles {
	 position: absolute;
	 top: 0;
	 left: 0;
	 right: 0;
	 height: 1rem;
	 background: var(--footer-background);
	 filter: url("#blob");
}
 body .footer .bubbles .bubble {
	 position: absolute;
	 left: var(--position, 50%);
	 background: var(--footer-background);
	 border-radius: 100%;
	 animation: bubble-size var(--time, 4s) ease-in infinite var(--delay, 0s), bubble-move var(--time, 4s) ease-in infinite var(--delay, 0s);
	 transform: translate(-50%, 100%);
}
 body .footer .content {
	 z-index: 2;
	 display: grid;
	 grid-template-columns: 1fr auto;
	 grid-gap: 4rem;
	 padding: 2rem;
	 background: var(--footer-background);
}
 body .footer .content a, body .footer .content p {
	 color: #f5f7fa;
	 text-decoration: none;
}
 body .footer .content b {
	 color: white;
}
 body .footer .content p {
	 margin: 0;
	 font-size: 0.75rem;
}
 body .footer .content > div {
	 display: flex;
	 flex-direction: column;
	 justify-content: center;
}
 body .footer .content > div > div {
	 margin: 0.25rem 0;
}
 body .footer .content > div > div > * {
	 margin-right: 0.5rem;
}
 body .footer .content > div .image {
	 align-self: center;
	 width: 4rem;
	 height: 4rem;
	 margin: 0.25rem 0;
	 background-size: cover;
	 background-position: center;
}
 @keyframes bubble-size {
	 0%, 75% {
		 width: var(--size, 4rem);
		 height: var(--size, 4rem);
	}
	 100% {
		 width: 0rem;
		 height: 0rem;
	}
}
 @keyframes bubble-move {
	 0% {
		 bottom: -4rem;
	}
	 100% {
		 bottom: var(--distance, 10rem);
	}
}
 
