* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f4f6f8;
}

/* HERO */
.hero {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.hero h1 {
    margin-bottom: 10px;
    font-size: 36px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #1abc9c;
}

.work-experience {
    list-style-type: disc;
    padding-left: 20px;
}

.work-experience > li {
    margin-bottom: 15px;
}

.work-experience ul {
    list-style-type: circle;
    padding-left: 20px;
    margin-top: 5px;
}
.timeline-section {
  padding: 80px 20px;
  background: #f5f7fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 60px;
  color: #1f2937;
}

.timeline {
  position: relative;
  margin: 0 auto;
  padding-left: 30px;
  border-left: 4px solid #4CAF50;
  max-width: 800px;
}

.timeline-item {
  position: relative;
  margin-bottom: 50px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: -34px;
  background-color: #4CAF50;
  color: #fff;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 50%;
  font-size: 1.8em;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.timeline-content {
  background: #fff;
  padding: 25px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-item:hover .timeline-content {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.timeline-content h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: #111827;
}

.timeline-content ul {
  padding-left: 20px;
  color: #374151;
}

.timeline-content li {
  margin-bottom: 10px;
  line-height: 1.6;
}


.tagline {
    font-size: 18px;
    margin-bottom: 25px;
}

.btn {
    background: #1abc9c;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
}

/* SECTIONS */
.section {
    width: 85%;
    margin: 30px auto;
    background: white;
    padding: 30px;
    border-radius: 8px;
}

.section.gray {
    background: #ecf0f1;
}

h2 {
    color: #2c3e50;
}

/* SKILLS */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.skills-grid h3 {
    margin-bottom: 10px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.project img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    margin-bottom: 10px;
}


/* EXPERIENCE */
.job {
    margin-bottom: 20px;
}

/* WHY */
.why {
    list-style: none;
    padding: 0;
}

.why li {
    margin-bottom: 10px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .section {
        width: 95%;
        padding: 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .tagline {
        font-size: 16px;
    }

    .skills-grid {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
}


/* CONTACT */
.contact p {
    font-size: 16px;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 20px;
    background: #2c3e50;
    color: white;
}
