/* --------------------------------------------------------------Nav Bar ---------------------------------------------------------------------------*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, sans-serif;
    scroll-behavior: smooth;
}

html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    background: linear-gradient(135deg, #050506 0%, #0f1117 40%, #1a1d26 100%);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 20px;
    color: #f8fafc;
    overflow-x: hidden !important;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

header {
    margin-bottom: 40px;
}

.navbar {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    width: 100%;
    max-width: 100%;
    
}


/* Logo Section */
.logo-container {
    display: flex;
    align-items: center;
    padding: 12px 0;
}

.logo {
    height: 40px;
    width: auto;
    border-radius: 5px;
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-left: 10px;
    background: linear-gradient(90deg, #7b918a, #997e84, #1ebfff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowShift 4s linear infinite;
}
@keyframes glowShift {
    100% { background-position: 0% 50%; }
    0% { background-position: 200% 50%; }
}


/* Navigation Links */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    color: #f1f5f9;
    text-decoration: none;
    padding: 20px 18px;
    display: block;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #60a5fa;
}

.nav-links a:hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 18px;
    right: 18px;
    height: 2px;
    background: #60a5fa;
    border-radius: 2px;
}

/* Services Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.1);
}

.dropdown-content i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Blinking Contact Button */
.contact-btn {
    background: linear-gradient(90deg, #3b82f6, #8b5cf6);
    border-radius: 50px;
    padding: 12px 28px;
    margin-left: 10px;
    border: none;
    color: white;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(59, 130, 246, 0.8), 0 0 20px rgba(59, 130, 246, 0.6); }
}

.contact-btn:hover {
    transform: translateY(-2px);
    animation: none;
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6), 0 0 25px rgba(59, 130, 246, 0.5);
}

/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #f1f5f9;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
}

/* Overlay for mobile menu */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(3px);
    z-index: 998;
    display: none;
}

.overlay.active {
    display: block;
}

/* Close button for mobile menu */
.close-btn {
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    color: #f1f5f9;
    font-size: 1.8rem;
    cursor: pointer;
    display: none;
}


/* Responsive Styles */
@media (max-width: 992px) {
    .hamburger {
        display: block;
    }

    .close-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -110%;
        width: 300px;
        height: 80vh;
        background: rgba(30, 41, 59, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        align-items: flex-start;
        padding: 50px 30px 30px;
        transition: right 0.5s ease;
        z-index: 999;
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
        border-radius: 15px;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        padding: 16px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:hover::after {
        display: none;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        border: none;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        border-radius: 8px;
        margin-top: 5px;
    }

    .dropdown.active .dropdown-content {
        max-height: 400px !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .dropdown-content a {
        padding: 12px 15px;
    }

    /* Make dropdown clickable on mobile */
    .dropdown > a {
        cursor: pointer;
        position: relative;
        padding-right: 30px !important;
    }

    .dropdown > a::after {
        content: '\f078';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: transform 0.3s ease;
        font-size: 0.8rem;
    }

    .dropdown.active > a::after {
        transform: translateY(-50%) rotate(180deg);
    }

    .contact-btn {
        margin: 20px 0 0 0;
        width: 100%;
        text-align: center;
    }
}


/* ----------------------------------------------------- Landing Page ------------------------------------------------------------------------------------*/






.pranav-portfolio {
    background: linear-gradient(135deg, #0a0a0f00 0%rgba(21, 21, 34, 0)22 100%);
    color: white;
    padding: 10px 4%;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.portfolio-wrapper {
    height: 100%;
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 25px;
}

/* Left side content - Now on top for mobile */
.portfolio-details {
    width: 100%;
    max-width: 100%;
    z-index: 2;
    order: 1;
    overflow-y: visible;
    padding-right: 0;
}

/* Custom scrollbar */
.portfolio-details::-webkit-scrollbar {
    width: 6px;
}

.portfolio-details::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.portfolio-details::-webkit-scrollbar-thumb {
    background: linear-gradient(90deg, #00d4ff 0%, #6a11cb 100%);
    border-radius: 10px;
}

.name-headline {
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #00d4ff 0%, #6a11cb 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
}

.name-headline::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff 0%, #6a11cb 100%);
    border-radius: 2px;
}

.role-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    color: #b0b7d6;
    margin-bottom: 20px;
    position: relative;
    padding-left: 15px;
}

.role-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #00d4ff;
    border-radius: 50%;
    box-shadow: 0 0 8px #00d4ff;
}

/* Description section */
.description-section {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.description-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #00d4ff;
    display: flex;
    align-items: center;
}

.description-title i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.description-text {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #c5c9e0;
}

.achievement-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 20px 0 25px;
    padding: 15px 0;
}

.achievement-item {
    display: flex;
    flex-direction: column;
    position: relative;
    text-align: center;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 80px;
    justify-content: center;
}

.achievement-number {
    font-size: 2rem;
    font-weight: 800;
    color: #00d4ff;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.achievement-number::after {
    content: '+';
    position: absolute;
    top: 0;
    font-size: 1.2rem;
    color: #ffffffb9;
}

.achievement-label {
    font-size: 0.7rem;
    color: #8a94c4;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 5px;
    font-weight: 500;
}

/* Skills section */
.skills-section {
    margin: 20px 0;
}

.skills-title {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #b0b7d6;
    display: flex;
    align-items: center;
}

.skills-title i {
    margin-right: 8px;
    color: #00d4ff;
    font-size: 0.9rem;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.skill-item {
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    text-align: center;
    font-size: 0.85rem;
    color: #c5c9e0;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

.skill-item:hover {
    background: rgba(0, 212, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

/* CTA Buttons */
.cta-section {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 25px 0;
}

.cta-button {
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 160px;
    cursor: pointer;
}

.cta-primary {
    background: linear-gradient(90deg, #00d4ff 0%, #6a11cb 100%);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 212, 255, 0.4);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #b0b7d6;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: white;
}

.cta-button i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.brands-section {
    margin-top: 20px;
}

.brands-heading {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #b0b7d6;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.brands-heading i {
    margin-right: 8px;
    color: #00d4ff;
    font-size: 0.9rem;
}

/* Scrolling brands container */
.brands-scroll-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
    height: 60px;
}

.brands-track {
    display: flex;
    animation: scrollBrands 20s linear infinite;
    width: max-content;
    gap: 20px;
}

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    cursor: pointer;
}

.brand-item:hover {
    background: rgba(0, 212, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.3);
}

.brand-logo {
    font-size: 1.5rem;
    color: #ffffff;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo {
    color: #00d4ff;
    filter: brightness(1.2);
    transform: scale(1.1);
}

/* Right side image - Now below for mobile */
.portfolio-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    order: 2;
}

.visual-container {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.7);
}

.owner-visual {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    transition: transform 0.9s ease;
}

.visual-container:hover .owner-visual {
    transform: scale(1.05);
}

.visual-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, rgba(10, 10, 15, 0.95), transparent);
    z-index: 2;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(106, 17, 203, 0.1), rgba(0, 212, 255, 0.05));
    z-index: 1;
}

/* Contact info */
.contact-info {
    display: none;
}

/* Decorative elements */
.deco-element {
    position: absolute;
    z-index: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: float 20s infinite ease-in-out;
}

.deco-1 {
    width: 200px;
    height: 200px;
    top: -30px;
    right: -30px;
}

.deco-2 {
    width: 150px;
    height: 150px;
    bottom: -20px;
    left: -20px;
    background: radial-gradient(circle, rgba(106, 17, 203, 0.1) 0%, transparent 70%);
    animation-delay: -5s;
}

.deco-3 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 5%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(10px, -10px) scale(1.03); }
    66% { transform: translate(-8px, 8px) scale(0.97); }
}

@keyframes scrollBrands {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Pause animation on hover */
.brands-scroll-container:hover .brands-track {
    animation-play-state: paused;
}

/* Glow effects */
.glow-effect {
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
    top: 15%;
    right: 5%;
}

/* Desktop layout */
@media (min-width: 992px) {
    .pranav-portfolio {
        overflow: hidden;
    }
    
    .portfolio-wrapper {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 40px;
        max-height: 90vh;
    }
    
    .portfolio-details {
        order: 1;
        max-width: 55%;
        max-height: 85vh;
        padding-right: 15px;
        overflow-y: auto;
    }
    
    .portfolio-visual {
        order: 2;
        justify-content: flex-end;
        max-width: 40%;
        max-height: 70vh;
    }
    
    .name-headline {
        font-size: 3.5rem;
    }
    
    .name-headline::after {
        width: 80px;
        bottom: -8px;
    }
    
    .role-subtitle {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }
    
    .achievement-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
        margin-bottom: 30px;
    }
    
    .achievement-item {
        min-height: 90px;
    }
    
    .achievement-number {
        font-size: 2.2rem;
    }
    
    .visual-container {
        max-width: 400px;
        transform: perspective(800px) rotateY(-10deg);
        height: auto;
    }
    
    .visual-container:hover {
        transform: perspective(800px) rotateY(-5deg);
    }
    
    .owner-visual {
        height: 100%;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .cta-button {
        min-width: 180px;
        padding: 12px 24px;
    }
    
    .glow-effect {
        width: 300px;
        height: 300px;
        top: 10%;
        right: 15%;
    }
}

/* Tablet layout */
@media (min-width: 768px) and (max-width: 991px) {
    .portfolio-wrapper {
        gap: 30px;
    }
    
    .name-headline {
        font-size: 3rem;
    }
    
    .role-subtitle {
        font-size: 1.5rem;
    }
    
    .achievement-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .achievement-item {
        min-height: 85px;
    }
    
    .visual-container {
        max-width: 300px;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    body {
        padding: 10px;
    }
    
    .pranav-portfolio {
        padding: 70px 3% 15px;
        height: auto;
        min-height: 100vh;
        width: 100%;
    }
    
    .portfolio-wrapper {
        max-height: none;
        height: auto;
        gap: 25px;
        padding: 0;
    }
    
    .portfolio-details {
        max-height: none;
        height: auto;
        order: 1;
        padding-right: 0;
        z-index: 2;
        width: 100%;
    }
    
    .portfolio-visual {
        max-height: none;
        height: auto;
        min-height: 250px;
        order: 2;
        margin: 0;
        z-index: 1;
        width: 100%;
    }
    
    .visual-container {
        max-width: 280px;
        height: auto;
        margin: 0 auto;
    }
    
    .owner-visual {
        height: auto;
        max-height: 300px;
        width: 100%;
        object-fit: contain;
    }
    
    .name-headline {
        font-size: 2rem;
        text-align: center;
        display: block;
        margin-top: 0;
    }
    
    .role-subtitle {
        font-size: 1.1rem;
        text-align: center;
        padding-left: 0;
        margin-bottom: 15px;
    }
    
    .role-subtitle::before {
        display: none;
    }
    
    .name-headline::after {
        left: 50%;
        transform: translateX(-50%);
        bottom: -5px;
        width: 50px;
    }
    
    .achievement-stats {
        gap: 10px;
        margin: 20px 0;
    }
    
    .achievement-item {
        padding: 10px;
        min-height: 70px;
    }
    
    .achievement-number {
        font-size: 1.6rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 8px;
    }
    
    .brands-track {
        gap: 15px;
    }
    
    .brand-item {
        width: 60px;
        height: 35px;
    }
    
    .brand-logo {
        font-size: 1.3rem;
    }
    
    .cta-button {
        min-width: 100%;
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    /* Disable hover effects on touch devices */
    @media (hover: none) {
        .skill-item:hover,
        .brand-item:hover,
        .cta-button:hover {
            transform: none;
        }
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .pranav-portfolio {
        padding: 70px 2% 10px;
    }
    
    .name-headline {
        font-size: 1.8rem;
    }
    
    .role-subtitle {
        font-size: 1rem;
    }
    
    .description-text {
        font-size: 0.9rem;
    }
    
    .achievement-number {
        font-size: 1.4rem;
    }
    
    .achievement-label {
        font-size: 0.75rem;
    }
    
    .skills-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .skill-item {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    
    .portfolio-visual {
        min-height: 220px;
    }
    
    .visual-container {
        max-width: 220px;
    }
    
    .owner-visual {
        max-height: 250px;
    }
}

/* Very small mobile devices */
@media (max-width: 360px) {
    .portfolio-details {
        padding: 0;
    }
    
    .achievement-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .cta-section {
        flex-direction: column;
    }
    
    .cta-button {
        width: 100%;
    }
    
    .portfolio-visual {
        min-height: 200px;
    }
    
    .visual-container {
        max-width: 200px;
    }
    
    .owner-visual {
        max-height: 220px;
    }
}





/* ----------------------------------------------------- Hr tag ------------------------------------------------------------------------------------*/







/* Reset default HR styling */
hr {
  border: none;
  height: 0;
  margin: 4rem;
  
}

/* Stylish line that fades at both ends */
hr.stylish-line {
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    #3c32ff 60%,
    transparent 100%
  );
  border-radius: 2px;
  margin-top: 50px;
}



/* ----------------------------------------------------- Music Player  ------------------------------------------------------------------------------------*/



/* Player Container - Fixed in bottom right */
.player-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

/* Mini Player Button - SMALL */
.mini-player {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(0, 242, 254, 0.4),
                0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    z-index: 100;
    animation: miniGlow 2s infinite alternate;
}

@keyframes miniGlow {
    0% { box-shadow: 0 5px 20px rgba(0, 242, 254, 0.4); }
    100% { box-shadow: 0 5px 30px rgba(0, 242, 254, 0.7); }
}

.mini-player:not(.playing) {
    background: linear-gradient(135deg, #555 0%, #777 100%);
    animation: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.mini-player:hover {
    transform: scale(1.15);
}

/* Fix for mini icon alignment */
.mini-icon {
    font-size: 20px;
    color: white;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.mini-icon i {
    display: block;
    line-height: 1;
}

/* Neon ring around mini player */
.neon-ring {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border: 2px solid transparent;
    border-radius: 50%;
    animation: neonPulse 3s infinite;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}

.mini-player:hover .neon-ring {
    opacity: 1;
}

@keyframes neonPulse {
    0%, 100% {
        border-color: rgba(0, 242, 254, 0.3);
        box-shadow: 0 0 10px rgba(0, 242, 254, 0.3);
    }
    50% {
        border-color: rgba(79, 172, 254, 0.6);
        box-shadow: 0 0 20px rgba(79, 172, 254, 0.6);
    }
}

/* Wave animation for mini player */
.wave-container {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: -1;
    pointer-events: none;
}

.wave {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0, 242, 254, 0.3);
    animation: waveAnimation 2s infinite cubic-bezier(0.215, 0.610, 0.355, 1);
    opacity: 0;
    display: none;
}

.mini-player.playing .wave {
    display: block;
}

.wave-1 {
    width: 100%;
    height: 100%;
    animation-delay: 0s;
}

.wave-2 {
    width: 130%;
    height: 130%;
    animation-delay: 0.5s;
}

.wave-3 {
    width: 160%;
    height: 160%;
    animation-delay: 1s;
}

@keyframes waveAnimation {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
        border-width: 1px;
    }
    100% {
        transform: scale(1.8);
        opacity: 0;
        border-width: 3px;
    }
}

/* EXPANDED PLAYER - SMALL SIZE */
.expanded-player {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 280px; /* Smaller width */
    background: rgba(10, 10, 26, 0.95);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    display: none;
    flex-direction: column;
    gap: 15px;
    border: 1px solid rgba(79, 172, 254, 0.2);
    backdrop-filter: blur(20px);
    z-index: 999;
    transform-origin: bottom right;
    opacity: 0;
    transform: scale(0.8) translateY(20px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* FUTURISTIC OPENING ANIMATION */
.expanded-player.active {
    display: flex;
    opacity: 1;
    transform: scale(1) translateY(0);
    animation: hologramAppear 0.6s forwards;
}

@keyframes hologramAppear {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
        filter: blur(20px) hue-rotate(0deg);
        box-shadow: 0 0 0 0 rgba(0, 242, 254, 0);
    }
    50% {
        filter: blur(10px) hue-rotate(180deg);
        box-shadow: 0 0 50px 10px rgba(0, 242, 254, 0.3);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
        filter: blur(0) hue-rotate(360deg);
        box-shadow: 0 20px 60px rgba(0, 242, 254, 0.2);
    }
}

/* Song info - SMALL */
.song-info {
    text-align: center;
    margin-bottom: 8px;
}

.song-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 3px;
    color: #fff;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(79, 172, 254, 0.5);
}

.song-artist {
    font-size: 0.9rem;
    color: #8a8aff;
    opacity: 0.8;
}

/* Album art - SMALL */
.album-art {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 1px solid rgba(79, 172, 254, 0.3);
}

.album-art img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Glow effect when playing */
.album-art.playing {
    animation: albumGlow 2s infinite alternate;
}

@keyframes albumGlow {
    0% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5),
                  0 0 0 0 rgba(0, 242, 254, 0.2);
    }
    100% {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5),
                  0 0 0 5px rgba(0, 242, 254, 0.1);
    }
}

/* Progress container - SMALL */
.progress-container {
    width: 100%;
    margin: 10px 0;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.progress {
    height: 100%;
    background: linear-gradient(to right, #00f2fe 0%, #4facfe 100%);
    width: 0%;
    border-radius: 2px;
    transition: width 0.1s linear;
    position: relative;
}

/* Time display - SMALL */
.time-display {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #8a8aff;
    margin-top: 8px;
    opacity: 0.8;
}

/* Controls - SMALL */
.controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 10px 0;
}

.control-btns {
    background: rgba(255, 255, 255, 0.08);
    border: none;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(79, 172, 254, 0.2);
}

.control-btns:hover {
    background: rgba(79, 172, 254, 0.2);
    transform: scale(1.1);
    border-color: rgba(79, 172, 254, 0.5);
}

.play-pause {
    background: linear-gradient(135deg, #00f2fe 0%, #4facfe 100%);
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 242, 254, 0.3);
}

/* Volume container - SMALL */
.volume-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.volume-icon {
    font-size: 1rem;
    color: #00f2fe;
    opacity: 0.8;
}

.volume-slider {
    flex-grow: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    overflow: hidden;
}

.volume-level {
    height: 100%;
    background: linear-gradient(to right, #00f2fe 0%, #4facfe 100%);
    width: 70%;
    border-radius: 2px;
}

/* Track info - SMALL */
.track-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 0.8rem;
    border: 1px solid rgba(79, 172, 254, 0.1);
}

.track-count {
    color: #8a8aff;
    opacity: 0.8;
}

.track-next {
    color: #00f2fe;
    font-size: 0.75rem;
}

/* Close button */
.close-expanded {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1001;
    backdrop-filter: blur(5px);
    font-size: 0.9rem;
    border: 1px solid rgba(79, 172, 254, 0.2);
}

.close-expanded:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(79, 172, 254, 0.5);
}

/* Overlay for mobile */
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 998;
}

.overlay.active {
    display: block;
}

/* Prevent scrolling when player is open */
body.no-scroll {
    overflow: hidden;
}

/* Responsive adjustments - SMALLER MOBILE CONTROLS */
@media (max-width: 768px) {
    .expanded-player {
        width: 250px;
        bottom: 65px;
        padding: 15px;
        gap: 12px;
    }
    
    .album-art {
        width: 100px;
        height: 100px;
        margin-bottom: 12px;
    }
    
    .song-title {
        font-size: 1.1rem;
    }
    
    .song-artist {
        font-size: 0.8rem;
    }
    
    .controls {
        gap: 12px;
    }
    
    .control-btn {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .play-pause {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .track-info {
        font-size: 0.75rem;
        padding: 6px;
    }
    
    .time-display {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .expanded-player {
        width: 220px;
        right: 50%;
        transform: translateX(50%) scale(0.8);
        bottom: 60px;
        padding: 12px;
        gap: 10px;
    }
    
    .expanded-player.active {
        transform: translateX(50%) scale(1);
    }
    
    .player-container {
        bottom: 20px;
        right: 20px;
    }
    
    .mini-player {
        width: 50px;
        height: 50px;
    }
    
    .mini-icon {
        font-size: 18px;
    }
    
    .album-art {
        width: 90px;
        height: 90px;
        margin-bottom: 10px;
    }
    
    .song-title {
        font-size: 1rem;
    }
    
    .song-artist {
        font-size: 0.75rem;
    }
    
    .controls {
        gap: 10px;
        margin: 8px 0;
    }
    
    .control-btn {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .play-pause {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .track-info {
        font-size: 0.7rem;
        padding: 5px;
        margin-top: 8px;
    }
    
    .progress-container {
        margin: 8px 0;
    }
    
    .volume-container {
        margin-top: 8px;
    }
}

@media (max-width: 360px) {
    .expanded-player {
        width: 200px;
        padding: 10px;
    }
    
    .album-art {
        width: 80px;
        height: 80px;
    }
}

/* Hide scrollbar */
::-webkit-scrollbar {
    display: none;
}


















/* ----------------------------------------------------- Website Showcase ------------------------------------------------------------------------------------*/




:root {
    --primary: #00d4ff;
    --primary-dark: #4f46e5;
    --secondary: #06b6d4;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


.container {
    width: 93%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    flex-wrap: wrap;
    gap: 15px;
}

.header-title h1 {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.5px;
}

.header-title p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-top: 4px;
    max-width: 100%;
}

.header-controls {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.control-btn {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--light);
    padding: 15px 40px;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    font-size: 0.85rem;
    white-space: nowrap;
}

.control-btn:hover {
    background: rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(99, 102, 241, 0.2);
}

/* Main Content */
.main-content {
    display: flex;
    flex: 1;
    gap: 20px;
    min-height: 500px;
    flex-wrap: wrap;
    width: 100%;
}

/* Left Panel */
.info-panel {
    flex: 1;
    min-width: 300px;
    background: var(--glass);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.info-panel:hover {
    border-color: rgba(99, 102, 241, 0.3);
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    background: linear-gradient(to right, var(--light), var(--secondary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.budget-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(6, 182, 212, 0.15));
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    position: relative;
    overflow: hidden;
}

.budget-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.05));
    pointer-events: none;
}

.budget-label {
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.budget-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    display: flex;
    align-items: baseline;
    line-height: 1;
}

.budget-note {
    font-size: 0.8rem;
    color: var(--secondary);
    margin-top: 6px;
    font-weight: 500;
}

.project-details {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-tag {
    background: rgba(30, 41, 59, 0.7);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--secondary);
    border: 1px solid rgba(6, 182, 212, 0.3);
    transition: var(--transition);
}

.tech-tag:hover {
    background: rgba(6, 182, 212, 0.2);
    transform: translateY(-2px);
}

/* Right Panel */
.preview-panel {
    flex: 1.5;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.laptop-wrapper {
    flex: 1;
    position: relative;
    min-height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Laptop Frame */
.laptop-frame {
    width: 100%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 16/10;
    position: relative;
    border-radius: 12px 12px 0 0;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.25),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    padding: 12px 12px 30px;
    display: flex;
    flex-direction: column;
}

/* Laptop Screen Bezel */
.laptop-bezel {
    flex: 1;
    background: #0f172a;
    border-radius: 8px 8px 0 0;
    border: 1px solid #1a202c;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.browser-header {
    background: #1e293b;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
}

.browser-dots {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot:nth-child(1) { background: #ff5f57; }
.dot:nth-child(2) { background: #ffbd2e; }
.dot:nth-child(3) { background: #28ca42; }

.browser-url {
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 14px;
    font-size: 0.75rem;
    color: var(--gray);
    flex: 1;
    font-family: 'Monaco', 'Menlo', monospace;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Laptop Screen Content - Image instead of iframe */
.laptop-screen {
    flex: 1;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.website-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
}

.website-image:hover {
    transform: scale(1.02);
}

/* Image overlay for click/hover effect */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(2px);
}

.laptop-screen:hover .image-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    padding: 20px;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    transform: translateY(20px);
    transition: var(--transition);
}

.laptop-screen:hover .overlay-content {
    transform: translateY(0);
}

.overlay-icon {
    font-size: 2.5rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.overlay-text {
    font-size: 1rem;
    color: var(--light);
    margin-bottom: 15px;
    max-width: 300px;
}

.overlay-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.overlay-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.4);
}

/* Laptop Base */
.laptop-base {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(135deg, #2d3748, #4a5568);
    border-radius: 0 0 12px 12px;
    box-shadow: 
        0 6px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #1e293b, transparent);
    border-radius: 0 0 3px 3px;
}

/* Laptop Hinge */
.laptop-hinge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 10px;
    background: linear-gradient(135deg, #1a202c, #2d3748);
    border-radius: 0 0 3px 3px;
    z-index: 2;
}

/* Slide Indicators */
.slide-indicators {
    display: flex;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    padding: 8px;
    width: 100%;
}

.indicator {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.indicator.active {
    background: rgba(99, 102, 241, 0.3);
}

.indicator.active::after {
    width: 100%;
    animation: progress 4s linear forwards;
}

@keyframes progress {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Slide transition animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in {
    animation: fadeInUp 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .main-content {
        flex-direction: column;
        gap: 16px;
    }
    
    .preview-panel,
    .info-panel {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    body {
        padding: 12px;
    }
    
    .container {
        gap: 16px;
    }
    
    .header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    
    .header-controls {
        width: 100%;
        justify-content: stretch;
    }
    
    .control-btn {
        flex: 1;
        justify-content: center;
    }
    
    .laptop-frame {
        padding: 8px 8px 25px;
    }
    
    .browser-header {
        padding: 6px 10px;
    }
    
    .browser-url {
        font-size: 0.7rem;
        padding: 4px 8px;
    }
    
    .laptop-base {
        bottom: -15px;
        height: 15px;
    }
    
    .laptop-hinge {
        bottom: -8px;
        height: 8px;
        width: 40px;
    }
    
    .info-panel {
        padding: 16px;
    }
    
    .project-title {
        font-size: 1.2rem;
    }
    
    .budget-amount {
        font-size: 1.5rem;
    }
    
    .overlay-content {
        padding: 15px;
    }
    
    .overlay-icon {
        font-size: 2rem;
    }
    
    .overlay-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .header-title h1 {
        font-size: 1.5rem;
    }
    
    .control-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .laptop-wrapper {
        min-height: 250px;
    }
    
    .project-title {
        font-size: 1.1rem;
    }
    
    .budget-card {
        padding: 12px;
        margin-bottom: 16px;
    }
    
    .budget-amount {
        font-size: 1.3rem;
    }
    
    .tech-tag {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    
    .indicator {
        width: 30px;
        height: 3px;
    }
    
    .overlay-content {
        padding: 10px;
    }
    
    .overlay-icon {
        font-size: 1.5rem;
        margin-bottom: 5px;
    }
    
    .overlay-text {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
    
    .overlay-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }
}

/* Glass effect */
.glass-effect {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}


.progress-container {
    width: 100%;
    padding: 0 10px;
    margin-top: 20px;
}

.progress-line {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    border-radius: 2px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.progress-fill.animating {
    animation: progressAnimation 4s linear forwards;
}

@keyframes progressAnimation {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}











/* ----------------------------------------------------- Discord Services ------------------------------------------------------------------------------------*/




#discord-services-section {
    width: 100%;
    max-width: 1240px;
    background-color: #36393f;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.24);
    border: 1px solid #202225;
    align-self: center;
}

#section-header-container {
    background-color: #202225;
    padding: 24px;
    border-bottom: 1px solid #2f3136;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

#discord-icon {
    width: 40px;
    height: 40px;
    background-color: #5865f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

#main-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

#header-right {
    display: flex;
    gap: 16px;
    align-items: center;
}

.header-button {
    background-color: #5865f2;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 3px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 14px;
}

.header-button:hover {
    background-color: #4752c4;
}

#search-container {
    position: relative;
}

#search-input {
    background-color: #202225;
    border: 1px solid #202225;
    padding: 8px 12px;
    border-radius: 4px;
    color: #dcddde;
    width: 200px;
    font-size: 14px;
    transition: border-color 0.2s;
}

#search-input:focus {
    outline: none;
    border-color: #5865f2;
}

#search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #8e9297;
}

#main-content-container {
    display: flex;
    min-height: 600px;
    max-height: 70vh;
    height: auto;
}

#services-sidebar {
    width: 240px;
    background-color: #2f3136;
    border-right: 1px solid #202225;
    padding: 16px 0;
    overflow-y: auto;
    flex-shrink: 0;
}

.sidebar-section {
    margin-bottom: 24px;
}

.sidebar-title {
    color: #8e9297;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 0 16px 8px;
    letter-spacing: 0.5px;
}

.sidebar-item {
    padding: 8px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: background-color 0.2s;
    border-left: 3px solid transparent;
}

.sidebar-item:hover {
    background-color: #34373c;
}

.sidebar-item.active {
    background-color: #34373c;
    border-left-color: #5865f2;
}

.sidebar-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8e9297;
}

.sidebar-item.active .sidebar-icon {
    color: #ffffff;
}

.sidebar-text {
    font-size: 16px;
    font-weight: 500;
    color: #8e9297;
}

.sidebar-item.active .sidebar-text {
    color: #ffffff;
}

#services-grid-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: #36393f;
    overflow: hidden;
    min-width: 0;
}

#services-grid-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    padding: 24px 24px 12px;
    border-bottom: 1px solid #42454a;
    flex-shrink: 0;
}

#services-cards-container {
    flex: 1;
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    overflow-y: auto;
    align-content: start;
    grid-auto-rows: max-content;
}

.service-card {
    background-color: #2f3136;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid #202225;
    cursor: pointer;
    position: relative;
    height: fit-content;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    border-color: #42454a;
}

.service-image-container {
    height: 160px;
    position: relative;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.service-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: #5865f2d8;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
}

.service-additional-tags {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    gap: 6px;
    flex-direction: column;
    align-items: flex-end;
}

.service-filter-tag {
    background-color: #3ba55d;
    color: white;
    padding: 3px 6px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    opacity: 0.9;
}

.service-filter-tag.top-rated {
    background-color: #faa81ac2;
}

.service-filter-tag.popular {
    background-color: #ed4245cb;
}

.service-filter-tag.recent {
    background-color: #5865f2c7;
}

.service-content-container {
    padding: 16px;
}

.service-title-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.service-title {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.service-price {
    color: #3ba55d;
    font-weight: 600;
    font-size: 14px;
}

.service-description {
    font-size: 14px;
    color: #b9bbbe;
    line-height: 1.4;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.service-features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.service-feature {
    background-color: #202225;
    color: #b9bbbe;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-actions-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #42454a;
}

.service-author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #5865f2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.author-name {
    font-size: 14px;
    color: #b9bbbe;
}

.service-button {
    background-color: #5865f2;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 3px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    font-size: 14px;
}

.service-button:hover {
    background-color: #4752c4;
}

/* Custom scrollbar styles */
#services-cards-container::-webkit-scrollbar {
    width: 8px;
}

#services-cards-container::-webkit-scrollbar-track {
    background: #2e3338;
    border-radius: 4px;
}

#services-cards-container::-webkit-scrollbar-thumb {
    background: #202225;
    border-radius: 4px;
}

#services-cards-container::-webkit-scrollbar-thumb:hover {
    background: #1a1c20;
}

/* Sidebar scrollbar */
#services-sidebar::-webkit-scrollbar {
    width: 6px;
}

#services-sidebar::-webkit-scrollbar-track {
    background: #2b2d31;
}

#services-sidebar::-webkit-scrollbar-thumb {
    background: #202225;
    border-radius: 4px;
}

#services-sidebar::-webkit-scrollbar-thumb:hover {
    background: #1a1c20;
}

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

.fade-in-up {
    animation: fadeInUp 0.5s ease forwards;
}

/* Responsive improvements - MOBILE MENU SCROLLABLE FIX */
@media (max-width: 900px) {
    #main-content-container {
        flex-direction: column;
        height: 85vh;
        min-height: 650px;
        max-height: 90vh;
    }
    
    #services-sidebar {
        width: 100%;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 12px 12px 14px;
        border-right: none;
        border-bottom: 1px solid #202225;
        height: auto;
        flex-wrap: nowrap;
        flex-shrink: 0;
        scrollbar-width: thin;
        scrollbar-color: #202225 #2b2d31;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Mobile sidebar horizontal scrollbar */
    #services-sidebar::-webkit-scrollbar {
        height: 6px;
    }
    
    #services-sidebar::-webkit-scrollbar-track {
        background: #2b2d31;
        border-radius: 3px;
    }
    
    #services-sidebar::-webkit-scrollbar-thumb {
        background: #202225;
        border-radius: 3px;
    }
    
    .sidebar-section {
        margin-bottom: 0;
        margin-right: 24px;
        flex-shrink: 0;
        min-width: max-content;
    }
    
    .sidebar-title {
        white-space: nowrap;
        padding: 0 0 8px 0;
    }
    
    .sidebar-item {
        white-space: nowrap;
        min-width: max-content;
        padding: 8px 12px;
    }
    
    /* Hide vertical scrollbar in mobile */
    #services-sidebar::-webkit-scrollbar {
        width: auto;
    }
    
    #services-cards-container {
        flex: 1;
        overflow-y: auto;
        height: 100%;
        max-height: none;
        border: 1px solid #777676;
        border-radius: 10px;
    }
}

@media (max-width: 768px) {
    #services-cards-container {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
        padding: 16px;
    }
    
    #main-content-container {
        height: 80vh;
        min-height: 700px;
    }
    
    /* Improve mobile sidebar scrolling */
    #services-sidebar {
        padding: 10px 10px 12px;
    }
    
    .sidebar-section {
        margin-right: 20px;
    }
}

@media (max-width: 600px) {
    #section-header-container {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    #header-right {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
    }
    
    #search-input {
        width: 150px;
        flex-grow: 1;
    }
    
    #services-cards-container {
        grid-template-columns: 1fr;
        padding: 16px;
    }
    
    #services-grid-title {
        padding: 16px 16px 12px;
    }
    
    #main-content-container {
        height: 75vh;
        min-height: 600px;
    }
    
    /* Further improve mobile sidebar for very small screens */
    #services-sidebar {
        padding: 8px 8px 10px;
    }
    
    .sidebar-section {
        margin-right: 16px;
    }
    
    .sidebar-item {
        padding: 6px 10px;
        font-size: 14px;
    }
    
    .sidebar-icon {
        width: 18px;
        height: 18px;
    }
}

@media (max-height: 800px) {
    #main-content-container {
        height: 600px;
    }
    
    @media (max-width: 900px) {
        #main-content-container {
            height: 600px;
        }
    }
}

@media (max-height: 600px) {
    #main-content-container {
        height: 500px;
    }
    
    @media (max-width: 900px) {
        #main-content-container {
            height: 500px;
        }
    }
}

/* For very large screens */
@media (min-width: 1600px) {
    #services-cards-container {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

/* Additional mobile scroll improvements */
@media (max-width: 900px) {
    /* Prevent text selection during horizontal scroll on mobile */
    #services-sidebar {
        user-select: none;
        -webkit-user-select: none;
        touch-action: pan-x;
    }
    
    /* Add momentum scrolling for iOS */
    #services-sidebar {
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
    
    /* Ensure scrollbar doesn't overlap content */
    .sidebar-section:last-child {
        margin-right: 4px;
    }
}

/* Firefox scrollbar styling for mobile */
@supports (scrollbar-width: thin) {
    @media (max-width: 900px) {
        #services-sidebar {
            scrollbar-width: thin;
            scrollbar-color: #202225 #2b2d31;
        }
    }
}











/* ----------------------------------------------------- Review ------------------------------------------------------------------------------------*/






.reviews-section {
    max-width: 1000px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    align-self: center;
    box-sizing: border-box;
}

.reviews-header {
    margin-left: 40px;
}

.reviews-header h1 {
    font-size: 1.8rem;
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.reviews-header .subheading {
    font-size: 1.0rem;
    color: #94a3b8;
    font-weight: 400;
}

.video-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    min-height: 400px;
}

.carousel-wrapper {
    position: relative;
    height: 100%;
}

.carousel-container {
    display: flex;
    transition: transform 0.5s ease;
    height: 100%;
}

.video-item {
    min-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail {
    width: 100%;
    max-width: 700px;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    background-size: cover;
    background-position: center;
}

.play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.1);
}

.play-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(52, 152, 219, 0.9);
    border-radius: 50%;
    position: relative;
}

.play-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 52%;
    transform: translate(-50%, -50%);
    border-left: 20px solid white;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    inset-inline: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}

.nav-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.95);
    border: 2px solid #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    color: #3498db;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    pointer-events: auto;
}

.nav-arrow:hover {
    background-color: #3498db;
    color: white;
    border-color: #3498db;
    transform: scale(1.1);
}

.video-player-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-player-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-player-container {
    width: 90%;
    max-width: 900px;
    transform: scale(0.9);
    transition: transform 0.4s ease;
    position: relative;
}

.video-player-overlay.active .video-player-container {
    transform: scale(1);
}

.video-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 12px;
    overflow: hidden;
}

.video-player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.close-player {
    position: absolute;
    top: -45px;
    right: 0;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-player:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Responsive Styles */

/* Tablet screens */
@media (max-width: 1024px) {
    .reviews-section {
        padding: 30px 25px;
        max-width: 95%;
    }
    
    .reviews-header {
        margin-left: 20px;
    }
    
    .video-thumbnail {
        height: 340px;
        max-width: 90%;
    }
    
    .video-carousel {
        min-height: 360px;
    }
    
    .play-icon {
        width: 70px;
        height: 70px;
    }
    
    .play-icon::after {
        border-left: 18px solid white;
        border-top: 12px solid transparent;
        border-bottom: 12px solid transparent;
    }
}

/* Large mobile screens */
@media (max-width: 768px) {
    .reviews-section {
        padding: 25px 20px;
        border-radius: 15px;
    }
    
    .reviews-header {
        margin-left: 20px;

    }
    
    .reviews-header h1 {
        font-size: 1.6rem;
    }
    
    .reviews-header .subheading {
        font-size: 0.95rem;
    }
    
    .video-thumbnail {
        height: 280px;
        max-width: 95%;
        border-radius: 10px;
    }
    
    .video-carousel {
        min-height: 300px;
        border-radius: 10px;
    }
    
    .nav-arrow {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .carousel-nav {
        padding: 0 10px;
    }
    
    .play-icon {
        width: 60px;
        height: 60px;
    }
    
    .play-icon::after {
        border-left: 16px solid white;
        border-top: 10px solid transparent;
        border-bottom: 10px solid transparent;
    }
    
    .video-player-container {
        width: 95%;
    }
}

/* Small mobile screens */
@media (max-width: 480px) {
    .reviews-section {
        padding: 20px 15px;
        border-radius: 12px;
    }
    
    .reviews-header h1 {
        font-size: 1.4rem;
    }
    
    .reviews-header .subheading {
        font-size: 0.9rem;
    }
    
    .video-thumbnail {
        height: 220px;
        max-width: 100%;
        border-radius: 8px;
    }
    
    .video-carousel {
        min-height: 240px;
        border-radius: 8px;
    }
    
    .nav-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    
    .play-icon {
        width: 50px;
        height: 50px;
    }
    
    .play-icon::after {
        border-left: 14px solid white;
        border-top: 9px solid transparent;
        border-bottom: 9px solid transparent;
    }
    
    .carousel-nav {
        padding: 0 5px;
    }
    
    .video-player-container {
        width: 98%;
    }
    
    .close-player {
        width: 35px;
        height: 35px;
        font-size: 18px;
        top: -40px;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .video-thumbnail {
        height: 180px;
    }
    
    .video-carousel {
        min-height: 200px;
    }
    
    .nav-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .play-icon {
        width: 45px;
        height: 45px;
    }
    
    .play-icon::after {
        border-left: 12px solid white;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }
}

/* Landscape orientation for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .video-carousel {
        min-height: 250px;
    }
    
    .video-thumbnail {
        height: 200px;
    }
    
    .video-player-overlay {
        padding: 20px 0;
    }
    
    .video-player-container {
        max-height: 90vh;
    }
}

/* High-resolution screens */
@media (min-width: 1400px) {
    .reviews-section {
        max-width: 1200px;
    }
    
    .video-thumbnail {
        max-width: 800px;
        height: 420px;
    }
    
    .video-carousel {
        min-height: 440px;
    }
}



/* -------------------------------------------------------------- Footer ---------------------------------------------------------------------------*/

/* Modern Footer CSS */
:root {
    --primary: #00d4ff;
    --primary-dark: #4f46e5;
    --secondary: #06b6d4;
    --dark: #0f172a;
    --dark-light: #1e293b;
    --light: #f8fafc;
    --gray: #94a3b8;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

/* Enhanced Footer Styles */
footer {
    background: linear-gradient(180deg, var(--dark-light) 0%, #111827 100%);
    border-top: 1px solid var(--glass-border);
    backdrop-filter: blur(20px);
    margin-top: 4rem;
    margin-bottom: 0px;
    position: relative;
    z-index: 100;
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

/* Animated gradient border */
footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    background-size: 200% 200%;
    animation: gradientFlow 3s ease-in-out infinite;
    border-radius: 40px 40px 0 0;
}

/* Floating particles background */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: floatParticles 15s infinite linear;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem 2rem;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3 {
    color: var(--light);
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.8rem;
    display: inline-block;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.footer-column h3:hover::after {
    width: 100%;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
    transition: var(--transition);
    position: relative;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    padding: 8px 0 8px 0;
    position: relative;
    z-index: 1;
}

/* Fixed dot indicator with proper positioning */
.footer-links li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    transition: var(--transition);
    opacity: 0.5;
    z-index: 0;
    display: none; /* Hide by default, show on hover */
}

.footer-links a i {
    width: 20px;
    margin-right: 10px;
    transition: var(--transition);
    font-size: 1rem;
    text-align: center;
    z-index: 2;
    position: relative;
    color: var(--gray); /* FIXED: Make icons light gray by default */
}

.footer-links a:hover {
    color: var(--light);
    transform: translateX(10px);
}

.footer-links a:hover i {
    color: var(--primary); /* FIXED: Change to primary color on hover */
    text-shadow: 0 0 8px rgba(0, 212, 255, 0.6);
    transform: scale(1.2);
}

/* Show and animate dot on hover */
.footer-links li:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.5);
    box-shadow: 0 0 10px var(--primary);
    display: block;
}

/* Glow effect on hover */
.footer-links li:hover {
    padding-left: 15px;
}

.footer-links li:hover::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 212, 255, 0.1), transparent);
    border-radius: 4px;
}

.footer-about {
    position: relative;
}

.footer-about p {
    color: var(--gray);
    margin-bottom: 2rem;
    max-width: 320px;
    line-height: 1.8;
}

.premium-badge {
    color: var(--gray);
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--light); /* FIXED: Ensure icons are white */
    font-size: 1.2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    transition: left 0.3s ease;
    z-index: -1;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
    border-color: transparent;
    color: white; /* FIXED: Ensure white on hover */
}

.social-links a:hover::before {
    left: 0;
}

.footer-newsletter {
    position: relative;
}

.footer-newsletter p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}

.newsletter-form .input-wrapper {
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    color: var(--light);
    outline: none;
    transition: var(--transition);
    font-size: 1rem;
    font-family: inherit;
}

.newsletter-form input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.newsletter-form input::placeholder {
    color: var(--gray);
}

.newsletter-form button {
    padding: 1rem 2rem;
    background: var(--gradient);
    border: none;
    border-radius: 12px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    font-family: inherit;
}

.newsletter-form button i {
    color: white; /* FIXED: Ensure button icon is white */
}

.newsletter-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    transition: left 0.4s ease;
    z-index: -1;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
}

.newsletter-form button:hover::before {
    left: 0;
}

.footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    gap: 1.5rem;
    position: relative;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 2px;
    background: var(--gradient);
    opacity: 0.3;
}

.copyright {
    color: var(--gray);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.copyright i {
    color: var(--primary); /* Keep copyright icon blue */
    font-size: 1.1rem;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-bottom-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 5px;
}

.footer-bottom-links a i {
    color: var(--gray); /* FIXED: Make icons light gray */
    transition: var(--transition);
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
    border-radius: 1px;
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

.footer-bottom-links a:hover i {
    color: var(--primary); /* FIXED: Change icon color on hover */
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes floatParticles {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    100% {
        transform: translateY(-1000px) rotate(720deg);
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.footer-container > * {
    animation: fadeInUp 0.6s ease-out backwards;
}

.footer-column:nth-child(1) { animation-delay: 0.1s; }
.footer-column:nth-child(2) { animation-delay: 0.2s; }
.footer-column:nth-child(3) { animation-delay: 0.3s; }
.footer-column:nth-child(4) { animation-delay: 0.4s; }
.footer-bottom { animation-delay: 0.5s; }

/* Responsive adjustments */
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        text-align: left;
    }
    
    .copyright {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-container {
        padding: 3rem 1.5rem 1.5rem;
    }
    
    footer {
        border-radius: 30px 30px 0 0;
    }
    
    .footer-bottom-links {
        gap: 1.5rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    footer {
        border-radius: 25px 25px 0 0;
    }
    
    .footer-container {
        padding: 2.5rem 1rem 1rem;
    }
    
    .footer-bottom {
        gap: 1rem;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
}

/* Gradient mask for smooth top edge */
footer {
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 95%,
        rgba(0, 0, 0, 0) 100%
    );
    -webkit-mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 1) 0%,
        rgba(0, 0, 0, 1) 95%,
        rgba(0, 0, 0, 0) 100%
    );
}

/* FIXED: Global rule to ensure all Font Awesome icons in footer have appropriate colors */
footer i {
    /* This rule ensures icons inherit appropriate colors from their parent elements */
    color: inherit;
}