:root {
    --neon-pink: #ff00aa;
    --electric-purple: #b300ff;
    --deep-purple: #6a0dad;
    --soft-pink: #ff66cc;
    --pink-glow: rgba(255, 0, 170, 0.4);
    --purple-glow: rgba(179, 0, 255, 0.3);
    --black: #0a0a12;
    --darker-bg: #050508;
    --text-color: #f0e6ff;
}

body {
    background-color: var(--black);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* Container */
.neon-faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(145deg, var(--darker-bg) 0%, rgba(15, 10, 25, 0.9) 100%);
    border-radius: 15px;
    box-shadow: 0 0 30px var(--purple-glow);
    border: 1px solid rgba(179, 0, 255, 0.2);
}

/* Header */
.neon-faq-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.neon-faq-title {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--electric-purple);
    margin-bottom: 0.5rem;
    animation: title-glow 3s infinite alternate;
}

.neon-faq-subtitle {
    font-size: 1.2rem;
    color: var(--soft-pink);
    text-transform: uppercase;
    letter-spacing: 3px;
}

/* Grid */
.neon-faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

/* Card */
.neon-faq-card {
    background: rgba(10, 5, 20, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 170, 0.2);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
    overflow: hidden;
    will-change: box-shadow;
}

.neon-faq-card:hover {
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px var(--pink-glow);
}

.neon-faq-card.open {
    box-shadow: 0 0 25px var(--pink-glow);
}

/* Question */
.neon-faq-question {
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(90deg, rgba(106, 13, 173, 0.2) 0%, transparent 100%);
    transition: background 0.3s ease, color 0.3s ease;
    position: relative;
}

.neon-faq-question:hover {
    background: linear-gradient(90deg, rgba(179, 0, 255, 0.3) 0%, transparent 100%);
    color: var(--soft-pink);
}

/* Toggle Icon */
.faq-toggle {
    font-size: 1.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
}

.neon-faq-card.open .faq-toggle {
    transform: rotate(45deg);
    color: var(--neon-pink);
}

/* Answer */
.neon-faq-answer {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    overflow: hidden;
    padding: 0 1.2rem;
    background: rgba(0, 0, 0, 0.2);
    transition:
        max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1),
        opacity 0.4s ease,
        transform 0.4s ease;
    will-change: max-height, transform, opacity;
}

.neon-faq-card.open .neon-faq-answer {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
    padding: 1.2rem;
}

/* Answer list style */
.neon-faq-list {
    list-style: none;
    padding-left: 0;
}

.neon-faq-list li {
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.neon-faq-list li::before {
    content: "✧";
    position: absolute;
    left: 0;
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--pink-glow);
}

/* Link */
.neon-link {
    color: var(--soft-pink);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    text-shadow: 0 0 5px var(--pink-glow);
}

.neon-link:hover {
    color: var(--electric-purple);
    text-shadow: 0 0 10px var(--purple-glow);
}

/* Animation */
@keyframes title-glow {
    0% {
        text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--electric-purple);
    }
    100% {
        text-shadow: 0 0 15px var(--neon-pink), 0 0 30px var(--electric-purple);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .neon-faq-title {
        font-size: 2rem;
    }

    .neon-faq-subtitle {
        font-size: 1rem;
    }

    .neon-faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
}
    
    /*.   about */
    
   
    /* Style for the 'New Model' badge */
.new-model-badge {
    position: absolute;
    top: 10px;  /* Adjust the position so it's outside the image */
    left: 10px;
    background-color: rgba(248, 0, 178, 0.8);  /* Pinkish background */
    color: white;
    font-size: 18px;
    font-weight: bold;
    padding: 8px 14px;
    border-radius: 5px;
    z-index: 1;  /* Keep it above the image */
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(248, 0, 178, 0.8), 0 0 20px rgba(248, 0, 178, 0.8), 0 0 30px rgba(248, 0, 178, 0.8); /* Neon glow effect */
    animation: neon-blink 1s infinite alternate; /* Apply neon blinking effect */
}

/* Neon LED Blinking Effect */
@keyframes neon-blink {
    0% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(248, 0, 178, 0.8), 0 0 20px rgba(248, 0, 178, 0.8), 0 0 30px rgba(248, 0, 178, 0.8); /* Neon glow */
    }
    50% {
        opacity: 0.4;
        box-shadow: 0 0 10px rgba(248, 0, 178, 0.5), 0 0 20px rgba(248, 0, 178, 0.5), 0 0 30px rgba(248, 0, 178, 0.5); /* Dimmed glow */
    }
    100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(248, 0, 178, 0.8), 0 0 20px rgba(248, 0, 178, 0.8), 0 0 30px rgba(248, 0, 178, 0.8); /* Neon glow */
    }
}

/* Responsive: Adjust badge size and position for mobile screens */
@media (max-width: 768px) {
    .new-model-badge {
        top: 5px;  /* Adjust position for mobile */
        left: 5px;
        font-size: 14px;  /* Smaller font size */
        padding: 6px 12px;  /* Smaller padding */
        box-shadow: 0 0 8px rgba(248, 0, 178, 0.8), 0 0 16px rgba(248, 0, 178, 0.8), 0 0 24px rgba(248, 0, 178, 0.8); /* Adjust glow for smaller screens */
    }
}

@media (max-width: 480px) {
    .new-model-badge {
        top: 5px;  /* Adjust position for smaller screens */
        left: 5px;
        font-size: 12px;  /* Even smaller font size */
        padding: 4px 8px;  /* Even smaller padding */
        box-shadow: 0 0 6px rgba(248, 0, 178, 0.8), 0 0 12px rgba(248, 0, 178, 0.8), 0 0 18px rgba(248, 0, 178, 0.8); /* Adjust glow for even smaller screens */
    }
}


/* Ensure the portfolio-thumblink-item is positioned relative */
.sk__portfolio-item {
    position: relative;
}



            

        .gradient-text {
    position: relative; /* Position the pseudo-element relative to the span */
    display: inline-block; /* Ensures the background width matches the text width */
    color: white; /* Text color */
    padding: 2px 10px;
 
}

.gradient-text::before {
    content: ''; /* Empty content to create the pseudo-element */
    position: absolute; /* Position it relative to the span */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right,rgb(218, 18, 185),rgb(49, 3, 82)); /* Gradient from purple to dark purple */
    z-index: -1; /* Make sure the pseudo-element stays behind the text */
    width: 100%; /* Match the width of the text */
    height: 100%; /* Match the height of the text */
    border-radius:10px;
}






   
   