/* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Reusable Classes */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

.section {
  margin-bottom: 40px;
}

h1, h2, h3 {
  color: #333;
}

/* Button */
.btn {
  display: inline-block;
  /*background-color: #0073e6;*/
  background-color: rgb(197, 31, 31);
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #005bb5;
}

/* Header Section */
.header {
  text-align: center;
  background-color: #eef5ff;
  padding: 20px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.intro {
  max-width: 500px;
}

.subheading {
  font-size: 1.2em;
  color: #666;
  margin-bottom: 15px;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 15px;
  object-fit: cover;
}

/* About Section */
.info-list {
  list-style: none;
  padding-left: 0;
}

.info-list li {
  margin-bottom: 10px;
}

/* Skills Section */
.skill-category {
  margin-bottom: 20px;
}

.skill-category h3 {
  font-size: 1.2em;
  color: #0073e6;
}

/* Experience Section */
.card {
  background-color: #fff;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.card h3 {
  font-size: 1.2em;
}

.card ul {
  list-style: disc inside;
  margin-top: 10px;
}

.card ul li {
  margin-bottom: 10px;
}
