* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* NO BULLET POINTS ANYWHERE */
ul,
ol,
li {
  list-style: none;
}

body {
  background: #0a0c10;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  color: #eaeff4;
  line-height: 1.5;
  scroll-behavior: smooth;
}

/* FULL WIDTH - no max-width restrictions */
.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
}

/* refined scroll */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #171b22;
}
::-webkit-scrollbar-thumb {
  background: #6e2c3a;
  border-radius: 10px;
}

/* --- STICKY NAVBAR --- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(8, 10, 14, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(100, 100, 120, 0.25);
  width: 100%;
}
.nav-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  flex-wrap: wrap;
}
.nav-logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, #f0f2f5 20%, #b6a1a8 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-decoration: none;
  transition: 0.2s;
}
.nav-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.nav-links li a {
  text-decoration: none;
  color: #c5cdd9;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.25s;
  letter-spacing: 0.2px;
  position: relative;
}
.nav-links li a::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: #7d3e4c;
  border-radius: 3px;
  transition: width 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}
.nav-links li a:hover {
  color: #ffffff;
}
.nav-links li a:hover::after {
  width: 100%;
}

/* ----- HERO SECTION (tall & spacious) ----- */
.hero-section {
  background:
    linear-gradient(135deg, rgba(5, 7, 12, 0.82), rgba(15, 20, 28, 0.88)),
    url("https://images.unsplash.com/photo-1558494949-ef010cbdcc31?q=80&w=2034&auto=format&fit=crop");
  background-size: cover;
  background-position: center 30%;
  width: 100%;
  padding: 5rem 5% 6rem 5%; /* much taller */
  margin: 0;
}
.header-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.header-top h1 {
  font-size: 4.2rem; /* bigger presence */
  font-weight: 800;
  background: linear-gradient(to right, #ffffff, #c5b1b8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -1px;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(20, 24, 32, 0.6);
  backdrop-filter: blur(6px);
  border: 1.2px solid #7d3e4c;
  color: #e7c9d0;
  padding: 0.9rem 2rem; /* larger button */
  font-weight: 600;
  font-size: 1rem;
  border-radius: 60px;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  letter-spacing: 0.2px;
}
.btn i {
  font-size: 1rem;
  transition: transform 0.2s;
}
.btn:hover {
  background: #7d3e4c;
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(100, 50, 60, 0.3);
  transform: translateY(-3px);
  border-color: #ad6374;
}
.bio {
  font-size: 1.4rem; /* larger bio */
  color: #d3dce8;
  margin-top: 1.5rem;
  border-left: 4px solid #9b5968;
  padding-left: 1.5rem;
  font-weight: 400;
  background: rgba(0, 0, 0, 0.2);
  display: inline-block;
  border-radius: 0 16px 16px 0;
  line-height: 1.6;
}

/* Section titles (more margin) */
.section-title-wrapper {
  margin: 5rem 5% 2rem 5%; /* extra vertical spacing */
  position: relative;
}
.section-title-wrapper h2 {
  font-size: 2.5rem; /* bigger title */
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #f2f4f8;
  display: inline-block;
}
.section-title-wrapper::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 3px;
  background: #7d3e4c;
  border-radius: 4px;
}

.sub-title {
  font-size: 1.8rem; /* larger sub */
  font-weight: 600;
  margin: 2.5rem 0 2rem 0;
  color: #dfe4ec;
  border-left: 4px solid #9b5968;
  padding-left: 1.2rem;
}

/* Education background (taller) */
.education-bg {
  background:
    linear-gradient(125deg, rgba(3, 5, 10, 0.85), rgba(22, 27, 35, 0.9)),
    url("https://images.unsplash.com/photo-1523240795612-9a054b0db644?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center 40%;
  width: 100%;
  padding: 3.5rem 5%; /* increased padding */
  margin: 0;
}
.education-content {
  background: rgba(12, 16, 22, 0.65);
  backdrop-filter: blur(4px);
  border-radius: 36px;
  padding: 2.5rem; /* more inner space */
  border: 1px solid rgba(200, 180, 185, 0.2);
}
.education-content h3 {
  font-size: 2.2rem; /* larger heading */
  font-weight: 700;
  margin-bottom: 0.8rem;
}
.education-content p {
  font-size: 1.1rem;
  color: #e0e6f0;
}

/* Skills background (taller) */
.skills-bg {
  background:
    linear-gradient(110deg, rgba(6, 8, 14, 0.86), rgba(18, 23, 32, 0.92)),
    url("https://images.unsplash.com/photo-1555066931-4365d14bab8c?q=80&w=2070&auto=format&fit=crop");
  background-size: cover;
  background-position: center 20%;
  width: 100%;
  padding: 3rem 5% 4rem 5%; /* extra padding bottom */
  margin: 0;
}
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 2rem; /* more gap */
  margin: 2rem 0 2.5rem 0;
}
.skill-card {
  background: rgba(20, 25, 34, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 32px;
  padding: 2rem 1rem; /* taller cards */
  text-align: center;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.4, 1);
  border: 1px solid rgba(125, 62, 76, 0.3);
  cursor: default;
}
.skill-card i {
  font-size: 2.8rem; /* bigger icons */
  color: #b9c7d6;
  margin-bottom: 1rem;
  transition: all 0.2s;
}
.skill-card h4 {
  font-size: 1.2rem; /* larger text */
  font-weight: 500;
  color: #dce3ec;
}
.skill-card:hover {
  transform: translateY(-6px);
  background: rgba(35, 42, 54, 0.85);
  border-color: #8c5262;
  box-shadow: 0 15px 25px -12px rgba(0, 0, 0, 0.5);
}

/* Projects grid (more vertical space) */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2.5rem;
  margin: 3rem 5% 4rem 5%;
}
.project-card {
  background: #11161f;
  border-radius: 36px;
  overflow: hidden;
  transition: all 0.35s;
  border: 1px solid rgba(90, 90, 110, 0.3);
}
.project-card:hover {
  transform: translateY(-10px);
  border-color: #7d3e4c;
  box-shadow: 0 25px 35px -18px black;
}
.project-image {
  width: 100%;
  height: 240px; /* taller images */
  object-fit: cover;
  transition: transform 0.4s;
}
.project-card:hover .project-image {
  transform: scale(1.02);
}
.project-card h3 {
  font-size: 1.7rem; /* bigger heading */
  font-weight: 700;
  margin: 1.5rem 1.5rem 0.8rem;
  color: #f0f2f7;
}
.project-card p {
  font-size: 1rem;
  color: #adb7c5;
  margin: 0 1.5rem 1.5rem;
  line-height: 1.6;
}
.project-card .btn {
  margin: 0 1.5rem 1.8rem;
  padding: 0.7rem 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-color: #6e3e4c;
  color: #e1c9cf;
  font-size: 0.9rem;
}

/* Certificates grid (taller cards) */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin: 3rem 5% 4rem 5%;
}
.cert-card {
  background: #131a24;
  border-radius: 32px;
  padding: 2rem; /* more padding */
  transition: all 0.3s;
  border: 1px solid #282e38;
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.2);
}
.cert-card:hover {
  background: #19212c;
  transform: translateY(-6px);
  border-left: 4px solid #7d3e4c;
  border-color: #3c3340;
}
.cert-card h4 {
  font-size: 1.4rem; /* larger */
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #f3f5fa;
}
.cert-card p {
  color: #aab4c4;
  font-size: 1rem;
  margin: 0.4rem 0;
}
.cert-card a {
  text-decoration: none;
  color: #bc7a8a;
  font-weight: 500;
  font-size: 0.95rem;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 0.5rem;
}
.cert-card a:hover {
  color: #e5a1b0;
  letter-spacing: 0.2px;
}

/* Contact section taller */
.contact-section {
  text-align: center;
  background: radial-gradient(circle at 30% 10%, #11171f, #090c12);
  margin-top: 5rem;
  padding: 4rem 5% 5rem 5%; /* extra height */
  width: 100%;
  border-top: 1px solid rgba(100, 90, 100, 0.4);
}
.contact-section h2 {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.contact-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.social-icons a {
  color: #b2bdd0;
  font-size: 2rem; /* bigger icons */
  transition: all 0.25s;
}
.social-icons a:hover {
  color: #9c5f6e;
  transform: translateY(-5px) scale(1.08);
}

/* RESPONSIVE */
@media (max-width: 850px) {
  .header-top h1 {
    font-size: 3rem;
  }
  .hero-section {
    padding: 3rem 5% 4rem 5%;
  }
  .bio {
    font-size: 1.2rem;
  }
  .section-title-wrapper h2 {
    font-size: 2rem;
  }
  .sub-title {
    font-size: 1.5rem;
  }
  .skills-grid {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1.2rem;
  }
  .skill-card {
    padding: 1.5rem 0.8rem;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 550px) {
  .nav-container {
    flex-direction: column;
    gap: 0.8rem;
  }
  .btn {
    padding: 0.6rem 1.2rem;
  }
  .education-content h3 {
    font-size: 1.6rem;
  }
  .skill-card i {
    font-size: 2rem;
  }
  .contact-section h2 {
    font-size: 2rem;
  }
}

/* remove any extra borders */
.hero-section,
.hero-section * {
  border: none;
}
/* safety bulletproof */
ul,
li,
.nav-links,
.project-card,
.cert-card {
  list-style: none;
}
