/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* BODY */
body {
  line-height: 1.6;
  color: #ffffff;
  background: linear-gradient(135deg, #050A1A 0%, #132b62 55%, #1E4ED8 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: linear-gradient(135deg, #050A1A 0%, #0B1B3A 55%, #061954 100%);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* LOGO */
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  background: linear-gradient(90deg, #ffffff, #8fb3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* NAV LINKS */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #97aef2;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #ffffff;
}

/* BADGE */
.badge {
  display: inline-block;
  align-items: center;

  margin-bottom: 20px;
  padding: 6px 14px;

  font-size: 0.8rem;
  color: #8fb3ff;

  border: 1px solid rgba(143, 179, 255, 0.3);
  border-radius: 20px;

  background: rgba(30, 78, 216, 0.1);
  backdrop-filter: blur(6px);

  width: fit-content;
}

/* HERO */
/* HERO */
.hero-container {
  display: flex;
  flex-direction: column;

  justify-content: center;
  align-items: center;

  text-align: center;

  min-height: 100vh;
  max-width: 1100px;

  margin: 0 auto;
  padding: 80px 10%;
}

/* HERO TEXT */
.hero-text {
  flex: 1;
  max-width: 550px;
  display: flex;
  align-items: center;
 text-align: center;
  flex-direction: column;
  gap: 15px;
}

.hero-text h1 {
  font-size: 48px;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #ffffff, #1E4ED8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text h2 {
  font-size: 1.5rem;
  color: #b3c7ff;
  margin-bottom: 15px;
}

.hero-text p {
  font-size: 1.1rem;
  color: #d6d6d6;
  margin-bottom: 25px;
}

/* HERO BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* BUTTON */
.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #1E4ED8;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  transition: 0.3s ease;
  box-shadow: 0 0 15px rgba(30, 78, 216, 0.4);
}

.btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(30, 78, 216, 0.7);
}

/* OUTLINE BUTTON */
.outline-btn {
  display: inline-block;
  padding: 12px 25px;
  border: 1px solid #8fb3ff;
  color: #8fb3ff;
  border-radius: 10px;
  text-decoration: none;
  transition: 0.3s ease;
}

.outline-btn:hover {
  background: #1E4ED8;
  color: white;
  border-color: #1E4ED8;
}

/* GENERAL SECTIONS */
section {
  padding: 80px 10%;
}

/* SECTION TITLES */
.section-title {
  font-size: 3rem;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #ffffff, #8fb3ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

/* ABOUT */
.about {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 2rem;
}

/* ABOUT WRAPPER */
.about-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 1100px;
  width: 100%;
}

/* ABOUT IMAGE */
.ayanda-image img {
  width: 320px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transition: 0.3s ease;
}

.ayanda-image img:hover {
  transform: translateY(-6px);
}

/* ABOUT CONTAINER */
.about-container {
  width: 100%;
  max-width: 650px;
  padding: 4rem 5rem;
  background: rgba(10, 25, 60, 0.6);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.about h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #e5e7eb;
}

.about .line {
  width: 50px;
  height: 3px;
  background: #3b82f6;
  margin-bottom: 2rem;
  border-radius: 2px;
}

.about p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #cbd5e1;
}

/* PROJECTS */
.projects-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* PROJECT ROW */
.project-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 120px;
}

.project-row.reverse {
  flex-direction: row-reverse;
}

/* PROJECT CARD */
.project-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0B1B3A, #1E4ED8, #6a5cff);
  background-size: 300% 300%;
  animation: gradientMove 10s ease infinite;
  padding: 20px;
  border-radius: 20px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  transition: 0.3s ease;
}

.project-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 25px 70px rgba(30, 78, 216, 0.4);
}

/* GLOW ORBS */
.project-card::before,
.project-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.15), transparent);
  filter: blur(40px);
  animation: float 6s ease-in-out infinite;
}

.project-card::before {
  top: -60px;
  left: -60px;
}

.project-card::after {
  bottom: -60px;
  right: -60px;
  animation-delay: 3s;
}

/* PROJECT IMAGE */
.project-card img {
  width: 100%;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* CARD BUTTON */
.card-btn {
  display: block;
  text-align: center;
  padding: 12px;
  background: #1E4ED8;
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.card-btn:hover {
  background: #163fb2;
}

/* PROJECT INFO */
.project-info {
  max-width: 480px;
}

.project-info h2 {
  font-size: 2.7rem;
  margin-bottom: 20px;
}

.project-info p {
  font-size: 1.1rem;
  color: #d6d6d6;
  margin-bottom: 30px;
  line-height: 1.8;
}

/* CONTACT */
.contact {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 100px 10%;
}

/* CONTACT CARD */
.contact-card {
  width: 100%;
  max-width: 700px;
  background: rgba(10, 25, 60, 0.9);
  padding: 50px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

/* CONTACT TITLE */
.contact-card h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* UNDERLINE */
.underline {
  width: 60px;
  height: 3px;
  background: #1E4ED8;
  margin: 0 auto 30px;
  border-radius: 2px;
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  background: #050A1A;
  color: white;
  font-size: 1rem;
  outline: none;
}

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

/* BUTTON */
.contact-form .btn {
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}

/* SOCIAL STRIP */
.social-strip {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}

/* SOCIAL ICONS */
.social-strip a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  color: #6b6bff;
  font-size: 1.3rem;
  transition: all 0.3s ease;
}

.social-strip a:hover {
  transform: translateY(-6px);
  background: #6b6bff;
  color: white;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 20px;
  background: #0B1B3A;
  color: #aaa;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {

  .hero-container {
    flex-direction: column;
    text-align: center;
    padding-top: 60px;
  }

  .hero-text h1 {
    font-size: 36px;
  }

  .hero-text h2 {
    font-size: 1.2rem;
  }

  .hero-buttons {
    justify-content: center;
  }

  .about-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-container {
    padding: 3rem 2rem;
    text-align: center;
  }

  .about .line {
    margin: 0 auto 2rem auto;
  }

  .ayanda-image img {
    width: 240px;
  }

  .project-row {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .project-row.reverse {
    flex-direction: column;
  }

  .project-info {
    text-align: center;
  }

  .project-info h2 {
    font-size: 2rem;
  }

  .nav-links {
    display: none;
  }

  .section-title,
  .about h2 {
    font-size: 2.3rem;
  }
}

/* ANIMATIONS */
@keyframes gradientMove {

  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(25px);
  }
}