* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Inter", sans-serif;
  background-color: #000;
  color: #fff;
  line-height: 1.6;
  opacity: 0;
  transition: opacity 1s ease;
}

body.fade-in {
  opacity: 1;
}
.fly-in-left,
.fly-in-right {
  opacity: 0;
  will-change: transform, opacity;
}
.fly-in-left {
  transform: translateX(-120vw);
}
.fly-in-right {
  transform: translateX(120vw);
}
body.fade-in .fly-in-left {
  animation: flyInLeft 3s ease-out forwards;
  animation-delay: 0.3s;
}
body.fade-in .fly-in-right {
  animation: flyInRight 3s ease-out forwards;
  animation-delay: 0.3s;
}
@keyframes flyInLeft {
  from {
    opacity: 0;
    transform: translateX(-100vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes flyInRight {
  from {
    opacity: 0;
    transform: translateX(100vw);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero-carousel {
  position: relative;
  height: 100vh;
  overflow: hidden;
  max-width: none;
  padding: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay-layer {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-overlay {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 1.5rem;
  overflow: hidden;
}

.hero-overlay h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  margin-bottom: 0.5rem;
}

.hero-overlay p {
  font-size: clamp(1rem, 2vw, 1.5rem);
  color: #ddd;
}
header {
  padding: 2rem;
  text-align: center;
  border-bottom: 1px solid #333;
}
header h1 {
  font-size: 3rem;
}
header p {
  color: #999;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}
.navbar-nav .nav-link:hover {
  color: #00ffff;
}

nav a {
  text-decoration: none;
  color: #fff;
  transition: color 0.3s;
}
nav a:hover {
  color: #00ffff;
}
section {
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: auto;
}
h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #00ffff;
}
.portfolio-item {
  margin-bottom: 2rem;
}
.portfolio-title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.services-section {
  max-width: 1200px;
  padding: 5rem 2rem;
}

.services-intro {
  max-width: 760px;
  margin-bottom: 3rem;
}

.services-kicker {
  color: #00ffff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.services-intro h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  color: #fff;
}

.services-lead {
  color: #bfbfbf;
  font-size: 1.05rem;
  max-width: 42rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.75rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 255, 255, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  color: #fff;
}

.service-card p {
  color: #cfcfcf;
  margin: 0;
  line-height: 1.7;
}
/* .service-item {
  margin-bottom: 2rem;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.service-copy {
  margin-left: 1.35rem;
}

.service-copy p {
  margin: 0;
  color: #ccc;
} */
.contact-section {
  max-width: 1200px;
  padding: 5rem 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-copy {
  padding-top: 0.5rem;
}

.contact-kicker {
  color: #00ffff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.05;
  margin-bottom: 1rem;
  color: #fff;
}

.contact-lead {
  color: #bfbfbf;
  font-size: 1.05rem;
  max-width: 32rem;
  margin-bottom: 2rem;
}

.contact-points {
  display: grid;
  gap: 0.9rem;
}

.contact-points p {
  color: #d6d6d6;
  padding-left: 1rem;
  border-left: 2px solid rgba(0, 255, 255, 0.5);
}

.contact-form {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02)
  );
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 2rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.contact-form label {
  display: block;
  margin-bottom: 0.45rem;
  font-size: 0.9rem;
  color: #d8d8d8;
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.95rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8f8f8f;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(0, 255, 255, 0.7);
  box-shadow: 0 0 0 4px rgba(0, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
}

.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.4rem;
  border: none;
  border-radius: 999px;
  background: #00ffff;
  color: #000;
  font-weight: 700;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.contact-form button:hover {
  background: #7affff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 255, 255, 0.2);
}

.contact-form button:active {
  transform: translateY(0);
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form {
    padding: 1.25rem;
  }
}
footer {
  text-align: center;
  padding: 2rem;
  border-top: 1px solid #333;
  color: #777;
  font-size: 0.9rem;
}
/* form input,
form textarea {
  display: block;
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  background: #111;
  border: 1px solid #333;
  color: white;
}
form button {
  background: #00ffff;
  border: none;
  padding: 0.75rem 1.5rem;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}
form button:hover {
  background: #00cccc;
} */
