body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #0f0f1a; 
  color: #e0e0e0;       
  position: relative;
}

/* Container to center and limit max width of content */
.app-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 3rem;
  box-sizing: border-box;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: transparent;
  color: #e0e0e0;
  position: relative;
}

header {
  background: none;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* navbar style*/
#navbar {
  
  position: sticky;
  top: 1rem;
  middle
  transform: translateX(-50%);
  background: rgba(15, 15, 30, 0.85);
  border: 2px solid #00ffe7;
  border-radius: 100px;
  padding: 1rem 3rem;
  display:flex;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
  z-index: 1000;
  box-shadow: 0 0 15px #00ffe7;
}

#navbar.shrink {
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  gap: 1rem;
  background: rgba(10, 10, 20, 0.95);
  box-shadow: 0 0 10px #00ffe7;
}

nav a {
  background-position-x: ;
  
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: bold;
  transition: 0.3s ease;
}

nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px #00ffe7;
}

main.scroll-container {
  flex: 1 1 auto;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  padding: 1rem 0 4rem 0;
}

.scroll-section {
  scroll-snap-align: start;
  min-height: 100vh;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 3rem;
  text-align: center;
  background-color: transparent !important; /* Remove alternating backgrounds */
  padding-bottom: 4rem;
  box-sizing: border-box;
}

footer {
  text-align: center;
  padding: 2rem 1rem;
  background: transparent;
  color: #fff;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #b388ff, #00ffe7);
  z-index: 100;
  transition: width 0.1s ease;
}

/* Text shimmer effect */
.text-shimmer {
  background: linear-gradient(45deg, #b388ff, #00ffe7, #b388ff);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s ease-in-out infinite;
}

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

/* Enhanced glow effects */
.enhanced-glow {
  position: relative;
}

.enhanced-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, hsl(260, 100%, 70%, 0.15), hsl(180, 100%, 65%, 0.15));
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.enhanced-glow:hover::before {
  opacity: 1;
}

/* Card hover effects */
.card-hover-effect {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-hover-effect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 231, 0.2), transparent);
  transition: left 0.6s ease;
}

.card-hover-effect:hover::before {
  left: 100%;
}

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

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #00ffe7;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

/* Scrollbar track background */
::-webkit-scrollbar-track {
  background: #0a0a0a; 
}

/* Scrollbar thumb */
::-webkit-scrollbar-thumb {
  background: #00fff7; 
  border-radius: 5px;
}

/* Scrollbar hover */
::-webkit-scrollbar-thumb:hover {
  background: #00c7b7; 
}

/* Adjust for fixed navbar height */
section {
  scroll-margin-top: 100px; 
}

/* Swiper styling */
.swiper {
  padding: 2rem 0;
}

.swiper-slide {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(0, 255, 231, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  color: #e0e0e0;
  box-shadow: 0 0 15px rgba(0, 255, 231, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.swiper-slide:hover {
  transform: scale(1.03);
  box-shadow: 0 0 25px rgba(0, 255, 231, 0.4);
}

.swiper-slide img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.swiper-slide h5 {
  font-size: 1.2rem;
  color: #00ffe7;
  margin-bottom: 0.5rem;
}

.swiper-slide p {
  font-size: 0.95rem;
  line-height: 1.4;
}

.swiper-slide a {
  display: inline-block;
  margin-top: 0.8rem;
  padding: 0.4rem 1rem;
  background: #00ffe7;
  color: #0d0d15;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.swiper-slide a:hover {
  background: #00c7b7;
  color: #fff;
}

/* Contact Section */
.contact-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

@media(min-width: 768px) {
  .contact-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.contact-form, .contact-buttons {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 0 20px rgba(0, 255, 231, 0.15);
}

.contact-form h3, .contact-buttons h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.5rem;
}

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1rem;
  border: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.contact-form form input::placeholder,
.contact-form form textarea::placeholder {
  color: #ccc;
}

.glow-button {
  background: linear-gradient(90deg, #00ffe7, #b388ff);
  border: none;
  padding: 0.75rem 2rem;
  color: #0d0d15;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
}

.glow-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px #00ffe7;
}

.contact-buttons .button-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

@media(min-width: 600px) {
  .contact-buttons .button-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-btn {
  display: block;
  text-align: center;
  padding: 1rem;
  border-radius: 8px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

/* Contact button special colors */
.github {
  border-color: #ff00cc;
  box-shadow: 0 0 10px #ff00cc, 0 0 20px #ff00cc inset;
}
.github:hover {
  background: #ff00cc;
  color: #0d0d15;
  box-shadow: 0 0 15px #ff00cc, 0 0 30px #ff00cc;
}

.linkedin {
  border-color: #0077b5;
  box-shadow: 0 0 10px #0077b5, 0 0 20px #0077b5 inset;
}
.linkedin:hover {
  background: #0077b5;
  color: #fff;
  box-shadow: 0 0 15px #0077b5, 0 0 30px #0077b5;
}

.email {
  border-color: #00ffee;
  box-shadow: 0 0 10px #00ffee, 0 0 20px #00ffee inset;
}
.email:hover {
  background: #00ffee;
  color: #0d0d15;
  box-shadow: 0 0 15px #00ffee, 0 0 30px #00ffee;
}

/* Particles background */
#particles-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #0d0d15;
  pointer-events: none;
}




body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #0f0f1a; 
  color: #e0e0e0;       
  position: relative;
  
}