@keyframes spin-slow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.animate-spin-slow {
    animation: spin-slow 12s linear infinite;
}

/* Success Story Card Styles */
.success-card {
    transition: all 0.2s;
}

.success-card:hover {
    transform: scale(1.05);
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}


@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin-slow {
    animation: spin-slow 12s linear infinite;
    display: block;
}

/* Make sure animation works in different browsers */
@-webkit-keyframes spin-slow {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}

@-moz-keyframes spin-slow {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}

/* Success Story Card Styles */
.success-card {
    transition: all 0.2s;
}

.success-card:hover {
    transform: scale(1.05);
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4b5563;
}

/* Replace the existing animation styles with this */
.circular-text {
    animation: spin 12s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Keep all other styles the same */
.max-w-7xl.mx-auto.px-4.sm\:px-6.lg\:px-8.py-20.padding-t-b {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.bg-\[\#0f1720\].rounded-xl.overflow-hidden.transform.transition-all.duration-400.hover\:scale-105.border.border-green-500\/20.hover\:shadow-2xl img {
    height: auto;
}
.my-height img{
    height: auto;
}
.my-video iframe{
    margin: 0 auto;
}

/* Pricing Card Styles */
.pricing-card-base {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card-base:hover {
    transform: translateY(-8px);
}

/* Glowing effect for pricing cards */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.2); }
    50% { box-shadow: 0 0 30px rgba(59, 130, 246, 0.4); }
}

.pricing-glow {
    animation: glow 3s infinite;
}

/* Custom hover effect for pricing buttons */
.pricing-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}


/* FAQ Styles */
#faq button {
    transition: all 0.3s ease;
}

#faq div[class*="mt-4"] {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

#faq i {
    transition: transform 0.3s ease;
}

#servicess{
    display: none;
}