* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0f1117;
  color: white;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: 700;
}

nav a {
  margin-left: 30px;
  text-decoration: none;
  color: white;
  font-weight: 500;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  font-size: 64px;
  font-weight: 800;
}

.hero h1 span {
  background: linear-gradient(90deg,#38bdf8,#22d3ee);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h2 {
  margin-top: 15px;
  font-weight: 400;
  color: #ccc;
}

.hero p {
  margin-top: 10px;
  color: #999;
}

/* Social Cards */
.social-box {
  margin-top: 40px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-box a {
  width: 90px;
  height: 90px;
  background: #1c1f26;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: white;
  transition: 0.3s;
  box-shadow: 0 0 15px rgba(0,0,0,0.5);
}

.social-box a i {
  font-size: 24px;
  margin-bottom: 6px;
}

.social-box a span {
  font-size: 12px;
}

.social-box a:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 20px rgba(56,189,248,0.7);
}

/* Arrow */
.down-arrow {
  margin-top: 60px;
  font-size: 30px;
  color: #38bdf8;
}
 
 /* ABOUT SECTION */
.about {
  min-height: 100vh;
  padding: 120px 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0f1117;
}

.about h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 70px;
  font-weight: 700;
}

.about h2 span {
  color: #22d3ee;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* IMAGE */
.about-img img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow:
    0 0 20px rgba(34,211,238,0.4),
    0 0 40px rgba(34,211,238,0.25);
  transition: 0.4s ease;
}

.about-img img:hover {
  transform: scale(1.05);
}

/* TEXT */
.about-text {
  max-width: 480px;
  font-size: 1rem;
  line-height: 1.8;
  color: #cbd5f5;
}

.about-text p {
  margin-bottom: 15px;
}

.about-text b {
  color: #38bdf8;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .about-text {
    max-width: 100%;
  }
}
