:root {
  --hero: #0f172abe;
  --about: #231b2a;
  --features: #1e293b;
  --card: rgba(179, 164, 164, 0.08);
  --accent: #00ccff;
  --text: #e5e7eb;
  --muted: #c1c6cd;
}

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

body {
  color: var(--text);
  background: #020617;
}

/* SECTION SPACING */
section {
  padding: 15px 60px;
}

/* HERO */
.about-hero {
  background: linear-gradient(135deg, #020617, #0f172a, #1e293b);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent), transparent);
  filter: blur(120px);
  opacity: 0.3;
  animation: float 6s infinite;
}

@keyframes float {
  50% {
    transform: translateY(-40px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  display: inline-block;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: "poppins", sans-serif;
}

.hero-content h1:hover {
  transform: scale(1.05);
  transition: 0.6s;
}

.hero-content p {
  color: var(--accent);
  margin-top: 10px;
}

/* ABOUT */
.about-main {
  background: var(--about);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 70px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 10px;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 25px;
  line-height: 1.7;
}

/* OWNER */
.owner-box {
  flex: 1;
  max-width: 360px;
  background: var(--card);
  backdrop-filter: blur(18px);
  padding: 35px;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s;
}

/* IMAGE FIX (IMPORTANT) */
.owner-box img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 4px solid var(--accent);
  margin-bottom: 15px;
}

/* HOVER */
.owner-box:hover {
  transform: translateY(-12px) scale(1.04);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
}

/* SOCIAL */
.social i {
  margin: 10px;
  cursor: pointer;
  transition: 0.3s;
}

.social i:hover {
  color: var(--accent);
  transform: scale(1.3);
}

/* FEATURES */
.features-section {
  background: var(--features);
  text-align: center;
}

.section-title {
  font-size: 34px;
  margin-bottom: 30px;
  display: inline-block;
}

.social a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-box a:hover {
  opacity: 0.8;
}

.section-title:hover {
  font-family: "Poppins", sans-serif;
  background: linear-gradient(90deg, #ffffff, #9fcaff, #ffffff, #ffffff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 6s linear infinite;

  transform: scale(1.05);
  transition: 0.6s;
}

/* GRID */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

/* CARD */
.card {
  background: var(--card);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: 0.4s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

/* CARD GLOW */
.card::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transform: rotate(25deg);
  top: -100%;
  left: -100%;
  transition: 0.5s;
}

.card:hover::before {
  top: 0;
  left: 0;
}

/* ICON */
.card i {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 10px;
}

/* HOVER EFFECT */
.card:hover {
  transform: translateY(-12px) scale(1.05);
  background: linear-gradient(135deg, var(--accent), #ff9f43);
  color: #000000;
}

.card:hover i {
  color: #000000;
}

/* SCROLL ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: 1s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  section {
    padding: 70px 20px;
  }

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