.menu-fonts{
    font-family: "Exo 2", sans-serif;
}

/* Hero Section Critical CSS */
.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-blob {
    animation: blob 7s infinite;
}

.floating-icon {
    animation: floatingIcon 4s ease-in-out infinite;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Hero Section Custom Colors */
.hero-section {
    background: linear-gradient(135deg, #301F3E 0%, #55285C 50%, #633CA3 100%);
}

.hero-bg-animation {
    background: radial-gradient(circle at 20% 80%, rgba(126, 95, 241, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(61, 216, 180, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(252, 189, 95, 0.08) 0%, transparent 50%);
    animation: heroBgPulse 10s ease-in-out infinite;
}

@keyframes heroBgPulse {
    0%, 100% {
        opacity: 0.25;
        transform: scale(1);
    }
    50% {
        opacity: 0.45;
        transform: scale(1.03);
    }
}

/* Contact Form Offcanvas Styles */
#contactOffcanvas {
    transition: opacity 0.3s ease-in-out;
}

#contactOffcanvas.hidden {
    opacity: 0;
    pointer-events: none;
}

#offcanvasPanel {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

#offcanvasPanel.translate-x-full {
    transform: translateX(100%);
}

/* Form input focus effects */
#contactForm input:focus,
#contactForm textarea:focus,
#contactForm select:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    border-color: #3b82f6;
}

/* Form validation styles */
#contactForm input.border-red-500,
#contactForm textarea.border-red-500,
#contactForm select.border-red-500 {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

#contactForm input.border-green-500,
#contactForm textarea.border-green-500,
#contactForm select.border-green-500 {
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* Loading spinner animation */
.fa-spinner.fa-spin {
    animation: fa-spin 1s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Success message animation */
#successMessage {
    animation: slideInUp 0.3s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile responsiveness for offcanvas */
@media (max-width: 640px) {
    #offcanvasPanel {
        width: 100%;
        max-width: 100%;
    }

    #contactForm .space-y-6 > div {
        margin-bottom: 1rem;
    }

    #contactForm input,
    #contactForm textarea,
    #contactForm select {
        padding: 0.75rem;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

/* Enhanced floating icons with company colors */
.floating-icon:nth-child(1) {
    color: #7E5FF1;
    text-shadow: 0 0 25px rgba(126, 95, 241, 0.4);
    filter: brightness(0.95);
}

.floating-icon:nth-child(2) {
    color: #3DD8B4;
    text-shadow: 0 0 25px rgba(61, 216, 180, 0.4);
    filter: brightness(0.95);
}

.floating-icon:nth-child(3) {
    color: #FCBD5F;
    text-shadow: 0 0 25px rgba(252, 189, 95, 0.4);
    filter: brightness(0.95);
}

.floating-icon:nth-child(4) {
    color: #633CA3;
    text-shadow: 0 0 25px rgba(99, 60, 163, 0.4);
    filter: brightness(0.95);
}

/* Enhanced Hero Section Elements */
.hero-section .animate-blob {
    filter: blur(40px);
    mix-blend-mode: soft-light;
}

.hero-section .floating-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section .floating-icon:hover {
    transform: scale(1.1) translateY(-5px);
    filter: brightness(1.1);
}

/* Optimized Color Transitions */
.hero-section * {
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, opacity 0.3s ease;
}

/* Enhanced Glassmorphism Effects */
.hero-section .backdrop-blur-sm,
.hero-section .backdrop-blur-md,
.hero-section .backdrop-blur-lg {
    backdrop-filter: blur(8px) saturate(180%);
    -webkit-backdrop-filter: blur(8px) saturate(180%);
}

/* Marquee Animation for References Section */
.marquee-track {
    animation: marquee 30s linear infinite;
    will-change: transform;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-item {
    transition: all 0.3s ease;
}

.marquee-item:hover {
    transform: translateY(-5px);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Enhanced hover effects for marquee items */
.marquee-item .group:hover .w-24 {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.marquee-item .group:hover .absolute.-top-2.-right-2 {
    animation: checkmarkPop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

@keyframes checkmarkPop {
    0% {
        transform: scale(0) rotate(-180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Smooth gradient overlays for marquee edges */
.marquee-container .absolute.left-0,
.marquee-container .absolute.right-0 {
    transition: opacity 0.3s ease;
}

/* Enhanced stats section animations */
.stats-section .group:hover .w-16 {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Responsive marquee adjustments */
@media (max-width: 768px) {
    .marquee-track {
        animation-duration: 20s;
    }

    .marquee-item .w-24 {
        width: 5rem;
        height: 5rem;
    }

    .marquee-item .text-2xl {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .marquee-track {
        animation-duration: 15s;
    }

    .marquee-item .w-24 {
        width: 4rem;
        height: 4rem;
    }

    .marquee-item .text-2xl {
        font-size: 1rem;
    }
}

/* Desktop Applications Swiper Styles */
.desktop-apps-swiper {
    padding: 2rem 0;
}

.desktop-apps-swiper .swiper-slide {
    transition: all 0.5s ease;
    opacity: 0.8;
    transform: scale(0.95);
}

.desktop-apps-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.desktop-apps-swiper .swiper-slide-prev,
.desktop-apps-swiper .swiper-slide-next {
    opacity: 0.6;
    transform: scale(0.9);
}

/* Custom Navigation Buttons */
.desktop-apps-swiper .swiper-button-next,
.desktop-apps-swiper .swiper-button-prev {
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
    color: #8b5cf6;
}

.desktop-apps-swiper .swiper-button-next:hover,
.desktop-apps-swiper .swiper-button-prev:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.6);
    transform: scale(1.1);
}

.desktop-apps-swiper .swiper-button-next::after,
.desktop-apps-swiper .swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Custom Pagination */
.desktop-apps-swiper .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.desktop-apps-swiper .swiper-pagination-bullet {
    background: rgba(139, 92, 246, 0.3);
    opacity: 0.5;
    transition: all 0.3s ease;
}

.desktop-apps-swiper .swiper-pagination-bullet-active {
    background: #8b5cf6;
    opacity: 1;
    transform: scale(1.2);
}

/* Enhanced slide transitions */
.desktop-apps-swiper .swiper-slide {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-apps-swiper .swiper-slide-active .group {
    animation: slideInUp 0.6s ease-out forwards;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments for desktop apps swiper */
@media (max-width: 768px) {
    .desktop-apps-swiper .swiper-button-next,
    .desktop-apps-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .desktop-apps-swiper .swiper-button-next::after,
    .desktop-apps-swiper .swiper-button-prev::after {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .desktop-apps-swiper .swiper-button-next,
    .desktop-apps-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .desktop-apps-swiper .swiper-button-next::after,
    .desktop-apps-swiper .swiper-button-prev::after {
        font-size: 0.9rem;
    }
}

/* Smooth Shadow Transitions */
.hero-section .shadow-lg,
.hero-section .shadow-xl,
.hero-section .shadow-2xl {
    transition: box-shadow 0.3s ease;
}

/* Hero Section Subtitle Color Enhancements */
.hero-subtitle span {
    transition: all 0.3s ease;
    position: relative;
}

.hero-subtitle span:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Soft color transitions for subtitle highlights */
.hero-subtitle span[class*="text-[#3DD8B4]"] {
    background: linear-gradient(135deg, #3DD8B4 0%, #4FE8C4 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(61, 216, 180, 0.3);
    filter: brightness(0.95) saturate(0.9);
}

.hero-subtitle span[class*="text-[#7E5FF1]"] {
    background: linear-gradient(135deg, #7E5FF1 0%, #9A7DFF 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 4px rgba(126, 95, 241, 0.3);
    filter: brightness(0.95) saturate(0.9);
}

/* Alternative: Use solid colors with soft shadows for better readability */
.hero-subtitle span[class*="text-[#3DD8B4]"] {
    color: #3DD8B4 !important;
    text-shadow: 0 2px 8px rgba(61, 216, 180, 0.4), 0 0 20px rgba(61, 216, 180, 0.2);
    background: none;
    -webkit-text-fill-color: unset;
}

.hero-subtitle span[class*="text-[#7E5FF1]"] {
    color: #7E5FF1 !important;
    text-shadow: 0 2px 8px rgba(126, 95, 241, 0.4), 0 0 20px rgba(126, 95, 241, 0.2);
    background: none;
    -webkit-text-fill-color: unset;
}

/* Enhanced soft color palette for hero section */
.hero-subtitle span[class*="text-[#3DD8B4]"] {
    color: #4FE8C4 !important;
    text-shadow:
            0 1px 3px rgba(79, 232, 196, 0.5),
            0 0 15px rgba(79, 232, 196, 0.3),
            0 0 30px rgba(79, 232, 196, 0.1);
    background: none;
    -webkit-text-fill-color: unset;
    transition: all 0.3s ease;
}

.hero-subtitle span[class*="text-[#7E5FF1]"] {
    color: #9A7DFF !important;
    text-shadow:
            0 1px 3px rgba(154, 125, 255, 0.5),
            0 0 15px rgba(154, 125, 255, 0.3),
            0 0 30px rgba(154, 125, 255, 0.1);
    background: none;
    -webkit-text-fill-color: unset;
    transition: all 0.3s ease;
}

/* Hover effects for better interactivity */
.hero-subtitle span:hover {
    transform: translateY(-1px);
    filter: brightness(1.1) saturate(1.1);
}

.hero-subtitle span[class*="text-[#3DD8B4]"]:hover {
    color: #5FF8D4 !important;
    text-shadow:
            0 2px 6px rgba(95, 248, 212, 0.6),
            0 0 20px rgba(95, 248, 212, 0.4),
            0 0 40px rgba(95, 248, 212, 0.2);
}

.hero-subtitle span[class*="text-[#7E5FF1]"]:hover {
    color: #B08FFF !important;
    text-shadow:
            0 2px 6px rgba(176, 143, 255, 0.6),
            0 0 20px rgba(176, 143, 255, 0.4),
            0 0 40px rgba(176, 143, 255, 0.2);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes floatingIcon {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(5deg);
    }
}

/* Features Slider Styles */
.features-swiper {
    overflow: hidden;
}

.feature-screen-slide {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.feature-screen-slide.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.feature-screen-slide.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

/* Laptop Animation */
.laptop-screen {
    transition: all 0.3s ease-in-out;
}



/* Feature Icons Animation */
.feature-icon {
    transition: all 0.3s ease-in-out;
}


/* Enhanced Laptop Styles */
.laptop-frame {
    perspective: 1000px;
}

.laptop-screen {
    transform-style: preserve-3d;
    transition: all 0.5s ease-in-out;
}


.laptop-base {
    transform: rotateX(-5deg);
    transition: all 0.3s ease-in-out;
}

.laptop-stand {
    transition: all 0.3s ease-in-out;
}


/* Screen Content Transitions */
.features-screen-content {
    position: relative;
    width: 100%;
    height: 100%;
}

.feature-screen-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8) rotateY(-15deg);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center center;
}

.feature-screen-slide.active {
    opacity: 1;
    transform: scale(1) rotateY(0deg);
}

.feature-screen-slide.fade-out {
    opacity: 0;
    transform: scale(1.1) rotateY(15deg);
}

.feature-screen-slide img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 0.5rem;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-screen-slide.active img {
    filter: brightness(1) contrast(1);
}

.feature-screen-slide:not(.active) img {
    filter: brightness(0.7) contrast(0.8);
}

/* Floating Elements Animation */
.floating-element {
    animation: float 3s ease-in-out infinite;
}

.floating-element:nth-child(2) {
    animation-delay: 1.5s;
}

/* Feature Cards Enhancement */
.feature-card {
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
}


/* Swiper Navigation Enhancement */
.features-prev-btn,
.features-next-btn {
    transition: all 0.3s ease-in-out;
    position: relative;
}

.features-prev-btn:hover,
.features-next-btn:hover {
    background-color: #3DD8B4;
    color: white;
    transform: scale(1.1);
}

.features-prev-btn:disabled,
.features-next-btn:disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
    transform: none !important;
}

.features-prev-btn:disabled:hover,
.features-next-btn:disabled:hover {
    background-color: #d1d5db !important;
    color: #6b7280 !important;
    transform: none !important;
}

/* Pricing Plans Swiper Styles */
.pricing-swiper {
    position: relative;
    overflow: hidden;
    padding-top: 1.5rem;
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
}

.pricing-swiper .swiper-slide {
    transition: all 0.6s ease;
    opacity: 0.8;
    transform: scale(0.95);
}

.pricing-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.pricing-swiper .swiper-button-next,
.pricing-swiper .swiper-button-prev {
    color: #2563eb;
    background: rgba(37, 99, 235, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.pricing-swiper .swiper-button-next:hover,
.pricing-swiper .swiper-button-prev:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: rgba(37, 99, 235, 0.6);
    transform: scale(1.1);
}

.pricing-swiper .swiper-pagination-bullet {
    background: #2563eb;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.pricing-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* Floating animation for star badge */
@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0px);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Responsive pricing adjustments */
@media (max-width: 768px) {
    .pricing-swiper {
        padding-top: 2rem;
        padding-bottom: 3rem;
        min-height: auto;
    }

    .pricing-swiper .swiper-slide {
        height: auto;
        min-height: auto;
    }

    .pricing-swiper .swiper-slide .group {
        height: auto;
        min-height: auto;
    }

    .pricing-swiper .swiper-slide .group .relative {
        height: auto;
        min-height: auto;
        padding: 1.5rem;
    }

    .pricing-swiper .swiper-button-next,
    .pricing-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
        top: 50%;
        transform: translateY(-50%);
    }

    .pricing-swiper .swiper-button-next::after,
    .pricing-swiper .swiper-button-prev::after {
        font-size: 1rem;
    }

    .pricing-swiper .swiper-pagination {
        bottom: 0;
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .pricing-swiper {
        padding-bottom: 1.5rem;
    }

    .pricing-swiper .swiper-slide .group .relative {
        padding: 1rem;
    }

    .pricing-swiper .swiper-slide .group .relative .text-center.mb-6 {
        margin-bottom: 1rem;
    }

    .pricing-swiper .swiper-slide .group .relative .text-center.mb-6.sm\\:mb-8 {
        margin-bottom: 1rem;
    }

    .pricing-swiper .swiper-slide .group .relative ul.space-y-3.sm\\:space-y-4 {
        margin-bottom: 1rem;
    }

    .pricing-swiper .swiper-slide .group .relative ul.space-y-3.sm\\:space-y-4.mb-6.sm\\:mb-8 {
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .pricing-swiper {
        padding-bottom: 1rem;
    }

    .pricing-swiper .swiper-slide .group .relative {
        padding: 0.75rem;
    }

    .pricing-swiper .swiper-button-next,
    .pricing-swiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .pricing-swiper .swiper-button-next::after,
    .pricing-swiper .swiper-button-prev::after {
        font-size: 0.875rem;
    }

    .pricing-swiper .swiper-slide .group .relative .text-center.mb-6 h3 {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .pricing-swiper .swiper-slide .group .relative .text-center.mb-6 p {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .pricing-swiper .swiper-slide .group .relative .text-center.mb-6.sm\\:mb-8 .text-4xl.sm\\:text-5xl {
        font-size: 2rem;
        line-height: 1.2;
    }

    .pricing-swiper .swiper-slide .group .relative ul li span {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .pricing-swiper .swiper-slide .group .relative a.block {
        padding: 0.75rem;
        font-size: 0.875rem;
    }
}
