* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  line-height: 1.6;
  color: #333;
}


.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }
  
  .hero-text {
    flex: 1;
  }

  .hero-links {
    margin-top: 1rem;
    font-size: 0.95rem;
    text-align: center; /* or center if you prefer */
  }
  
  .hero-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  .hero-links span {
    margin: 0 0.5rem;
    color: #ffeb3b;
  }
  
  .hero-links a:hover {
    text-decoration: underline;
  }
  
  
  .hero-image {
    flex: 1;
    text-align: right;
  }
  
  .hero-image img {
    width: 500px;
    height: 500px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #ffeb3b;
  }
  
  /* Responsive */
  @media (max-width: 900px) {
    .hero-content {
      flex-direction: column;
      text-align: center;
    }
  
    .hero-image {
      text-align: center;
    }
  
    .hero-image img {
      width: 300px;
      height: 300px;
      margin-top: 1.5rem;
    }
  }
  
/* Layout */
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* Navigation */
header {
  background: #111;
  color: #fff;
  padding: 1rem 0;
}

.logo {
  font-size: 1.5rem;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
}

/* Hero */
.hero {
  background: linear-gradient(to right, #4f46e5, #6366f1);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.hero span {
  color: #ffeb3b;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  background: white;
  color: #4f46e5;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section h2 {
  margin-bottom: 1rem;
}

.alt {
  background: #f4f4f4;
}

/* Certifications */
.cert-list {
  list-style: none;
}

.cert-list li {
  margin-bottom: 0.5rem;
}

/* Blog */
.blog-card {
  background: #fff;
  padding: 1rem;
  margin-bottom: 1rem;
  border-left: 4px solid #4f46e5;
}

.blog-card a {
  color: #4f46e5;
  text-decoration: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  background: #111;
  color: #fff;
}
