
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(135deg, #eef2f3, #8e9eab);
  color: #333;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

nav {
  background: #001f3f;
  color: white;
  padding: 10px 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

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

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

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: linear-gradient(to right, #0074D9, #7FDBFF);
  color: white;
  padding: 60px 0;
  perspective: 1000px;
}

.hero-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transform-style: preserve-3d;
  transform: rotateY(0deg);
}

.hero-text {
  flex: 1 1 55%;
}

.hero-image {
  flex: 1 1 40%;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transform: rotateY(10deg);
  transition: transform 0.5s;
}

.hero-image img:hover {
  transform: rotateY(0deg) scale(1.05);
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: white;
  color: #0074D9;
  font-weight: bold;
  text-decoration: none;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.btn:hover {
  background: #001f3f;
  color: white;
}

.section {
  padding: 60px 20px;
}

.bg-light {
  background: #ffffffcc;
}

.skills-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  list-style: none;
  padding: 0;
}

.skills-list li {
  background: #0074D9;
  color: white;
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.footer {
  text-align: center;
  padding: 20px;
  background: #001f3f;
  color: white;
}
.cv-preview {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  filter: blur(2px);
  transition: filter 0.3s ease;
}

.cv-preview:hover {
  filter: blur(0);
}

.cv-preview img {
  width: 100%;
  display: block;
}

.blur-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0,0,0,0.4);
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

