/* GENERAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #14172b;
  color: #ffffff;
}

a {
  color: inherit;
  text-decoration: none;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 5%;
  background-color: #181c32;
}

.navbar ul {
  display: flex;
  gap: 30px;
  list-style: none;
}

.navbar a:hover {
  color: #e9464b;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

/* HERO SECTION */
.hero-section {
  padding: 100px 5%;
  background: linear-gradient(90deg, #e9464b 0%, #181c32 30%);
  height: 70vh;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 500px;
}

.hero-text h1 {
  font-size: 45px;
  line-height: 55px;
  margin-bottom: 15px;
}

.hero-text p {
  margin-bottom: 25px;
  color: #c1c2d0;
}

.cta-btn {
  background-color: #e9464b;
  color: white;
  padding: 12px 28px;
  border-radius: 4px;
  display: inline-block;
}

/* SECTIONS  */
.section-title {
  font-size: 30px;
  padding-top: 60px;
  margin-bottom: 25px;
  text-align: center;
  color: #e9464b;
}

/* SKILLS & PROJECTS */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  padding: 0 5% 60px;
}

.skill-card {
  background: #181c32;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}

.skill-card i {
  font-size: 30px;
  margin-bottom: 12px;
  color: #e9464b;
}

.skill-card h4 {
  margin-bottom: 8px;
}

.skill-card p {
  font-size: 14px;
  color: #b5b6c7;
}

/* CONTACT */
.contact-section {
  padding: 60px 5%;
  background-color: #14172b;
}

.contact-section form {
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 12px;
  background: #181c32;
  border: none;
  color: #fff;
  margin-bottom: 15px;
  border-radius: 4px;
}

.contact-section button {
  padding: 12px 28px;
  background: #e9464b;
  border: none;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.contact-links {
  margin-top: 20px;
  text-align: center;
}

.contact-links a {
  color: #e9464b;
  font-size: 24px;
  margin: 0 10px;
}

footer {
  padding: 15px;
  text-align: center;
  background-color: #181c32;
  font-size: 14px;
}

/* ... your existing CSS remains unchanged */

/* HERO SECTION */
.hero-section {
  padding: 100px 5%;
  background: linear-gradient(90deg, #e9464b 0%, #181c32 30%);
  height: 70vh;
  display: flex;
  align-items: center;
  gap: 40px;
}

.hero-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
}
