body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #0d1b2a, #1b263b);
  color: #ffffff;
  scroll-behavior: smooth;
}

h1,
h2,
h3 {
  font-family: 'Poppins', sans-serif;
  margin: 0;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(20, 30, 48, 0.85), rgba(36, 59, 85, 0.85));
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px 40px;
  z-index: 1000;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
}

.navbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #ff6600, #ffcc00, #00d4ff, #ff00cc);
  background-size: 300% 100%;
  animation: borderSlide 6s linear infinite;
}

@keyframes borderSlide {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 300% 0;
  }
}

.navbar:hover {
  background: linear-gradient(135deg, rgba(20, 30, 48, 0.95), rgba(36, 59, 85, 0.95));
  box-shadow: 0 8px 40px rgba(255, 102, 0, 0.4);
}

.hamburger {
  width: 28px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: absolute;
  left: 15px;
  top: 10%;
  transform: translateY(-50%);
  z-index: 1200;
  display: none;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background: #fff;
  transition: 0.3s;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 28px;
  flex-wrap: nowrap;
}

.nav-links li a {
  text-decoration: none;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 16px;
  border-radius: 30px;
  transition: all 0.4s ease;
  background: rgba(255, 255, 255, 0.05);
  white-space: nowrap;
  overflow: hidden;
  border: 2px solid transparent;
  background-clip: padding-box;
}

.nav-links li a::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(90deg,
      #ff6600,
      #ffcc00,
      #00d4ff,
      #ff00cc,
      #ff6600);
  background-size: 300% 100%;
  animation: borderFlow 6s linear infinite;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: 0;
}

.nav-links li a:hover {
  color: #ffcc00;
  background: rgba(255, 102, 0, 0.15);
  box-shadow:
    0 0 15px rgba(255, 102, 0, 0.7),
    0 0 30px rgba(255, 0, 204, 0.4);
}

.nav-links li a.active {
  background: linear-gradient(90deg, #ff6600, #ff00cc);
  color: #fff;
  box-shadow:
    0 0 25px rgba(255, 102, 0, 0.9),
    0 0 45px rgba(255, 0, 204, 0.6);
}

@keyframes borderFlow {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 300% 0;
  }
}

.home {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1b2a, #1b263b, #16213e, #1f4068);
  background-size: 400% 400%;
  animation: auroraMove 15s ease infinite;
  color: #fff;
}

.home::before {
  display: none;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 102, 0, 0.25), transparent 70%),
    radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.25), transparent 70%);
  z-index: -1;
  animation: gradientShift 12s ease-in-out infinite alternate;
}

.home-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 20px;
  animation: fadeInUp 2s ease forwards;
}

.home-content h1 {
  font-size: 4rem;
  margin-bottom: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #ff6600, #ffcc00, #ff00cc, #00d4ff);
  background-size: 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: glowText 6s ease infinite alternate;
}

.home-content h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #ffd966;
  text-shadow: 0 0 25px rgba(255, 150, 0, 0.7);
}

.home-subtitle {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: #ddd;
}

.home-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.btn {
  padding: 14px 35px;
  border-radius: 50px;
  font-weight: 600;
  color: #fff;
  text-decoration: none;
  background: linear-gradient(135deg, #ff6600, #ff00cc, #00d4ff);
  background-size: 200%;
  box-shadow: 0 5px 25px rgba(255, 102, 0, 0.5);
  transition: all 0.4s ease;
}

.btn:hover {
  background-position: right;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 35px rgba(255, 102, 0, 0.8);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid #ff6600;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover {
  background: #ff6600;
  border-color: transparent;
  color: #fff;
}

.floating-shapes span {
  position: absolute;
  display: block;
  width: 25px;
  height: 25px;
  background: rgba(255, 102, 0, 0.4);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.6);
}

.floating-shapes span:nth-child(1) {
  top: 12%;
  left: 18%;
  animation-delay: 0s;
}

.floating-shapes span:nth-child(2) {
  top: 35%;
  left: 75%;
  animation-delay: 2s;
  background: rgba(0, 212, 255, 0.4);
  border-radius: 0;
}

.floating-shapes span:nth-child(3) {
  top: 55%;
  left: 40%;
  animation-delay: 4s;
  background: rgba(255, 0, 204, 0.4);
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}

.floating-shapes span:nth-child(4) {
  top: 72%;
  left: 25%;
  animation-delay: 1s;
}

.floating-shapes span:nth-child(5) {
  top: 85%;
  left: 60%;
  animation-delay: 3s;
  background: rgba(255, 255, 0, 0.4);
  border-radius: 50%;
}

@keyframes auroraMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes glowText {
  0% {
    background-position: 0%;
  }

  100% {
    background-position: 100%;
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.7;
  }

  50% {
    transform: translateY(-30px) rotate(45deg);
    opacity: 0.5;
  }

  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.7;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 100% 100%;
  }
}

.about {
  padding: 100px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1b2a, #1b263b, #16213e);
}

.about::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: linear-gradient(60deg, rgba(255, 102, 0, 0.1), rgba(255, 204, 0, 0.1), rgba(255, 102, 0, 0.1));
  filter: blur(120px);
  z-index: -2;
  animation: gradientOverlay 25s ease-in-out infinite;
}

.about::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.15), transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  z-index: -1;
  animation: radialMove 30s ease-in-out infinite alternate;
}

.about h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ff6600;
  letter-spacing: 1px;
  text-shadow: 0 0 12px rgba(255, 102, 0, 0.7);
  background: linear-gradient(90deg, #ff6600, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: textGlow 3s ease-in-out infinite alternate;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  max-width: 900px;
  background: linear-gradient(145deg, rgba(27, 38, 59, 0.75), rgba(27, 38, 59, 0.65));
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 35px;
  border: 1px solid rgba(255, 102, 0, 0.4);
  box-shadow: 0 10px 35px rgba(255, 102, 0, 0.25), 0 0 20px rgba(255, 204, 0, 0.15);
  transition: transform 0.5s, box-shadow 0.5s, border 0.5s;
  position: relative;
}

.about-content:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(255, 102, 0, 0.6), 0 0 60px rgba(255, 204, 0, 0.3);
  border: 1px solid rgba(255, 102, 0, 0.8);
}

.about-content .photo img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 4px solid #ff6600;
  transition: transform 0.5s, box-shadow 0.5s, border 0.5s;
  box-shadow: 0 0 20px rgba(255, 102, 0, 0.5);
}

.about-content .photo img:hover {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.6), 0 0 30px rgba(255, 204, 0, 0.3);
  border: 4px solid #ffcc00;
}

.about-content .text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
  text-align: center;
  max-width: 650px;
  position: relative;
  text-shadow: 0 0 8px rgba(255, 102, 0, 0.35);
}

.about-content .text span {
  color: #ffcc00;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
  background: linear-gradient(90deg, rgba(255, 102, 0, 0.2), rgba(255, 204, 0, 0.2));
  padding: 2px 5px;
  border-radius: 4px;
}

.about-content::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(255, 102, 0, 0.1);
  border-radius: 50%;
  top: -30px;
  right: -30px;
  filter: blur(50px);
  z-index: -1;
  animation: floatShape 10s ease-in-out infinite alternate;
}

.about-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 20px;
  border: 1px solid rgba(255, 102, 0, 0.2);
  box-shadow: 0 0 25px rgba(255, 102, 0, 0.4), 0 0 50px rgba(255, 204, 0, 0.2) inset;
  z-index: -1;
}

@keyframes gradientOverlay {
  0% {
    background-position: 0% 0%;
  }

  50% {
    background-position: 100% 100%;
  }

  100% {
    background-position: 0% 0%;
  }
}

@keyframes radialMove {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }

  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes floatShape {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-20px) rotate(45deg);
    opacity: 0.3;
  }

  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.5;
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
  }

  50% {
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
  }

  100% {
    text-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
  }
}

.skills {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1b2a, #1b263b, #16213e);
}

.skills::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: linear-gradient(45deg, rgba(255, 102, 0, 0.05), rgba(255, 204, 0, 0.05), rgba(255, 102, 0, 0.05));
  filter: blur(150px);
  z-index: -2;
  animation: skillsGlow 30s linear infinite;
}

.skills h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #ff6600;
  text-shadow: 0 0 12px rgba(255, 102, 0, 0.6);
  background: linear-gradient(90deg, #ff6600, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: textGlow 3s ease-in-out infinite alternate;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.skills-list li {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 120px;
  padding: 20px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(27, 38, 59, 0.75), rgba(27, 38, 59, 0.65));
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 102, 0, 0.25);
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2), 0 0 15px rgba(255, 204, 0, 0.1);
  transition: transform 0.5s, box-shadow 0.5s, border 0.5s;
  position: relative;
}

.skills-list li:hover {
  transform: scale(1.15);
  box-shadow: 0 20px 50px rgba(255, 102, 0, 0.6), 0 0 60px rgba(255, 204, 0, 0.3);
  border: 1px solid rgba(255, 102, 0, 0.8);
}

.skills-list li img {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(255, 102, 0, 0.6));
  transition: transform 0.5s, filter 0.5s;
}

.skills-list li:hover img {
  transform: scale(1.1) rotate(-5deg);
  filter: drop-shadow(0 0 20px rgba(255, 204, 0, 0.7));
}

.skills-list li span {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 102, 0, 0.5);
  background: linear-gradient(90deg, rgba(255, 102, 0, 0.2), rgba(255, 204, 0, 0.2));
  padding: 2px 6px;
  border-radius: 4px;
  transition: text-shadow 0.5s, background 0.5s;
}

.skills-list::after {
  content: '';
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(255, 102, 0, 0.05);
  border-radius: 50%;
  top: 20%;
  left: 10%;
  filter: blur(50px);
  z-index: -1;
  animation: floatShape 15s ease-in-out infinite alternate;
}

@keyframes skillsGlow {
  0% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(30px) translateY(20px);
  }

  100% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes floatShape {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-15px) rotate(45deg);
    opacity: 0.3;
  }

  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.5;
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
  }

  50% {
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
  }

  100% {
    text-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
  }
}

.projects {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1b2a, #16213e, #1b263b);
}

.projects::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: linear-gradient(45deg, rgba(255, 102, 0, 0.05), rgba(255, 204, 0, 0.05), rgba(255, 102, 0, 0.05));
  filter: blur(150px);
  z-index: -2;
  animation: projectsGlow 25s linear infinite;
}

.projects h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #ff6600;
  background: linear-gradient(90deg, #ff6600, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 12px rgba(255, 102, 0, 0.6);
  animation: textGlow 3s ease-in-out infinite alternate;
}

.projects-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

.project-card {
  position: relative;
  width: 350px;
  background: rgba(27, 38, 59, 0.6);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  border: 1px solid rgba(255, 102, 0, 0.25);
  padding: 20px;
  overflow: hidden;
  transition: transform 0.5s, box-shadow 0.5s, border 0.5s;
  box-shadow: 0 10px 30px rgba(255, 102, 0, 0.2);
}

.project-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 50px rgba(255, 102, 0, 0.6), 0 0 30px rgba(255, 204, 0, 0.3);
  border: 1px solid rgba(255, 102, 0, 0.8);
}

.project-card img {
  width: 100%;
  border-radius: 20px;
  margin-bottom: 15px;
  transition: transform 0.5s, box-shadow 0.5s;
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.2);
}

.project-card:hover img {
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5);
}

.project-card h3 {
  color: #ff6600;
  margin-bottom: 12px;
  font-size: 1.3rem;
  background: linear-gradient(90deg, #ff6600, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 8px rgba(255, 102, 0, 0.5);
}

.project-card p {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 12px;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0;
}

.tech-stack span {
  background: linear-gradient(135deg, #ff6600, #ffcc00);
  color: #fff;
  padding: 5px 12px;
  border-radius: 12px;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.4);
  transition: transform 0.4s, box-shadow 0.4s;
}

.tech-stack span:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.6);
}

.project-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.project-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff6600, #ff00cc, #00d4ff);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(255, 102, 0, 0.5);
  transition: transform 0.4s, box-shadow 0.4s;
}

.project-buttons a:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(26, 188, 156, 0.6);
}

.projects-container::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 102, 0, 0.05);
  border-radius: 50%;
  top: 10%;
  right: 5%;
  filter: blur(60px);
  z-index: -1;
  animation: floatShape 20s ease-in-out infinite alternate;
}

@keyframes projectsGlow {
  0% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(30px) translateY(20px);
  }

  100% {
    transform: translateX(0) translateY(0);
  }
}

@keyframes floatShape {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.5;
  }

  50% {
    transform: translateY(-15px) rotate(45deg);
    opacity: 0.3;
  }

  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.5;
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
  }

  50% {
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
  }

  100% {
    text-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
  }
}

.stats {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #0d1b2a, #16213e, #1b263b);
  overflow: hidden;
}

.stats::before,
.stats::after {
  content: '';
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  z-index: -2;
  animation: floatGlow 20s ease-in-out infinite alternate;
}

.stats::before {
  top: 10%;
  left: 5%;
  background: rgba(255, 102, 0, 0.3);
}

.stats::after {
  bottom: 10%;
  right: 5%;
  background: rgba(255, 204, 0, 0.2);
}

.stats h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #ff6600;
  background: linear-gradient(90deg, #ff6600, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
  animation: textGlow 3s ease-in-out infinite alternate;
}

.stats-images {
  background: rgba(27, 38, 59, 0.55);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 102, 0, 0.25);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.2);
  transition: transform 0.4s, box-shadow 0.4s;
}

.stats-images:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(255, 102, 0, 0.4);
}

.stats-images img {
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  border: 2px solid rgba(255, 102, 0, 0.4);
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.3);
  transition: transform 0.4s, box-shadow 0.4s, border 0.4s;
}

.stats-images img:hover {
  transform: scale(1.03);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5);
  border-color: rgba(255, 102, 0, 0.8);
}

@keyframes floatGlow {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.15;
  }

  50% {
    transform: translateY(-20px) translateX(15px);
    opacity: 0.1;
  }

  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.15;
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
  }

  50% {
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
  }

  100% {
    text-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
  }
}

.calendar {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #0d1b2a, #16213e, #1b263b);
  overflow: hidden;
}

.calendar::before,
.calendar::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  z-index: -2;
  animation: floatGlow 22s ease-in-out infinite alternate;
}

.calendar::before {
  top: 15%;
  left: 10%;
  background: rgba(255, 102, 0, 0.3);
}

.calendar::after {
  bottom: 15%;
  right: 10%;
  background: rgba(255, 204, 0, 0.2);
}

.calendar h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #ff6600;
  background: linear-gradient(90deg, #ff6600, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
  animation: textGlow 3s ease-in-out infinite alternate;
}

.github-calendar img {
  width: 100%;
  max-width: 1000px;
  max-height: 400px;
  border-radius: 20px;
  background: rgba(27, 38, 59, 0.55);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 102, 0, 0.25);
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.2);
  transition: transform 0.4s, box-shadow 0.4s, border 0.4s;
}

.github-calendar img:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(255, 102, 0, 0.5);
  border-color: rgba(255, 102, 0, 0.8);
}

@keyframes floatGlow {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.15;
  }

  50% {
    transform: translateY(-15px) translateX(10px);
    opacity: 0.1;
  }

  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.15;
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
  }

  50% {
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
  }

  100% {
    text-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
  }
}

.contact {
  padding: 100px 20px;
  text-align: center;
  position: relative;
  background: linear-gradient(135deg, #0d1b2a, #16213e, #1b263b);
  overflow: hidden;
}

.contact::before,
.contact::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  z-index: -2;
  animation: floatGlow 25s ease-in-out infinite alternate;
}

.contact::before {
  top: 10%;
  left: 5%;
  background: rgba(255, 102, 0, 0.3);
}

.contact::after {
  bottom: 10%;
  right: 5%;
  background: rgba(255, 204, 0, 0.2);
}

.contact h2 {
  font-size: 2rem;
  margin-bottom: 50px;
  color: #ff6600;
  background: linear-gradient(90deg, #ff6600, #ffcc00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  text-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
  animation: textGlow 3s ease-in-out infinite alternate;
}

.contact-info {
  background: rgba(27, 38, 59, 0.55);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  border: 1px solid rgba(255, 102, 0, 0.25);
  padding: 40px 30px;
  display: inline-block;
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.2);
}

.contact-info:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(255, 102, 0, 0.5);
}

.contact-info p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.05rem;
  margin: 12px 0;
  color: #fff;
  line-height: 1.6;
}

.contact-info i {
  color: #ff6600;
  font-size: 1.2rem;
}

.contact-info a {
  color: #ffcc00;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.contact-info a:hover {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 204, 0, 0.8);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 25px 0;
}

.social-links i {
  color: #fff;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ff6600, #ffcc00);
  box-shadow: 0 2px 8px rgba(255, 102, 0, 0.4);
  border-radius: 50%;
  transition: all 0.3s ease;
  color: #fff;
}

.social-links a:hover {
  background: rgba(255, 102, 0, 0.6);
  transform: scale(1.1);
}

.resume-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 35px;
  border-radius: 50px;
  border: 1px solid rgba(255, 102, 0, 0.4);
  background: linear-gradient(135deg, #ff6600, #ff00cc, #00d4ff);
  box-shadow: 0 5px 20px rgba(255, 102, 0, 0.5);
  transition: all 0.4s ease;
  color: #ffcc00;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.4s;
  box-shadow: 0 10px 25px rgba(255, 102, 0, 0.2);
}

.resume-btn:hover {
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(26, 188, 156, 0.6);
}

@keyframes floatGlow {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0.12;
  }

  50% {
    transform: translateY(-15px) translateX(10px);
    opacity: 0.08;
  }

  100% {
    transform: translateY(0) translateX(0);
    opacity: 0.12;
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
  }

  50% {
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
  }

  100% {
    text-shadow: 0 0 12px rgba(255, 102, 0, 0.5);
  }
}

@media (min-width: 992px) {
  .about-content {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1100px;
  }

  .about-content .photo {
    flex: 1;
    display: flex;
    justify-content: center;
  }

  .about-content .photo img {
    width: 250px;
    height: 250px;
  }

  .about-content .text {
    flex: 2;
    text-align: left;
  }
}


@media (min-width: 1200px) {
  .home-content h1 {
    font-size: 5rem;
  }

  .home-content h2 {
    font-size: 2.2rem;
  }

  .skills-list li {
    width: 140px;
    padding: 25px;
  }

  .project-card {
    width: 380px;
  }

  .stats-images img {
    max-width: 500px;
  }

  .github-calendar img {
    max-width: 1200px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .navbar {
    padding: 10px 25px;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
  }

  .nav-links {
    gap: 18px;
  }

  .nav-links li a {
    padding: 10px 16px;
    font-size: 1rem;
  }

  .home {
    padding-top: 80px;
  }

  .home-content h1 {
    font-size: 3.5rem;
  }

  .home-content h2 {
    font-size: 1.6rem;
  }

  .home-subtitle {
    font-size: 1.1rem;
  }

  .home-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .skills-list {
    gap: 20px;
  }

  .skills-list li {
    width: 110px;
    padding: 18px;
  }

  .project-card {
    width: 300px;
  }

  .project-buttons a {
    width: 50px;
    height: 50px;
  }

  .stats-images {
    flex-direction: column;
    gap: 20px;
  }

  .github-calendar img {
    max-width: 800px;
    max-height: 300px;
  }

  .social-links a {
    width: 50px;
    height: 50px;
  }

  .contact-info {
    padding: 30px 20px;
  }
}

@media (max-width: 767px) {
  .hamburger {
    display: flex;
    right: 0;
    left: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }

  .nav-links {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    background: rgba(20, 30, 48, 0.95);
    width: 120px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-radius: 8px;
    padding: 15px 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 1100;
  }

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

  .nav-links li a {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    font-size: 0.85rem;
    color: #fff;
    background: transparent;
    border-radius: 5px;
    border: none;
    box-shadow: none;
    white-space: normal;
    transition: background 0.3s, color 0.3s;
  }

  .nav-links li a:hover {
    background: rgba(255, 102, 0, 0.2);
  }

  .nav-links li a::before {
    display: none;
  }

  .home {
    padding-top: 10px;
  }

  .home-content h1 {
    font-size: 2.5rem;
  }

  .home-content h2 {
    font-size: 1.4rem;
  }

  .home-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .home-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .skills-list {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .skills-list li {
    width: 100px;
    padding: 15px;
  }

  .project-card {
    width: 90%;
    margin: 0 auto;
  }

  .project-buttons a {
    width: 45px;
    height: 45px;
  }

  .stats-images {
    flex-direction: column;
    gap: 15px;
  }

  .github-calendar img {
    max-width: 100%;
    max-height: 250px;
  }

  .contact-info {
    width: 95%;
    padding: 25px 15px;
  }

  .social-links a {
    width: 45px;
    height: 45px;
  }
}