/* ==========================================
   ABOUT PAGE
========================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #0d0d0d;
  color: #f5f5f5;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

header {
  background: #000;
  border-bottom: 2px solid #123b73;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

header h1 {
  color: white;
  font-size: 2rem;
}

#menu-btn {
  display: none;

  background: none;
  border: none;

  color: white;
  font-size: 2rem;

  cursor: pointer;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
}

nav a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
  font-weight: bold;
}

nav a:hover {
  color: #1d5fa7;
}

.logo {
  width: 75px;
  height: auto;
}

/* Hero Section */

#about-hero {
    background: #0b0b0b;
    padding: 100px 20px 80px;
    text-align: center;
}

#about-hero h1 {
    color: #fff;
    font-size: 3rem;
    margin-bottom: 25px;
}

.hero-text {
    max-width: 900px;
    margin: auto;
    color: #d0d0d0;
    font-size: 1.15rem;
    line-height: 1.8;
}

/* ==========================================
   ABOUT ME
========================================== */

#about-me {
    background: #111;
    padding: 80px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 320px;
    border-radius: 12px;
    border: 3px solid #1d5fa7;
    box-shadow: 0 12px 30px rgba(0,0,0,.45);
}

.about-content h2 {
    color: #1d5fa7;
    margin-bottom: 20px;
}

.about-content p {
    color: #d0d0d0;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* ==========================================
   SECTION HEADINGS
========================================== */

#skills,
#my-process,
#why-me,
#about-cta {
    padding: 80px 20px;
}

#skills h2,
#my-process h2,
#why-me h2,
#about-cta h2 {
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 850px;
    margin: auto auto 50px;
    color: #d0d0d0;
    line-height: 1.8;
}

/* ==========================================
   SKILLS
========================================== */

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
    gap: 30px;
}

.skill-card {
    background: #181818;
    border: 1px solid #2e2e2e;
    border-radius: 10px;
    padding: 30px;
    transition: .3s;
}

.skill-card:hover {
    transform: translateY(-8px);
    border-color: #1d5fa7;
}

.skill-card h3 {
    color: #1d5fa7;
    margin-bottom: 15px;
}

.skill-card p {
    color: #d0d0d0;
    line-height: 1.7;
}

/* ==========================================
   PROCESS
========================================== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
    gap: 30px;
}

.process-card {
    background: #181818;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #1d5fa7;
    transition: .3s;
}

.process-card:hover {
    transform: translateY(-8px);
}

.process-card h3 {
    color: white;
    margin-bottom: 15px;
}

.process-card p {
    color: #d0d0d0;
    line-height: 1.7;
}

/* ==========================================
   WHY CHOOSE ME
========================================== */

#why-me {
    background: #111;
}

#why-me .container {
    max-width: 900px;
}

#why-me p {
    color: #d0d0d0;
    line-height: 1.9;
    margin-bottom: 25px;
    text-align: center;
}

/* ==========================================
   CALL TO ACTION
========================================== */

#about-cta {
    background: #0b0b0b;
    text-align: center;
}

#about-cta p {
    max-width: 800px;
    margin: 0 auto 35px;
    color: #d0d0d0;
    line-height: 1.8;
}

/* Button */

.btn-primary {
    display: inline-block;
    background: #1d5fa7;
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: .3s;
}

.btn-primary:hover {
    background: #2878d0;
    transform: translateY(-3px);
}

/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px) {

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        max-width: 260px;
    }

}

@media (max-width: 768px) {

    #about-hero {
        padding: 80px 20px 60px;
    }

    #about-hero h1 {
        font-size: 2.3rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    #skills,
    #my-process,
    #why-me,
    #about-me,
    #about-cta {
        padding: 60px 20px;
    }

}

@media (max-width: 500px) {

    #about-hero h1 {
        font-size: 2rem;
    }

    .skill-card,
    .process-card {
        padding: 25px;
    }

    .btn-primary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

}