:root {
  --bg: #ffffff;
  --primary: #dbeafe;
  --accent: #0ea5e9;
  --text: #1f2937;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background-color: var(--bg);
  color: var(--text);
}

nav {
  background-color: var(--primary);
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-content {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav ul li a {
  text-decoration: none;
  color: var(--text);
  font-weight: bold;
}

nav ul li a:hover {
  color: var(--accent);
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 10%;
  background-color: var(--bg);
  flex-wrap: wrap;
  gap: 2rem;
}

.hero-left {
  flex: 1 1 50%;
}

.hero-right {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
}

.hero-left h1 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--text);
}

.hero-left .highlight {
  color: var(--accent);
}

.hero-left h3 {
  font-size: 1.5rem;
  color: #374151;
  margin: 1rem 0;
}

.hero-left p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #4b5563;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
}

.btn {
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.primary {
  background-color: var(--text);
  color: white;
}

.outline {
  border: 2px solid var(--text);
  background-color: transparent;
  color: var(--text);
}

.primary:hover,
.outline:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Already exists, you can leave or merge */
.profile-img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--accent);
  background-color: white;
}


.logo {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}



.section {
  max-width: 800px;
  margin: 3rem auto;
  padding: 0 1rem;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--accent);
}

.skill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-list span {
  background-color: var(--primary);
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
}

.skills-section {
  margin-top: 3.5rem;  /* Increased spacing between sections */
  padding-bottom: 1rem;
  border-bottom: 1px dashed #d1d5db; /* Optional: subtle divider line */
}

.skills-section:last-child {
  border-bottom: none; /* Avoid line under last section */
}


.professional-box {
  background: #f8fafc;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.professional-skills {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.professional-skills li {
  margin-bottom: 0.75rem;
  background: #ffffff;
  padding: 10px 15px;
  border-left: 4px solid var(--accent);
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}


.project-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.project-card {
  background-color: var(--primary);
  padding: 1rem;
  border-left: 4px solid var(--accent);
  border-radius: 5px;
}

footer {
  text-align: center;
  padding: 2rem;
  background: var(--primary);
  margin-top: 4rem;
  color: var(--text);
}
:root {
  --bg: #f0f8ff;      /* Light blue background */
  --card: #ffffff;
  --accent: #0ea5e9;  /* Light blue accent */
  --text: #1f2937;    /* Almost black text */
  --primary: #dbeafe; /* Light primary (navbar) */
}

.about {
  padding: 60px 20px;
  background: #f9f9f9;
}

.about-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-left,
.about-right {
  width: 48%;
  box-sizing: border-box;
}

.about-left h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-left p {
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.about-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-card {
  background: white;
  border: 1px solid #ddd;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.about-card:hover {
  transform: translateY(-5px);
}

.about-card i {
  font-size: 1.5rem;
  color: #007BFF;
}

@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }

  .about-left, .about-right {
    width: 100%;
  }
}
