/* Neon Mint Theme - What I Do Section */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;800&display=swap');

:root {
  --neon-mint: #00ffcc;
  --neon-mint-dark: #00ccaa;
  --dark-bg: #0a0e27;
  --card-bg: #0f1929;
  --text-primary: #ffffff;
  --text-secondary: #b0b8cc;
}

* {
  font-family: 'Poppins', sans-serif;
}

/* ================= NAVIGATION ACTIVE STATE ================= */

.nav-links a {
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--neon-mint);
  box-shadow: 0 0 6px var(--neon-mint);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-links a.active {
  color: var(--neon-mint);
}

.nav-links a.active::after {
  width: 100%;
}

/* ================= GLOBAL PAGE GRID PATTERN ================= */

/* Page Grid Background */
.page-grid {
  background-image:
    linear-gradient(0deg, rgba(0, 255, 204, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 204, 0.02) 1px, transparent 1px),
    linear-gradient(180deg, rgba(0, 204, 170, 0.01) 1px, transparent 1px),
    linear-gradient(270deg, rgba(0, 204, 170, 0.01) 1px, transparent 1px);
  background-size: 50px 50px, 50px 50px, 100px 100px, 100px 100px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  animation: pageGridFloat 30s linear infinite;
}

@keyframes pageGridFloat {
  0% {
    background-position: 0 0, 0 0, 0 0, 0 0;
  }
  100% {
    background-position: 50px 50px, 50px 50px, 100px 100px, 100px 100px;
  }
}

/* ================= HERO SECTION STYLES ================= */

/* Hero Section Container */
.hero-section {
  background: linear-gradient(135deg, #0a0e27 0%, #0d1b2a 50%, #1a2332 100%);
  position: relative;
  overflow: hidden;
}

/* Hero Background Gradient Animation */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    45deg,
    rgba(0, 255, 204, 0.1) 0%,
    transparent 25%,
    transparent 75%,
    rgba(0, 204, 170, 0.1) 100%
  );
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  z-index: 0;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Blur Elements */
.hero-blur-1,
.hero-blur-2,
.hero-blur-3 {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  mix-blend-mode: screen;
  filter: blur(80px);
  animation: float 20s ease-in-out infinite;
}

.hero-blur-1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 255, 204, 0.1);
  top: -100px;
  right: -100px;
  animation: float 25s ease-in-out infinite;
}

.hero-blur-2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 204, 170, 0.1);
  bottom: 100px;
  left: -50px;
  animation: float 30s ease-in-out infinite reverse;
}

.hero-blur-3 {
  width: 350px;
  height: 350px;
  background: rgba(0, 255, 204, 0.05);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float 35s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(20px, -20px);
  }
  50% {
    transform: translate(0px, 20px);
  }
  75% {
    transform: translate(-20px, -10px);
  }
}

/* Hero Grid Pattern */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 255, 204, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 204, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  z-index: 0;
}

@keyframes gridMove {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(50px);
  }
}

/* Hero Badge */
.hero-badge {
  padding: 0.75rem 1.5rem;
  background: rgba(0, 255, 204, 0.08);
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 50px;
  animation: badgeFadeIn 0.8s ease 0.2s both;
}

@keyframes badgeFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Title Animation */
.hero-title {
  animation: titleSlideIn 0.8s ease 0.3s both;
  letter-spacing: -1px;
}

@keyframes titleSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gradient Text Effect */
.hero-gradient-text {
  background: linear-gradient(135deg, #00ffcc 0%, #00ccaa 50%, #00ffcc 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientText 3s ease infinite;
  display: inline-block;
}

@keyframes gradientText {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Hero Subtitle */
.hero-subtitle {
  animation: subtitleFadeIn 0.8s ease 0.4s both;
  font-weight: 300;
}

@keyframes subtitleFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Buttons */
.hero-btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  /* animation: buttonFadeIn 0.8s ease 0.5s both; */
}

@keyframes buttonFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Primary Button */
.hero-btn-primary {
  background: linear-gradient(135deg, #00ffcc 0%, #00ccaa 100%);
  color: #0a0e27;
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.2);
}

.hero-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s ease;
  z-index: -1;
}

.hero-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 255, 204, 0.4);
  letter-spacing: 0.5px;
}

.hero-btn-primary:hover::before {
  left: 100%;
}

/* Secondary Button */
.hero-btn-secondary {
  background: transparent;
  color: #00ffcc;
  border: 2px solid #00ffcc;
  box-shadow: inset 0 0 20px rgba(0, 255, 204, 0.1);
}

.hero-btn-secondary:hover {
  background: rgba(0, 255, 204, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 255, 204, 0.3), inset 0 0 20px rgba(0, 255, 204, 0.15);
}

/* Hero Stats */
.hero-stats {
  animation: statsFadeIn 0.8s ease 0.6s both;
}

@keyframes statsFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-item {
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
}

/* Hero Image Card */
.hero-image-card {
  animation: imageCardFloat 0.8s ease 0.4s both;
  perspective: 1000px;
}

/* Hero Code Display cursor */
@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

@keyframes imageCardFloat {
  from {
    opacity: 0;
    transform: translateX(50px) rotateY(30deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) rotateY(0deg);
  }
}

.hero-image-card:hover {
  transform: translateY(-10px);
}

/* Floating Elements */
.floating-element {
  animation: floatingBubble 6s ease-in-out infinite;
}

.floating-element-1 {
  animation-delay: 0s;
  animation-duration: 8s;
}

.floating-element-2 {
  animation-delay: 2s;
  animation-duration: 10s;
}

@keyframes floatingBubble {
  0%, 100% {
    transform: translate(0px, 0px);
  }
  25% {
    transform: translate(30px, -30px);
  }
  50% {
    transform: translate(0px, 50px);
  }
  75% {
    transform: translate(-40px, -20px);
  }
}

/* Scroll Indicator */
.scroll-indicator {
  z-index: 20;
}

.scroll-dot {
  width: 6px;
  height: 6px;
  background: #00ffcc;
  border-radius: 50%;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.5;
  }
  50% {
    transform: translateY(12px);
    opacity: 1;
  }
}

/* ================= RESPONSIVE DESIGN ================= */

@media (max-width: 1024px) {
  .hero-blur-1 {
    width: 300px;
    height: 300px;
    top: -50px;
    right: -50px;
  }

  .hero-blur-2 {
    width: 250px;
    height: 250px;
  }

  .hero-blur-3 {
    width: 280px;
    height: 280px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-image-card {
    max-width: 100%;
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 2.5rem;
    letter-spacing: -0.5px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
    width: 100%;
  }

  .hero-badge {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }

  .hero-btn {
    display: flex;
    justify-content: center;
  }

  .hero-stats {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  }

  .stat-item p:first-child {
    font-size: 1.5rem;
  }

  .stat-item p:last-child {
    font-size: 0.75rem;
  }

  .hero-image-card {
    height: 350px;
  }

  .hero-grid {
    background-size: 30px 30px;
  }

  .hero-blur-1,
  .hero-blur-2,
  .hero-blur-3 {
    opacity: 0.15;
  }
}

@media (max-width: 640px) {
  .hero-section {
    min-height: auto;
    padding: 1rem 0;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
  }

  .hero-stats {
    gap: 0.75rem;
    padding-top: 1rem;
  }

  .stat-item p:first-child {
    font-size: 1.25rem;
  }

  .stat-item p:last-child {
    font-size: 0.7rem;
  }

  .hero-image-card {
    height: 300px;
    margin-top: 1.5rem;
  }

  .scroll-indicator {
    display: none;
  }
}

/* Service Cards Animation */
.service-card {
  transition: all 0.3s ease;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-10px);
}

/* ── Bento Grid Cards ── */
.bento-card {
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.bento-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
}

/* Bento skill bar animation */
.bento-bar {
  animation: bentoBarIn 1.4s cubic-bezier(0.4,0,0.2,1) 0.4s both;
}
@keyframes bentoBarIn {
  from { width: 0 !important; opacity: 0; }
}

/* Bento tag — uses CSS custom properties set inline */
.bento-tag {
  font-size: 0.68rem;
  padding: 3px 11px;
  border-radius: 9999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: var(--tb);
  color: var(--tc);
  border: 1px solid var(--tbr);
  transition: background 0.2s, transform 0.2s;
}
.bento-tag:hover {
  transform: scale(1.05);
  background: var(--tbr);
}

/* New Service Cards */
.svc-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  border-color: rgba(0,255,204,0.3) !important;
}

.svc-card-sm {
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.svc-card-sm:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.35);
}

/* Skill bar entry animation */
.svc-bar {
  animation: svcBarGrow 1.2s cubic-bezier(0.4,0,0.2,1) both;
  animation-delay: 0.3s;
}
@keyframes svcBarGrow {
  from { width: 0 !important; }
}

/* Service tag variants */
.svc-tag {
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 9999px;
  background: rgba(0,255,204,0.1);
  color: #00ffcc;
  border: 1px solid rgba(0,255,204,0.25);
}
.svc-tag-purple {
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 9999px;
  background: rgba(168,85,247,0.1);
  color: #a855f7;
  border: 1px solid rgba(168,85,247,0.25);
}
.svc-tag-blue {
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 9999px;
  background: rgba(59,130,246,0.1);
  color: #60a5fa;
  border: 1px solid rgba(59,130,246,0.25);
}
.svc-tag-yellow {
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 9999px;
  background: rgba(234,179,8,0.1);
  color: #facc15;
  border: 1px solid rgba(234,179,8,0.25);
}
.svc-tag-red {
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 9999px;
  background: rgba(239,68,68,0.1);
  color: #f87171;
  border: 1px solid rgba(239,68,68,0.25);
}
.svc-tag-teal {
  font-size: 0.7rem;
  padding: 2px 10px;
  border-radius: 9999px;
  background: rgba(20,184,166,0.1);
  color: #2dd4bf;
  border: 1px solid rgba(20,184,166,0.25);
}

/* Neon Glow Effect */
@keyframes neon-glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 255, 204, 0.4),
                0 0 20px rgba(0, 255, 204, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 204, 0.6),
                0 0 40px rgba(0, 255, 204, 0.3);
  }
}

/* Pulse Animation */
@keyframes pulse-neon {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Icon Bounce Animation */
@keyframes icon-bounce {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Gradient Text Animation */
@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Apply animations */
.service-card:hover .fa-icon {
  animation: icon-bounce 0.6s ease infinite;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #0a0e27;
}

::-webkit-scrollbar-thumb {
  background: #00ffcc;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #00ccaa;
}

/* Text gradient effect */
.bg-gradient-to-r {
  background-size: 200% 200%;
}

/* Button hover effects */
button:hover {
  animation: pulse-neon 1.5s ease-in-out infinite;
}

/* Section title styling */
#services h2 {
  letter-spacing: 1px;
  font-weight: 800;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #services h2 {
    font-size: 2.5rem;
  }

  .service-card:hover {
    transform: translateY(-8px);
  }
}

/* Additional utilities for neon effect */
.neon-border {
  border: 2px solid var(--neon-mint);
  box-shadow: 0 0 10px rgba(0, 255, 204, 0.3);
}

.neon-text {
  color: var(--neon-mint);
  text-shadow: 0 0 10px rgba(0, 255, 204, 0.5);
}

/* Who Am I Section Styles */
#about {
  position: relative;
  overflow: hidden;
  z-index: 20;
}

/* ================= ABOUT SECTION PREMIUM VISUALS ================= */

/* Animated Orbs */
.about-orb-outer {
  border: 2px solid rgba(0, 255, 204, 0.15);
  width: 450px !important;
  height: 450px !important;
  animation: aboutOrbRotate1 20s linear infinite;
}

.about-orb-middle {
  border: 2px solid rgba(0, 204, 170, 0.2);
  width: 350px;
  height: 350px;
  animation: aboutOrbRotate2 25s linear infinite reverse;
}

.about-orb-inner {
  border: 2px solid rgba(0, 255, 204, 0.25);
  width: 250px;
  height: 250px;
  animation: aboutOrbRotate3 30s linear infinite;
  background: radial-gradient(circle at 30% 30%, rgba(0, 255, 204, 0.1), transparent);
}

@keyframes aboutOrbRotate1 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes aboutOrbRotate2 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes aboutOrbRotate3 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Floating Cards Container */
.about-floating-cards {
  perspective: 1000px;
}

/* Individual Floating Cards */
.about-card {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.15), rgba(0, 204, 170, 0.1));
  border: 2px solid rgba(0, 255, 204, 0.4);
  border-radius: 20px;
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 32px rgba(0, 255, 204, 0.1);
}

.about-card:hover {
  border-color: #00ffcc;
  box-shadow: 0 12px 48px rgba(0, 255, 204, 0.25);
  transform: translateY(-10px);
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.25), rgba(0, 204, 170, 0.15));
}

.about-card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #00ffcc;
  text-align: center;
}

/* Card Positions */
.about-card-1 {
  top: 5%;
  left: 5%;
  animation: floatCard1 6s ease-in-out infinite;
}

.about-card-2 {
  top: 8%;
  right: 5%;
  animation: floatCard2 7s ease-in-out infinite;
}

.about-card-3 {
  bottom: 8%;
  left: 8%;
  animation: floatCard3 8s ease-in-out infinite;
}

.about-card-4 {
  bottom: 5%;
  right: 5%;
  animation: floatCard4 6.5s ease-in-out infinite;
}

@keyframes floatCard1 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-20px) translateX(10px);
  }
  50% {
    transform: translateY(-10px) translateX(-10px);
  }
  75% {
    transform: translateY(-25px) translateX(5px);
  }
}

@keyframes floatCard2 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(-25px) translateX(-10px);
  }
  50% {
    transform: translateY(-15px) translateX(10px);
  }
  75% {
    transform: translateY(-20px) translateX(-5px);
  }
}

@keyframes floatCard3 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(20px) translateX(10px);
  }
  50% {
    transform: translateY(10px) translateX(-10px);
  }
  75% {
    transform: translateY(25px) translateX(5px);
  }
}

@keyframes floatCard4 {
  0%, 100% {
    transform: translateY(0px) translateX(0px);
  }
  25% {
    transform: translateY(25px) translateX(-10px);
  }
  50% {
    transform: translateY(15px) translateX(10px);
  }
  75% {
    transform: translateY(20px) translateX(-5px);
  }
}

/* Central Stats Box */
.about-stats-center {
  z-index: 20;
  animation: aboutStatsPulse 3s ease-in-out infinite;
}

@keyframes aboutStatsPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.02);
  }
}

.about-stats-box {
  width: 240px;
  background: linear-gradient(135deg, rgba(10, 14, 39, 0.95), rgba(15, 25, 42, 0.9));
  border: 2px solid rgba(0, 255, 204, 0.5);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 255, 204, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* Decorative Rotating Elements */
.about-rotate-slow {
  animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ================= RESPONSIVE ABOUT VISUALS ================= */

@media (max-width: 1024px) {
  .about-orb-outer {
    width: 350px !important;
    height: 350px !important;
  }

  .about-orb-middle {
    width: 270px;
    height: 270px;
  }

  .about-orb-inner {
    width: 190px;
    height: 190px;
  }

  .about-card {
    width: 100px;
    height: 100px;
  }

  .about-stats-box {
    width: 220px;
    padding: 20px;
  }

  .about-stats-box h3 {
    font-size: 1.1rem;
  }

  .about-stats-box p {
    font-size: 0.85rem;
  }
}

@media (max-width: 768px) {
  .about-orb-outer {
    width: 280px !important;
    height: 280px !important;
  }

  .about-orb-middle {
    width: 210px;
    height: 210px;
  }

  .about-orb-inner {
    width: 140px;
    height: 140px;
  }

  .about-card {
    width: 80px;
    height: 80px;
    border-radius: 15px;
  }

  .about-card-inner {
    gap: 4px;
  }

  .about-card-inner i {
    font-size: 1.25rem !important;
  }

  .about-card-inner p {
    font-size: 0.65rem !important;
  }

  .about-card-1 {
    top: 10%;
    left: 0%;
  }

  .about-card-2 {
    top: 10%;
    right: 0%;
  }

  .about-card-3 {
    bottom: 10%;
    left: 0%;
  }

  .about-card-4 {
    bottom: 10%;
    right: 0%;
  }

  .about-stats-box {
    width: 200px;
    padding: 16px;
  }

  .about-stats-box h3 {
    font-size: 1rem;
  }

  .about-stats-box p {
    font-size: 0.8rem;
  }

  .about-rotate-slow {
    width: 50px !important;
    height: 50px !important;
  }
}

@media (max-width: 640px) {
  .about-orb-outer {
    width: 220px !important;
    height: 220px !important;
  }

  .about-orb-middle {
    width: 160px;
    height: 160px;
  }

  .about-orb-inner {
    width: 100px;
    height: 100px;
  }

  .about-card {
    width: 70px;
    height: 70px;
    font-size: 0.9rem;
  }

  .about-card-inner i {
    font-size: 1rem !important;
  }

  .about-card-inner p {
    font-size: 0.6rem !important;
  }

  .about-stats-box {
    width: 180px;
    padding: 12px;
  }

  .about-stats-box h3 {
    font-size: 0.95rem;
  }

  .about-stats-box p {
    font-size: 0.75rem;
  }

  .about-rotate-slow {
    width: 35px !important;
    height: 35px !important;
    display: none;
  }
}

/* All Sections Base Styling */
section {
  position: relative;
  z-index: 20;
}

#services,
#projects,
#contact,
#coffee {
  position: relative;
  z-index: 20;
}

.about-text-card {
  animation: fadeInUp 0.8s ease;
}

.expertise-card {
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
}

.expertise-card:nth-child(1) {
  animation-delay: 0.1s;
}

.expertise-card:nth-child(2) {
  animation-delay: 0.2s;
}

.expertise-card:hover {
  transform: translateY(-5px);
}

.about-details-card {
  animation: fadeInUp 0.8s ease 0.3s both;
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.05) 0%, rgba(0, 204, 170, 0.02) 100%);
}

.skill-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.15) 0%, rgba(0, 204, 170, 0.1) 100%);
  color: #00ffcc;
  border: 1px solid rgba(0, 255, 204, 0.3);
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.skill-badge:hover {
  background: linear-gradient(135deg, rgba(0, 255, 204, 0.25) 0%, rgba(0, 204, 170, 0.2) 100%);
  border-color: #00ffcc;
  box-shadow: 0 0 15px rgba(0, 255, 204, 0.2);
  transform: translateY(-2px);
}

/* Stat Items */
.stat-item {
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
}

.stat-item:nth-child(1) {
  animation-delay: 0.4s;
}

.stat-item:nth-child(2) {
  animation-delay: 0.5s;
}

.stat-item:nth-child(3) {
  animation-delay: 0.6s;
}

/* Info Cards */
.info-card {
  animation: fadeInUp 0.8s ease;
  animation-fill-mode: both;
  transition: all 0.3s ease;
}

.info-card:nth-child(1) {
  animation-delay: 0.5s;
}

.info-card:nth-child(2) {
  animation-delay: 0.6s;
}

.info-card:nth-child(3) {
  animation-delay: 0.7s;
}

.info-card:hover {
  transform: translateY(-10px);
  background: rgba(10, 14, 39, 0.8) !important;
}

.info-card:hover i {
  animation: icon-bounce 0.6s ease infinite;
}

/* Fade In Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delay Utilities */
.delay-1000 {
  animation-delay: 1s;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  #about .grid {
    grid-template-columns: 1fr;
  }

  .about-details-card {
    font-size: 0.95rem;
  }

  .skill-badge {
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
  }
}

@media (max-width: 768px) {
  #about h2 {
    font-size: 2.5rem;
  }

  .stat-item {
    padding: 1rem !important;
  }

  .expertise-card {
    padding: 1.25rem !important;
  }
}

/* Featured Projects Section */
#projects {
  position: relative;
  overflow: hidden;
}

.project-card {
  transition: all 0.3s ease;
  cursor: pointer;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.project-card:hover {
  box-shadow: 0 0 40px rgba(0, 255, 204, 0.3);
}

.project-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.project-card:hover h3 {
  letter-spacing: 0.5px;
}

/* Project Card Animation */
@keyframes slideInProject {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#projects .project-card {
  animation: slideInProject 0.6s ease;
  animation-fill-mode: both;
}

#projects .project-card:nth-child(1) {
  animation-delay: 0.1s;
}

#projects .project-card:nth-child(2) {
  animation-delay: 0.2s;
}

#projects .project-card:nth-child(3) {
  animation-delay: 0.3s;
}

/* Project Card Number Animation */
.project-card .rounded-full {
  transition: all 0.3s ease;
}

.project-card:hover .rounded-full {
  transform: scale(1.1) rotate(10deg);
}

/* Responsive for Projects */
@media (max-width: 1024px) {
  #projects .grid {
    grid-template-columns: 1fr;
  }

  .project-card {
    height: 300px;
  }

  .project-card h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  #projects h2 {
    font-size: 2.5rem;
  }

  .project-card {
    height: 280px;
  }

  .project-card h3 {
    font-size: 1.25rem;
  }

  .project-card p {
    font-size: 0.85rem;
  }
}

/* Explore All Projects Button Animation */
a[href="portfolio.html"] {
  position: relative;
  z-index: 1;
}


/* Contact Form Styles */
#contact {
  position: relative;
}

#contact form input,
#contact form textarea {
  transition: all 0.18s ease;
}

#contact form input:focus,
#contact form textarea:focus {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 255, 204, 0.06), 0 0 18px rgba(0, 255, 204, 0.08);
}

#contact .container a {
  color: var(--neon-mint);
}

/* Small screens adjustments */
@media (max-width: 640px) {
  #contact .max-w-4xl {
    padding: 1.25rem;
  }

  #contact .text-center p {
    font-size: 0.95rem;
  }
}

/* Form button micro animation */
#contact button:hover {
  box-shadow: 0 10px 40px rgba(0, 255, 204, 0.18), 0 0 30px rgba(0, 255, 204, 0.08);
}

/* Buy Me A Coffee Styles */
#coffee {
  position: relative;
}

#coffee .fa-coffee,
#coffee .fa-heart {
  color: #0a0e27;
}

#coffee a {
  text-decoration: none;
}

#coffee .bg-\[\#0f1b2a\]\/60 {
  background: rgba(15, 27, 42, 0.6);
}

@media (max-width: 640px) {
  #coffee .max-w-3xl {
    padding: 1rem;
  }
}
