/* === Glass Effect === */
.feature-card, .pricing-card {
    background: rgba(30, 30, 50, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px 20px;
    transition: 0.4s ease;
    color: #fff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0);
}

.feature-card:hover, .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.15);
}

/* === Icon Neon Glow === */
.feature-icon i {
    font-size: 3rem;
    text-shadow: 0 0 10px rgba(0,255,255,0.7);
}

/* === Hero Section === */
.hero-section {
    padding: 80px 20px 50px;
    background: linear-gradient(145deg, #1b1b2b, #1a1a25);
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #00ffe7;
    text-shadow: 0 0 10px rgba(0, 255, 231, 0.5);
}

.hero-subtitle {
    color: #ccc;
    max-width: 600px;
    font-size: 1.1rem;
}

/* Floating animation */
.hero-image {
    max-width: 320px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* === Button Styling === */
.btn-primary {
    background: linear-gradient(45deg, #00d4ff, #007bff);
    border: none;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
    transition: 0.3s ease;
}

.btn-primary:hover {
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.8);
    transform: translateY(-2px);
}

/* === Section Title === */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #00ffe7;
    text-shadow: 0 0 10px rgba(0, 255, 231, 0.3);
    margin-bottom: 10px;
}

.section-subtitle {
    color: #aaa;
    max-width: 600px;
}

/* === Footer === */
footer {
    background-color: #11111a;
    border-top: 1px solid #2a2a40;
    color: #777;
}

/* === Accordion === */
.accordion-button {
    background-color: #2c2c3e;
    color: #00ffe7;
}

.accordion-button:not(.collapsed) {
    background-color: #353555;
    color: #fff;
}

