 /* GLOBAL STYLES */

html, body {
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;

  font-family: 'Inter', sans-serif;
  background: #02063f;
  color: #f5f5f5;
  overflow-x: hidden;
}


 /* NAVIGATION BAR */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 0rem .03%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(0,0,0,0.4);
  z-index: 1000;
}

nav ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

nav a {
  text-decoration: none;
  color: white;
}

 /* PAGE SECTIONS */
section {
  min-height: auto;
  padding: 4rem 8%;
}


 /* HERO SECTION */
.hero h2 {
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 800;
  max-width: 900px;
}

.hero p {
  margin-top: 2rem;
  max-width: 650px;
  line-height: 1.7;
}

.scroll {
  margin-top: 3rem;
  display: inline-block;
  padding: 1rem 1.5rem;
  border: 1px solid white;
  color: white;
  text-decoration: none;
}

 /* GRID LAYOUTS (SKILLS + AI) */
.skills-grid,
.ai-grid, .metrics-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  width: 100%;
}

/* CARDS */
.card {
  background: #151515;
  border-radius: 20px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}


/* ABOUT SECTION */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about img {
  width: 100%;
  border-radius: 20px;
}

.socials {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.socials a {
  color: white;
  text-decoration: none;
  border: 1px solid white;
  padding: 0.8rem 1.2rem;
}


/* METRICS / ANALYTICS */
.metrics {
  margin-top: 5rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.metric-card {
  background: #151515;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  transition: 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-8px);
  border: 1px solid rgba(255,255,255,0.25);
}

.metric-card h3 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: white;
}

.metric-card p {
  color: #bdbdbd;
  font-size: 0.95rem;
}


/* CUSTOM CURSOR */
.cursor {
  width: 20px;
  height: 20px;
  border: 1px solid white;
  border-radius: 50%;
  position: fixed;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
}


/* FOOTER */
footer {
  text-align: center;
  padding: 2rem;
}