.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

@media (max-width: 768px) {
    .carousel-slide {
        height: 400px;
    }
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: linear-gradient(135deg, rgba(102, 126, 234, 0.8) 0%, rgba(118, 75, 162, 0.8) 100%); */
    z-index: 1;
}

.carousel-content {
    position: relative;
    z-index: 2;
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .feature-card:hover {
        transform: none;
    }
}

.price-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.price-card:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .price-card:hover {
        transform: none;
    }
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.glow-effect {
    box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.dark .glow-effect {
    box-shadow: 0 0 25px rgba(147, 51, 234, 0.4);
}

.section-bg {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.dark .section-bg {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
}

.mobile-text-center {
    text-align: center;
}

@media (min-width: 768px) {
    .mobile-text-center {
        text-align: left;
    }
}

.touch-friendly {
    min-height: 44px;
    min-width: 44px;
}

/* Enhanced Glassy Navbar Styles */
.navbar-glass {
    background: rgba(255, 255, 255, 0.75) !important;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 16px rgba(147, 51, 234, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar-glass::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.03) 0%, rgba(59, 130, 246, 0.03) 100%);
    pointer-events: none;
}

.navbar-glass .nav-link {
    color: rgba(55, 65, 81, 0.95) !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

.navbar-glass .nav-link:hover {
    color: rgb(147, 51, 234) !important;
    background: rgba(147, 51, 234, 0.08) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.15);
}

.mobile-menu-glass {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.1);
}