/* General */
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #0b1a2a;
  color: #e0e0e0; /* general text in light gray */
}

.container {
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: auto;
}

/* Left Column */
.left-column {
  flex: 1;
  background: rgba(255,255,255,0.05);
  padding: 1.5rem;
  border-radius: 12px;
}

.profile-img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #ffffff;
  margin-bottom: 1rem;
  align-self: flex-end; /* Right align the image */
}

h1 {
  margin: 0.5rem 0 0;
  font-size: 1.8rem;
  color: #ffffff;
}

.title {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  font-style: italic;
  color: #1e88e5; /* Blue title */
}

.summary {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #e0e0e0;
}

.summary p span {
  color: #1e88e5; /* blue highlights in summary */
}

/* Open to Work */
.open-to-work {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #00c853; /* green border */
  border-radius: 12px;
  padding: 1.5rem;
}

.open-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
}

.open-header h2 {
  color: #00c853; /* green heading */
  margin: 0;
}

.status-dot {
  width: 10px;
  height: 10px;
  background: #00c853; /* green active dot */
  border-radius: 50%;
  display: inline-block;
}

.work-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.8rem;
}

.work-tags .tag {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.work-tags .highlight {
  background: #1a73e8; /* blue highlight */
  color: #fff;
  font-weight: bold;
}


.contact-box h2 {
  margin-bottom: 0.8rem;
  color: #ffffff;
}

.contact-box {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start; /* buttons align to left; change to center if desired */
}

.contact-box .btn {
  width: 230px; /* All buttons will be the same width */
  text-align: center; /* Center text inside the button */
}



/* Buttons */
.btn {
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: background 0.3s, transform 0.2s;
  color: #ffffff;
}

.btn:hover {
  transform: translateY(-2px);
}

/* Individual Button Colors */
.resume { background-color: #2c3e50; }
.linkedin { background-color: #0072b1; }
.github { background-color: #333; }
.whatsapp { background-color: #25D366; }
.email { background-color: #c23a2b; }
.website { background-color: #1e88e5; }
.phone { background-color: #6c5ce7; }
.language { background-color: #00b894; }
.response { background-color: #ff9800; }


.languages-box {
  margin-bottom: 1.5rem;
}

.languages-box h2 {
  color: #ffffff;
}

.languages-box .btn.language {
  width: 50px;          /* same width for all buttons */
  text-align: center;    
  background-color: #0b1a2a; /* dark background for contrast */
  color: #1e88e5;        /* blue text */
  border: 1px solid #1e88e5; /* optional: blue border */
}

.languages-box .btn.language:hover {
  background-color: #1e88e5; /* fill button with blue on hover */
  color: #ffffff;            /* text becomes white on hover */
}


/* Right Column */
.right-column {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Sections */
.section-card {
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 1.5rem;
}

.section-card h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #ffffff;
}

/* Experience / Projects */
.exp-item, .proj-item {
  margin-bottom: 1rem;
}

.proj-item .proj-header div {
  color: #1e88e5;
  font-weight: normal; /* optional, keeps the bold look */
}


.exp-header, .proj-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(30,136,229,0.2); /* soft blue header background */
  padding: 0.8rem 1rem;
  border-radius: 8px;
  color: #ffffff;
}

.exp-details, .proj-details {
  display: none;
  margin-top: 0.8rem;
  padding: 0.8rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  color: #e0e0e0;
}

.date {
  font-size: 0.9rem;
  color: #a3d2ff; /* light blue date */
  margin-left: 0.3rem;
}

/* Toggle Buttons */
.toggle-btn {
  background: #1e88e5; /* blue button */
  border: none;
  color: #fff;
  font-weight: bold;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-btn:hover {
  background: #1565c0; /* darker blue on hover */
}

/* Footer */
footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  background: rgba(0,0,0,0.3);
  margin-top: 2rem;
  color: #b0bec5; /* footer gray */
}

/* Links */
a {
  color: #1e88e5;
  text-decoration: none;
}

a:hover {
  color: #1565c0;
}

.education-box {
  margin-bottom: 1.5rem;
}

.education-box h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.edu-entry {
  margin-bottom: 1rem;
}

.edu-title {
  color: #1e88e5;    /* Blue for school/university names */
  font-weight: normal;
  font-weight: bold;
}

.edu-details {
  margin: 0.2rem 0 0 0;
  color: #e0e0e0;    /* Soft white for degree details */
  font-size: 0.95rem;
}

.skill-group {
  margin-bottom: 1.5rem;
}

.skill-group h3 {
  color: #ffffff;
  margin-bottom: 0.6rem;
  font-size: 1.1rem;
}

.skill-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.tag {
  padding: 0.4rem 0.8rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  display: inline-block;
}

/* Colors */
.tag.blue { background-color: #1e88e5; }
.tag.green { background-color: #2ecc71; }
.tag.orange { background-color: #e62222; }
