/* Base font */
body {
  font-family: 'Inter', sans-serif;
}

/* Canvas for particles */
canvas#particles {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}

/* Golden Text Effect */
.golden-text {
  background: linear-gradient(
    135deg,
    #ffd700 0%,
    #ffed4e 25%,
    #ff9500 50%,
    #ffd700 75%,
    #fff2a1 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  animation: goldenGlow 3s ease-in-out infinite alternate;
}

@keyframes goldenGlow {
  0% {
    background-position: 0% 50%;
    filter: brightness(1) drop-shadow(0 0 5px rgba(255, 215, 0, 0.4));
  }
  100% {
    background-position: 100% 50%;
    filter: brightness(1.2) drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
  }
}

.golden-text:hover {
  animation-duration: 1s;
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

/* MOBILE - Enhanced Golden Text Effects */
@media (max-width: 768px) {
  .hero-golden-text {
    background: linear-gradient(
      270deg,
      #ffd700 0%,
      #ffa500 20%,
      #ffff00 40%,
      #ffd700 60%,
      #ffa500 80%,
      #ffd700 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: mobileGradientFlow 6s ease-in-out infinite;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.6);
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    font-weight: 700;
    position: relative;
    display: inline-block;
    cursor: pointer;
  }

  @keyframes mobileGradientFlow {
    0%,
    100% {
      background-position: 0% 50%;
      filter: brightness(1) drop-shadow(0 0 8px rgba(255, 215, 0, 0.4));
    }
    25% {
      background-position: 100% 50%;
      filter: brightness(1.1) drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
    }
    50% {
      background-position: 200% 50%;
      filter: brightness(1.2) drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    }
    75% {
      background-position: 300% 50%;
      filter: brightness(1.1) drop-shadow(0 0 12px rgba(255, 215, 0, 0.5));
    }
  }

  .hero-golden-text:hover,
  .hero-golden-text:active {
    transform: scale(1.08);
    animation-duration: 3s;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
    filter: brightness(1.3) drop-shadow(0 0 20px rgba(255, 215, 0, 0.7));
    transition: all 0.3s ease;
  }

  .hero-golden-text::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(
      ellipse 200px 100px at center,
      rgba(255, 215, 0, 0.2) 0%,
      rgba(255, 165, 0, 0.1) 50%,
      transparent 70%
    );
    border-radius: 50%;
    z-index: -1;
    animation: mobileGlow 4s ease-in-out infinite;
    filter: blur(15px);
  }

  @keyframes mobileGlow {
    0%,
    100% {
      opacity: 0.3;
      transform: scale(0.9);
    }
    50% {
      opacity: 0.7;
      transform: scale(1.1);
    }
  }

  .hero-underline {
    background: linear-gradient(
      to right,
      #ffd700 0%,
      #ffa500 25%,
      #ffff00 50%,
      #ffa500 75%,
      #ffd700 100%
    ) !important;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.5);
    animation: mobileUnderlineGlow 5s ease-in-out infinite;
  }

  @keyframes mobileUnderlineGlow {
    0%,
    100% {
      box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
      transform: scaleX(1);
    }
    50% {
      box-shadow: 0 4px 15px rgba(255, 215, 0, 0.7);
      transform: scaleX(1.05);
    }
  }

  .hero-title::after {
    content: '₹';
    position: absolute;
    font-size: 2.5rem;
    color: #ffd700;
    animation: mobileSparkle 4s ease-in-out infinite;
    opacity: 0;
    pointer-events: none;
  }

  @keyframes mobileSparkle {
    0%,
    90%,
    100% {
      opacity: 0;
      transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    10%,
    80% {
      opacity: 1;
      transform: translateX(20px) translateY(-20px) rotate(0deg);
    }
    45% {
      opacity: 0.7;
      transform: translateX(-15px) translateY(-30px) rotate(90deg);
    }
  }

  .hero-golden-text {
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
  }
}

/* DESKTOP ONLY - Golden Hero Text Effect */
@media (min-width: 769px) {
  #home {
    background: linear-gradient(-45deg, #000000, #1a1a2e, #16213e, #0f3460);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
  }

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

  .hero-glow-container {
    position: relative;
    display: inline-block;
  }

  .hero-glow-container::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(
      ellipse 800px 400px at center,
      rgba(255, 215, 0, 0.15) 0%,
      rgba(255, 165, 0, 0.1) 25%,
      rgba(255, 140, 0, 0.05) 50%,
      transparent 70%
    );
    border-radius: 50%;
    z-index: 0;
    animation: heroGlowPulse 4s ease-in-out infinite;
    filter: blur(20px);
  }

  @keyframes heroGlowPulse {
    0%,
    100% {
      opacity: 0.4;
      transform: scale(0.8);
    }
    50% {
      opacity: 0.8;
      transform: scale(1.2);
    }
  }

  .hero-golden-text {
    background: linear-gradient(
      135deg,
      #ffd700 0%,
      #ffed4e 25%,
      #ff9500 50%,
      #ffd700 75%,
      #fff2a1 100%
    );
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
    animation: heroGoldenGlow 3s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
  }

  

  @keyframes heroGoldenGlow {
    0% {
      background-position: 0% 50%;
      filter: brightness(1) drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
    }
    100% {
      background-position: 100% 50%;
      filter: brightness(1.2) drop-shadow(0 0 25px rgba(255, 215, 0, 0.6));
    }
  }
  .hero-title::after {
    content: '₹';
    position: absolute;
    top: -10px;
    right: -30px;
    font-size: 3.5rem;
    color: #ffd700;
    animation: desktopSparkle 5s ease-in-out infinite; /* ✅ Fixed animation name */
    opacity: 0;
    pointer-events: none;
  }
  
  /* Add this new animation inside your desktop media query */
  @keyframes desktopSparkle {
    0%, 90%, 100% {
      opacity: 0;
      transform: translateX(0px) translateY(0px) rotate(0deg);
    }
    10%, 80% {
      opacity: 1;
      transform: translateX(30px) translateY(-25px) rotate(15deg);
    }
    45% {
      opacity: 1;
      transform: translateX(-20px) translateY(-35px) rotate(-10deg);
    }
  }
  
  .hero-golden-text:hover {
    transform: scale(1.1);
    filter: brightness(1.4) drop-shadow(0 0 35px rgba(255, 215, 0, 0.8)) !important;
    animation-duration: 1.5s;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  }

  .hero-title:hover .hero-golden-text {
    transform: scale(1.1);
    filter: brightness(1.4) drop-shadow(0 0 35px rgba(255, 215, 0, 0.8)) !important;
    animation-duration: 1.5s;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
  }

  .hero-glow-container:hover::before {
    opacity: 1;
    transform: scale(1.3);
    filter: blur(25px);
    transition: all 0.4s ease;
  }

  .hero-title {
    position: relative;
    z-index: 2;
  }

  .hero-underline {
    background: linear-gradient(to right, #ffd700, #ff9500, #ffd700) !important;
    box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
    animation: underlineGlow 3s ease-in-out infinite alternate;
  }

  @keyframes underlineGlow {
    0% {
      box-shadow: 0 2px 10px rgba(255, 215, 0, 0.4);
      transform: scaleX(1);
    }
    100% {
      box-shadow: 0 4px 20px rgba(255, 215, 0, 0.7);
      transform: scaleX(1.05);
    }
  }

  .hero-title:hover + .hero-underline {
    transform: scaleX(1.2);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 1);
    transition: all 0.3s ease;
  }
}

/* Client Category Cards */
.client-category {
  transition: all 0.3s ease;
}
.client-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(59, 130, 246, 0.1);
}

/* Fade In Animation */
.animate-fade-in-up {
  animation: fadeInUp 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(30px);
}
.animate-delay-1 {
  animation-delay: 0.2s;
}
.animate-delay-2 {
  animation-delay: 0.4s;
}
.animate-delay-3 {
  animation-delay: 0.6s;
}

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

/* Profile Image */
.profile-image {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(59, 130, 246, 0.3);
  transition: all 0.3s ease;
}
.team-card:hover .profile-image {
  border-color: rgba(59, 130, 246, 0.6);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Mobile Menu Animation */
.mobile-menu-enter {
  animation: slideIn 0.3s ease-out;
}

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

/* Mobile Responsive tweaks */
@media (max-width: 768px) {
  nav {
    top: 5px;
    left: 5px;
    right: 5px;
    width: auto;
    transform: none;
    padding: 12px;
  }
  #home h1 {
    font-size: 3rem !important;
    line-height: 1.1;
  }
  #about h2,
  #performance h2,
  #services h2,
  #clients h2 {
    font-size: 2.5rem !important;
  }
  #about p {
    font-size: 1.2rem !important;
  }
  .team-card,
  .service-card,
  .client-category {
    margin: 0 8px;
  }
  .stat-card {
    margin: 0 8px;
  }
  #contact > div {
    margin: 0 16px;
    max-width: none;
  }
  .typing-text {
    font-size: 1.5rem !important;
  }
  section {
    padding: 60px 16px;
  }
  #particles {
    opacity: 0.3;
  }
  .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Small screens */
@media (max-width: 480px) {
  #home h1 {
    font-size: 2.5rem !important;
  }
  nav {
    padding: 8px;
  }
  .team-card,
  .stat-card,
  .service-card,
  .client-category {
    margin: 0 4px;
  }
  section {
    padding: 40px 8px;
  }
}

/* Contact field radial gradient border effect */
.contact-box .input-wrapper {
  padding: 2px;
  border-radius: 0.5rem;
  background: radial-gradient(
    600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 215, 0, 0.4),
    transparent 80%
  );
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.contact-box .input-wrapper:hover {
  opacity: 1;
  background: radial-gradient(
    400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 215, 0, 0.8),
    rgba(255, 165, 0, 0.3) 50%,
    transparent 80%
  );
}

.contact-box input,
.contact-box select,
.contact-box textarea {
  width: 100%;
  background-color: rgba(30, 41, 59, 0.95);
  color: white;
  border: none;
  border-radius: 0.375rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  outline: none;
  transition: all 0.3s ease;
}

.contact-box input::placeholder,
.contact-box select::placeholder,
.contact-box textarea::placeholder {
  color: #94a3b8;
  opacity: 0.8;
}

.contact-box input:focus,
.contact-box select:focus,
.contact-box textarea:focus {
  background-color: rgba(30, 41, 59, 1);
  box-shadow: inset 0 0 0 1px rgba(255, 215, 0, 0.3);
}

/* Select arrow icon */
.contact-box select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffd700' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  cursor: pointer;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
}
.contact-box select option {
  background-color: #1e293b;
  color: white;
  padding: 0.5rem;
}

/* Submit button styling */
.contact-box button[type='submit'] {
  color: #1a1a1a;
  font-weight: 600;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}
.contact-box button[type='submit']:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
  background: linear-gradient(135deg, #00f7ff77, #fae105, #5900ff);
}
/* Sleek Minimal Footer */
footer {
  position: relative;
  z-index: 10;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Compact footer layout */
footer .flex {
  min-height: auto;
}

/* Smaller social media icons */
footer a {
  transition: all 0.2s ease;
  will-change: transform;
}

footer a:hover {
  transform: scale(1.1);
}

/* Social media icon hover effects */
footer a:hover svg {
  filter: drop-shadow(0 2px 4px rgba(59, 130, 246, 0.3));
}

/* LinkedIn hover */
footer a:hover:first-child {
  background: #0077b5 !important;
  box-shadow: 0 2px 8px rgba(0, 119, 181, 0.4);
}

/* Instagram hover */
footer a:hover:last-child {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  ) !important;
  box-shadow: 0 2px 8px rgba(188, 24, 136, 0.4);
}

/* ARN gradient animation */
footer .bg-gradient-to-r {
  background-size: 200% 100%;
  animation: gradientShift 3s ease-in-out infinite;
}

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

/* Mobile responsive */
@media (max-width: 768px) {
  footer {
    padding: 12px 16px;
    margin-top: 2rem;
  }

  footer .space-y-2 > * + * {
    margin-top: 0.25rem;
  }

  footer .text-xs {
    font-size: 0.7rem;
  }

  footer .text-sm {
    font-size: 0.8rem;
  }
}

/* Enhanced accessibility */
footer a:focus {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
  border-radius: 50%;
}

/* Remove any extra spacing */
footer p {
  margin: 0;
  padding: 0;
}
/* Enhanced service card icons for dark theme */
.service-card img {
  transition: all 0.3s ease;
  filter: brightness(1.2) contrast(1.1)
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 8px;
}

.service-card:hover img {
  transform: scale(1.15);
  filter: brightness(1.4) contrast(1.2)
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
  background: rgba(255, 255, 255, 0.1);
}

/* Ensure perfect visibility on all devices */
@media (max-width: 768px) {
  .service-card img {
    width: 48px;
    height: 48px;
    filter: brightness(1.3) contrast(1.2);
  }

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

/* Additional glow effect for icons */
.service-card:hover img {
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3), 0 4px 12px rgba(0, 0, 0, 0.6);
}
/* Increased size for service card icons */
.service-card img {
  width: 80px !important;
  height: 80px !important;
  transition: all 0.3s ease;
  filter: brightness(1.2) contrast(1.1)
    drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 8px;
}

.service-card:hover img {
  transform: scale(1.15);
  filter: brightness(1.4) contrast(1.2)
    drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3), 0 4px 12px rgba(0, 0, 0, 0.6);
}

/* Mobile responsive sizing */
@media (max-width: 768px) {
  .service-card img {
    width: 60px !important;
    height: 60px !important;
    filter: brightness(1.3) contrast(1.2);
  }

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

/* Tablet sizing */
@media (min-width: 769px) and (max-width: 1024px) {
  .service-card img {
    width: 72px !important;
    height: 72px !important;
  }
}

/* Large screen enhancement */
@media (min-width: 1200px) {
  .service-card img {
    width: 88px !important;
    height: 88px !important;
  }
}
/* Image containers with fixed dimensions */
.service-card .image-container {
  width: 120px;
  height: 120px;
  margin: 0 auto 1.5rem auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 12px;
  transition: all 0.3s ease;
}

.service-card:hover .image-container {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
  box-shadow: 
    0 0 25px rgba(59, 130, 246, 0.2),
    0 8px 20px rgba(0,0,0,0.3);
}

/* Images fill the entire container */
.service-card img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  border-radius: 8px;
  transition: all 0.3s ease;
  filter: brightness(1.2) contrast(1.1) drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.service-card:hover img {
  filter: brightness(1.4) contrast(1.2) drop-shadow(0 4px 12px rgba(0,0,0,0.6));
  transform: scale(1.02);
}

/* Responsive sizing */
@media (max-width: 768px) {
  .service-card .image-container {
    width: 90px;
    height: 90px;
    margin-bottom: 1rem;
    padding: 8px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .service-card .image-container {
    width: 100px;
    height: 100px;
    padding: 10px;
  }
}

/* Large screen enhancement */
@media (min-width: 1200px) {
  .service-card .image-container {
    width: 140px;
    height: 140px;
    padding: 16px;
  }
}

/* Additional glow effects for premium look */
.service-card:hover .image-container {
  box-shadow: 
    inset 0 0 20px rgba(255, 255, 255, 0.1),
    0 0 30px rgba(59, 130, 246, 0.3),
    0 10px 25px rgba(0,0,0,0.4);
}
/* Container with zero padding for full image fill */
.image-container-full {
  width: 120px !important;
  height: 120px !important;
  margin: 0 auto 1.5rem auto !important;
  padding: 0 !important;
  display: block !important;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.service-card:hover .image-container-full {
  background: rgba(255, 255, 255, 0.08);
  transform: scale(1.05);
  box-shadow: 
    0 0 25px rgba(59, 130, 246, 0.2),
    0 8px 20px rgba(0,0,0,0.3);
}

/* Images completely fill container with no padding/margin */
.full-fill-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 12px !important;
  display: block !important;
  transition: all 0.3s ease;
  filter: brightness(1.2) contrast(1.1);
}

.service-card:hover .full-fill-image {
  filter: brightness(1.4) contrast(1.2);
  transform: scale(1.02);
}

/* Responsive sizing */
@media (max-width: 768px) {
  .image-container-full {
    width: 90px !important;
    height: 90px !important;
    margin-bottom: 1rem !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .image-container-full {
    width: 100px !important;
    height: 100px !important;
  }
}

@media (min-width: 1200px) {
  .image-container-full {
    width: 140px !important;
    height: 140px !important;
  }
}

/* Remove any conflicting styles */
.service-card img {
  box-shadow: none !important;
  background: none !important;
}

/* Override any Tailwind conflicting styles */
.service-card .full-fill-image {
  max-width: none !important;
  max-height: none !important;
  min-width: 100% !important;
  min-height: 100% !important;
}
/* Enhanced mobile menu social icons */
#mobileMenuOverlay .flex.space-x-6 a {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#mobileMenuOverlay .flex.space-x-6 a:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* LinkedIn specific hover effect in mobile menu */
#mobileMenuOverlay .flex.space-x-6 a:first-child:hover {
  background: #0077B5 !important;
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}

/* Instagram gradient hover effect in mobile menu */
#mobileMenuOverlay .flex.space-x-6 a:last-child:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
  box-shadow: 0 8px 25px rgba(188, 24, 136, 0.4);
}

/* Mobile menu icon glow effect */
#mobileMenuOverlay .flex.space-x-6 a svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

#mobileMenuOverlay .flex.space-x-6 a:hover svg {
  filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.2));
}

/* Focus states for accessibility */
#mobileMenuOverlay .flex.space-x-6 a:focus {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}

/* Animation for social icons when menu opens */
.mobile-menu-enter .flex.space-x-6 a:first-child {
  animation: slideInLeft 0.5s ease-out 0.6s both;
}

.mobile-menu-enter .flex.space-x-6 a:last-child {
  animation: slideInRight 0.5s ease-out 0.7s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}
/* Enhanced mobile menu social icons with 3 icons */
#mobileMenuOverlay .flex.space-x-8 a {
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

#mobileMenuOverlay .flex.space-x-8 a:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* LinkedIn specific hover effect in mobile menu */
#mobileMenuOverlay .flex.space-x-8 a:first-child:hover {
  background: #0077B5 !important;
  box-shadow: 0 8px 25px rgba(0, 119, 181, 0.4);
}

/* WhatsApp specific hover effect in mobile menu */
#mobileMenuOverlay .flex.space-x-8 a:nth-child(2):hover {
  background: #25D366 !important;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

/* Instagram gradient hover effect in mobile menu */
#mobileMenuOverlay .flex.space-x-8 a:last-child:hover {
  box-shadow: 0 8px 25px rgba(188, 24, 136, 0.4);
}

/* Mobile menu icon glow effect */
#mobileMenuOverlay .flex.space-x-8 a svg {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

#mobileMenuOverlay .flex.space-x-8 a:hover svg {
  filter: drop-shadow(0 4px 8px rgba(255, 255, 255, 0.2));
}

/* Focus states for accessibility */
#mobileMenuOverlay .flex.space-x-8 a:focus {
  outline: 2px solid #60a5fa;
  outline-offset: 2px;
}

/* Staggered entrance animations for 3 icons */
.mobile-menu-enter .flex.space-x-8 a:nth-child(1) {
  animation: slideInLeft 0.5s ease-out 0.6s both;
}

.mobile-menu-enter .flex.space-x-8 a:nth-child(2) {
  animation: slideInUp 0.5s ease-out 0.7s both;
}

.mobile-menu-enter .flex.space-x-8 a:nth-child(3) {
  animation: slideInRight 0.5s ease-out 0.8s both;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Mobile menu responsive adjustments */
@media (max-width: 480px) {
  #mobileMenuOverlay .flex.space-x-8 {
    space-x: 6;
  }
  
  #mobileMenuOverlay .flex.space-x-8 a {
    width: 52px;
    height: 52px;
  }
  
  #mobileMenuOverlay .flex.space-x-8 a svg {
    width: 24px;
    height: 24px;
  }
}
