/* ---------- Global Reset ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ---------- Base Styles ---------- */
body {
    
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #f4f6fb;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Typography ---------- */
h1, h2, h3 {
  margin-bottom: 12px;
  line-height: 1.3;
}

p {
  margin-bottom: 16px;
  max-width: 65ch;
}

/* ---------- Links ---------- */
a {
  text-decoration: none;
  color: #0056b3;
  
}
a:hover{
    opacity: 0.85;
}

/* ---------- Layout Containers ---------- */
header{
    
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}
header>div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header h1 {
  color: #1f3c88;
}

header a {
  color: #1f3c88;
  font-weight: 500;
}
header ul{
    list-style: none;
    display: flex;
    gap: 20px;

}
main > section {
  margin-bottom: 80px;
}

.hero {
  margin-top: 60px;
  background-color: #ffffff;
  padding: 60px 24px;
  border-radius: 6px;
}

.hero h2 {
  font-size: 32px;
  color: #1f3c88;
}
.hero p{
    max-width: 55ch;
}

.hero a {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  border-radius: 4px;
  background-color: #f2545b;
  color: #ffffff;
}

.skills {
  margin-bottom: 80px;
  background-color: transparent;
}
.skills h2{
    margin-bottom: 32px;
}
.skill-list{
    
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;


}
.skill-list article {
  display: flex;
  flex-direction: column;
  min-width: 260px;
  padding: 20px;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.22);
  transition: transform 0.2s ease;
}

.skill-list article:hover {
  transform: translateY(-4px);
  transition: transform 0.2s ease;
}



.about {
  background-color: #ffffff;
  padding: 40px 24px;
  border-radius: 6px;
  margin-bottom: 32px;
}
.about p {
  max-width: 70ch;
}

.projects {
  background-color: #ffffff;
  padding: 40px 24px;
  border-radius: 6px;
  margin-bottom: 40px;
}



.cta {
  background-color: #1f3c88;
  color: #ffffff;
  padding: 50px 24px;
  border-radius: 6px;
}

.cta h2 {
  color: #ffffff;
}

.cta a {
  display: inline-block;
  margin-top: 12px;
  background-color: #ffffff;
  color: #1f3c88;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: bold;
}






/* ---------- Footer ---------- */
footer {
  padding: 24px;
  text-align: center;
  border-top: 1px solid #ddd;
  max-width: 1100px;
  margin: 40px auto 0;
  background-color: #ffffff;
  color: #666;
}


