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

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

/* Container */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background-color: #1c2526;
  color: rgba(255, 255, 255, 0.114);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #90e0ef;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #90e0ef;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  background: white;
  height: 3px;
  width: 25px;
  margin: 2px 0;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #023e8a, #0077b6);
  color: white;
  text-align: center;
  padding: 4rem 0;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%2303035e" fill-opacity="0.2" d="M0,128L48,138.7C96,149,192,171,288,165.3C384,160,480,128,576,138.7C672,149,768,203,864,213.3C960,224,1056,192,1152,181.3C1248,171,1344,181,1392,186.7L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
}

/* Profile Image - RECTANGULAR AND CENTERED */
.profile-image {
  width: 250px;
  height: 300px;
  object-fit: cover;
  display: block;
  margin: 1rem auto;
  border: 5px solid #1c2526;
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border-radius: 0;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.subtitle {
  font-size: 1.2rem;
  color: #90e0ef;
  margin-bottom: 2rem;
}

/* About Section */
.about {
  padding: 3rem 0;
  background: white;
  text-align: center;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #023e8a;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #555;
}

/* Skills Section */
.skills {
  padding: 3rem 0;
  background: #f9f9f9;
  text-align: center;
}

.skills h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #023e8a;
}

.skills-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.skills-list li {
  font-size: 1.1rem;
  color: #555;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.skills-list li::before {
  content: '•';
  color: #0077b6;
  position: absolute;
  left: 0;
}

/* Work Section */
.work {
  padding: 3rem 0;
  background: white;
  text-align: center;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.1);
}

.work h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #023e8a;
}

.work-item {
  margin-bottom: 2rem;
}

.work-item h3 {
  font-size: 1.5rem;
  color: #0077b6;
  margin-bottom: 0.5rem;
}

.work-image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  margin: 1rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  display: block;
}

.work-item p {
  max-width: 800px;
  margin: 0 auto 1rem;
  font-size: 1.1rem;
  color: #555;
}

.work-item a {
  color: #90e0ef;
  text-decoration: none;
  font-weight: 500;
}

.work-item a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
  background: #1c2526;
  color: white;
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
}

footer a {
  color: #90e0ef;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 700px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #1c2526;
    padding: 1rem 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    margin: 1rem 0;
    text-align: center;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .profile-image {
    width: 250px;
    height: 300px;
  }

  .hero {
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
  }

  .skills-list li {
    font-size: 1rem;
  }

  .work-image {
    width: 250px;
    height: 167px;
  }
}
