/* ============================================
   MAIN STYLESHEET
   Custom CSS for Web & Mobile App Development Agency
   ============================================ */

/* Global Font Family */
* {
    font-family: 'Poppins', sans-serif;
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   HOVER EFFECTS
   ============================================ */

.hover-scale {
    transition: transform 0.3s ease;
}

.hover-scale:hover {
    transform: scale(1.05);
}

/* ============================================
   SMOOTH SCROLL
   ============================================ */

html {
    scroll-behavior: smooth;
}

/* ============================================
   BRAND COLORS
   ============================================ */

:root {
    --brand-blue: #3b82f6;
    --brand-blue-dark: #2563eb;
    --brand-pink: #ec4899;
    --brand-pink-dark: #db2777;
    --brand-gradient: linear-gradient(135deg, #3b82f6 0%, #ec4899 100%);
    --brand-gradient-hover: linear-gradient(135deg, #2563eb 0%, #db2777 100%);
}

/* ============================================
   GRADIENT BACKGROUNDS
   ============================================ */

.gradient-bg {
    background: linear-gradient(135deg, #3b82f6 0%, #ec4899 100%);
}

.brand-gradient {
    background: linear-gradient(135deg, #3b82f6 0%, #ec4899 100%);
}

.brand-gradient:hover {
    background: linear-gradient(135deg, #2563eb 0%, #db2777 100%);
}

.gradient-orange {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gradient-teal {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

/* ============================================
   HEADER STYLES
   ============================================ */

header {
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95);
}

/* Navigation Link Styles */
.nav-link {
    position: relative;
    color: #374151;
    font-weight: 600;
    letter-spacing: 0.025em;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #3b82f6, #ec4899);
    transition: width 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::before {
    width: 60%;
}

.nav-link:hover {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.05);
}

/* Active Navigation Link State */
.nav-link.active {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
}

.nav-link.active::before {
    width: 80%;
    background: linear-gradient(135deg, #3b82f6, #ec4899);
}

/* Mobile Navigation Links */
.nav-link-mobile {
    position: relative;
    color: #374151;
    font-weight: 600;
    letter-spacing: 0.025em;
    background-color: rgba(249, 250, 251, 0.5);
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.nav-link-mobile:hover {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.1);
    border-left-color: #3b82f6;
    padding-left: 1.5rem;
}

.nav-link-mobile.active {
    color: #3b82f6;
    background-color: rgba(59, 130, 246, 0.15);
    border-left-color: #3b82f6;
    font-weight: 700;
}

/* ============================================
   BRAND GRADIENT TEXT/ICONS
   ============================================ */

.brand-gradient-text {
    background: linear-gradient(135deg, #3b82f6 0%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   PORTFOLIO MODAL STYLES - FANCY DESIGN
   ============================================ */

/* Blob Animation - Wave-like Movement */
@keyframes blob {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    25% {
        transform: translate(50px, -80px) scale(1.15) rotate(90deg);
    }
    50% {
        transform: translate(-40px, -40px) scale(0.95) rotate(180deg);
    }
    75% {
        transform: translate(30px, 60px) scale(1.1) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
    }
}

@keyframes blob-wave {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        transform: translate(60px, -100px) scale(1.2);
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        transform: translate(-50px, -50px) scale(0.9);
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
    75% {
        transform: translate(40px, 80px) scale(1.1);
        border-radius: 70% 30% 50% 50% / 30% 50% 70% 50%;
    }
}

.animate-blob {
    animation: blob-wave 12s ease-in-out infinite;
    transition: border-radius 0.3s ease;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

.animation-delay-4000 {
    animation-delay: 4s;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.animate-shimmer {
    background-size: 2000px 100%;
    animation: shimmer 3s linear infinite;
}

/* Modal Overlay Animation */
.portfolio-modal-overlay {
    animation: fadeInOverlay 0.4s ease-out;
}

@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Modal Container Animation */
.portfolio-modal-container {
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    transform: scale(0.8) translateY(50px);
    opacity: 0;
    border-radius: 2rem;
}

.portfolio-modal-container.show {
    animation: modalSlideIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

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

/* Close Modal Animation */
.portfolio-modal-overlay.closing .portfolio-modal-container {
    animation: modalSlideOut 0.3s ease-in forwards;
}

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

/* Image Styles */
#portfolio-modal img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 1rem;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

#portfolio-modal img:hover {
    transform: scale(1.02);
}

#portfolio-modal .rounded-xl img {
    border-radius: 1rem;
}

/* Portfolio Slider Styles */
#portfolio-slider {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}

#portfolio-slider > div {
    min-width: 100%;
    width: 100%;
    flex: 0 0 100%;
    animation: slideFadeIn 0.6s ease-out;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    -webkit-overflow-scrolling: touch;
    max-height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-slide-content {
    scrollbar-width: thin;
    scrollbar-color: rgba(59, 130, 246, 0.5) transparent;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
}

.portfolio-slide-content::-webkit-scrollbar {
    width: 8px;
}

.portfolio-slide-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.portfolio-slide-content::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #3b82f6, #ec4899);
    border-radius: 10px;
}

.portfolio-slide-content::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #2563eb, #db2777);
}

/* Ensure slider container has proper height */
#portfolio-modal .relative.flex-1 {
    min-height: 0;
    flex: 1 1 auto;
}

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

/* Navigation Buttons */
#prev-slide,
#next-slide {
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

#prev-slide::before,
#next-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #3b82f6, #ec4899);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#prev-slide:hover::before,
#next-slide:hover::before {
    opacity: 1;
}

#prev-slide:disabled,
#next-slide:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(0.9);
}

/* Slider Dots - Fancy Design */
#slider-dots button {
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

#slider-dots button::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 9999px;
    background: linear-gradient(135deg, #3b82f6, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

#slider-dots button:hover::before {
    opacity: 0.2;
}

#slider-dots button.active {
    background: linear-gradient(135deg, #3b82f6, #ec4899) !important;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

#slider-dots button:hover {
    transform: scale(1.3) translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

/* Content Animations */
#portfolio-modal .space-y-6 > * {
    animation: contentFadeIn 0.6s ease-out backwards;
}

#portfolio-modal .space-y-6 > *:nth-child(1) { animation-delay: 0.1s; }
#portfolio-modal .space-y-6 > *:nth-child(2) { animation-delay: 0.2s; }
#portfolio-modal .space-y-6 > *:nth-child(3) { animation-delay: 0.3s; }
#portfolio-modal .space-y-6 > *:nth-child(4) { animation-delay: 0.4s; }
#portfolio-modal .space-y-6 > *:nth-child(5) { animation-delay: 0.5s; }
#portfolio-modal .space-y-6 > *:nth-child(6) { animation-delay: 0.6s; }

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

/* Enhanced Card Styles */
#portfolio-modal .bg-blue-50,
#portfolio-modal .bg-pink-50 {
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

#portfolio-modal .bg-blue-50:hover,
#portfolio-modal .bg-pink-50:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
}

/* Badge Hover Effects */
#portfolio-modal .bg-blue-100,
#portfolio-modal .bg-pink-100 {
    transition: all 0.3s ease;
}

#portfolio-modal .bg-blue-100:hover,
#portfolio-modal .bg-pink-100:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Enhanced Modal Container */
.portfolio-modal-container {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    box-shadow: 
        0 25px 50px -12px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1),
        0 0 100px rgba(59, 130, 246, 0.15),
        0 0 200px rgba(236, 72, 153, 0.1);
}

/* Additional Visual Enhancements */
#portfolio-modal .bg-blue-50,
#portfolio-modal .bg-pink-50 {
    position: relative;
    overflow: hidden;
}

#portfolio-modal .bg-blue-50::before,
#portfolio-modal .bg-pink-50::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

#portfolio-modal .bg-blue-50:hover::before,
#portfolio-modal .bg-pink-50:hover::before {
    left: 100%;
}

/* ============================================
   HERO SECTION ENHANCED STYLES
   ============================================ */

.hero-section {
    position: relative;
}

/* Floating Particles Animation */
.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: float 15s infinite ease-in-out;
}

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

.particle-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.particle-3 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.particle-4 {
    width: 50px;
    height: 50px;
    top: 40%;
    right: 30%;
    animation-delay: 6s;
}

.particle-5 {
    width: 70px;
    height: 70px;
    bottom: 30%;
    right: 10%;
    animation-delay: 8s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-60px) translateX(-20px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(10px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Hero Content Animations */
.hero-content > * {
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero-form {
    animation: fadeInUp 0.8s ease-out backwards;
}

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

/* Form Input Focus Effects */
.hero-section input:focus,
.hero-section select:focus,
.hero-section textarea:focus {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

/* Enhanced Button Hover Effects */
.hero-section a[href="#contact"],
.hero-section button[type="submit"] {
    position: relative;
    overflow: hidden;
}

.hero-section a[href="#contact"]:hover,
.hero-section button[type="submit"]:hover {
    transform: translateY(-2px);
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }
    
    .particle {
        display: none;
    }
}

/* ============================================
   GET QUOTE BUTTON ANIMATIONS - INFINITE
   ============================================ */

.get-quote-btn {
    position: relative;
    background: linear-gradient(135deg, #3b82f6 0%, #ec4899 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    animation: buttonPulse 2s ease-in-out infinite, buttonFloat 3s ease-in-out infinite;
    overflow: visible;
}

/* Glowing Border Effect - Always On */
.get-quote-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(135deg, #3b82f6, #ec4899, #3b82f6, #ec4899);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0.6;
    animation: buttonGlow 3s ease infinite, buttonGlowPulse 2s ease-in-out infinite;
    filter: blur(10px);
}

/* Continuous Shine Effect */
.get-quote-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: buttonShine 3s ease-in-out infinite;
    border-radius: inherit;
}

/* Hover Enhancements */
.get-quote-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.7), 0 0 40px rgba(236, 72, 153, 0.5);
    animation: buttonPulse 1s ease-in-out infinite, buttonFloat 2s ease-in-out infinite;
}

.get-quote-btn:hover::before {
    opacity: 0.9;
    filter: blur(12px);
}

.get-quote-btn:active {
    transform: translateY(0) scale(0.98);
}


/* Pulse Animation */
@keyframes buttonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4), 0 0 10px rgba(236, 72, 153, 0.2);
    }
    50% {
        box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6), 0 0 25px rgba(236, 72, 153, 0.4);
    }
}

/* Floating Animation */
@keyframes buttonFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Glow Border Animation */
@keyframes buttonGlow {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Glow Pulse */
@keyframes buttonGlowPulse {
    0%, 100% {
        opacity: 0.5;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* Shine Sweep Animation */
@keyframes buttonShine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

/* Arrow Icon Animation */
.get-quote-btn .fa-arrow-right {
    animation: arrowMove 2s ease-in-out infinite;
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

.get-quote-btn:hover .fa-arrow-right {
    animation: arrowMove 1s ease-in-out infinite;
}

/* ============================================
   HOW IT WORKS SECTION ANIMATIONS
   ============================================ */

/* Step Cards Animation on Scroll */
@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon Pulse Animation */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Step Card Hover Enhancements */
section[class*="bg-gradient-to-br"] .group:hover .fa-comments,
section[class*="bg-gradient-to-br"] .group:hover .fa-palette,
section[class*="bg-gradient-to-br"] .group:hover .fa-code,
section[class*="bg-gradient-to-br"] .group:hover .fa-rocket {
    animation: iconPulse 1s ease-in-out infinite;
}

/* Number Badge Animation */
section[class*="bg-gradient-to-br"] .group:hover .absolute.top-4 {
    animation: iconPulse 0.6s ease-in-out;
}

/* ============================================
   FAQ ACCORDION STYLES
   ============================================ */

/* FAQ Item Base Styles */
.faq-item {
    cursor: pointer;
}

.faq-question {
    outline: none !important;
    border: none;
    background: transparent;
}

.faq-question:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* FAQ Answer - Initially Hidden */
.faq-answer {
    max-height: 0;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

/* FAQ Answer - When Active */
.faq-item.active .faq-answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in, padding 0.5s ease-in;
}

/* FAQ Icon Rotation */
.faq-icon {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

/* FAQ Item Active State */
.faq-item.active {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* ============================================
   SECTION CTA BUTTON ANIMATIONS - SCROLL TRIGGERED
   ============================================ */

/* Initial state - hidden and scaled down */
.section-cta-wrapper {
    opacity: 0;
}

.section-cta-btn {
    position: relative;
    overflow: visible;
    transform: translateY(30px) scale(0.9);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Animated state when section is in view */
.section-cta-wrapper.animate-in {
    opacity: 1;
}

.section-cta-wrapper.animate-in .section-cta-btn {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Button pulse animation after appearing */
.section-cta-wrapper.animate-in .section-cta-btn {
    animation: ctaButtonPulse 2s ease-in-out infinite 0.6s, ctaButtonFloat 3s ease-in-out infinite 0.6s;
}

/* Glowing border effect - similar to header button */
.section-cta-btn::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(135deg, #3b82f6, #ec4899, #3b82f6, #ec4899);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease, filter 0.6s ease;
    filter: blur(10px);
}

.section-cta-wrapper.animate-in .section-cta-btn::before {
    opacity: 0.6;
    animation: buttonGlow 3s ease infinite;
}

/* Shine effect */
.section-cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.section-cta-wrapper.animate-in .section-cta-btn::after {
    opacity: 1;
    animation: buttonShine 3s ease-in-out infinite 1s;
}

/* Pulse animation */
@keyframes ctaButtonPulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4), 0 0 10px rgba(236, 72, 153, 0.2);
    }
    50% {
        box-shadow: 0 6px 25px rgba(59, 130, 246, 0.6), 0 0 25px rgba(236, 72, 153, 0.4);
    }
}

/* Float animation */
@keyframes ctaButtonFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.02);
    }
}

/* Enhanced hover state */
.section-cta-wrapper.animate-in .section-cta-btn:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.7), 0 0 40px rgba(236, 72, 153, 0.5);
}

.section-cta-wrapper.animate-in .section-cta-btn:hover::before {
    opacity: 0.9;
    filter: blur(12px);
}

.section-cta-wrapper.animate-in .section-cta-btn:active {
    transform: translateY(0) scale(0.98);
}

/* Icon animation within CTA buttons */
.section-cta-wrapper.animate-in .section-cta-btn i {
    animation: iconBounce 2s ease-in-out infinite 0.8s;
}

@keyframes iconBounce {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(3px);
    }
}

/* ============================================
   ADDITIONAL CUSTOM STYLES
   ============================================ */

/* Add any additional custom styles here */

