/* ================ BASE ================ */
:root {
    --primary: #7e22ce;
    --primary-dark: #6b21a8;
    --primary-light: #a855f7;
    --secondary: #10b981;
    --dark: #0f172a;
    --light: #f8fafc;
    --text: #334155;
    --text-light: #64748b;
    
--accent: #a855f7;
         
    --gradient: linear-gradient(135deg, #7e22ce 0%, #3b0764 100%);
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
.w-fit-content {
    width: fit-content !important;
}
@media screen and (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}
/* ================ BACKGROUND EFFECTS ================ */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    opacity: 0.3;
}

.grid-lines {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, var(--light) 21px, transparent 1%) center,
        linear-gradient(var(--light) 21px, transparent 1%) center,
        var(--primary-light);
    background-size: 22px 22px;
    z-index: -1;
    opacity: 0.03;
}

.glow-effect-1 {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0) 70%);
    filter: blur(40px);
    top: -300px;
    left: -300px;
    z-index: -1;
}

.glow-effect-2 {
    position: fixed;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, rgba(16, 185, 129, 0) 70%);
    filter: blur(60px);
    bottom: -400px;
    right: -400px;
    z-index: -1;
}

/* ================ HEADER ================ */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background: rgba(248, 250, 252, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--dark);
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--gradient);
    color: white;
    font-size: 0.9rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.link-hover::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover .link-hover::after {
    width: 100%;
}
        .menu-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-color);
            cursor: pointer;
            z-index: 101;
        }

@media (max-width: 768px) {
    header{
            padding: 1rem 0;
    }
            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: 100vh;
                background-color: var(--bg-color);
                flex-direction: column;
                align-items: flex-start;
                padding: 80px 30px 30px;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
                z-index: 100;
            }

            .nav-links.active {
                right: 0;
                        background-color: #fff;
            }

            .btn-magnetic {
                display: none !important;
            }

            .nav-links a {
                font-size: 18px;
                padding: 10px 0;
            }
        }

/* ================ BUTTONS ================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;

}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(126, 34, 206, 0.3);
}

.btn-primary:hover {
    /*transform: translateY(-2px);*/
    box-shadow: 0 6px 20px rgba(126, 34, 206, 0.4);
}

.btn-magnetic {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-video {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text);
    font-weight: 500;
}

.play-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.play-icon svg {
    width: 14px;
    height: 14px;
    fill: var(--primary);
    margin-left: 2px;
}

/* ================ HERO SECTION ================ */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--secondary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--secondary);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
}

.heading-line {
    display: block;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.tech-stack {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.tech-stack span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.stack-icons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stack-icon {
    width: 30px;
    height: 30px;
    border-radius: 6px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stack-icon:hover {
    transform: translateY(-3px);
}

.stack-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* ================ HERO VISUAL ================ */
.hero-visual {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 55%;
    max-width: 700px;
}

.chat-window {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(126, 34, 206, 0.25);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transition: transform 0.5s ease;
    position: relative;
    z-index: 2;
}

.chat-window:hover {
    transform: perspective(1000px) rotateY(-5deg) rotateX(3deg);
}

.chat-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    background: var(--light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-dots {
    display: flex;
    gap: 0.5rem;
}

.chat-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
}

.chat-dots span:nth-child(1) { background: #f56565; }
.chat-dots span:nth-child(2) { background: #f6e05e; }
.chat-dots span:nth-child(3) { background: #48bb78; }

.chat-title {
    flex: 1;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text);
}

.chat-actions {
    display: flex;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.8rem;
}

.chat-body {
    padding: 1.5rem;
    background: white;
}

.message {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.message-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
}

.message-content {
    max-width: 70%;
}

.message-text {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.ai-message .message-text {
    background: #f1f5f9;
    border-top-left-radius: 4px;
    color: var(--text);
}

.user-message {
    margin-left: auto;
    flex-direction: row-reverse;
}

.user-message .message-text {
    background: var(--primary);
    color: white;
    border-top-right-radius: 4px;
}

.message-time {
    font-size: 0.7rem;
    color: var(--text-light);
    margin-top: 0.25rem;
    text-align: right;
}

.typing-indicator {
    display: flex;
    gap: 0.25rem;
    padding: 0.75rem 1rem;
    background: #f1f5f9;
    border-radius: 12px;
    border-top-left-radius: 4px;
    width: fit-content;
}

.typing-indicator span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--text-light);
    animation: typing 1.4s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% { transform: translateY(0); opacity: 0.6; }
    30% { transform: translateY(-4px); opacity: 1; }
}

.chat-input {
    display: flex;
    padding: 0.75rem 1rem;
    background: var(--light);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.chat-input input {
    flex: 1;
    border: none;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.chat-input input:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-light);
}

.send-btn {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--primary);
    color: white;
    border: none;
    margin-left: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ================ FLOATING ELEMENTS ================ */
.integration-badge {
    position: absolute;
    bottom: -20px;
    left: -40px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

.integration-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-icon img {
    width: 14px;
    height: 14px;
}

.integration-badge span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text);
}

.floating-elements {
    position: absolute;
    top: 50%;
    left: -100px;
    transform: translateY(-50%);
    z-index: 1;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text);
    white-space: nowrap;
}

.floating-card i {
    color: var(--primary);
}

.card-1 {
    top: -80px;
    left: 0;
    animation: float 5s ease-in-out infinite;
}

.card-2 {
    top: 20px;
    left: -40px;
    animation: float 6s ease-in-out infinite 1s;
}

.card-3 {
    top: 90px;
    left: 0;
    animation: float 7s ease-in-out infinite 0.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* ================ RESPONSIVE ================ */
@media (max-width: 1200px) {
    .hero-visual {
        width: 50%;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 150px 0 80px;

    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-visual {
        position: relative;
        width: 100%;
        max-width: 600px;
        margin: 3rem auto 0;
        transform: none;
        right: auto;
        top: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .tech-stack {
        justify-content: center;
    }
    
    .floating-elements {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .integration-badge {
        left: 0;
        right: 0;
        margin: 0 auto;
        bottom: -15px;
        width: fit-content;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 120px 0 60px;
                padding-top: 97px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }
    
    .chat-window {
        transform: none;
    }
}

  /* Features Section */
    .features-section {
        padding: 100px 0;
        background: white;
        position: relative;
    }

    .section-intro {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-intro .badge {
        display: inline-block;
        background: rgba(168, 85, 247, 0.1);
        color: var(--primary);
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .section-intro h2 {
        font-size: 2.5rem;
        color: var(--dark);
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .section-intro .subtitle {
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
    }

    .text-gradient {
        background: var(--gradient);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    /* Tabs Navigation */
    .features-tabs {
        margin-bottom: 60px;
    }

    .tab-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 40px;
    }

    .tab-btn {
        padding: 12px 24px;
        border-radius: 8px;
        background: none;
        border: none;
        font-weight: 600;
        color: var(--text-light);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .tab-btn::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--primary);
        transition: width 0.3s ease;
    }

    .tab-btn:hover {
        color: var(--primary);
    }

    .tab-btn.active {
        color: var(--primary);
    }

    .tab-btn.active::after {
        width: 100%;
    }

    /* Tab Content */
    .tab-content {
        display: none;
        animation: fadeIn 0.5s ease;
    }

    .tab-content.active {
        display: block;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Feature Grid */
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .feature-card {
        background: white;
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(126, 34, 206, 0.08);
        transition: all 0.3s ease;
        position: relative;
        border: 1px solid rgba(168, 85, 247, 0.1);
    }

    .feature-card.highlighted {
        border: 1px solid var(--primary);
        box-shadow: 0 5px 30px rgba(126, 34, 206, 0.15);
    }

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(126, 34, 206, 0.15);
    }

    .feature-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(168, 85, 247, 0.1);
        margin-bottom: 20px;
        position: relative;
    }

    .feature-icon i {
        font-size: 24px;
        color: var(--primary);
        position: relative;
        z-index: 1;
    }

    .icon-pulse {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(168, 85, 247, 0.2);
        border-radius: 16px;
        animation: pulse 3s infinite;
        opacity: 0;
    }

    @keyframes pulse {
        0% { transform: scale(1); opacity: 0.7; }
        70% { transform: scale(1.3); opacity: 0; }
        100% { transform: scale(1); opacity: 0; }
    }

    .feature-card h3 {
        font-size: 1.25rem;
        color: var(--dark);
        margin-bottom: 12px;
    }

    .feature-card p {
        color: var(--text-light);
        margin-bottom: 20px;
        line-height: 1.6;
        font-size: 0.95rem;
    }

    .feature-badge {
        display: inline-block;
        background: rgba(16, 185, 129, 0.1);
        color: var(--secondary);
        padding: 4px 12px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
    }

    /* CTA Card */
    .features-cta {
        max-width: 900px;
        margin: 0 auto;
    }

    .cta-card {
        background: linear-gradient(135deg, #7e22ce 0%, #6b21a8 100%);
        border-radius: 16px;
        padding: 50px;
        text-align: center;
        color: white;
        box-shadow: 0 20px 40px rgba(126, 34, 206, 0.2);
    }

    .cta-card h3 {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }

    .cta-card p {
        opacity: 0.9;
        margin-bottom: 25px;
        font-size: 1.1rem;
    }

    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background: white;
        color: var(--primary);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
    }

    .btn-secondary {
        background: rgba(255, 255, 255, 0.15);
        color: white;
        backdrop-filter: blur(5px);
    }

    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.25);
        transform: translateY(-3px);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .features-section {
            padding: 80px 0;
        }
        
        .section-intro h2 {
            font-size: 2rem;
        }
        
        .cta-card {
            padding: 40px 30px;
        }
    }

    @media (max-width: 768px) {
        .tab-buttons {
            gap: 5px;
        }
        
        .tab-btn {
            padding: 10px 15px;
            font-size: 0.9rem;
        }
        
        .feature-grid {
                   grid-template-columns: repeat(auto-fit, minmax(46%, 1fr));
                       gap: 8px;

        }
        .feature-card{
                padding: 10px;
        }
        .feature-icon{
                width: 30px;
    height: 30px;
        }
        .feature-icon i {
            font-size: 16px;
        }
        .feature-card h3 {
         font-size: .9rem;
        }
        .feature-card p{
                font-size: 0.8rem;
        }
        .feature-badge{
                font-size: 0.65rem;
        }
        .cta-card {
                  padding: 24px 16px;
        }
        
        .cta-buttons {
            flex-direction: row;
        gap: 10px;
        }
        
        .btn {
            width: 100%;
            justify-content: center;
        }
    }
 /* Testimonials */
 .testimonials {
     background: var(--light);
 }

 .testimonial-card {
     background: white;
     padding: 30px;
     border-radius: 12px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
 }

 .testimonial-card img {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     object-fit: cover;
     margin-bottom: 20px;
 }

/* Pricing Section */
    .pricing-section {
        padding: 100px 0;
        background: linear-gradient(180deg, #faf5ff 0%, #ffffff 100%);
        position: relative;
    }

    .section-intro {
        text-align: center;
        margin-bottom: 50px;
    }

    .section-intro .badge {
        display: inline-block;
        background: rgba(168, 85, 247, 0.1);
        color: var(--primary);
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .section-intro h2 {
        font-size: 2.5rem;
        color: var(--dark);
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .section-intro .subtitle {
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
    }

    .text-gradient {
        background: var(--gradient);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }
    @media (max-width: 768px) {
        .section-intro h2 {
        font-size: 1.2rem;
    }       
    .section-intro .subtitle{
        font-size: 0.9rem;
        max-width: 90%;
    }
}
    /* Pricing Toggle */
    .pricing-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        margin-bottom: 40px;
    }

    .pricing-toggle span {
        font-weight: 600;
        color: var(--text);
    }

    .toggle-switch {
        position: relative;
        display: inline-block;
        width: 60px;
        height: 30px;
    }

    .toggle-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

    .slider {
        position: absolute;
        cursor: pointer;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: #e2e8f0;
        transition: .4s;
        border-radius: 34px;
    }

    .slider:before {
        position: absolute;
        content: "";
        height: 22px;
        width: 22px;
        left: 4px;
        bottom: 4px;
        background-color: white;
        transition: .4s;
        border-radius: 50%;
    }

    input:checked + .slider {
        background-color: var(--primary);
    }

    input:checked + .slider:before {
        transform: translateX(30px);
    }

    .discount-badge {
        background: var(--secondary);
        color: white;
        padding: 2px 8px;
        border-radius: 50px;
        font-size: 0.75rem;
        margin-left: 5px;
    }

    /* Pricing Grid */
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 25px;
        max-width: 1100px;
        margin: 0 auto 50px;
    }

    .pricing-card {
        background: white;
        border-radius: 16px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(126, 34, 206, 0.08);
        transition: all 0.3s ease;
        position: relative;
        border: 1px solid rgba(168, 85, 247, 0.1);
    }

    .pricing-card.popular {
        border: 2px solid var(--primary);
        box-shadow: 0 10px 30px rgba(126, 34, 206, 0.15);
        transform: translateY(-10px);
    }

    .popular-badge {
        position: absolute;
        top: -12px;
        right: 20px;
        background: var(--primary);
        color: white;
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .pricing-header {
        text-align: center;
        margin-bottom: 25px;
        padding-bottom: 25px;
        border-bottom: 1px dashed rgba(100, 116, 139, 0.2);
    }

    .pricing-header h3 {
        font-size: 1.5rem;
        color: var(--dark);
        margin-bottom: 5px;
    }

    .pricing-header p {
        color: var(--text-light);
        margin-bottom: 15px;
    }

    .price {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 5px;
    }

    .price-period {
        font-size: 1rem;
        font-weight: 400;
        color: var(--text-light);
    }

    .annual-price {
        display: none;
    }

    .billing-note {
        font-size: 0.85rem;
        color: var(--text-light);
    }

    .annual-text {
        display: none;
    }

    .custom-price {
        font-size: 2rem;
        font-weight: 700;
        color: var(--primary);
    }

    /* Features List */
    .features-list {
        list-style: none;
        margin-bottom: 30px;
    }

    .features-list li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
        color: var(--text);
    }

    .features-list i {
        color: var(--secondary);
    }

    .features-list strong {
        font-weight: 600;
    }

    /* Buttons */
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        width: 100%;
    }

    .btn-primary {
        background: var(--gradient);
        color: white;
        box-shadow: 0 4px 15px rgba(126, 34, 206, 0.3);
    }

    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(126, 34, 206, 0.4);
    }

    .btn-outline {
        border: 2px solid var(--primary);
        color: var(--primary);
    }

    .btn-outline:hover {
        background: rgba(168, 85, 247, 0.1);
        transform: translateY(-3px);
    }

    /* Pricing Footer */
    .pricing-footer {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
    }

    .faq-item {
        margin-bottom: 25px;
    }

    .faq-item h4 {
        font-size: 1.1rem;
        color: var(--dark);
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .faq-item i {
        color: var(--primary);
    }

    .faq-item p {
        color: var(--text-light);
        line-height: 1.6;
    }

    .trust-badges {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
        margin-top: 40px;
    }

    .badge-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--text-light);
        font-size: 0.9rem;
    }

    .badge-item i {
        color: var(--primary);
    }

    /* Responsive */
    @media (max-width: 992px) {
        .pricing-section {
            padding: 80px 0;
        }
        
        .section-intro h2 {
            font-size: 2rem;
        }
        
        .pricing-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
        }
        
        .pricing-card.popular {
            transform: none;
        }
    }

    @media (max-width: 768px) {
        .pricing-toggle {
            flex-direction: column;
            gap: 10px;
        }
        .pricing-grid {

            max-width: 500px;
                    display: flex
;
        overflow: hidden;
        overflow-x: scroll;
        gap: 12px;
        }
        .pricing-card{
            padding: 16px;
        }
        .pricing-header h3{
                font-size: 1rem;
        }
        .pricing-header p{
            font-size: .8rem;
        }
        .price{
            font-size: 2rem;
        }
        .price-period{
                font-size: .85rem;
        }
        .features-list li{
            font-size: 12px;
        }
    }

/* CTA Section */
    .cta-section {
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }
    
    .cta-card {
        background: linear-gradient(135deg, #7e22ce 0%, #6b21a8 100%);
        border-radius: 20px;
        padding: 80px 40px;
        text-align: center;
        color: white;
        position: relative;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(126, 34, 206, 0.3);
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .cta-card h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
        position: relative;
        z-index: 2;
    }
    
    .cta-subtitle {
        max-width: 700px;
        margin: 0 auto 40px;
        font-size: 1.1rem;
        opacity: 0.9;
        position: relative;
        z-index: 2;
    }
    
    /* Buttons */
    .cta-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
        position: relative;
        z-index: 2;
    }
    
    .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 32px;
        border-radius: 12px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .btn-primary {
        background: white;
        color: var(--primary);
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
    }
    
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
    }
    
    .btn-video {
        display: flex;
        align-items: center;
        gap: 12px;
        color: white;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(5px);
    }
    
    .btn-video:hover {
        background: rgba(255, 255, 255, 0.25);
    }
    
    .play-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .play-icon svg {
        width: 16px;
        height: 16px;
        fill: var(--primary);
        margin-left: 2px;
    }
    
    /* Trust Badges */
    .trust-badges {
        display: flex;
        justify-content: center;
        gap: 25px;
        position: relative;
        z-index: 2;
    }
    
    .badge-item {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.95rem;
        opacity: 0.9;
    }
    
    .badge-item i {
        color: var(--secondary);
    }
    
    @media (max-width: 768px) {
        .trust-badges {
            flex-direction: row;
            gap: 15px;
        }
        
        .badge-item {
            font-size: 0.85rem;
        }
    }
    /* Decorative Elements */
    .cta-blob {
        position: absolute;
        border-radius: 50%;
        filter: blur(60px);
        opacity: 0.15;
    }
    
    .blob-1 {
        width: 400px;
        height: 400px;
        background: #a855f7;
        top: -150px;
        left: -100px;
        animation: float 8s ease-in-out infinite;
    }
    
    .blob-2 {
        width: 300px;
        height: 300px;
        background: #10b981;
        bottom: -100px;
        right: -50px;
        animation: float 10s ease-in-out infinite 2s;
    }
    
    .cta-particles {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="white" opacity="0.05"><circle cx="25" cy="25" r="1.5"/><circle cx="75" cy="25" r="1.5"/><circle cx="50" cy="50" r="1.5"/><circle cx="25" cy="75" r="1.5"/><circle cx="75" cy="75" r="1.5"/></svg>');
        background-size: 100px 100px;
    }
    
    @keyframes float {
        0%, 100% { transform: translate(0, 0); }
        50% { transform: translate(30px, 30px); }
    }
    
    /* Magnetic Button Effect */
    .btn-magnetic {
        transition: transform 0.3s ease;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
        .cta-card {
            padding: 60px 30px;
        }
        
        .cta-card h2 {
            font-size: 1rem;
        }
    }
    
    @media (max-width: 768px) {
        .cta-buttons {
                flex-direction: row;
        gap: 10px;
                margin-bottom: 12px;
        }
        
        .trust-badges {
            flex-direction: column;
            gap: 15px;
        }
        
        .cta-card {
            padding: 50px 20px;
        }
    }

 /* Footer Section */
    .site-footer {
        position: relative;
        background: #1e1b4b;
        color: #e2e8f0;
        margin-top: 100px;
    }
    
    .footer-wave {
        position: absolute;
        top: -100px;
        left: 0;
        width: 100%;
        height: 100px;
        transform: rotate(180deg);
    }
    
    .footer-wave svg {
        width: 100%;
        height: 100%;
    }
    
    .footer-main {
        padding: 80px 0 40px;
        position: relative;
    }
    
    .footer-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 40px;
        margin-bottom: 60px;
    }
    
    .footer-col {
        padding: 0 15px;
    }
    
    .footer-logo {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 20px;
        font-size: 1.5rem;
        font-weight: 700;
        color: white;
    }
    
    .logo-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: linear-gradient(135deg, #7e22ce 0%, #6b21a8 100%);
        color: white;
    }
    
    .footer-about {
        color: #94a3b8;
        margin-bottom: 25px;
        line-height: 1.6;
    }
    
    .footer-social {
        display: flex;
        gap: 15px;
    }
    
    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        color: #94a3b8;
        transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
        background: #7e22ce;
        color: white;
        transform: translateY(-3px);
    }
    
    .footer-title {
        color: white;
        font-size: 1.1rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: #7e22ce;
    }
    
    .footer-links {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 12px;
    }
    
    .footer-links a {
        color: #94a3b8;
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .footer-links a:hover {
        color: white;
        transform: translateX(5px);
    }
    
    .footer-newsletter-text {
        color: #94a3b8;
        margin-bottom: 20px;
        line-height: 1.6;
    }
    
    .newsletter-form {
        margin-bottom: 20px;
    }
    
    .input-group {
        display: flex;
        margin-bottom: 15px;
    }
    
    .input-group input {
        flex: 1;
        padding: 12px 15px;
        border: none;
        border-radius: 8px 0 0 8px;
        background: rgba(255, 255, 255, 0.1);
        color: white;
    }
    
    .input-group input::placeholder {
        color: #94a3b8;
    }
    
    .input-group input:focus {
        outline: none;
        background: rgba(255, 255, 255, 0.15);
    }
    
    .newsletter-btn {
        width: 46px;
        background: #7e22ce;
        color: white;
        border: none;
        border-radius: 0 8px 8px 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .newsletter-btn:hover {
        background: #6b21a8;
    }
    
    .footer-checkbox {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.8rem;
        color: #94a3b8;
    }
    
    .footer-checkbox input {
        accent-color: #7e22ce;
    }
    
    .footer-bottom {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .footer-copyright {
        color: #94a3b8;
        font-size: 0.9rem;
    }
    
    .footer-legal {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .footer-legal a {
        color: #94a3b8;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }
    
    .footer-legal a:hover {
        color: white;
    }
    
    /* Responsive */
    @media (max-width: 992px) {
        .footer-grid {
            grid-template-columns: repeat(3, 1fr);
        }
        
        .footer-col:last-child {
            grid-column: span 3;
            max-width: 500px;
        }
    }
    
    @media (max-width: 768px) {
        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
        .footer-col{
                padding: 0 0px;
        }
        .footer-col:last-child {
            grid-column: span 2;
        }
        
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
    }
    
    @media (max-width: 576px) {
        .footer-grid {
            grid-template-columns: 1fr;
        }
        
        .footer-col:last-child {
            grid-column: span 1;
        }
    }
 /* Responsive */
 @media (max-width: 768px) {
     .hero h1 {
               font-size: 24px;
               line-height: 1.4;

     }

     .hero p {
              font-size: 15px;
     }

     .hero-buttons {
         flex-direction: column;
         align-items: center;
     }

     .section-title h2 {
         font-size: 30px;
     }
 }



 /* Floating Animation */
 .floating {
     animation: floating 6s ease-in-out infinite;
 }

 @keyframes floating {
     0% {
         transform: translateY(0px);
     }

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

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

 /* Tech Spider Animation */
 .tech-spider {
     position: absolute;
     width: 100px;
     height: 100px;
     background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23a855f7"><path d="M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm-1-13h2v6h-2zm0 8h2v2h-2z"/></svg>') no-repeat center center;
     background-size: contain;
     top: 20%;
     left: 10%;
     animation: spiderMove 15s linear infinite;
     opacity: 0.6;
     z-index: 1;
 }

 @keyframes spiderMove {
     0% {
         transform: translate(0, 0) rotate(0deg);
     }

     25% {
         transform: translate(50px, 30px) rotate(90deg);
     }

     50% {
         transform: translate(100px, 0) rotate(180deg);
     }

     75% {
         transform: translate(50px, -30px) rotate(270deg);
     }

     100% {
         transform: translate(0, 0) rotate(360deg);
     }
 }

 /* Responsive Adjustments */
 @media (max-width: 768px) {
     .hero {
         padding: 60px 0 30px;
                 padding-top: 97px !important;
     }

     .hero-image {
         height: 300px;
     }

     .tech-spider {
         display: none;
         /* Hide on mobile */
     }
 }

 /* Solutions Section */
    .solutions-section {
        padding: 100px 0;
        background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 100%);
        position: relative;
        overflow: hidden;
    }

    .solutions-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" fill="%237e22ce" opacity="0.03"><circle cx="25" cy="25" r="3"/><circle cx="75" cy="25" r="3"/><circle cx="50" cy="50" r="3"/><circle cx="25" cy="75" r="3"/><circle cx="75" cy="75" r="3"/></svg>');
        background-size: 100px 100px;
        z-index: 0;
    }

    .section-header {
        text-align: center;
        margin-bottom: 60px;
        position: relative;
        z-index: 1;
    }

    .section-header .badge {
        display: inline-block;
        background: rgba(168, 85, 247, 0.1);
        color: var(--primary);
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .section-header h2 {
        font-size: 2.5rem;
        color: var(--dark);
        margin-bottom: 15px;
    }

    .section-header .subtitle {
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
    }

    .solutions-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
        position: relative;
        z-index: 1;
    }

    .solution-card {
        background: white;
        border-radius: 16px;
        padding: 40px 30px;
        box-shadow: 0 10px 30px rgba(126, 34, 206, 0.1);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .solution-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--gradient);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .solution-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(126, 34, 206, 0.2);
    }

    .solution-card:hover::before {
        opacity: 1;
    }

    .solution-card.highlighted {
        border: 2px solid var(--primary);
        box-shadow: 0 10px 30px rgba(126, 34, 206, 0.2);
    }

    .solution-icon {
        width: 70px;
        height: 70px;
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        margin-bottom: 25px;
    }

    .solution-icon i {
        font-size: 28px;
        color: var(--primary);
        position: relative;
        z-index: 1;
    }

    .icon-bg {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(168, 85, 247, 0.1);
        border-radius: 20px;
        transform: rotate(45deg);
    }

    .solution-card h3 {
        font-size: 1.5rem;
        color: var(--dark);
        margin-bottom: 15px;
    }

    .solution-card p {
        color: var(--text-light);
        margin-bottom: 20px;
        line-height: 1.6;
    }

    .solution-features {
        list-style: none;
        margin-bottom: 30px;
    }

    .solution-features li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .solution-features i {
        color: var(--secondary);
        font-size: 18px;
    }

    .solution-stats {
        display: flex;
        gap: 15px;
        margin-top: 30px;
        padding-top: 20px;
        border-top: 1px dashed rgba(100, 116, 139, 0.2);
    }

    .stat {
        flex: 1;
        text-align: center;
    }

    .stat-value {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary);
        margin-bottom: 5px;
    }

    .stat-label {
        font-size: 0.85rem;
        color: var(--text-light);
    }

    .highlight-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: var(--primary);
        color: white;
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
    }

    .solutions-cta {
        text-align: center;
        margin-top: 60px;
        position: relative;
        z-index: 1;
    }

    .solutions-cta p {
        color: var(--text-light);
        margin-bottom: 20px;
        font-size: 1.1rem;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .solutions-section {
            padding: 50px 0;
        }
        
        .section-header h2 {
            font-size: 2rem;
        }
    }

    @media (max-width: 768px) {
         .solutions-section {
            padding: 32px 0;
        }
        .section-header h2{
            font-size: 1.2rem;
        }
        .section-header .subtitle{
                    font-size: 1rem;
        }
        .solutions-grid {
    
            max-width: 500px;
            margin: 0 auto;
            grid-template-columns: repeat(auto-fit, minmax(45%, 1fr));
        gap: 8px;
        }
        
        .solution-card {
            padding: 10px;
        }
        .solution-icon{
                width: 40px;
    height: 40px;
        }
        .solution-icon i {
    font-size: 16px;
}
.highlight-badge{
        font-size: 0.7rem;
            right: 7px;
}
.solution-card h3{
    font-size: 1rem;
}
.solution-card p{
        font-size: .8rem;
}
.solution-features li{
        gap: 8px;
    font-size: 12px;
}
.stat-value{
        font-size: 1rem;
}
.stat-label{
        font-size: 0.7rem;

}
    }

     /* Resources Section */
    .resources-section {
        padding: 100px 0;
        background: white;
    }

    .section-intro {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-intro .badge {
        display: inline-block;
        background: rgba(168, 85, 247, 0.1);
        color: var(--primary);
        padding: 8px 16px;
        border-radius: 50px;
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 20px;
    }

    .section-intro h2 {
        font-size: 2.5rem;
        color: var(--dark);
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .section-intro .subtitle {
        color: var(--text-light);
        max-width: 700px;
        margin: 0 auto;
        font-size: 1.1rem;
    }

    .text-gradient {
        background: var(--gradient);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

    /* Tabs Navigation */
    .resources-tabs {
        margin-bottom: 60px;
    }

    .tab-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 40px;
    }

    .tab-btn {
        padding: 12px 24px;
        border-radius: 8px;
        background: none;
        border: none;
        font-weight: 600;
        color: var(--text-light);
        cursor: pointer;
        transition: all 0.3s ease;
        position: relative;
    }

    .tab-btn::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--primary);
        transition: width 0.3s ease;
    }

    .tab-btn:hover {
        color: var(--primary);
    }

    .tab-btn.active {
        color: var(--primary);
    }

    .tab-btn.active::after {
        width: 100%;
    }

    /* Tab Content */
    .tab-content {
        display: none;
        animation: fadeIn 0.5s ease;
    }

    .tab-content.active {
        display: block;
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    /* Resources Grid */
    .resources-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }

    .resource-card {
        background: white;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(126, 34, 206, 0.1);
        transition: all 0.3s ease;
        text-decoration: none;
        color: var(--text);
        display: block;
    }

    .resource-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(126, 34, 206, 0.2);
    }

    .resource-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: var(--primary);
        color: white;
        padding: 4px 12px;
        border-radius: 50px;
        font-size: 0.75rem;
        font-weight: 600;
        z-index: 1;
    }

    .resource-image {
        height: 180px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .resource-image img {
        max-width: 80%;
        max-height: 80%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .resource-card:hover .resource-image img {
        transform: scale(1.05);
    }

    .resource-content {
        padding: 20px;
    }

    .resource-content h3 {
        font-size: 1.25rem;
        color: var(--dark);
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .resource-content p {
        color: var(--text-light);
        margin-bottom: 15px;
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .resource-meta {
        display: flex;
        justify-content: space-between;
        font-size: 0.85rem;
        color: var(--text-light);
    }

    .resource-meta i {
        margin-right: 5px;
    }

    /* CTA Card */
    .resources-cta {
        max-width: 900px;
        margin: 0 auto;
    }

    .cta-card {
        background: linear-gradient(135deg, #f3e8ff 0%, #e9d5ff 100%);
        border-radius: 16px;
        padding: 40px;
        text-align: center;
        color: var(--dark);
    }

    .cta-card h3 {
        font-size: 1.75rem;
        margin-bottom: 15px;
    }

    .cta-card p {
        margin-bottom: 25px;
        font-size: 1.1rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 8px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .btn-primary {
        background: var(--primary);
        color: white;
        box-shadow: 0 4px 15px rgba(126, 34, 206, 0.3);
    }

    .btn-primary:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(126, 34, 206, 0.4);
    }
    @media (max-width:768px) {
        .resources-cta {
            padding: 20px;
        }
        
        .cta-card {
            padding: 30px;
        }
        
        .cta-card h3 {
               font-size: 1.2rem;
                   margin-bottom: 15px;
        }
        
        .cta-card p {
               font-size: 1rem;
        }
          .btn-primary {
                padding: 9px 14px;
                    font-size: 12px;
          }
    }

    /* Responsive */
    @media (max-width: 992px) {
        .resources-section {
            padding: 80px 0;
            padding-top: 0px !important;
        }
        
        .section-intro h2 {
            font-size: 1.2rem;
            line-height: 1.4;

        }
    }

    @media (max-width: 768px) {
        .resources-grid {
            grid-template-columns: 1fr;
            max-width: 500px;
            margin: 0 auto;
                    grid-template-columns: repeat(auto-fit, minmax(47%, 1fr));
        gap: 8px;
        }
        .resource-content{
                padding: 12px;
        }
        .resource-content h3{
                font-size: .9rem;

        }
        .resource-content p{
                font-size: 0.8rem;
        }
        .resource-meta{
            font-size: 0.7rem;
        }
        .resource-image {
    height: 120px;}
        .tab-buttons {
            gap: 4px;
                margin-bottom: 32px;
        }
        
        .tab-btn {
        padding: 7px 9px;
        font-size: 0.75rem;
        }
        
        .cta-card {
            padding: 30px 20px;
        }
    }


  /* Responsive Height Adjustments */
  @media (min-width: 1200px) {
    .footer-wave { height: 120px; } /* Large desktops */
  }

  @media (min-width: 992px) {
    .footer-wave { height: 100px; } /* Desktops */
  }

  @media (min-width: 768px) {
    .footer-wave { height: 80px; } /* Tablets */
  }

  @media (min-width: 576px) {
    .footer-wave { height: 60px; } /* Large phones */
  }

  @media (max-width: 575.98px) {
    .footer-wave { height: 40px;top: -40px; } /* Small phones */
  }

  /* Performance Optimizations */
  .footer-wave path {
    shape-rendering: geometricPrecision;
  }
