/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Custom Scrollbar - Light Mode */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9; /* gray-100 */
}

::-webkit-scrollbar-thumb {
    background: #22c55e; /* Primary Green */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #16a34a; /* Darker Green */
}

/* Section Slide-in Effect */
.service-card, .blog-post {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.service-card.show, .blog-post.show {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Styles */
.border-gray-200 {
    border-color: #e5e7eb;
}

/* Smooth transitions */
a, button {
    transition: all 0.3s ease;
}
/* Counter Animation Styles */
.countup {
    transition: all 0.3s ease-out;
}

/* Industry Leaders Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

.flex.flex-wrap.justify-center.items-center.gap-8 div {
    opacity: 0;
}

.flex.flex-wrap.justify-center.items-center.gap-8 div:hover {
    opacity: 1 !important;
}
/* Testimonial Styles - Removed */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* Form Status Messages */
#form-status {
    transition: all 0.3s ease;
}

/* Loading state for button */
button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}


/* Custom Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-20px); }
    60% { transform: translateY(-10px); }
}

.animate-fadeIn {
    animation: fadeIn 1s ease-out forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.animate-bounce {
    animation: bounce 2s infinite;
}

/* Custom Scrollbar - Light Mode */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9; /* gray-100 */
}

::-webkit-scrollbar-thumb {
    background: #22c55e; /* Primary Green */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #16a34a; /* Darker Green */
}

/* Section Slide-in Effect */
.service-card, .blog-post {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.service-card.show, .blog-post.show {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Styles */
.border-gray-200 {
    border-color: #e5e7eb;
}

/* Smooth transitions */
a, button {
    transition: all 0.3s ease;
}
/* Counter Animation Styles */
.countup {
    transition: all 0.3s ease-out;
}

/* Industry Leaders Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.8;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

.flex.flex-wrap.justify-center.items-center.gap-8 div {
    opacity: 0;
}

.flex.flex-wrap.justify-center.items-center.gap-8 div:hover {
    opacity: 1 !important;
}
/* Testimonial Styles - Removed */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
/* Form Status Messages */
#form-status {
    transition: all 0.3s ease;
}

/* Loading state for button */
button[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}

/* === ADD THESE NEW STYLES === */

/* Portfolio Filter Buttons */
.filter-btn {
    padding: 0.5rem 1.25rem;
    border: 2px solid #22c55e; /* primary */
    border-radius: 9999px; /* rounded-full */
    color: #22c55e; /* primary */
    background-color: transparent;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn:hover {
    background-color: #22c55e; /* primary */
    color: #ffffff;
}

.filter-btn.active {
    background-color: #22c55e; /* primary */
    color: #ffffff;
}


/* === ADD THESE NEW STYLES FOR PORTFOLIO ANIMATION === */

.portfolio-item {
    transition: all 0.4s ease-in-out;
    transform: scale(1);
    opacity: 1;
    display: block; /* Ensures items are visible by default */
}

/* This class will be toggled by JS to hide items */
.portfolio-item.item-hidden {
    transform: scale(0.9);
    opacity: 0;
}

/* This class is added *after* the animation to remove it from layout */
.portfolio-item.hidden {
    display: none;
}
