:root {
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --secondary: #7c3aed;
  --dark: #0f172a;
  --light: #f8fafc;
  --gray: #94a3b8;
  --accent: #f97316;
  --transition: all 0.3s ease;
  --glass-bg: rgba(25, 25, 50, 0.4);
  --glass-border: rgba(92, 119, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

body {
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  color: var(--light);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 100px 0;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--primary);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1rem;
  box-shadow: 0 4px 6px rgba(37, 99, 235, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(37, 99, 235, 0.3);
}

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

.btn:hover:before {
  left: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 10;
}

.section-header h2 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #00dbde, #fc00ff, #00dbde);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  animation: gradientShift 8s linear infinite;
  background-size: 300% 300%;
}

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

.section-header p {
  font-size: 1.4rem;
  color: #bdc3c7;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 0;
  transition: var(--transition);
  display: flex;
  justify-content: center;
  align-items: center;

  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(214, 11, 204, 0.158);
  /* border: 3px solid; */
  /* border-image: linear-gradient(45deg, #00f5a0, #00d9f5, #007cf0, #00f5a0); */
  border-image-slice: 1;
  animation: borderAnimation 4s linear infinite;
}

/* @keyframes borderAnimation {
  0% {
    border-image-source: linear-gradient(
      45deg,
      #00f5a0,
      #00d9f5,
      #007cf0,
      #00f5a0
    );
  }
  50% {
    border-image-source: linear-gradient(
      45deg,
      #007cf0,
      #00f5a0,
      #00d9f5,
      #007cf0
    );
  }
  100% {
    border-image-source: linear-gradient(
      45deg,
      #00f5a0,
      #00d9f5,
      #007cf0,
      #00f5a0
    );
  }
} */

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

.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
}

.logo span {
  background: linear-gradient(45deg, #3498db, #8e44ad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  font-size: 1rem;
  background: linear-gradient(45deg, #3498db, #8e44ad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  transition: var(--transition);
}

.nav-links a:hover {
  opacity: 0.8;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  max-width: 850px;
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 3;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 15px;
  background: linear-gradient(45deg, #3498db, #8e44ad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
  display: inline-block;
  animation: fadeUp 1s forwards 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.hero p {
  font-size: 1.4rem;
  color: #cbd5e1;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.6s;
}

.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s forwards 0.9s;
}

/* Creative Background Elements */
.creative-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(20px);
  animation: float 15s infinite linear;
}

.shape-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  top: -300px;
  left: -300px;
  animation-duration: 25s;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #f97316, #f43f5e);
  bottom: -200px;
  right: -200px;
  animation-duration: 30s;
  animation-delay: 2s;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #10b981, #0ea5e9);
  top: 50%;
  left: 80%;
  animation-duration: 20s;
  animation-delay: 1s;
}

.bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

/* About Section */
.about {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-motion {
  flex: 1;
  min-width: 300px;
  position: relative;
  height: 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h3 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: white;
  position: relative;
  display: inline-block;
}

.about-text h3::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
  bottom: -5px;
  left: 0;
}

.about-text p {
  margin-bottom: 20px;
  color: #ecf0f1;
  font-size: 1.1rem;
}

/* Motion Graphic Container */

.about-motion {
  margin-bottom: 220px;
}

.motion-container {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(52, 152, 219, 0.6);
  background: var(--glass-bg);
  border: 3px solid var(--glass-border);
  display: flex;
  justify-content: center;
  align-items: center;
  /* padding-bottom: 100px; */
}

.motion-core {
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a2a6c, #3498db);
  box-shadow: 0 0 20px rgba(52, 152, 219, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.motion-core::before {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  animation: pulse 3s infinite ease-in-out;
}

.initials {
  font-size: 4rem;
  font-weight: 700;
  color: white;
  z-index: 2;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.7);
}

.control-panel {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  background: rgba(25, 40, 65, 0.8);
  padding: 10px 20px;
  border-radius: 30px;
  backdrop-filter: blur(5px);
  z-index: 10;
}

.control-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(52, 152, 219, 0.7);
  border: none;
  color: white;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}

.control-btn:hover {
  background: var(--accent);
  transform: scale(1.1);
}

.control-btn.active {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.skills {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.skill-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(25, 40, 65, 0.5);
  padding: 15px;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.skill-item:hover {
  transform: translateY(-5px);
  background: rgba(52, 152, 219, 0.2);
}

.skill-icon {
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  background: linear-gradient(45deg, #00dbde, #fc00ff);
  color: white;
}

.skill-text h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--light);
}

.skill-text p {
  font-size: 0.9rem;
  color: #bdc3c7;
  margin-bottom: 0;
}

.education {
  display: flex;
  gap: 20px;
  background: rgba(25, 40, 65, 0.5);
  padding: 20px;
  border-radius: 10px;
  margin-top: 30px;
}

.education-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #00dbde, #fc00ff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  color: white;
}

.education-text h4 {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: var(--light);
}

.education-text p {
  color: #bdc3c7;
  font-size: 1rem;
  margin-bottom: 10px;
}

/* Portfolio Section */
.portfolio {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
}

/* Portfolio Filters */
.portfolio-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
  position: relative;
  z-index: 10;
}

.filter-btn {
  padding: 12px 25px;
  background: rgba(44, 82, 130, 0.4);
  border: 1px solid rgba(76, 201, 240, 0.3);
  color: #a9d6e5;
  border-radius: 50px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.filter-btn:hover {
  background: rgba(76, 201, 240, 0.2);
  transform: translateY(-3px);
}

.filter-btn.active {
  background: linear-gradient(45deg, #4cc9f0, #4361ee);
  color: white;
  box-shadow: 0 5px 15px rgba(67, 97, 238, 0.4);
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
}

.portfolio-item {
  background: rgba(25, 40, 65, 0.7);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  z-index: 2;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(76, 201, 240, 0.2);
  animation: fallIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  transform-origin: top;
  opacity: 0;
}

.portfolio-item:nth-child(1) {
  animation-delay: 0.1s;
}
.portfolio-item:nth-child(2) {
  animation-delay: 0.3s;
}
.portfolio-item:nth-child(3) {
  animation-delay: 0.5s;
}
.portfolio-item:nth-child(4) {
  animation-delay: 0.7s;
}
.portfolio-item:nth-child(5) {
  animation-delay: 0.9s;
}
.portfolio-item:nth-child(6) {
  animation-delay: 1.1s;
}

@keyframes fallIn {
  0% {
    transform: translateY(-100vh) rotate(20deg);
    opacity: 0;
  }
  70% {
    transform: translateY(30px) rotate(-5deg);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0) rotate(0);
    opacity: 1;
  }
}

.portfolio-item:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(67, 97, 238, 0.4);
}

.portfolio-img {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img img {
  transform: scale(1.1);
}

.portfolio-content {
  padding: 25px;
}

.portfolio-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #4cc9f0;
}

.portfolio-content p {
  color: #caf0f8;
  line-height: 1.6;
  margin-bottom: 20px;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-tag {
  background: rgba(76, 201, 240, 0.2);
  color: #90e0ef;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.portfolio-item:hover .portfolio-tag {
  background: rgba(76, 201, 240, 0.4);
  color: white;
  transform: translateY(-3px);
}

/* Contact Section */
.contact {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  position: relative;
  z-index: 5;
}

.contact-info {
  flex: 1;
  min-width: 300px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 0.3s;
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.contact-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(92, 119, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #00dbde, #fc00ff);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(252, 0, 255, 0.3);
  animation: pulse 2s infinite ease-in-out;
}

.contact-text h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #00dbde;
}

.contact-text a,
.contact-text p {
  color: #f0f0f0;
  font-size: 0.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
}

.contact-text a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, #00dbde, #fc00ff);
  transition: width 0.3s ease;
}

.contact-text a:hover {
  color: #fff;
}

.contact-text a:hover::after {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.social-links a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: white;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(92, 119, 255, 0.3);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00dbde, #fc00ff);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.social-links a:hover {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 10px 20px rgba(252, 0, 255, 0.3);
  border-color: transparent;
}

.social-links a:hover::before {
  opacity: 1;
}

.contact-form {
  flex: 1;
  min-width: 300px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
  animation-delay: 0.6s;
}

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

.form-group label {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #bdc3c7;
}

.form-control {
  width: 100%;
  padding: 15px 20px;
  border-radius: 15px;
  border: 1px solid rgba(92, 119, 255, 0.3);
  background: rgba(25, 25, 50, 0.3);
  color: white;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.form-control:focus {
  outline: none;
  border-color: #00dbde;
  box-shadow: 0 0 15px rgba(0, 219, 222, 0.3);
  background: rgba(25, 25, 50, 0.5);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Footer */
footer {
  background: rgba(15, 23, 42, 0.8);
  backdrop-filter: blur(10px);
  color: #94a3b8;
  padding: 80px 0 20px;
  text-align: center;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(76, 201, 240, 0.2);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.wave-divider {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.wave-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 80px;
}

.footer-content {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  display: inline-block;
  position: relative;
  text-decoration: none;
  background: linear-gradient(45deg, #00dbde, #fc00ff, #00dbde);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  background-size: 300% 300%;
  animation: gradientShift 8s linear infinite;
}

footer p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer-social-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 40px;
}

.nav-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  /* margin-bottom: 40px; */
  font-size: 1.8rem;
  color: white;
  backdrop-filter: blur(5px);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-icons a {
  color: rgb(232, 199, 245);
  /* background: linear-gradient(45deg, #00dbde, #fc00ff);
  border: 1px solid rgba(76, 201, 240, 0.4);
  width: 40px;
  height: 40px; */
  border-radius: 9999px;
  text-align: center;
}

/* .nav-icons a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 10px 25px rgba(76, 201, 240, 0.4);
  border-color: transparent;
} */

.footer-social-links a {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.8rem;
  color: white;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(76, 201, 240, 0.3);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #00dbde, #fc00ff);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.footer-social-links a:hover {
  transform: translateY(-10px) scale(1.1);
  box-shadow: 0 10px 25px rgba(76, 201, 240, 0.4);
  border-color: transparent;
}

.footer-social-links a:hover::before {
  opacity: 1;
}

.copyright {
  margin-top: 40px;
  font-size: 1rem;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.copyright p {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.copyright i {
  color: #ff6b6b;
  animation: heartbeat 1.2s infinite;
}

/* Floating particles background */
.footer-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(76, 201, 240, 0.15);
  animation: float 20s infinite linear;
}

/* Animations */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, 40px) rotate(90deg);
  }
  50% {
    transform: translate(40px, 0) rotate(180deg);
  }
  75% {
    transform: translate(20px, -40px) rotate(270deg);
  }
  100% {
    transform: translate(0, 0) rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.8);
    opacity: 0.7;
  }
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
  75% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 3rem;
  }

  .section-header h2 {
    font-size: 2.8rem;
  }

  .about-content {
    flex-direction: column;
  }

  .contact-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero-btns {
    flex-direction: column;
    gap: 15px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

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

  .footer-logo {
    font-size: 2.5rem;
  }

  footer p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .footer-social-links a {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }
}
