/* Custom Styles */
#themeSwitch:checked {
  background-color: #ff1493; /* Pink color when active */
}

/* Royal blue color when switch is on */
#themeSwitch.royal-blue {
  background-color: #4169e1;
}

/* Adjust the switch handle color */
#themeSwitch:checked::before {
  background-color: white; /* Keep handle color white */
}

/* Inactive state of switch */
#themeSwitch {
  background-color: #ccc; /* Default gray color */
}

:root {
  --primary-color: #ff1493;
  --secondary-color: #121212;
  /* --accent-color: #1f1f1f; */
  --accent-color: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  --text-color: #ffffff;
}

body {
  padding-top: 56px;
  font-family: "Inter", sans-serif;
  background-color: var(--secondary-color);
  color: var(--text-color);
}

html {
  scroll-behavior: smooth;
}

/* Profile Image */
.profile-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  position: relative;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
}

.name-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Rest of the existing styles remain the same */
/* Navbar */
.navbar {
  background-color: rgba(18, 18, 18, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 20, 147, 0.1);
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
}

.navbar-brand i {
  color: var(--primary-color);
}

.nav-link {
  text-align: end;
  position: relative;
  padding: 0.5rem 1rem;
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: 0;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}

/* Hero Section */
.hero {
  /* height: 80vh; */
  background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)),
    url("https://source.unsplash.com/random/1920x1080/?coding");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-color);
}

.typing-container {
  min-height: 80px;
}

.typed-text {
  color: var(--primary-color);
  font-weight: bold;
}

.typed-text::after {
  content: "|";
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Skills Section */
.skill-card {
  background: var(--accent-color);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 20, 147, 0.1);
}

/* .skill-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(255, 20, 147, 0.2);
  border-color: var(--primary-color);
} */

.skill-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.progress {
  height: 0.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
}

.progress-bar {
  background-color: var(--primary-color);
  /* transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1); */
}

/* Projects Section */
.project-card {
  background: var(--accent-color);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 20, 147, 0.1);
  height: 100%;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(255, 20, 147, 0.2);
  border-color: var(--primary-color);
}

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

.project-image img {
  width: 100%;
  height: 200px !important;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.project-content {
  padding: 1.5rem;
}

.tech-stack {
  margin: 1rem 0;
}

.tech-stack .badge {
  margin-right: 0.5rem;
  background-color: var(--primary-color);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
}

.btn-outline-primary {
  color: var(--primary-color);
  border-color: var(--primary-color);
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  color: white;
}

/* Contact Form */
.contact-form {
  background: var(--accent-color);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.1);
  border: 1px solid rgba(255, 20, 147, 0.1);
}

.form-control {
  padding: 0.8rem;
  border-radius: 0.5rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 20, 147, 0.1);
  color: var(--text-color);
  transition: all 0.3s ease;
}

.form-control:focus {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(255, 20, 147, 0.25);
  color: var(--text-color);
}

.form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Social Links */
.social-links a {
  font-size: 1.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  color: var(--text-color);
  margin: 0 1rem;
}

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

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  opacity: 0;
  scroll-margin-top: 56px;
}

section.visible {
  animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Sections Background */
section {
  background-color: var(--secondary-color);
}

section:nth-child(even) {
  background-color: var(--accent-color);
}

.primary-text-color {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-image {
  object-fit: cover;
  /* border: 4px solid var(--primary-color); */
  /* border: 4px solid #7214abdb; */
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 4px #fff;
  box-shadow: 0 0 20px #fff, 0 0 20px #fff, 0 0 20px #fff;
}

.skill-card {
  background: var(--accent-color);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 20, 147, 0.1);
  perspective: 1000px;
  cursor: pointer;
  height: 300px;
}

.skill-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.skill-card:hover .skill-card-inner,
.skill-card.flipped .skill-card-inner {
  transform: rotateY(180deg);
}

.skill-card-front,
.skill-card-back {
  width: 80%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.skill-card-back {
  position: absolute;
  width: auto;
  background: var(--accent-color);
  transform: rotateY(180deg);
  padding: 1rem;
}

/* Stats Counter Section */
.stats-counter {
  /* background: var(--accent-color); */
  padding: 3rem 0;
  margin: 2rem 0;
}

.counter-item {
  text-align: center;
  padding: 1.5rem;
  background-color: #ffc0cb1a;
  border-radius: 10%;
}

.counter-value {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.counter-label {
  font-size: 1.1rem;
  color: var(--text-color);
}

/* Work Experience Section */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: "";
  position: absolute;
  width: 2px;
  background: var(--primary-color);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 2rem;
  position: relative;
  width: 45%;
  /* padding: 0 2rem; */
}

.timeline-item:nth-child(odd) {
  left: 0;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 55%;
}

.timeline-content {
  background: var(--accent-color);
  padding: 1.5rem;
  border-radius: 1rem;
  position: relative;
  border: 1px solid rgba(255, 20, 147, 0.1);
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(255, 20, 147, 0.2);
}

.timeline-date {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.timeline-title {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.timeline-company {
  color: var(--primary-color);
  font-style: italic;
  margin-bottom: 1rem;
}

.stats-counter {
  /* background: linear-gradient(
    45deg,
    var(--secondary-color),
    var(--accent-color)
  ); */
  padding: 2rem 0;
  margin: 0;
  position: relative;
  overflow: hidden;
}

.stats-counter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: linear-gradient(45deg, rgba(255, 20, 147, 0.1), transparent); */
  pointer-events: none;
}

.counter-item {
  text-align: center;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.counter-item::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 70%;
  background: rgba(255, 20, 147, 0.2);
  right: 0;
  top: 15%;
}

.counter-item:last-child::after {
  display: none;
}

.counter-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.counter-value {
  font-size: 3.5rem;
  font-weight: bold;
  background: linear-gradient(45deg, var(--primary-color), #ff69b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  font-family: "Poppins", sans-serif;
}

.counter-label {
  font-size: 1.1rem;
  color: var(--text-color);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Documents Section */
.documents-section {
  padding: 3rem 0;
  background: var(--secondary-color);
  position: relative;
  overflow: hidden; /* Ensures content doesn't break out */
}

.document-card {
  background: var(--accent-color);
  border-radius: 1rem;
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 20, 147, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.document-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 20, 147, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.document-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(255, 20, 147, 0.2);
}

.document-card:hover::before {
  opacity: 1;
}

.document-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.document-title {
  font-size: 1.2rem;
  color: var(--text-color);
  margin-bottom: 0.5rem;
}

.document-info {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.document-actions {
  display: flex;
  gap: 1rem;
  z-index: 99;
  position: relative;
}

.btn-document {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-view {
  background: rgba(255, 20, 147, 0.1);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
}

.btn-view:hover {
  background: var(--primary-color);
  color: white;
}

.btn-download {
  background: var(--primary-color);
  color: white;
  border: 1px solid var(--primary-color);
}

.btn-download:hover {
  background: transparent;
  color: var(--primary-color);
}

.education-item {
  transform: translateX(0) !important;
}

/* Enhanced Runner Game Promotional Banner */
.game-promo-banner {
  position: relative;
  margin: 80px auto;
  max-width: 1300px;
  height: 320px; /* Increased height */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), 0 10px 20px rgba(0, 0, 0, 0.2),
    0 0 40px rgba(103, 58, 183, 0.3), 0 0 80px rgba(103, 58, 183, 0.1); /* Added glow */
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
  border: 1px solid rgba(255, 255, 255, 0.15);
  z-index: 1;
}

.game-promo-banner:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3), 0 15px 25px rgba(0, 0, 0, 0.22),
    0 0 50px rgba(103, 58, 183, 0.4), 0 0 100px rgba(103, 58, 183, 0.2);
}

/* Animated Background Pattern */
.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 30px 30px, 90px 90px;
  background-position: 0 0, 15px 15px;
  animation: patternMove 20s linear infinite;
  opacity: 0.5;
  z-index: 0;
}

@keyframes patternMove {
  0% {
    background-position: 0 0, 15px 15px;
  }
  100% {
    background-position: 30px 30px, 45px 45px;
  }
}

/* Decorative Stars - Enhanced */
.stars-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 5;
  pointer-events: none;
}

.star {
  position: absolute;
  width: 20px;
  height: 20px;
  background: transparent;
  animation: star-pulse 3s infinite ease-in-out;
  animation-delay: var(--delay);
}

.star:nth-child(1) {
  top: 15px;
  right: 80px;
  animation-delay: 0s;
}
.star:nth-child(2) {
  top: 25px;
  right: 140px;
  animation-delay: 0.5s;
}
.star:nth-child(3) {
  top: 10px;
  right: 200px;
  animation-delay: 1s;
}
.star:nth-child(4) {
  top: 30px;
  right: 260px;
  animation-delay: 1.5s;
}
.star:nth-child(5) {
  top: 15px;
  right: 320px;
  animation-delay: 2s;
}
.star:nth-child(6) {
  top: 40px;
  left: 120px;
  animation-delay: 0.7s;
} /* Added stars */
.star:nth-child(7) {
  top: 70px;
  left: 80px;
  animation-delay: 1.2s;
}
.star:nth-child(8) {
  top: 20px;
  left: 40px;
  animation-delay: 1.8s;
}

.star:before,
.star:after {
  content: "";
  position: absolute;
  background: linear-gradient(45deg, #ffeb3b, #ff9800);
  border-radius: 50%;
}

.star:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0.3);
}

.star:after {
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 15px 4px rgba(255, 215, 0, 0.8); /* Enhanced glow */
}

@keyframes star-pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Enhanced Game Tag */
.game-tag {
  position: absolute;
  top: 30px;
  right: -50px;
  background: linear-gradient(135deg, #ff416c, #ff4b2b);
  color: white;
  padding: 10px 50px;
  font-weight: bold;
  transform: rotate(45deg);
  z-index: 10;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 20px rgba(255, 65, 108, 0.4); /* Added glow */
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.game-tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    45deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(255 255 255 / 36%) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(-100%);
  animation: shine 2s infinite;
}

@keyframes shine {
  0% {
    transform: translateX(-100%);
  }
  20%,
  100% {
    transform: translateX(100%);
  }
}

.game-promo-content {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Game Image Section - Enhanced */
.game-promo-image {
  flex: 1.2;
  position: relative;
  overflow: hidden;
  box-shadow: 10px 0 20px rgba(0, 0, 0, 0.3); /* Added shadow for depth */
}

.game-promo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: contrast(1.1) saturate(1.2); /* Enhanced image vibrancy */
}

.game-promo-banner:hover .game-promo-image img {
  transform: scale(1.08);
}

/* Enhanced overlay with animated gradient */
.game-promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 12, 41, 0.7) 0%,
    rgba(48, 43, 99, 0.4) 50%,
    rgba(36, 36, 62, 0.2) 100%
  );
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background: linear-gradient(
      90deg,
      rgba(15, 12, 41, 0.7) 0%,
      rgba(48, 43, 99, 0.4) 50%,
      rgba(36, 36, 62, 0.2) 100%
    );
  }
  50% {
    background: linear-gradient(
      90deg,
      rgba(36, 36, 62, 0.7) 0%,
      rgba(48, 43, 99, 0.4) 50%,
      rgba(15, 12, 41, 0.2) 100%
    );
  }
}

/* Game Info Section - Enhanced */
.game-promo-info {
  flex: 0.8;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-left: 1px solid rgba(255, 255, 255, 0.1); /* Added subtle border */
}

/* Floating particles in info section */
.particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  animation: float 15s infinite linear;
}

.particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-duration: 20s;
}
.particle:nth-child(2) {
  top: 60%;
  left: 30%;
  animation-duration: 25s;
  animation-delay: 2s;
}
.particle:nth-child(3) {
  top: 40%;
  left: 70%;
  animation-duration: 18s;
  animation-delay: 4s;
}
.particle:nth-child(4) {
  top: 80%;
  left: 50%;
  animation-duration: 22s;
  animation-delay: 6s;
}
.particle:nth-child(5) {
  top: 30%;
  left: 20%;
  animation-duration: 23s;
  animation-delay: 8s;
}

@keyframes float {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(50px);
    opacity: 0;
  }
}

.game-badge {
  position: absolute;
  top: 10px;
  right: 20px;
  background: linear-gradient(135deg, #ffb300, #ad1457);
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 3px 10px rgba(0, 114, 255, 0.3), 0 0 15px rgba(0, 198, 255, 0.5); /* Added glow */
  animation: pulse 2s infinite; /* Added subtle pulse */
  z-index: 1;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.game-promo-info h3 {
  font-size: 2.5rem; /* Increased size */
  margin-bottom: 5px;
  color: white;
  font-weight: 800;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 255, 255, 0.2); /* Enhanced glow */
  background: linear-gradient(to right, #ffffff, #c0c0c0);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: titleShine 3s infinite; /* Added animation */
}

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

.game-divider {
  width: 80px; /* Increased width */
  height: 4px;
  background: linear-gradient(to right, #ff416c, #ff4b2b);
  margin: 15px 0;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.game-divider::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  animation: dividerSlide 2s infinite;
}

@keyframes dividerSlide {
  0% {
    transform: translateX(-30px);
  }
  100% {
    transform: translateX(80px);
  }
}

.game-promo-info p {
  margin-bottom: 25px;
  opacity: 0.9;
  font-size: 1.05rem; /* Slightly increased */
  line-height: 1.6;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Enhanced Play Button */
.game-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(45deg, #ff416c, #ff4b2b);
  color: white;
  padding: 14px 32px; /* Increased padding */
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 10px 20px rgba(255, 75, 43, 0.4),
    0 0 15px rgba(255, 65, 108, 0.4); /* Added glow */
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.game-play-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff4b2b, #ff416c);
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}

.game-play-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 25px rgba(255, 75, 43, 0.5),
    0 0 20px rgba(255, 65, 108, 0.6);
  color: white;
}

.game-play-btn:hover::before {
  opacity: 1;
}

.game-play-btn:active {
  transform: translateY(0) scale(0.98);
}

.game-play-btn i {
  font-size: 1.3rem;
}

/* Added button pulse effect */
.game-play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  z-index: -1;
  animation: btnPulse 2s infinite;
}

@keyframes btnPulse {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

/* Decorative Corner Accents - Enhanced */
.corner-accent {
  position: absolute;
  width: 60px; /* Increased size */
  height: 60px;
  border-style: solid;
  border-color: rgba(255, 255, 255, 0.3); /* Increased opacity */
  z-index: 2;
  transition: all 0.5s ease;
}

.top-left {
  top: 20px;
  left: 20px;
  border-width: 3px 0 0 3px;
  border-radius: 10px 0 0 0;
}

.bottom-right {
  bottom: 20px;
  right: 20px;
  border-width: 0 3px 3px 0;
  border-radius: 0 0 10px 0;
}

.game-promo-banner:hover .corner-accent {
  border-color: rgba(255, 255, 255, 0.5);
  width: 70px;
  height: 70px;
}

/* Enhanced Glow Effect */
.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(103, 58, 183, 0.15) 0%,
    rgba(103, 58, 183, 0.05) 40%,
    rgba(255, 255, 255, 0) 70%
  );
  pointer-events: none;
  animation: glowPulse 4s infinite alternate;
}

@keyframes glowPulse {
  0% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
  }
}

/* Banner Container */
.gaming-arena-banner {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  margin: 20px 0;
  color: white;
}

/* Glowing effect */
.gaming-arena-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(255, 215, 0, 0.1),
    transparent 70%
  );
  pointer-events: none;
}

/* Banner Content */
.banner-content {
  display: flex;
  height: 100%;
  position: relative;
  z-index: 2;
}

/* Left Side - Text Content */
.banner-text {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.banner-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 10px 0;
  text-transform: uppercase;
  background: linear-gradient(to right, #f5c518, #e67e22);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(245, 197, 24, 0.3);
}

.banner-subtitle {
  font-size: 1.2rem;
  margin: 0 0 20px 0;
  color: #e0e0e0;
}

.banner-cta {
  display: inline-block;
  background: linear-gradient(to right, #f5c518, #e67e22);
  color: #1a1a2e;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(245, 197, 24, 0.4);
  max-width: 200px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Add shine effect to CTA button */
.banner-cta::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 50%
  );
  transform: rotate(30deg);
  transition: all 0.5s ease;
}

.banner-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(245, 197, 24, 0.6);
}

.banner-cta:hover::after {
  transform: rotate(30deg) translate(10%, 10%);
}

/* Right Side - Game Cards */
.game-cards {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 20px;
  perspective: 1000px;
}

.game-card {
  width: 120px;
  height: 180px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.game-card:hover {
  transform: translateY(-10px) rotateY(10deg);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.game-card::after {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 50%;
  height: 50%;
  background: linear-gradient(
    to bottom right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(30deg);
  animation: shine 3s infinite linear;
  animation-delay: calc(var(--delay) * 1s);
}

/* Set animation delays for each card */
.game-card:nth-child(1) {
  --delay: 0;
}

.game-card:nth-child(2) {
  --delay: 1;
}

.game-card:nth-child(3) {
  --delay: 2;
}

@keyframes shine {
  0% {
    top: -100%;
    left: -100%;
  }
  20%,
  100% {
    top: 100%;
    left: 100%;
  }
}

.game-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.game-card:hover .game-icon {
  transform: scale(1.2);
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.game-name {
  font-weight: bold;
  text-align: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.game-card:hover .game-name {
  letter-spacing: 1px;
}

/* Game-specific colors */
.blackjack {
  background: linear-gradient(135deg, #1e5631 0%, #2d8659 100%);
}

.coinflip {
  background: linear-gradient(135deg, #b7950b 0%, #d4ac0d 100%);
}

.mines {
  background: linear-gradient(135deg, #922b21 0%, #c0392b 100%);
}

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

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: float 4s infinite linear;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) rotate(360deg);
    opacity: 0;
  }
}

/* Card pulse animation */
@keyframes pulse {
  0% {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow: 0 5px 25px rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  }
}

.game-card {
  animation: pulse 3s infinite;
  animation-delay: calc(var(--delay) * 1s);
}

/* Profile Image */
.profile-image {
  width: 200px;
  height: 200px;
  margin: 0 auto 2rem;
  position: relative;
}

.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 4px solid var(--primary-color);
  box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.profile-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
}

.name-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--primary-color);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced Hero Section */
.hero {
  /* height: 80vh; */
  top: 55px;
  background: var(--hero-bg);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  overflow: hidden;
  color: var(--text-color);
}

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

/* Animated Background Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--particle-color);
  border-radius: 50%;
  animation: floatParticle 20s infinite linear;
  opacity: 0;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) translateX(0px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

/* Floating Geometric Shapes */
.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.floating-shape {
  position: absolute;
  border: 2px solid var(--primary-color);
  animation: floatShape 15s infinite ease-in-out;
  opacity: 0.3;
}

.shape-circle {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}

.shape-square {
  width: 40px;
  height: 40px;
  transform: rotate(45deg);
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-bottom: 35px solid var(--primary-color);
  border-radius: 0;
}

@keyframes floatShape {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

/* Enhanced Profile Section */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  /* max-width: 800px; */
  padding: 2rem;
}

/* Orbiting Elements */
.orbit-container {
  position: absolute;
  /* top: 50%; */
  top: 14%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  z-index: 2;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(255, 20, 147, 0.3);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.orbit-1 {
  width: 250px;
  height: 250px;
  top: 25px;
  left: 25px;
}

.orbit-2 {
  width: 300px;
  height: 300px;
  top: 0;
  left: 0;
  animation-duration: 30s;
  animation-direction: reverse;
}

.orbit-element {
  position: absolute;
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-color);
}

.orbit-1 .orbit-element {
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-2 .orbit-element {
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Enhanced Typography */
.name-title {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(45deg, var(--primary-color), #ff69b4, #ff1493);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 3s ease-in-out infinite;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(255, 20, 147, 0.5);
}

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

/* Enhanced Typing Effect */
.typing-container {
  min-height: 120px;
  margin-bottom: 2rem;
}

.typing-text {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.typed-text {
  color: var(--primary-color);
  font-weight: bold;
  position: relative;
}

.typed-text::after {
  content: "|";
  animation: blink 1s infinite;
  color: var(--primary-color);
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}

/* Interactive Elements */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease;
  min-width: 120px;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-color);
  opacity: 0.8;
}

/* Enhanced Social Links */
.social-links {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  border-radius: 50%;
  color: var(--text-color);
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-links a::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 ease;
}

.social-links a:hover::before {
  left: 100%;
}

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

/* Enhanced Personal Details */
.personal-details {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  margin-top: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.personal-details .row > div {
  margin-bottom: 1rem;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.personal-details .row > div:hover {
  transform: translateX(10px);
}

.personal-details i {
  font-size: 1.2rem;
  vertical-align: middle;
  margin-right: 10px;
  color: var(--primary-color);
}

.personal-details strong {
  font-weight: bold;
  color: var(--text-color);
}

.personal-details {
    display: flex;
    justify-content: center;
    width: 53%;
    left: 23.5%;
    position: relative;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gaming-arena-banner {
    height: auto;
  }

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

  .banner-text {
    padding: 20px;
    text-align: center;
    align-items: center;
  }

  .banner-title {
    font-size: 1.8rem;
  }

  .banner-subtitle {
    font-size: 1rem;
  }

  .game-cards {
    padding: 0 20px 20px;
  }

  .game-card {
    width: 90px;
    height: 140px;
    padding: 10px;
  }

  .game-icon {
    font-size: 2rem;
  }

  .game-name {
    font-size: 0.8rem;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .game-promo-banner {
    height: auto;
    margin: 60px 15px;
  }

  .game-promo-content {
    flex-direction: column;
  }

  .game-promo-image {
    height: 200px;
  }

  .game-promo-info {
    padding: 30px 20px;
  }

  .game-promo-info h3 {
    font-size: 1.8rem;
  }

  .game-tag {
    top: 40px;
    right: -63px;
    padding: 10px 60px;
    font-size: 0.8rem;
  }

  .game-badge {
    top: 10px;
    right: 5px !important;
    font-size: 0.3rem;
  }

  .stars-container {
    top: 330px;
    right: 0%;
    z-index: 2;
  }
}

@media (max-width: 1440px) {
  .hero {
    height: 100vh;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 100%;
  }

  .hero {
    height: 75vh;
  }

  .personal-details i {
    margin-left: 0px !important;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .logo-image {
    height: 60px;
    width: 60px;
    object-fit: cover;
    /* border: 4px solid var(--primary-color); */
    /* border: 4px solid #7214abdb; */
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 4px #fff;
    box-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 10px #fff;
  }

  .hero {
    height: 110vh;
  }

  .personal-details i {
    margin-left: 10px !important;
  }

  .counter-item::after {
    display: none;
  }

  .counter-value {
    font-size: 2.5rem;
  }

  .counter-label {
    font-size: 1rem;
  }

  .logos-slide img {
    height: 200px;
    width: 200px;
    object-fit: cover;
  }

  .logos:before,
  .logos:after {
    width: 150px;
  }

  .custom-modal-content {
    left: 10% !important;
  }
}

/* .skill-card {
    background: var(--accent-color);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(255, 20, 147, 0.1);
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
    height: 250px;
    cursor: pointer;
    border: 1px solid rgba(255, 20, 147, 0.1);
  } */

/* .skill-card.flipped {
    transform: rotateY(180deg);
  }
  
  .skill-card-front,
  .skill-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
  }
  
  .skill-card-back {
    background: var(--accent-color);
    transform: rotateY(180deg);
    border-radius: 1rem;
  }
  
  .skill-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
  }
  
  .skill-card h3 {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
  } */

/* .progress {
    height: 0.5rem;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    overflow: hidden;
    margin-top: 1rem;
  }
  
  .progress-bar {
    background-color: var(--primary-color);
    height: 100%;
  }
  
  .skill-info {
    color: var(--text-color);
    font-size: 0.9rem;
    line-height: 1.5;
  }
  
  .skill-years {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
  
  @media (max-width: 768px) {
    .skill-card {
        height: 220px;
    }
  } */

.skill-card {
  background: var(--accent-color);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.1);
  transition: transform 0.6s;
  transform-style: preserve-3d;
  position: relative;
  height: 260px;
  cursor: pointer;
  border: 1px solid rgba(255, 20, 147, 0.1);
}

.skill-card.flipped {
  transform: rotateY(180deg);
}

.skill-card-front,
.skill-card-back {
  position: absolute;
  width: 80%;
  height: 100%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* padding: 1.5rem; */
}

.skill-card-back {
  width: auto;
  height: auto;
  background: var(--accent-color);
  transform: rotateY(180deg);
  border-radius: 1rem;
}

.skill-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.skill-card h3 {
  color: var(--text-color);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.progress {
  height: 0.5rem;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  margin-top: 1rem;
}

.progress-bar {
  background-color: var(--primary-color);
  height: 100%;
}

.skill-info {
  color: var(--text-color);
  font-size: 0.9rem;
  line-height: 1.5;
}

.skill-years {
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .skill-card {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .skill-card-back {
    width: 85%;
    height: 70%;
  }

  .skill-card-front {
    margin-top: -10%;
  }

  .timeline-item:nth-child(even) {
    left: 0%;
  }

  .timeline::before {
    width: 0%;
  }

  .timeline-item {
    width: 100%;
  }

  .timeline-item:nth-child(odd) {
    text-align: left;
  }
}

.text-pink {
  color: #ff69b4; /* Pink color for icons */
}

.personal-details i {
  font-size: 1.2rem; /* Adjust icon size */
  vertical-align: middle;
  /* margin-left: 150px; */
}

.personal-details strong {
  font-weight: bold;
  color: #333; /* Text color */
}

.personal-details div {
  display: flex;
  align-items: center; /* Align icon and text */
}

/* Overlay styling */
.overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover; /* Ensures the image covers the entire section */
  background-position: top right;
  /* Diagonal placement */
  /* transform: rotate(-45deg);  */
  z-index: 999; /* Ensures overlay is above content */
  opacity: 0.2; /* Makes the overlay slightly transparent */
  pointer-events: none; /* Prevents blocking interaction with the section */
}

.overlay.show {
  display: flex; /* Show the overlay */
}

.overlay-content {
  text-align: center;
  width: 100%;
}

.construction-image {
  width: 100%;
  /* margin-bottom: 20px; */
  height: 100%;
}

.construction-text {
  font-size: 24px;
  font-weight: bold;
  margin-top: 0;
}

/* Infinite Gallery */
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.logos {
  border-radius: 15%;
  overflow: hidden;
  padding: 60px 0;
  /* background: var(--accent-color); */
  background: #000000;
  white-space: nowrap;
  position: relative;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  content: "";
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(
    to left,
    rgba(18, 18, 18, 0),
    var(--accent-color)
  );
}

.logos:after {
  right: 0;
  background: linear-gradient(
    to right,
    rgba(18, 18, 18, 0),
    var(--accent-color)
  );
}

.logos-slide {
  display: inline-block;
  animation: 35s slide infinite linear;
}

.logos-slide img {
  height: 250px;
  margin: 0 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(255, 20, 147, 0.2);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.logos-slide img:hover {
  transform: scale(1.05);
  border-color: var(--primary-color);
  box-shadow: 0 8px 25px rgba(255, 20, 147, 0.4);
}

.playground-section {
  padding: 4rem 0;
  background: var(--secondary-color);
}

.game-container {
  background: var(--accent-color);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.1);
  border: 1px solid rgba(255, 20, 147, 0.1);
  margin-top: 2rem;
}

.canvas-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

#pingPongCanvas {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  border: 2px solid var(--primary-color);
  background-color: #000000;
}

.game-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.game-instructions {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 20, 147, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 20, 147, 0.2);
}

.game-instructions h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.game-instructions ul {
  list-style-type: none;
  padding: 0;
}

.game-instructions li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.game-instructions li i {
  color: var(--primary-color);
}

.btn-game {
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-game:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.playground-section {
  padding: 4rem 0;
  background: var(--secondary-color);
}

.game-container {
  background: var(--accent-color);
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.1);
  border: 1px solid rgba(255, 20, 147, 0.1);
  margin-top: 2rem;
}

.canvas-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

#pingPongCanvas {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  border: 2px solid var(--primary-color);
  background-color: #000000;
}

.game-controls {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
}

.game-instructions {
  margin-top: 2rem;
  padding: 1rem;
  background: rgba(255, 20, 147, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 20, 147, 0.2);
}

.game-instructions h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.game-instructions ul {
  list-style-type: none;
  padding: 0;
}

.game-instructions li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.game-instructions li i {
  color: var(--primary-color);
}

.btn-game {
  padding: 0.5rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.btn-game:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Game Mode Selector */
.game-mode-selector {
  background: rgba(255, 20, 147, 0.1);
  padding: 1rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 20, 147, 0.2);
}

.mode-options {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.form-check-input {
  cursor: pointer;
}

.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.form-check-label {
  cursor: pointer;
  color: var(--text-color);
}

.game-mode-selection:disabled + .form-check-label {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Game Instructions */
.game-instructions {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 20, 147, 0.1);
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 20, 147, 0.2);
}

.game-instructions h4 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.game-instructions h5 {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.game-instructions ul {
  list-style-type: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.game-instructions li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--text-color);
}

.game-instructions li i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

/* Mobile Instructions */
@media (max-width: 768px) {
  .mode-options {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .game-instructions .row {
    text-align: center;
  }

  .game-instructions li {
    justify-content: center;
  }

  .game-instructions .col-md-6:first-child {
    margin-bottom: 1.5rem;
  }
}

/* Navbar Enhancement */
.navbar {
  /* background: linear-gradient(90deg, var(--primary-color), #ff69b4); */
  /* background: linear-gradient(90deg, #31091e, #ff69b4); */
  /* background: linear-gradient(90deg, #992020, #3b3636); */
  border-bottom: none; /* Remove border for a cleaner look */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2); /* Add subtle shadow */
}

.nav-link {
  color: white; /* Make links stand out */
  text-transform: uppercase; /* Add modern typography style */
  font-weight: bold;
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
  color: var(--primary-color); /* Add hover color */
  transform: translateY(-2px); /* Hover effect */
}

.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 50%;
  background-color: var(--primary-color);
  transition: all 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
  left: 0;
}

/* Infinite Logo Animation */
.logo-image {
  color: white; /* Ensure logo is visible */
  font-size: 2rem; /* Slightly larger logo */
  /* animation: spin 5s linear infinite;  */
  /* Infinite spinning animation */
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Countdown Timer */
#countdownTimer {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 20px 40px;
  font-size: 3rem;
  border-radius: 10px;
  text-align: center;
  z-index: 999;
}

/* Fun input effects */
.funny-input:focus {
  animation: bounce 0.5s ease-out;
  border: 2px solid #ff1493;
  background-color: #ffe6f7;
  color: #ff1493;
}

/* Fun Button Animation */
.fun-button {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.fun-button span {
  transition: transform 0.3s ease;
}

.fun-button:hover {
  background-color: #ff1493;
  color: white;
  transform: scale(1.05);
}

.fun-button:hover span {
  transform: translateX(10px);
}

/* Input Bouncing Animation */
@keyframes bounce {
  0% {
    transform: scale(1);
  }
  30% {
    transform: scale(1.1);
  }
  50% {
    transform: scale(1);
  }
}

/* Confetti background when the user submits */
#contactForm.submitted {
  background-color: #f1f1f1;
  position: relative;
}

#contactForm.submitted:after {
  content: "🎉🎉 Thanks for reaching out! 🎉🎉";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.5rem;
  color: #ff1493;
  text-align: center;
  animation: confetti 1s ease-out forwards;
}

@keyframes confetti {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
}

/* Fun animations for the background */
#contactForm {
  transition: background-color 0.5s ease;
}

/* Enhanced Counter Animation */
.counter-value {
  /* display: inline-block; */
  /* position: relative; */
  animation: countUp 2s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

@keyframes countUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.counter-item {
  position: relative;
  overflow: hidden;
}

.counter-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 20, 147, 0.2),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  100% {
    left: 100%;
  }
}

#imageOverlay img {
  animation: zoomIn 0.3s ease-in-out;
}

@keyframes zoomIn {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  #imageOverlay img {
    max-width: 95%; /* Expand image width slightly */
    max-height: 75%; /* Reduce height */
  }

  #imageOverlay button {
    font-size: 20px; /* Smaller close button */
    position: fixed !important;
    /* top: 35% !important;
    right: 5% !important; */
    top: 10% !important;
    right: 5% !important;
  }

  #imageOverlay {
    top: 10% !important;
    left: 5% !important;
    width: 80% !important;
    height: 80% !important;
  }
}

.education-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.education-timeline::before {
  content: "";
  position: absolute;
  width: 6px;
  background: linear-gradient(180deg, var(--primary-color) 0%, #ff69b4 100%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 3px;
  opacity: 0.3;
}

.education-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

.education-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.education-item:nth-child(odd) {
  left: 0;
}

.education-item:nth-child(even) {
  left: 50%;
}

.education-content {
  padding: 30px;
  background: var(--accent-color);
  border-radius: 15px;
  position: relative;
  border: 1px solid rgba(255, 20, 147, 0.1);
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.1);
  transition: all 0.3s ease;
}

.education-content:hover {
  transform: translateY(-5px);
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(255, 20, 147, 0.2);
}

.education-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%);
}

.education-item:nth-child(odd) .education-icon {
  /* right: -25px;
  position: fixed !important; */
  position: relative !important;
  margin-top: 5%;
}

.education-item:nth-child(even) .education-icon {
  /* left: -25px;
  position: fixed !important; */
  position: relative !important;
  margin-top: 5%;
}

.education-icon i {
  color: white;
  font-size: 1.5rem;
}

.education-date {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

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

.education-school {
  color: var(--primary-color);
  font-style: italic;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.education-description {
  color: var(--text-color);
  opacity: 0.9;
  line-height: 1.6;
  margin-bottom: 15px;
}

.education-achievements {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.achievement-badge {
  background: rgba(255, 20, 147, 0.1);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 20, 147, 0.2);
  transition: all 0.3s ease;
}

.achievement-badge:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

@keyframes fadeInSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .education-timeline::before {
    left: 31px;
  }

  .education-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .education-item:nth-child(even) {
    left: 0;
  }

  .education-item:nth-child(odd) .education-icon,
  .education-item:nth-child(even) .education-icon {
    left: 6px;
  }

  .education-content {
    padding: 20px;
  }

  .education-title {
    font-size: 1.2rem;
  }

  .education-school {
    font-size: 1rem;
  }

  .achievement-badge {
    font-size: 0.8rem;
  }

  .education-item:nth-child(odd) .education-icon,
  .education-item:nth-child(even) .education-icon {
    margin-bottom: 5%;
  }
}

.education-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.education-timeline.visible {
  opacity: 1;
  transform: translateY(0);
}

.education-timeline::before {
  content: "";
  position: absolute;
  width: 6px;
  background: linear-gradient(180deg, var(--primary-color) 0%, #ff69b4 100%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  border-radius: 3px;
  opacity: 0.3;
  transition: transform 1.5s ease;
  transform-origin: top;
}

.education-timeline.visible::before {
  transform: translateX(-50%) scaleY(1);
}

.education-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.education-item:nth-child(even) {
  transform: translateX(50px);
}

.education-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.education-content {
  padding: 30px;
  background: var(--accent-color);
  border-radius: 15px;
  position: relative;
  border: 1px solid rgba(255, 20, 147, 0.1);
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

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

.education-content:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(255, 20, 147, 0.2);
}

.education-content:hover::before {
  left: 100%;
}

.education-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.education-item.visible .education-icon {
  transform: translateY(-50%) scale(1);
}

.education-icon i {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.education-content:hover .education-icon i {
  transform: rotate(360deg);
}

.education-date {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.education-content:hover .education-date {
  color: #ff69b4;
}

.education-title {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.education-content:hover .education-title {
  transform: translateX(10px);
}

.achievement-badge {
  background: rgba(255, 20, 147, 0.1);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 20, 147, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.achievement-badge::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: 0.5s;
}

.achievement-badge:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 4px 15px rgba(255, 20, 147, 0.3);
}

.achievement-badge:hover::before {
  left: 100%;
}

.education-timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

.education-timeline.visible {
  opacity: 1;
  transform: translateY(0);
}

.education-timeline::before {
  content: "";
  position: absolute;
  width: 6px;
  background: linear-gradient(180deg, var(--primary-color) 0%, #ff69b4 100%);
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleY(0);
  border-radius: 3px;
  opacity: 0.3;
  transition: transform 1.5s ease;
  transform-origin: top;
}

.education-timeline.visible::before {
  transform: translateX(-50%) scaleY(1);
}

.education-item {
  padding: 10px 40px;
  position: relative;
  width: 50%;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.education-item:nth-child(even) {
  transform: translateX(50px);
}

.education-item.visible {
  opacity: 1;
  transform: translateX(0);
}

.education-content {
  padding: 30px;
  background: var(--accent-color);
  border-radius: 15px;
  position: relative;
  border: 1px solid rgba(255, 20, 147, 0.1);
  box-shadow: 0 4px 20px rgba(255, 20, 147, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.education-content:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(255, 20, 147, 0.2);
}

.achievement-badge {
  background: rgba(255, 20, 147, 0.1);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 20, 147, 0.2);
  transition: all 0.3s ease;
}

.achievement-badge:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.education-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.education-item.visible .education-icon {
  transform: translateY(-50%) scale(1);
}

.education-date {
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}

.education-content:hover .education-date {
  color: #ff69b4;
}

.education-title {
  font-size: 1.4rem;
  margin-bottom: 5px;
  color: var(--text-color);
  transition: transform 0.3s ease;
}

.education-content:hover .education-title {
  transform: translateX(10px);
}

@media (max-width: 768px) {
  .education-timeline::before {
    left: 31px;
  }

  .education-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .education-item:nth-child(even) {
    left: 0;
  }

  .education-item:nth-child(odd) .education-icon,
  .education-item:nth-child(even) .education-icon {
    left: -10px !important;
  }

  .education-content {
    padding: 20px;
  }

  .education-title {
    font-size: 1.2rem;
  }

  .education-school {
    font-size: 1rem;
  }

  .achievement-badge {
    font-size: 0.8rem;
  }

  .education-timeline::before {
    width: 3px;
  }
}

/* Add these styles at the end of your existing CSS file */

.project-card {
  position: relative;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  background: rgba(31, 31, 31, 0.6);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 20, 147, 0.1);
}

.project-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 35px rgba(255, 20, 147, 0.2);
}

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

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.project-content {
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.project-content h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.project-content h4::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.3s ease;
}

.project-card:hover .project-content h4::after {
  width: 100%;
}

.tech-stack {
  margin: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-stack .badge {
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  background: rgba(255, 20, 147, 0.1);
  border: 1px solid rgba(255, 20, 147, 0.2);
}

.tech-stack .badge:hover {
  transform: translateY(-2px);
  background: var(--primary-color);
  color: white !important;
}

.project-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.project-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: white;
  border-color: var(--primary-color);
}

.project-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--primary-color);
  transition: width 0.3s ease;
  z-index: -1;
}

.project-btn:hover::before {
  width: 100%;
}

.project-btn:hover {
  color: white;
  border-color: var(--primary-color);
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  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-type {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.3s ease;
}

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

.swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px; /* Original width */
  height: 400px; /* Original height */
  overflow: hidden;
  transition: all 0.3s ease;
  transform-origin: center;
  cursor: pointer;
  margin: 0 auto; /* Center the slides */
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.swiper-slide-active {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.swiper-slide:hover img {
  transform: scale(1.1);
}

.swiper-pagination-bullet {
  background: var(--primary-color);
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--primary-color);
}

/* Custom modal styles */
.custom-modal {
  display: none !important;
  position: fixed;
  z-index: 1050;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-modal-content {
  background-color: #1a1a1a;
  border-radius: 10px;
  max-width: 80%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  top: 10%;
  position: absolute;
  left: 30%;
}

.custom-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  background: #262626;
  border-bottom: 1px solid #444;
}

.custom-modal-title {
  color: #fff;
  font-size: 18px;
}

.custom-close {
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

.custom-close:hover {
  color: #ff4081;
}

.custom-modal-body {
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.custom-modal-img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  border-radius: 8px;
}

@media (max-width: 768px) {
  .marksheets-title {
    font-size: 2.5rem;
  }

  .marksheets-subtitle {
    font-size: 1.2rem;
  }

  .swiper-slide {
    width: 250px; /* Adjusted height for mobile */
    height: 250px; /* Adjusted height for mobile */
  }

  .back-button {
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* Enhanced Mobile Responsiveness */
@media (max-width: 768px) {
  /* Navigation fixes */
  .navbar {
    padding: 0.5rem 1rem;
  }

  .logo-image {
    height: 50px;
    width: 50px;
    margin-bottom: 0 !important;
  }

  .navbar-collapse {
    margin-top: 1rem;
    background: rgba(18, 18, 18, 0.95);
    border-radius: 10px;
    padding: 1rem;
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .nav-link {
    text-align: center !important;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  /* Hero section mobile fixes */
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 2rem 0;
  }

  .hero-content {
    padding: 1rem;
  }

  .profile-container {
    margin-bottom: 2rem;
  }

  .orbit-container {
    width: 200px;
    height: 200px;
    top: 10%;
  }

  .orbit-1 {
    width: 180px;
    height: 180px;
    top: 10px;
    left: 10px;
  }

  .orbit-2 {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
  }

  .profile-image {
    width: 150px;
    height: 150px;
    margin-bottom: 1.5rem;
  }

  .name-title {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .typing-text {
    font-size: 1.5rem;
    text-align: center;
  }

  .typing-container {
    min-height: 80px;
    margin-bottom: 1.5rem;
  }

  /* Hero stats mobile layout */
  .hero-stats {
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .stat-item {
    min-width: 80px;
    padding: 0.75rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  /* Personal details mobile */
  .personal-details {
    width: 100% !important;
    left: 0 !important;
    position: relative !important;
    padding: 1.5rem;
    margin-top: 1.5rem;
  }

  .personal-details .row > div {
    margin-bottom: 0.75rem;
    padding: 0.75rem;
    text-align: center;
  }

  .personal-details i {
    margin-left: 0 !important;
    margin-right: 8px;
    display: inline-block;
  }

  /* Social links mobile */
  .social-links a {
    width: 50px;
    height: 50px;
    margin: 0 0.5rem;
    font-size: 1.2rem;
  }

  /* Skills section mobile */
  .skill-card {
    height: 280px;
    margin-bottom: 1.5rem;
  }

  .skill-card-back {
    width: 90% !important;
    height: 80% !important;
    padding: 1rem;
  }

  .skill-card-front {
    margin-top: 0;
  }

  .skill-card i {
    font-size: 2.5rem;
  }

  .skill-card h3 {
    font-size: 1.1rem;
  }

  /* Experience timeline mobile */
  .timeline::before {
    left: 20px;
    width: 2px;
  }

  .timeline-item {
    width: 100% !important;
    left: 0 !important;
    padding-left: 50px;
    padding-right: 1rem;
    text-align: left !important;
  }

  .timeline-item:nth-child(even) {
    left: 0 !important;
  }

  .timeline-content {
    padding: 1.25rem;
  }

  .timeline-title {
    font-size: 1.1rem;
  }

  /* Counter section mobile */
  .counter-item::after {
    display: none;
  }

  .counter-value {
    font-size: 2.5rem;
  }

  .counter-label {
    font-size: 1rem;
  }

  .counter-item {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }

  /* Education timeline mobile */
  .education-timeline::before {
    left: 20px;
    width: 3px;
  }

  .education-item {
    width: 100% !important;
    left: 0 !important;
    padding-left: 50px;
    padding-right: 1rem;
  }

  .education-item:nth-child(even) {
    left: 0 !important;
  }

  .education-item:nth-child(odd) .education-icon,
  .education-item:nth-child(even) .education-icon {
    left: -5px !important;
    /* position: absolute !important; */
    top: 0 !important;
    transform: none !important;
  }

  .education-content {
    padding: 1.25rem;
  }

  .education-title {
    font-size: 1.2rem;
  }

  .education-school {
    font-size: 1rem;
  }

  .achievement-badge {
    font-size: 0.8rem;
    padding: 4px 12px;
  }

  /* Projects section mobile */
  .project-card {
    margin-bottom: 2rem;
  }

  .project-content {
    padding: 1.5rem;
  }

  .project-content h4 {
    font-size: 1.3rem;
  }

  .tech-stack .badge {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
  }

  .project-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
  }

  /* Documents section mobile */
  .document-card {
    padding: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .document-actions {
    flex-direction: column;
    gap: 0.75rem;
  }

  .btn-view,
  .btn-download {
    text-align: center;
    justify-content: center;
  }

  /* Swiper mobile */
  .swiper-slide {
    width: 250px !important;
    height: 350px !important;
  }

  /* Gallery mobile */
  .logos-slide img {
    height: 180px;
    width: 180px;
    margin: 0 20px;
  }

  .logos:before,
  .logos:after {
    width: 100px;
  }

  /* Gaming banners mobile */
  .gaming-arena-banner {
    height: auto;
    margin: 40px 10px;
  }

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

  .banner-text {
    padding: 20px;
    text-align: center;
    align-items: center;
  }

  .banner-title {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .banner-subtitle {
    font-size: 1rem;
  }

  .banner-cta {
    max-width: 180px;
    padding: 10px 25px;
    font-size: 0.9rem;
  }

  .game-cards {
    padding: 0 20px 20px;
    gap: 10px;
  }

  .game-card {
    width: 80px;
    height: 120px;
    padding: 8px;
  }

  .game-icon {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }

  .game-name {
    font-size: 0.75rem;
  }

  /* Game promo banner mobile */
  .game-promo-banner {
    height: auto;
    margin: 40px 10px;
  }

  .game-promo-content {
    flex-direction: column;
  }

  .game-promo-image {
    height: 200px;
  }

  .game-promo-info {
    padding: 25px 20px;
  }

  .game-promo-info h3 {
    font-size: 1.8rem;
  }

  .game-promo-info p {
    font-size: 1rem;
  }

  .game-tag {
    top: 30px;
    right: -45px;
    padding: 8px 40px;
    font-size: 0.75rem;
  }

  .game-badge {
    top: 10px;
    right: 10px;
    /* font-size: 0.6rem; */
    padding: 3px 8px;
  }

  /* Playground section mobile */
  .game-mode-selector {
    padding: 1rem;
  }

  .mode-options {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .game-container {
    padding: 1.5rem;
  }

  .game-instructions {
    padding: 1rem;
  }

  .game-instructions .row {
    text-align: center;
  }

  .game-instructions li {
    justify-content: center;
    font-size: 0.9rem;
  }

  .game-instructions .col-md-6:first-child {
    margin-bottom: 1.5rem;
  }

  /* Contact form mobile */
  .contact-form {
    padding: 1.5rem;
  }

  .form-control {
    padding: 0.75rem;
    font-size: 1rem;
  }

  .fun-button {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
  }

  /* Modal mobile */
  .custom-modal-content {
    left: 5% !important;
    max-width: 90% !important;
    max-height: 85% !important;
  }

  .custom-modal-img {
    max-height: 70vh;
  }

  .custom-close {
    font-size: 24px;
    padding: 5px;
  }

  /* Countdown timer mobile */
  #countdownTimer {
    padding: 15px 30px;
    font-size: 2.5rem;
    top: 40%;
  }

  /* Primary text mobile */
  .primary-text-color {
    font-size: 2rem;
    text-align: center;
  }

  /* Section padding mobile */
  section {
    padding: 3rem 0 !important;
  }

  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  /* Floating shapes mobile - reduce size */
  .floating-shape {
    opacity: 0.2;
  }

  .shape-circle {
    width: 40px;
    height: 40px;
  }

  .shape-square {
    width: 30px;
    height: 30px;
  }

  .shape-triangle {
    border-left-width: 15px;
    border-right-width: 15px;
    border-bottom-width: 25px;
  }
}

/* Tablet specific adjustments */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .container {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero {
    height: 85vh;
  }

  .personal-details {
    width: 80% !important;
    left: 10% !important;
  }

  .personal-details i {
    margin-left: 0px !important;
  }

  .name-title {
    font-size: 2.8rem;
  }

  .typing-text {
    font-size: 2rem;
  }

  .game-promo-banner {
    margin: 60px 20px;
  }

  .gaming-arena-banner {
    margin: 40px 20px;
  }
}

/* Large mobile devices */
@media (max-width: 480px) {
  .hero {
    padding: 1rem 0;
  }

  .name-title {
    font-size: 1.8rem;
  }

  .typing-text {
    font-size: 1.2rem;
  }

  .hero-stats {
    gap: 0.5rem;
  }

  .stat-item {
    min-width: 70px;
    padding: 0.5rem;
  }

  .stat-number {
    font-size: 1.2rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .personal-details {
    padding: 1rem;
  }

  .personal-details .row > div {
    font-size: 0.9rem;
  }

  .social-links a {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }

  .skill-card {
    height: 250px;
  }

  .counter-value {
    font-size: 2rem;
  }

  .primary-text-color {
    font-size: 1.8rem;
  }

  .game-card {
    width: 70px;
    height: 100px;
  }

  .game-icon {
    font-size: 1.5rem;
  }

  .game-name {
    font-size: 0.7rem;
  }

  .banner-title {
    font-size: 1.5rem;
  }

  .banner-subtitle {
    font-size: 0.9rem;
  }
}

/* Professional Hero Section - Option 1: Split-Screen Layout */
.hero-professional {
  min-height: 100vh;
  background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 50%, #16213e 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-content-left {
  padding: 2rem;
  z-index: 2;
}

.hero-text-content {
  max-width: 600px;
}

.professional-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  color: #22c55e;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  animation: pulse-green 2s infinite;
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: blink-green 2s infinite;
}

.hero-main-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.highlight-name {
  background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 3s ease-in-out infinite;
}

.role-container {
  margin-bottom: 1.5rem;
}

.role-text {
  font-size: 2rem;
  font-weight: 600;
  color: #e2e8f0;
}

.role-prefix,
.role-suffix {
  color: #94a3b8;
}

.typed-role {
  color: var(--primary-color);
  border-right: 2px solid var(--primary-color);
  animation: blink-cursor 1s infinite;
  min-width: 200px;
  display: inline-block;
}

.hero-description {
  font-size: 1.2rem;
  color: #cbd5e1;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.skills-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.skill-tag {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 25px;
  color: #ffffff;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.skill-tag:hover {
  background: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 20, 147, 0.3);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-primary-hero {
  background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(255, 20, 147, 0.3);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 20, 147, 0.4);
  color: white;
}

.btn-secondary-hero {
  background: transparent;
  color: #ffffff;
  padding: 1rem 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.btn-secondary-hero:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--primary-color);
  color: var(--primary-color);
}

/* Social Links */
.social-links-hero {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid transparent;
  border-radius: 50%;
  color: #ffffff;
  font-size: 1.2rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.social-link::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 ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.1);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(255, 20, 147, 0.3);
  color: var(--primary-color);
}

.social-proof {
  display: flex;
  gap: 2rem;
}

.achievement-item {
  text-align: center;
}

.achievement-number {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-color);
}

.achievement-label {
  font-size: 0.9rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Right Side Visual */
.hero-visual-right {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

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

.profile-card-3d {
  perspective: 1000px;
  width: 400px;
  height: 500px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s;
  transform-style: preserve-3d;
}

.profile-card-3d:hover .card-inner {
  transform: rotateY(10deg) rotateX(5deg);
}

.profile-image-container {
  position: relative;
  width: 300px;
  height: 400px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.profile-image-pro {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(255, 20, 147, 0.2), rgba(255, 107, 107, 0.2));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.profile-card-3d:hover .image-overlay {
  opacity: 1;
}

.floating-info-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: #1a1a2e;
  animation: float-card 3s ease-in-out infinite;
  opacity: 0;
  animation-fill-mode: forwards;
}

.card-1 {
  top: 10%;
  right: -20%;
  animation-delay: 1s;
}

.card-2 {
  top: 50%;
  left: -20%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 10%;
  right: -10%;
  animation-delay: 3s;
}

.floating-info-card i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

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

.element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--primary-color), #ff6b6b);
  opacity: 0.1;
  animation: float-element 6s ease-in-out infinite;
}

.element-1 {
  width: 100px;
  height: 100px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.element-2 {
  width: 150px;
  height: 150px;
  top: 60%;
  right: 20%;
  animation-delay: 2s;
}

.element-3 {
  width: 80px;
  height: 80px;
  bottom: 20%;
  left: 30%;
  animation-delay: 4s;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #94a3b8;
  animation: bounce-scroll 2s infinite;
  cursor: pointer;
}

.scroll-text {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.scroll-arrow i {
  font-size: 1.5rem;
}

/* Animations */
@keyframes pulse-green {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
  }
  50% {
    box-shadow: 0 0 0 10px rgba(34, 197, 94, 0);
  }
}

@keyframes blink-green {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

@keyframes blink-cursor {
  0%,
  100% {
    border-color: var(--primary-color);
  }
  50% {
    border-color: transparent;
  }
}

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

@keyframes float-card {
  0% {
    transform: translateY(20px);
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: translateY(0px);
    opacity: 1;
  }
}

@keyframes float-element {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes bounce-scroll {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .hero-professional {
    padding-top: 100px;
    min-height: auto;
  }

  .hero-main-title {
    font-size: 2.5rem;
  }

  .role-text {
    font-size: 1.5rem;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary-hero,
  .btn-secondary-hero {
    width: 100%;
    justify-content: center;
  }

  .social-proof {
    justify-content: flex-start;
    gap: 1.5rem;
  }

  .profile-card-3d {
    width: 300px;
    height: 400px;
  }

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

  .floating-info-card {
    display: none;
  }

  .skills-tags {
    justify-content: flex-start;
  }

  .social-links-hero {
    justify-content: flex-start;
  }

  .scroll-indicator {
    display: none;
  }
}

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

  .role-text {
    font-size: 1.3rem;
  }

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

  .social-proof {
    gap: 1rem;
  }

  .achievement-number {
    font-size: 1.5rem;
  }

  .achievement-label {
    font-size: 0.8rem;
  }
}

