/* styles.css */
body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3, h4 {
  letter-spacing: -0.5px;
}

a {
  transition: all 0.2s ease-in-out;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.cta-btn:hover {
  background-color: #2563eb;
  color: #fff;
}

.footer-columns > div {
  min-width: 220px;
  max-width: 300px;
}


.footer-logo {
  height: 30px;
  width: 30%;
  display: block;
  object-fit: contain;
  margin-top: 4px;
}



/* CSS on Hero */

        .gradient-text {
            background: linear-gradient(45deg, #60a5fa, #3b82f6, #1d4ed8, #60a5fa);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite;
        }
        
        .shimmer-effect {
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
            background-size: 200% 100%;
            animation: shimmer 2s linear infinite;
        }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .text-shadow-strong {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        
        .animate-delay-200 { animation-delay: 0.2s; }
        .animate-delay-400 { animation-delay: 0.4s; }
        .animate-delay-600 { animation-delay: 0.6s; }
        .animate-delay-800 { animation-delay: 0.8s; }
        .animate-delay-1000 { animation-delay: 1s; }
        
        /* Custom overlay gradient */
        .dynamic-overlay {
            background: linear-gradient(135deg, 
                rgba(30, 64, 175, 0.8) 0%, 
                rgba(59, 130, 246, 0.7) 25%, 
                rgba(147, 51, 234, 0.6) 50%, 
                rgba(59, 130, 246, 0.7) 75%, 
                rgba(30, 64, 175, 0.8) 100%);
            background-size: 400% 400%;
            animation: gradientShift 8s ease-in-out infinite;
        }
        
        /* Floating particles */
        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            pointer-events: none;
            animation: float 6s ease-in-out infinite;
        }
        .particle:nth-child(1) { width: 8px; height: 8px; top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 12px; height: 12px; top: 60%; left: 20%; animation-delay: 1s; }
        .particle:nth-child(3) { width: 6px; height: 6px; top: 30%; left: 80%; animation-delay: 2s; }
        .particle:nth-child(4) { width: 10px; height: 10px; top: 80%; left: 70%; animation-delay: 3s; }
        .particle:nth-child(5) { width: 14px; height: 14px; top: 40%; left: 90%; animation-delay: 4s; }
        .particle:nth-child(6) { width: 8px; height: 8px; top: 70%; left: 15%; animation-delay: 5s; }


        

        /*CSS Navbar */

         /* Minimal custom CSS - only what Tailwind can't handle */
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #1d4ed8);
            transform: translateX(-50%);
            transition: width 0.3s ease;
        }
        .nav-link:hover::before {
            width: 100%;
        }
        
        .hamburger-line {
            transition: all 0.3s ease;
        }
        .hamburger-open .line1 {
            transform: rotate(45deg) translate(6px, 6px);
        }
        .hamburger-open .line2 {
            opacity: 0;
        }
        .hamburger-open .line3 {
            transform: rotate(-45deg) translate(6px, -6px);
        }



        /*css Hero section */

        .gradient-text {
            background: linear-gradient(45deg, #60a5fa, #3b82f6, #1d4ed8, #60a5fa);
            background-size: 300% 300%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 4s ease-in-out infinite;
        }
        
        .shimmer-effect {
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
            background-size: 200% 100%;
            animation: shimmer 2s linear infinite;
        }
        
        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .text-shadow-strong {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }
        
        /* Floating particles */
        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            pointer-events: none;
            animation: float 6s ease-in-out infinite;
        }
        .particle:nth-child(1) { width: 8px; height: 8px; top: 20%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 12px; height: 12px; top: 60%; left: 20%; animation-delay: 1s; }
        .particle:nth-child(3) { width: 6px; height: 6px; top: 30%; left: 80%; animation-delay: 2s; }
        .particle:nth-child(4) { width: 10px; height: 10px; top: 80%; left: 70%; animation-delay: 3s; }
        .particle:nth-child(5) { width: 14px; height: 14px; top: 40%; left: 90%; animation-delay: 4s; }
        .particle:nth-child(6) { width: 8px; height: 8px; top: 70%; left: 15%; animation-delay: 5s; }

        /* CSS for What we do */
        .service-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .service-card:hover {
            transform: translateY(-12px) scale(1.02);
        }
        .service-icon {
            transition: all 0.3s ease;
        }
        .service-card:hover .service-icon {
            transform: scale(1.2) rotate(10deg);
        }


        /* CSS for Industries */
          .business-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .business-card:hover {
            transform: translateY(-8px) scale(1.02);
        }
        .business-icon {
            transition: all 0.3s ease;
        }
        .business-card:hover .business-icon {
            transform: scale(1.1) rotate(10deg);
        }

        /*CSS for Price */

                .pricing-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .pricing-card:hover {
            transform: translateY(-12px) scale(1.02);
        }
        .popular-badge {
            background: linear-gradient(135deg, #10b981, #059669);
        }

        /* CSS for About me (Developer) */
        .image-container {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .image-container:hover {
            transform: scale(1.05) rotate(2deg);
        }
        .skill-badge {
            transition: all 0.3s ease;
        }
        .skill-badge:hover {
            transform: translateY(-3px) scale(1.05);
        }
        

        /* CSS for Portfolio */

 CSS for Portfolio - UPDATED */
.portfolio-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.portfolio-card:hover {
    transform: translateY(-12px) scale(1.02);
}

.portfolio-image {
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Blue/Purple overlay that appears on hover */
.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(147, 51, 234, 0.8));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.portfolio-card:hover .portfolio-image::before {
    opacity: 1;
}

/* The "Visit Site" button overlay */
.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.results-badge {
    transition: all 0.3s ease;
}

.results-badge:hover {
    transform: scale(1.05);
}
        /*Css for Testomonials*/

        .testimonial-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .testimonial-card:hover {
            transform: translateY(-12px) scale(1.02);
        }
        .quote-icon {
            transition: all 0.3s ease;
        }
        .testimonial-card:hover .quote-icon {
            transform: scale(1.2) rotate(10deg);
        }


        /*css for CTA at end of home page*/
               .contact-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .contact-card:hover {
            transform: translateY(-12px) scale(1.02);
        }


        /* CSS Footer */

        .footer-link {
            transition: all 0.3s ease;
        }
        .footer-link:hover {
            transform: translateX(5px);
        }
        .logo-container {
            transition: all 0.4s ease;
        }
        .logo-container:hover {
            transform: scale(1.05) rotate(2deg);
        }
        .contact-item {
            transition: all 0.3s ease;
        }
        .contact-item:hover {
            transform: translateY(-2px);
            background: rgba(59, 130, 246, 0.1);
        }






/* ===== CUSTOM ANIMATIONS & EFFECTS ===== */

/* Custom Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

@keyframes float-delayed {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(-3deg); }
}

@keyframes float-slow {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(2deg); }
}

@keyframes bounce-gentle {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}

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

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fade-in-left {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fade-in-right {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
    50% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.8); }
}

@keyframes particle-float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px);
        opacity: 0.4;
    }
    33% { 
        transform: translateY(-20px) translateX(10px);
        opacity: 0.8;
    }
    66% { 
        transform: translateY(-10px) translateX(-10px);
        opacity: 0.6;
    }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Apply animations */
.animate-float { animation: float 6s ease-in-out infinite; }
.animate-float-delayed { animation: float-delayed 6s ease-in-out infinite 2s; }
.animate-float-slow { animation: float-slow 8s ease-in-out infinite; }
.animate-bounce-gentle { animation: bounce-gentle 2s ease-in-out infinite; }
.animate-fadeInUp { animation: fadeInUp 1s ease-out forwards; }
.animate-slide-up { animation: slide-up 1s ease-out forwards; }
.animate-slide-up-delayed { animation: slide-up 1s ease-out 0.3s forwards; }
.animate-slide-up-delayed-2 { animation: slide-up 1s ease-out 0.6s forwards; }
.animate-fade-in-up { animation: fade-in-up 1s ease-out forwards; }
.animate-fade-in-left { animation: fade-in-left 1s ease-out forwards; }
.animate-fade-in-right { animation: fade-in-right 1s ease-out forwards; }
.animate-scale-in { animation: scale-in 0.8s ease-out forwards; }
.animate-gradient-shift { animation: gradient-shift 3s ease-in-out infinite; background-size: 200% 200%; }
.animate-pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
.animate-pulse-slow { animation: pulse 3s ease-in-out infinite; }

/* Custom styles */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gradient-text {
    background: linear-gradient(45deg, #3B82F6, #8B5CF6, #EF4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s ease-in-out infinite;
    background-size: 200% 200%;
}

.text-shadow-strong {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Particle styles */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particle-float 8s ease-in-out infinite;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { top: 40%; left: 80%; animation-delay: 1s; }
.particle:nth-child(3) { top: 60%; left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { top: 80%; left: 70%; animation-delay: 3s; }
.particle:nth-child(5) { top: 30%; left: 60%; animation-delay: 4s; }
.particle:nth-child(6) { top: 70%; left: 20%; animation-delay: 5s; }

/* Hover effects */
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    transition: all 0.3s ease;
}

.business-card:hover .business-icon {
    transform: scale(1.1) rotate(-5deg);
    transition: all 0.3s ease;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.portfolio-image:hover .portfolio-overlay {
    opacity: 1;
}

/* Popular badge */
.popular-badge {
    background: linear-gradient(45deg, #8B5CF6, #3B82F6);
}

/* Shimmer effect */
.shimmer-effect {
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 2s infinite;
}

/* Responsive improvements */
@media (max-width: 768px) {
    .text-shadow-strong {
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    }
}