/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #0b0f19;
    color: #fff;
    line-height: 1.6;
    scroll-behavior: smooth;
}

/* =========================
   CONTAINER
========================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =========================
   NAVBAR
========================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    position: sticky;
    top: 0;
    background: #0b0f19;
    z-index: 1000;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #00ffcc;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 25px;
    list-style: none;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.nav-links a:hover {
    color: #00ffcc;
}

/* DROPDOWN */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #020617;
    display: none;
    min-width: 200px;
    border: 1px solid #00ffcc33;
    border-radius: 8px;
}

.dropdown-menu a {
    display: block;
    padding: 10px;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* MOBILE MENU */
.menu-toggle {
    display: none;
    font-size: 26px;
    color: #00ffcc;
    cursor: pointer;
}

/* =========================
   BUTTONS
========================= */
.btn {
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary {
    background: #00ffcc;
    color: #000;
}

.btn-primary:hover {
    background: #00cc99;
}

/* =========================
   HERO
========================= */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    gap: 40px;
}

.hero-text h1 {
    font-size: 42px;
}

.hero-text p {
    color: #94a3b8;
    margin-top: 15px;
}

/* =========================
   GRID
========================= */
.grid {
    display: grid;
    gap: 20px;
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* =========================
   CARD
========================= */
.card {
    background: #111827;
    padding: 25px;
    border-radius: 12px;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-6px);
}

/* =========================
   SERVICES / WHY US
========================= */
.service-card,
.why-card {
    background: #0f172a;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid rgba(0,255,204,0.15);
    transition: 0.3s;
}

.service-card:hover,
.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,255,204,0.12);
}

/* =========================
   PLANS
========================= */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.plan-card {
    background: #0f172a;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(0,255,204,0.15);
    transition: 0.3s;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,255,204,0.15);
}

/* =========================
   CTA
========================= */
.cta-section {
    text-align: center;
    padding: 70px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* =========================
   FOOTER
========================= */
.footer {
    background: #020617;
    padding: 40px 0;
    text-align: center;
    color: #777;
}

/* =========================
   FLOAT BUTTONS
========================= */
.whatsapp-float {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: #25D366;
    padding: 14px;
    border-radius: 50%;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        cursor: pointer;
        font-size: 26px;
        color: #00ffcc;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background: #020617;
        width: 220px;
        padding: 20px;
        border: 1px solid #00ffcc33;
    }

    .nav-links.active {
        display: flex;
    }

}

    
    .hero {
        flex-direction: column;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .grid-4,
    .grid-3,
    .plans-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}


/* =========================
   PREMIUM UI LAYER
========================= */

/* GLOBAL GLOW */
.card,
.service-card,
.plan-card,
.why-card {
    position: relative;
    overflow: hidden;
}

/* GLOW BORDER EFFECT */
.card::before,
.service-card::before,
.plan-card::before,
.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(0,255,204,0.2),
        transparent
    );
    opacity: 0;
    transition: 0.4s;
}

/* HOVER GLOW */
.card:hover::before,
.service-card:hover::before,
.plan-card:hover::before,
.why-card:hover::before {
    opacity: 1;
}

/* PREMIUM HOVER LIFT */
.card:hover,
.service-card:hover,
.plan-card:hover,
.why-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 25px 60px rgba(0,255,204,0.15);
}

/* ICON GLOW */
.icon {
    transition: 0.3s;
}

.card:hover .icon,
.service-card:hover .icon,
.plan-card:hover .icon,
.why-card:hover .icon {
    transform: scale(1.15);
    text-shadow: 0 0 15px rgba(0,255,204,0.8);
}

/* TITLE GLOW */
.card h3,
.service-card h3,
.plan-card h3,
.why-card h3 {
    transition: 0.3s;
}

.card:hover h3,
.service-card:hover h3,
.plan-card:hover h3,
.why-card:hover h3 {
    color: #00ffcc;
    text-shadow: 0 0 10px rgba(0,255,204,0.6);
}

/* =========================
   PREMIUM BUTTONS
========================= */

.btn-primary {
    background: linear-gradient(135deg, #00ffcc, #00cc99);
    box-shadow: 0 10px 25px rgba(0,255,204,0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0,255,204,0.3);
}

/* =========================
   PREMIUM CTA
========================= */

.cta-section {
    background: linear-gradient(
        135deg,
        rgba(0,255,204,0.08),
        rgba(0,255,204,0.02)
    );
    border-radius: 12px;
}

/* =========================
   PLAN BADGES PREMIUM
========================= */

.badge {
    box-shadow: 0 5px 15px rgba(0,255,204,0.3);
}

/* =========================
   NAV HOVER PREMIUM
========================= */

.nav-links a {
    position: relative;
}

/* UNDERLINE ANIMATION */
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #00ffcc;
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}


/* =========================
   🔥 PREMIUM UI RESTORE (FINAL FIX)
========================= */

/* TRUST BADGES - PREMIUM */
.trust-badges .badge {
    background: #111827;
    border-radius: 14px;
    border: 1px solid rgba(0,255,204,0.15);
    transition: all 0.3s ease;
}

.trust-badges .badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,255,204,0.15);
}

/* CLIENT LOGOS - SMOOTH SCROLL */
.logos-track {
    animation: logoScroll 20s linear infinite;
}

/* SERVICES + WHY US (UNIFIED PREMIUM CARDS) */
.service-card,
.why-card {
    background: #0f172a;
    border-radius: 14px;
    border: 1px solid rgba(0,255,204,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before,
.why-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(0,255,204,0.2),
        transparent
    );
    opacity: 0;
    transition: 0.4s;
}

.service-card:hover::before,
.why-card:hover::before {
    opacity: 1;
}

.service-card:hover,
.why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,255,204,0.15);
}

/* ICON GLOW */
.service-card .icon,
.why-card .icon {
    transition: 0.3s;
}

.service-card:hover .icon,
.why-card:hover .icon {
    transform: scale(1.1);
    text-shadow: 0 0 15px rgba(0,255,204,0.8);
}

/* MLM PLAN CARDS - PREMIUM */
.plan-card {
    background: #0f172a;
    border-radius: 16px;
    border: 1px solid rgba(0,255,204,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(0,255,204,0.25),
        transparent
    );
    opacity: 0;
    transition: 0.4s;
}

.plan-card:hover::before {
    opacity: 1;
}

.plan-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 70px rgba(0,255,204,0.18);
}

/* CTA SECTION - PREMIUM */
.cta-section {
    background: linear-gradient(
        135deg,
        rgba(0,255,204,0.12),
        rgba(0,255,204,0.04)
    );
    border-radius: 16px;
}

/* BUTTON PREMIUM EFFECT */
.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,255,204,0.25);
}

/* STICKY MOBILE CTA - FIX */
.mobile-cta {
    box-shadow: 0 -5px 20px rgba(0,0,0,0.4);
    z-index: 9999;
}

/* WHY US GRID FIX */
.why-us-section .why-grid {
    gap: 25px;
}

/* CLIENT LOGO FADE FIX */
.logos-wrapper::before,
.logos-wrapper::after {
    opacity: 0.9;
}


/* HERO LAYOUT */
.container.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 80px 0;
}

/* TEXT */
.hero-text {
    flex: 1;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 15px;
}

.hero-text p {
    color: #94a3b8;
    font-size: 16px;
    margin-bottom: 25px;
}

/* BUTTON GROUP */
.cta-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* IMAGE */
.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    pointer-events: none;
}


@media (max-width: 768px) {

    .container.hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 0;
    }

    .hero-text h1 {
        font-size: 26px;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .hero-image {
        margin-top: 20px;
    }
}

/* =========================
   HERO BUTTON FIX (FINAL)
========================= */

.hero-text .cta-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-text .cta-buttons .btn {
    display: inline-block;
    padding: 12px 25px;
    width: auto;
    text-align: center;
    border-radius: 6px;
}

/* FIX SECONDARY BUTTON (VIEW PLANS) */
.hero-text .btn-secondary {
    border: 1px solid #00ffcc;
    color: #00ffcc;
    background: transparent;
}

.hero-text .btn-secondary:hover {
    background: #00ffcc;
    color: #000;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    .hero-text .cta-buttons {
        flex-direction: column;
    }

    .hero-text .cta-buttons .btn {
        width: 100%;
    }
}


/*Trust Bandage Final CSS*/
/* =========================
   TRUST SECTION (PREMIUM FIX)
========================= */

.trust-section {
    padding: 60px 0;
    background: linear-gradient(
        180deg,
        rgba(0,255,204,0.04),
        transparent
    );
}

/* GRID */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.trust-card {
    background: #0f172a;
    padding: 30px 20px;
    border-radius: 14px;
    text-align: center;
    border: 1px solid rgba(0,255,204,0.15);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* GLOW BORDER EFFECT */
.trust-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(0,255,204,0.2),
        transparent
    );
    opacity: 0;
    transition: 0.4s;
}

.trust-card:hover::before {
    opacity: 1;
}

/* HOVER LIFT */
.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,255,204,0.12);
}

/* NUMBER */
.trust-card h3 {
    font-size: 32px;
    color: #00ffcc;
    margin-bottom: 8px;
}

/* TEXT */
.trust-card p {
    font-size: 14px;
    color: #94a3b8;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media (max-width: 1024px) {
    .trust-badges {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .trust-badges {
        grid-template-columns: 1fr;
    }

    .trust-card {
        padding: 20px;
    }

    .trust-card h3 {
        font-size: 26px;
    }
}

/*Client Logo Scroll*/
/* =========================
   CLIENT LOGOS (PREMIUM FINAL)
========================= */

.client-logos-section {
    padding: 70px 0;
    background: linear-gradient(
        180deg,
        rgba(0,255,204,0.06),
        rgba(0,0,0,0)
    );
    position: relative;
    overflow: hidden;
}

/* TITLE */
.logos-title {
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
    margin-bottom: 40px;
    letter-spacing: 0.5px;
}

/* WRAPPER */
.logos-wrapper {
    position: relative;
    overflow: hidden;
}

/* FADE EDGES (premium effect) */
.logos-wrapper::before,
.logos-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.logos-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #020617, transparent);
}

.logos-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #020617, transparent);
}

/* TRACK */
.logos-track {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: logoScroll 30s linear infinite;
}

/* LOGOS */
.logos-track img {
    height: 45px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

/* HOVER PREMIUM EFFECT */
.logos-track img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* SMOOTH SCROLL */
@keyframes logoScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* PAUSE ON HOVER */
.logos-wrapper:hover .logos-track {
    animation-play-state: paused;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */

@media (max-width: 768px) {

    .client-logos-section {
        padding: 50px 0;
    }

    .logos-track {
        gap: 40px;
        animation-duration: 20s;
    }

    .logos-track img {
        height: 30px;
    }

    .logos-wrapper::before,
    .logos-wrapper::after {
        width: 50px;
    }
}

@media (max-width: 480px) {

    .logos-track {
        gap: 25px;
    }

    .logos-track img {
        height: 24px;
    }
}

/*Services Section on Home PAge*/
/* =========================
   SERVICES OPTIMIZATION (FINAL)
========================= */

/* GRID FIX */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* TABLET */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* CARD CONTENT ALIGNMENT */
.service-card {
    height: 100%; /* equal height cards */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* ICON SPACING */
.service-card .icon {
    margin-bottom: 12px;
}

/* TEXT SPACING */
.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    line-height: 1.5;
    color: #94a3b8;
}

/* HOVER SMOOTHNESS */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* TOUCH FEEL (MOBILE) */
@media (max-width: 768px) {
    .service-card:active {
        transform: scale(0.98);
    }
}


/* =========================
   WHY SECTION OPTIMIZATION
========================= */

/* GRID FIX */
.why-us-section .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* TABLET */
@media (max-width: 1024px) {
    .why-us-section .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .why-us-section .why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* CARD STRUCTURE FIX */
.why-us-section .why-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* ICON SPACING */
.why-us-section .icon {
    margin-bottom: 12px;
}

/* TEXT SPACING */
.why-us-section h3 {
    margin-bottom: 8px;
}

.why-us-section p {
    line-height: 1.5;
}

/* HOVER SMOOTHNESS */
.why-us-section .why-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* MOBILE TOUCH FEEDBACK */
@media (max-width: 768px) {
    .why-us-section .why-card:active {
        transform: scale(0.98);
    }
}


/*Why Chose us Desktop*/
/* =========================
   WHY SECTION - EXACT 4 COLUMN (LIKE SERVICES)
========================= */

/* FORCE SAME GRID AS SERVICES */
.why-us-section .why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 25px;
}

/* ENSURE CARDS FILL PROPERLY */
.why-us-section .why-card {
    width: 100%;
}

/* TABLET */
@media (max-width: 1024px) {
    .why-us-section .why-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .why-us-section .why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
}

/* Why Chouse Us Update*/
.why-us-section .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

@media (max-width: 1024px) {
    .why-us-section .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-us-section .why-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   WHY SECTION HARD OVERRIDE FIX
========================= */

section.why-us-section .container .why-grid {
    display: grid !important;
    /*grid-template-columns: repeat(4, 1fr) !important;
    gap: 25px !important; */
}


/*Display Why Gird*/
.why-us-section .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* TABLET */
@media (max-width: 1024px) {
    .why-us-section .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .why-us-section .why-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   WHY US - MOBILE FIX (FINAL)
========================= */

@media (max-width: 768px) {

    .why-us-section .why-grid {
        display: grid !important;
        grid-template-columns: 1fr !important; /* FORCE SINGLE COLUMN */
        gap: 15px;
    }

    .why-us-section .why-card {
        width: 100%;
        text-align: left;
        padding: 20px;
    }

    .why-us-section .icon {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .why-us-section h3 {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .why-us-section p {
        font-size: 13px;
        color: #94a3b8;
    }

    /* Improve section spacing */
    .why-us-section {
        padding: 50px 15px;
    }
}


/* =========================
   FORCE WHY US MOBILE FIX (OVERRIDE EVERYTHING)
========================= */

@media (max-width: 768px) {

    .why-us-section .why-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }

    .why-us-section .why-card {
        width: 100% !important;
        display: block !important;
        text-align: left;
    }
}

/*CTA Section Rebuild*/


/* =========================
   CTA - SQUARE EDGES (NO ROUNDING)
========================= */

.cta-section {
    width: 100%;
    margin: 0;
    padding: 80px 20px;
    text-align: center;

    background: linear-gradient(
        135deg,
        rgba(0,255,204,0.10),
        rgba(0,0,0,0)
    );

    border-radius: 0 !important; /* REMOVE ROUNDING */
}

/* TEXT */
.cta-section h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-section p {
    color: #94a3b8;
    margin-bottom: 25px;
}

/* BUTTON WRAPPER */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* FORCE ALL BUTTONS SQUARE */
.btn,
.btn-primary,
.btn-secondary {
    border-radius: 0 !important;
}

/* MOBILE */
@media (max-width: 768px) {

    .cta-section {
        padding: 50px 15px;
    }

    .cta-section h2 {
        font-size: 22px;
        line-height: 1.3;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

/*Sticky Footer*/

/* =========================
   STICKY CTA BAR (CALL + WHATSAPP)
========================= */

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    z-index: 9999;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
}

/* BUTTONS */
.sticky-cta a {
    flex: 1;
    text-align: center;
    padding: 14px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
}

/* CALL BUTTON */
.sticky-call {
    background: #007bff;
}

/* WHATSAPP BUTTON */
.sticky-whatsapp {
    background: #25D366;
}

/* HOVER EFFECT */
.sticky-cta a:hover {
    opacity: 0.9;
}

/* FOOTER SPACE FIX (IMPORTANT) */
body {
    padding-bottom: 60px;
}



/* =========================
   PREMIUM MOBILE MENU
========================= */

/* =========================
   MOBILE MENU PREMIUM FIX
========================= */

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
        font-size: 28px;
        color: #00ffcc;
        cursor: pointer;
        z-index: 1100;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #020617;
        flex-direction: column;
        padding: 80px 20px;
        gap: 15px;
        transition: 0.35s ease;
        border-left: 1px solid rgba(0,255,204,0.15);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        padding: 10px 0;
        display: block;
        font-size: 16px;
    }

    /* dropdown fix */
    .dropdown-menu {
        position: static;
        display: none;
        background: transparent;
        border: none;
        padding-left: 10px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    /* overlay feel */
    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.6);
        z-index: 900;
    }
}