@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
:root {
  --primary-color: #ecf1fe;
  --secondary-color: #04a5f5;
  --background-color: #12212b;
  --text-color: #ecf1fe;
  --header-gradient: linear-gradient(135deg, #0c1117 0%, #1a2832 100%);
  --hero-gradient: linear-gradient(
    135deg,
    #0c1117 0%,
    #1a2832 35%,
    #12212b 100%
  );
  --footer-gradient: linear-gradient(
    135deg,
    #0f1b24 0%,
    #1a2832 50%,
    #0d1419 100%
  );
}
html,
body {
  background-color: var(--background-color);
  overflow-x: hidden;
  min-height: 100vh;
}

.container {
  background: var(--background-color);
  min-height: 100vh;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
  background: var(--header-gradient);
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
}
.logo {
  color: var(--primary-color);
  font-size: 24px;
  font-weight: 600;
}
.navbar {
  display: flex;
  gap: 20px;
}
.navbar a {
  color: var(--primary-color);
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.navbar a:hover::before,
.navbar a.active::before {
  width: 100%;
}

.navbar a:hover,
.navbar a:active,
.navbar a.active {
  color: var(--secondary-color);
  transform: translateY(-2px);
}
.home {
  display: flex;
  flex-wrap: wrap-reverse;
  background: var(--hero-gradient);
  color: var(--text-color);
  padding: 100px 20px 20px 20px;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: relative;
  overflow: hidden;
}

.home::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(4, 165, 245, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(4, 165, 245, 0.05) 0%,
      transparent 50%
    );
  animation: parallaxMove 15s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes parallaxMove {
  0% {
    transform: rotate(0deg) translateX(0px) translateY(0px);
  }
  100% {
    transform: rotate(360deg) translateX(30px) translateY(30px);
  }
}

.home-content,
.home-image {
  position: relative;
  z-index: 2;
}
.home-content {
  width: 60%;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 20px;
}
.home-content h1 {
  font-size: 56px;
  font-weight: 700;
  display: flex;
  align-items: center;
}

.static-text {
  color: var(--primary-color);
}

.typing-text {
  color: var(--primary-color);
  overflow: hidden;
  border-right: 3px solid var(--secondary-color);
  white-space: nowrap;
  animation: typing 1.5s steps(15, end) 0.3s both,
    blink-caret 0.5s step-end infinite 0.3s;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: var(--secondary-color);
  }
}
.home-content h3 {
  font-size: 28px;
  font-weight: 500;
  background: linear-gradient(45deg, var(--secondary-color), #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--secondary-color);
    filter: drop-shadow(0 0 5px var(--secondary-color));
  }
  to {
    text-shadow: 0 0 10px var(--secondary-color),
      0 0 20px var(--secondary-color), 0 0 30px var(--secondary-color);
    filter: drop-shadow(0 0 10px var(--secondary-color));
  }
}
.home-content p {
  font-size: 16px;
  font-weight: 400;
  margin: 20px 0 30px 0;
  line-height: 1.6;
}
.home-image {
  width: 30%;
  height: auto;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--secondary-color);
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.home-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}
.home-image:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  transform: scale(1.02);
}
.social-media {
  display: flex;
  gap: 20px;
  padding: 30px 0;
}
.social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.social-media a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--secondary-color);
  transform: scale(0);
  transition: transform 0.3s ease;
  border-radius: 50%;
  z-index: -1;
}

.social-media a:hover::before {
  transform: scale(1);
}

.social-media a:hover {
  color: var(--primary-color);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 5px 15px rgba(4, 165, 245, 0.4);
}
.btn-download-cv {
  display: inline-block;
  width: fit-content;
  padding: 11px 32px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0284c7 100%);
  color: var(--text-color);
  border-radius: 40px;
  font-weight: 500;
  transition: all 0.3s ease;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(4, 165, 245, 0.3);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.btn-download-cv::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn-download-cv:hover::before {
  left: 100%;
}

.btn-download-cv:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(4, 165, 245, 0.5);
}

/* About Section */
.about {
  background: linear-gradient(135deg, #12212b 0%, #1a2832 50%, #0f1b24 100%);
  color: var(--text-color);
  padding: 80px 20px;
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 70% 20%,
      rgba(4, 165, 245, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 30% 80%,
      rgba(4, 165, 245, 0.06) 0%,
      transparent 40%
    );
  pointer-events: none;
  z-index: 1;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
}

.about-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-header p {
  font-size: 18px;
  font-weight: 400;
  color: #b8c4d0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-personal {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.about-image-gallery {
  background: rgba(26, 40, 50, 0.3);
  border: 1px solid rgba(4, 165, 245, 0.2);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.main-image {
  width: 100%;
  height: 555px;
  margin-bottom: 20px;
  border-radius: 15px;
  overflow: hidden;
  border: 3px solid var(--secondary-color);
  position: relative;
  cursor: pointer;
}

.main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.3s ease;
}

.main-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.main-image:hover .image-overlay {
  opacity: 1;
}

.prev-btn,
.next-btn,
.auto-play-btn {
  background: rgba(4, 165, 245, 0.8);
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 20px;
}

.prev-btn:hover,
.next-btn:hover,
.auto-play-btn:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.auto-play-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 15px;
}

.gallery-grid img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  object-position: top center;
  border-radius: 10px;
  border: 2px solid rgba(4, 165, 245, 0.3);
  cursor: pointer;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.gallery-grid img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(4, 165, 245, 0.2) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.gallery-grid img:hover::before {
  transform: translateX(100%);
}

.gallery-grid img:hover,
.gallery-grid img.active {
  border-color: var(--secondary-color);
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 8px 25px rgba(4, 165, 245, 0.5);
  z-index: 10;
}

.gallery-indicators {
  display: flex;
  justify-content: center;
}

.indicators {
  display: flex;
  gap: 8px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(4, 165, 245, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--secondary-color);
  transform: scale(1.2);
}

/* Image Modal */
.image-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 0;
  width: 90%;
  max-width: 1000px;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.modal-image {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 15px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--secondary-color);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
}

.modal-prev,
.modal-next {
  background: rgba(4, 165, 245, 0.8);
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  color: white;
  font-size: 24px;
}

.modal-prev:hover,
.modal-next:hover {
  background: var(--secondary-color);
  transform: scale(1.1);
}

.modal-indicators {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.modal-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-indicator.active {
  background: var(--secondary-color);
  transform: scale(1.2);
}

.personal-info {
  background: rgba(26, 40, 50, 0.3);
  border: 1px solid rgba(4, 165, 245, 0.2);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.personal-info h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid rgba(4, 165, 245, 0.1);
}

.info-item:last-child {
  border-bottom: none;
}

.info-label {
  font-size: 16px;
  font-weight: 500;
  color: #b8c4d0;
  min-width: 120px;
}

.info-value {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-color);
  text-align: right;
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.detail-section {
  background: rgba(26, 40, 50, 0.3);
  border: 1px solid rgba(4, 165, 245, 0.2);
  border-radius: 20px;
  padding: 30px;
  backdrop-filter: blur(10px);
}

.detail-section h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.detail-section h3 i {
  color: var(--secondary-color);
  font-size: 28px;
}

.detail-section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #b8c4d0;
}

.interests-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.interest-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: rgba(4, 165, 245, 0.1);
  border: 1px solid rgba(4, 165, 245, 0.3);
  border-radius: 15px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);
}

.interest-item.reveal {
  opacity: 1;
  transform: translateY(0);
}

.interest-item:hover {
  border-color: var(--secondary-color);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 25px rgba(4, 165, 245, 0.3);
}

.interest-item i {
  font-size: 32px;
  color: var(--secondary-color);
}

.interest-item span {
  font-size: 14px;
  font-weight: 500;
  color: var(--primary-color);
  text-align: center;
}

.career-goals {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.goal-item {
  display: flex;
  gap: 20px;
  align-items: start;
}

.goal-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(4, 165, 245, 0.1);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.goal-icon i {
  font-size: 24px;
  color: var(--secondary-color);
}

.goal-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.goal-content p {
  font-size: 14px;
  font-weight: 400;
  color: #b8c4d0;
  margin: 0;
  line-height: 1.6;
}

/* Skills Section */
.skills {
  background: linear-gradient(135deg, #0f1b24 0%, #1a2832 50%, #12212b 100%);
  color: var(--text-color);
  padding: 80px 20px;
  position: relative;
}

.skills::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 80% 20%,
      rgba(4, 165, 245, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 20% 80%,
      rgba(4, 165, 245, 0.06) 0%,
      transparent 40%
    );
  pointer-events: none;
  z-index: 1;
}

.skills-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.skills-header {
  text-align: center;
  margin-bottom: 60px;
}

.skills-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.skills-header p {
  font-size: 18px;
  font-weight: 400;
  color: #b8c4d0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.skills-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.skills-category {
  background: rgba(26, 40, 50, 0.3);
  border: 1px solid rgba(4, 165, 245, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.skills-category h3 {
  font-size: 28px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.skills-category h3 i {
  color: var(--secondary-color);
  font-size: 32px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: rgba(15, 27, 36, 0.5);
  border: 1px solid rgba(4, 165, 245, 0.1);
  border-radius: 15px;
  transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(50px);
}

.skill-item.reveal {
  opacity: 1;
  transform: translateY(0);
}

.skill-item:hover {
  border-color: var(--secondary-color);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 15px 30px rgba(4, 165, 245, 0.4);
}

.skill-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(4, 165, 245, 0.1);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  flex-shrink: 0;
}

.skill-icon i {
  font-size: 30px;
  color: var(--secondary-color);
}

.skill-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skill-info h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin: 0;
}

.skill-bar {
  width: 100%;
  height: 8px;
  background: rgba(4, 165, 245, 0.2);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}

.skill-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--secondary-color) 0%, #0284c7 100%);
  border-radius: 10px;
  width: 0%;
  transition: width 1s ease-out;
  position: relative;
}

.skill-progress::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 100%
  );
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.skill-percentage {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  align-self: flex-end;
}

/* Projects Section */
.projects {
  background: linear-gradient(135deg, #12212b 0%, #0f1b24 50%, #1a2832 100%);
  color: var(--text-color);
  padding: 80px 20px;
  position: relative;
}

.projects::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(4, 165, 245, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 70% 80%,
      rgba(4, 165, 245, 0.06) 0%,
      transparent 40%
    );
  pointer-events: none;
  z-index: 1;
}

.projects-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.projects-header {
  text-align: center;
  margin-bottom: 60px;
}

.projects-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.projects-header p {
  font-size: 18px;
  font-weight: 400;
  color: #b8c4d0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.projects-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  background: rgba(26, 40, 50, 0.3);
  border: 1px solid rgba(4, 165, 245, 0.2);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(50px);
}

.project-card.reveal {
  opacity: 1;
  transform: translateY(0);
}

.project-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-10px) rotateX(5deg) scale(1.02);
  box-shadow: 0 25px 50px rgba(4, 165, 245, 0.3), 0 15px 30px rgba(0, 0, 0, 0.2);
}

.project-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
  transform: scale(1.1);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
  opacity: 1;
}

.project-links {
  display: flex;
  gap: 20px;
}

.project-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(4, 165, 245, 0.9);
  border-radius: 50%;
  color: var(--primary-color);
  font-size: 24px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.project-link:hover {
  background: var(--secondary-color);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 5px 15px rgba(4, 165, 245, 0.5);
}

.project-status {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-status.completed {
  background: rgba(34, 197, 94, 0.2);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.project-status.in-progress {
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.3);
}

.project-content {
  padding: 25px;
}

.project-title {
  font-size: 22px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.project-description {
  font-size: 14px;
  font-weight: 400;
  color: #b8c4d0;
  line-height: 1.6;
  margin-bottom: 20px;
}

.project-technologies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tech-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(4, 165, 245, 0.1);
  border: 1px solid rgba(4, 165, 245, 0.3);
  border-radius: 15px;
  font-size: 12px;
  font-weight: 500;
  color: var(--secondary-color);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: rgba(4, 165, 245, 0.2);
  border-color: var(--secondary-color);
  transform: scale(1.05);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #1a2832 0%, #12212b 50%, #0f1b24 100%);
  color: var(--text-color);
  padding: 80px 20px;
  position: relative;
}

.contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(4, 165, 245, 0.08) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(4, 165, 245, 0.06) 0%,
      transparent 40%
    );
  pointer-events: none;
  z-index: 1;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.contact-header {
  text-align: center;
  margin-bottom: 60px;
}

.contact-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-header p {
  font-size: 18px;
  font-weight: 400;
  color: #b8c4d0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-info-section h3,
.contact-form-section h3 {
  font-size: 32px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.contact-card {
  background: rgba(26, 40, 50, 0.5);
  border: 1px solid rgba(4, 165, 245, 0.2);
  border-radius: 15px;
  padding: 25px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
  transform-style: preserve-3d;
}

.contact-card:hover {
  border-color: var(--secondary-color);
  transform: translateY(-10px) rotateX(5deg) rotateY(2deg) scale(1.02);
  box-shadow: 0 20px 40px rgba(4, 165, 245, 0.3), 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(4, 165, 245, 0.1);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  margin-bottom: 15px;
}

.contact-icon i {
  font-size: 24px;
  color: var(--secondary-color);
}

.contact-details h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.contact-details p {
  font-size: 16px;
  font-weight: 400;
  color: #b8c4d0;
  margin: 0;
}

.contact-social {
  margin-top: 30px;
}

.contact-social h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-social-links {
  display: flex;
  gap: 15px;
}

.contact-social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(4, 165, 245, 0.1);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  color: var(--secondary-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.contact-social-links a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.contact-form {
  background: rgba(26, 40, 50, 0.3);
  border: 1px solid rgba(4, 165, 245, 0.2);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
}

.form-group {
  margin-bottom: 25px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  background: rgba(15, 27, 36, 0.8);
  border: 2px solid rgba(4, 165, 245, 0.3);
  border-radius: 10px;
  color: var(--text-color);
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 10px rgba(4, 165, 245, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #b8c4d0;
}

.btn-send {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--secondary-color) 0%, #0284c7 100%);
  color: var(--primary-color);
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-send:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(4, 165, 245, 0.4);
}

/* Footer Section */
.footer {
  background: var(--footer-gradient);
  color: var(--text-color);
  padding: 60px 0 0 0;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 70% 10%,
    rgba(4, 165, 245, 0.08) 0%,
    transparent 40%
  );
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.footer-section h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.footer-section p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #b8c4d0;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: rgba(4, 165, 245, 0.1);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  color: var(--secondary-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-links li {
  margin-bottom: 0;
}

.footer-links a {
  color: #b8c4d0;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  color: #b8c4d0;
}

.contact-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 18px;
  color: var(--secondary-color);
  border: 2px solid var(--secondary-color);
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
  min-width: 40px;
}

.contact-item i:hover {
  background-color: var(--secondary-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.contact-item span {
  font-size: 16px;
  font-weight: 400;
}

.footer-bottom {
  border-top: 1px solid rgba(184, 196, 208, 0.2);
  padding: 30px 0;
}

.footer-bottom p {
  margin: 0;
  font-size: 14px;
  color: #b8c4d0;
  text-align: center;
}
/* Responsive Design */
@media (max-width: 768px) {
  .header {
    padding: 15px 5%;
  }

  .home {
    padding: 80px 15px 20px 15px;
  }

  .logo {
    font-size: 20px;
  }

  .navbar {
    gap: 15px;
  }

  .navbar a {
    font-size: 16px;
  }

  .home-content {
    width: 100%;
    min-width: 300px;
    align-items: center;
  }

  .home-image {
    width: 60%;
  }

  .home-content h1 {
    font-size: 36px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .static-text {
    margin-bottom: 5px;
  }

  .home-content h3 {
    font-size: 22px;
  }

  .home-content p {
    font-size: 14px;
    margin: 20px 5% 5px 5%;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 12px 3%;
  }

  .home {
    padding: 70px 10px 20px 10px;
  }

  .logo {
    font-size: 18px;
  }

  .navbar {
    gap: 10px;
  }

  .navbar a {
    font-size: 14px;
  }

  .home-image {
    width: 80%;
  }

  .home-content h1 {
    font-size: 28px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .static-text {
    margin-bottom: 5px;
  }

  .home-content h3 {
    font-size: 18px;
  }

  .social-media {
    gap: 15px;
  }

  .social-media a {
    width: 35px;
    height: 35px;
    font-size: 20px;
  }
}

/* Footer Responsive */
@media (max-width: 768px) {
  .about-header h2 {
    font-size: 36px;
  }

  .about-header p {
    font-size: 16px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-personal {
    gap: 30px;
  }

  .about-image-gallery,
  .personal-info,
  .detail-section {
    padding: 25px;
  }

  .main-image {
    height: 250px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .gallery-grid img {
    height: 140px;
    object-position: top center;
  }

  .interests-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .info-value {
    text-align: left;
  }

  .skills-header h2 {
    font-size: 36px;
  }

  .skills-header p {
    font-size: 16px;
  }

  .skills-content {
    gap: 40px;
  }

  .skills-category {
    padding: 30px;
  }

  .skills-category h3 {
    font-size: 24px;
  }

  .skills-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .skill-item {
    padding: 15px;
  }

  .skill-icon {
    width: 50px;
    height: 50px;
  }

  .skill-icon i {
    font-size: 24px;
  }

  .projects-header h2 {
    font-size: 36px;
  }

  .projects-header p {
    font-size: 16px;
  }

  .projects-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }

  .project-card {
    transform: none;
  }

  .project-card:hover {
    transform: translateY(-5px) scale(1.01);
  }

  .project-image {
    height: 200px;
  }

  .project-content {
    padding: 20px;
  }

  .project-title {
    font-size: 20px;
  }

  .project-description {
    font-size: 13px;
  }

  .contact-header h2 {
    font-size: 36px;
  }

  .contact-header p {
    font-size: 16px;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-info-section h3,
  .contact-form-section h3 {
    font-size: 28px;
  }

  .contact-form {
    padding: 30px;
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .footer-section h3 {
    font-size: 24px;
  }

  .footer-section h4 {
    font-size: 18px;
  }

  .footer-links {
    flex-direction: column;
    gap: 8px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 60px 15px;
  }

  .about-header h2 {
    font-size: 28px;
  }

  .about-header p {
    font-size: 14px;
  }

  .about-personal {
    gap: 25px;
  }

  .about-image-gallery,
  .personal-info,
  .detail-section {
    padding: 20px;
  }

  .main-image {
    height: 300px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-grid img {
    height: 100px;
    object-fit: cover;
    object-position: top center;
  }

  .personal-info h3,
  .detail-section h3 {
    font-size: 20px;
  }

  .interests-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .interest-item {
    flex-direction: row;
    justify-content: flex-start;
    padding: 15px;
  }

  .interest-item i {
    font-size: 24px;
  }

  .goal-item {
    gap: 15px;
  }

  .goal-icon {
    width: 40px;
    height: 40px;
  }

  .goal-icon i {
    font-size: 20px;
  }

  .goal-content h4 {
    font-size: 16px;
  }

  .skills {
    padding: 60px 15px;
  }

  .skills-header h2 {
    font-size: 28px;
  }

  .skills-header p {
    font-size: 14px;
  }

  .skills-content {
    gap: 30px;
  }

  .skills-category {
    padding: 20px;
  }

  .skills-category h3 {
    font-size: 20px;
    gap: 10px;
  }

  .skills-category h3 i {
    font-size: 24px;
  }

  .skill-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }

  .skill-icon {
    width: 45px;
    height: 45px;
  }

  .skill-icon i {
    font-size: 22px;
  }

  .skill-info h4 {
    font-size: 16px;
  }

  .contact {
    padding: 60px 15px;
  }

  .contact-header h2 {
    font-size: 28px;
  }

  .contact-header p {
    font-size: 14px;
  }

  .contact-info-section h3,
  .contact-form-section h3 {
    font-size: 24px;
  }

  .contact-card {
    padding: 20px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
  }

  .contact-icon i {
    font-size: 20px;
  }

  .contact-details h4 {
    font-size: 16px;
  }

  .contact-details p {
    font-size: 14px;
  }

  .contact-form {
    padding: 20px;
  }

  .form-group input,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 14px;
  }

  .contact-social-links a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .projects {
    padding: 60px 15px;
  }

  .projects-header h2 {
    font-size: 28px;
  }

  .projects-header p {
    font-size: 14px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card:hover {
    transform: translateY(-3px) scale(1.01);
  }

  .project-image {
    height: 180px;
  }

  .project-content {
    padding: 15px;
  }

  .project-title {
    font-size: 18px;
  }

  .project-description {
    font-size: 12px;
  }

  .project-link {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .tech-tag {
    font-size: 11px;
    padding: 3px 10px;
  }

  .footer {
    padding: 40px 0 0 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .footer-section h3 {
    font-size: 22px;
  }

  .footer-section h4 {
    font-size: 16px;
  }

  .contact-item i {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .contact-item span {
    font-size: 14px;
  }
}
