.elementor-19 .elementor-element.elementor-element-67f5585{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-2bc6d1d *//* Custom styles for Zaaz Telecom */

* {
    scroll-behavior: smooth;
}

body {
    overflow-x: hidden;
}

/* Slider transitions */
.hero-slide {
    display: none;
    animation: fadeIn 0.6s ease-in-out;
}

.hero-slide.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.02);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Plan card hover */
.plan-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(79, 78, 129, 0.15);
}

.plan-card.featured {
    border-color: #A29DF1 !important;
    position: relative;
}

/* FAQ accordion */
.faq-item {
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #342F8B;
    background: white;
}

.faq-item .faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    opacity: 1;
    margin-top: 1rem;
}

.faq-item .faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* Testimonial navigation */
.testimonial-track {
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #F8F7FF;
}

::-webkit-scrollbar-thumb {
    background: #A29DF1;
    border-radius: 100px;
}

::-webkit-scrollbar-thumb:hover {
    background: #342F8B;
}

/* Plan badge */
.plan-badge {
    background: linear-gradient(135deg, #342F8B 0%, #6B69A0 100%);
}

/* Smooth link transitions */
a {
    transition: all 0.2s ease;
}

/* Mobile menu animation */
#mobileMenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding-top: 0;
    padding-bottom: 0;
}

#mobileMenu.open {
    max-height: 500px;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

#mobileMenu.hidden {
    display: block !important;
}

/* Section animations */
@media (min-width: 768px) {
    .plan-card {
        min-height: 520px;
    }
}

/* Badge shimmer animation */
@keyframes shimmer {
    0% { background-position: -200px 0; }
    100% { background-position: 200px 0; }
}

.plan-badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    background-size: 200px 100%;
    animation: shimmer 2s infinite;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .plan-card {
        min-height: auto;
    }
}/* End custom CSS */