/* Custom CSS for additional styling and animations */
:root {
    --primary-orange: #F97316;
    --primary-red: #EF4444;
    --light-orange: #FB923C;
    --dark-orange: #EA580C;
    --primary-primary: #0099ff;
    --light-primary-50: #e6f5ff;
    --dark-primary: #007acc;
    --primary-brown: #413607;
    --light-brown: #5a4526;
    --dark-brown: #2e2604;
    --nav-primary-light: #99ceff;
    --nav-primary-accent: #c9cfff;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

.navbar-color {
    background: var(--nav-primary-light);
    background-color: #c1cdfe57;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

/* Custom animations */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-primary);
}

/* Button hover effects */
button {
    transition: all 0.3s ease;
}

/* button:hover {
    transform: translateY(-2px);
} */

/* FAQ Accordion Animations */
.faq-answer {
    overflow: hidden;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.rotate {
    transform: rotate(45deg);
}

/* Form styling */
input:focus,
textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}

/* Slick slider customization */
.slick-dots {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
}

.slick-dots li {
    margin: 0;
}

.slick-dots li {
    width: 6px;
    height: 6px;
}

.slick-dots li button {
    background: var(--primary-primary);
    padding: 3px;
    width: 4px;
    height: 4px;
    border-radius: 10px;
    opacity: 0.5;
}

.slick-dots li.slick-active {
    width: 20px;
}

.slick-dots li.slick-active button {
    width: 20px;
    opacity: 1;
}

.slick-dots li button:before {
    content: '';
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
}

.slick-next,
.slick-prev {
    width: 24px;
    height: 24px;
}

.slick-prev:before,
.slick-next:before {
    content: "";
}

/* Loading states */
.loading {
    opacity: 0.7;
    pointer-events: none;
}
.mobile-menu-button .close-icon {
    display: none;
}
.mobile-menu-button.active .close-icon {
    display: block;
}
.mobile-menu-button.active .bars-icon {
    display: none;
}
/* Mobile menu animation */
.mobile-menu {
    transition: all 0.3s ease;
    opacity: 0;
    overflow: hidden;
    display: none;
}

.mobile-menu.active {
    position: absolute;
    width: 100%;
    height: auto;
    top: 100%;
    left: 0;
    display: block;
    opacity: 1;
}

/* Language dropdown styles */
.language-dropdown {
    transition: all 0.3s ease;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 50;
    min-width: 160px;
}

.language-dropdown.show {
    display: block;
}

.language-dropdown a {
    display: block;
    padding: 0.5rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.language-dropdown a:hover {
    background-color: #FFF7ED;
    color: var(--primary-primary);
}

.language-dropdown a:first-child {
    border-radius: 0.375rem 0.375rem 0 0;
}

.language-dropdown a:last-child {
    border-radius: 0 0 0.375rem 0.375rem;
}
@media (max-width:1023px) {
    .services-slider .slick-current.slick-active .service-card {
        border: 1px solid var(--primary-primary) !important;
        box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
            0 8px 10px -6px rgb(0 0 0 / 0.1) !important;
    }
}
@media (min-width: 1024px) {
    .services-slider .slick-current.slick-active + .slick-active .service-card {
        border: 1px solid var(--primary-primary) !important;
        transform: translateY(-0.75rem) !important;
        box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1),
            0 8px 10px -6px rgb(0 0 0 / 0.1) !important;
    }
}
.services-slider {
    display: block;
}

.services-slider .slick-track {
    padding: 15px 0
}

/* Equal height service cards */
.services-slider .service-slide {
    display: flex !important;
}

.services-slider .service-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.services-slider .service-card .w-16 {
    flex-shrink: 0;
}

.services-slider .service-card h3 {
    flex-shrink: 0;
}

.services-slider .service-card p {
    flex-grow: 1;
    display: flex;
    /* align-items: center; */
}

/* Feature image switching */
.feature-image {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.feature-image.active {
    display: block;
    opacity: 1;
}

/* Feature item hover effects */
.feature-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 0.5rem;
}

.feature-item:hover {
    background-color: var(--light-primary-50);
    transform: translateX(5px);
    border-left: 4px solid var(--primary-primary);
}

.feature-item.active {
    background-color: var(--light-primary-50);
    border-left: 4px solid var(--primary-primary);
}
.feature-icon {
    background-color: var(--light-primary-50);
    color: var(--primary-primary);
}
.feature-item.active .feature-icon,
.feature-item:hover .feature-icon {
    color: var(--light-primary-50);
    background-color: var(--primary-primary);
}
/* Active navigation styles */
nav a.active {
    color: var(--primary-primary);
    font-weight: 600;
}

nav a.active::after {
    width: 100%;
}

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

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-orange);
}

/* Hover effects for navigation */
nav a.nav-link {
    position: relative;
}

nav a.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-primary);
    transition: width 0.3s ease;
}

nav a.nav-link:hover::after {
    width: 100%;
}

/* Contact form success message */
.success-message {
    background-color: #10B981;
    color: white;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    display: none;
}

.error-message {
    background-color: #EF4444;
    color: white;
    padding: 12px;
    border-radius: 8px;
    margin-top: 16px;
    display: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .testimonial-slide img {
        width: 60px;
        height: 60px;
    }
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll animations */
.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

/* Initial state for scroll animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-description {
    height: 24px;
    overflow: hidden;
}

.why-choose-item.active .why-choose-description {
    height: auto;
}

.pricing-slider .slick-track {
    padding: 15px 0
}

.testimonial-image {
    position: absolute;
    bottom: -30%;
    left: 37%;
}

@media (max-width: 1024px) {
    .testimonial-image {
        bottom: -15%;
    }
}

.max-w-8xl {
    max-width: 100rem;
}
.float-animation {
    animation: float 3s ease-in-out infinite;
}
.bg-float-animation {
    animation: bg-float 5s ease-in-out infinite;
}
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes bg-float {
    0% {
        transform: translate(-50px);
        opacity: 0.5;
    }
    50% {
        transform: translate(50px);
        opacity: 0.25;
    }
    100% {
        transform: translate(-50px);
        opacity: 0.5;
    }
}

.pricing-slider .slick-list {
    padding-top: 25px;
}
.popular-tag {
    position: absolute;
    top: -15px;
    left: 39%;
}