﻿    /* GLOBAL */
    body {
        margin: 0;
        font-family: 'Poppins', sans-serif;
        padding-top: 70px;
        background: radial-gradient(circle at top left, #1e3a8a, #020617);
        color: white;
    }

        body::before {
            content: "";
            position: fixed;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 80% 20%, rgba(59,130,246,0.15), transparent 40%), radial-gradient(circle at 20% 80%, rgba(34,197,94,0.15), transparent 40%);
            z-index: -1;
        }

    html {
        scroll-behavior: smooth;
    }

    section {
        padding: 80px 0;
    }

    /* HERO */
    .hero {
        min-height: 100vh;
        background: linear-gradient(135deg, #0f172a, #1e293b);
        display: flex;
        align-items: center;
        position: relative;
        overflow: hidden;
    }

        /* glowing effect */
        .hero::before,
        .hero::after {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            filter: blur(120px);
            z-index: 0;
        }

        .hero::before {
            background: #3b82f6;
            top: -100px;
            left: -100px;
            animation: float 6s infinite alternate;
        }

        .hero::after {
            background: #22c55e;
            bottom: -100px;
            right: -100px;
            animation: float 8s infinite alternate;
        }

    @keyframes float {
        from {
            transform: translateY(0px);
        }

        to {
            transform: translateY(40px);
        }
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.2;
    }

    .hero p {
        opacity: 0.8;
    }

    /* GLASS */
    .glass {
        background: rgba(255,255,255,0.06);
        border-radius: 20px;
        backdrop-filter: blur(20px);
        border: 1px solid rgba(255,255,255,0.1);
    }

    /* DASHBOARD */
    .dashboard-box {
        background: #020617;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    }

    .chart {
        height: 150px;
        background: linear-gradient(135deg, #3b82f6, #22c55e);
        border-radius: 10px;
        margin-bottom: 10px;
    }

        .chart.small {
            height: 80px;
        }

    /* DARK SECTIONS */
    .dark-section {
        background: #020617;
        color: white;
    }

    /* CARDS (ULTRA PREMIUM) */
    .card {
        position: relative;
        border-radius: 20px;
        background: #020617;
        padding: 25px;
        transition: 0.4s;
        overflow: hidden;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255,255,255,0.05);

        .card:hover {
            transform: translateY(-15px) scale(1.03);
        }
    }


        .card::before {
            content: "";
            position: absolute;
            inset: 0;
            border-radius: 20px;
            padding: 1px;
            background: linear-gradient(135deg, #3b82f6, #22c55e);
            -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
        }

        .card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0,0,0,0.5);
        }

        .card i {
            transition: 0.3s;
        }

        .card:hover i {
            transform: scale(1.2);
        }

    /* BUTTONS */
    .btn {
        transition: 0.3s;
        position: relative;
        overflow: hidden;
    }

    .btn-primary {
        background: rgba(59,130,246,0.2);
        border: 1px solid rgba(59,130,246,0.4);
        backdrop-filter: blur(10px);
    }

        .btn-primary:hover {
            background: #3b82f6;
        }

        /* shine effect */
        .btn-primary::after {
            content: "";
            position: absolute;
            width: 200%;
            height: 200%;
            background: rgba(255,255,255,0.2);
            top: -50%;
            left: -50%;
            transform: rotate(45deg);
            transition: 0.5s;
        }

        .btn-primary:hover::after {
            left: 100%;
        }

    /* TEXT */
    h1, h2, h5 {
        letter-spacing: 1px;
    }

    /* PARTICLES BACKGROUND */
    .particles {
        position: fixed;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, rgba(59,130,246,0.1) 1px, transparent 1px);
        background-size: 40px 40px;
        z-index: -1;
    }

    /* GRID FIX */
    .row.g-4 > div {
        display: flex;
    }

    .card {
        width: 100%;
    }

        .card h5 {
            font-size: 1.2rem;
            margin-bottom: 10px;
        }

        .card p {
            font-size: 0.95rem;
            color: #cbd5f5;
        }

    /* DIVIDER */
    .divider {
        height: 1px;
        background: linear-gradient(to right, transparent, #3b82f6, transparent);
        margin: 40px 0;
    }

    .gradient-text {
        background: linear-gradient(90deg, #3b82f6, #22c55e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .container {
        max-width: 1100px;
    }

    h1 {
        font-weight: 700;
    }

    h2 {
        font-weight: 600;
    }

    p {
        color: #cbd5f5;
    }

    .fbr-img {
        border-radius: 20px;
        transition: 0.4s;
        box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    }

        .fbr-img:hover {
            transform: scale(1.05);
        }

    /* CLIENT CARDS */
    .client-card {
        text-align: left;
        padding: 25px;
        min-height: 250px;
    }

        .client-card p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #cbd5f5;
        }

        .client-card:hover {
            transform: translateY(-15px) scale(1.02);
        }

    .service-icon {
        font-size: 30px;
        margin-bottom: 15px;
        color: #3b82f6;
        transition: 0.3s;
    }

    .card:hover .service-icon {
        transform: scale(1.2);
        color: #22c55e;
    }

    .hidden {
        opacity: 0;
        transform: translateY(40px);
        transition: all 0.6s ease;
    }

    .show {
        opacity: 1;
        transform: translateY(0);
    }
    /* ULTIMATE GLOW */
    .card::after {
        content: "";
        position: absolute;
        inset: -2px;
        border-radius: 20px;
        background: linear-gradient(135deg, #3b82f6, #22c55e, #3b82f6);
        filter: blur(20px);
        opacity: 0;
        transition: 0.4s;
        z-index: -1;
    }

    .card:hover::after {
        opacity: 1;
    }

    .glass-nav {
        background: rgba(0,0,0,0.4);
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    section {
        opacity: 0;
        transform: translateY(50px);
        transition: all 0.8s ease;
    }

        section.show-section {
            opacity: 1;
            transform: translateY(0);
        }
    /* HERO SLIDER */
    .hero {
        position: relative;
        overflow: hidden;
        min-height: 100vh;
    }

    /* SLIDER IMAGES */
    .hero-slider {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 0;
    }

        .hero-slider img {
            position: absolute;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

            /* ACTIVE IMAGE */
            .hero-slider img.active {
                opacity: 1;
            }

    /* DARK OVERLAY */
    .hero-overlay {
        position: absolute;
        width: 100%;
        height: 100%;
        background: rgba(2, 6, 23, 0.75);
        z-index: 1;
    }

    /* CONTENT ABOVE */
    .hero .container {
        z-index: 2;
    }
/* ===== PREMIUM PRICING FIX ===== */

/* Plan Title */
.card h4 {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Price (MAIN PREMIUM LOOK) */
.card h2 {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #3b82f6, #22c55e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Button better look */
.card button {
    color: white;
    border-radius: 10px;
    padding: 8px 20px;
}

/* Center align */
.card {
    text-align: center;
}

    /* Hover glow stronger */
    .card:hover {
        box-shadow: 0 25px 60px rgba(34,197,94,0.25);
    }
.nav-btn {
    padding: 8px 22px;
    border-radius: 12px;
    font-weight: 500;
    transition: 0.3s;
}

    .nav-btn:hover {
        transform: scale(1.05);
    }
/* ===== GALLERY SLIDER ===== */

.slider-container {
    position: relative;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    border-radius: 20px;
}

.slider {
    position: relative;
}

.slide {
    width: 100%;
    display: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.6);
    transition: 0.5s;
}

    .slide.active {
        display: block;
    }

/* ARROWS */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 10px;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

    .prev:hover, .next:hover {
        background: #3b82f6;
    }
/* ===== IMAGE MODAL ===== */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    border-radius: 15px;
    animation: zoom 0.3s ease;
}

@keyframes zoom {
    from {
        transform: scale(0.7);
    }

    to {
        transform: scale(1);
    }
}

.close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 35px;
    cursor: pointer;
}

    .close:hover {
        color: #3b82f6;
    }
.slide:hover {
    transform: scale(1.03);
    cursor: pointer;
}
/* ===== PREMIUM REGISTER MODAL ===== */

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    top: 0;
    left: 0;
}

/* BOX */
.modal-box {
    background: linear-gradient(145deg, #020617, #0f172a);
    padding: 35px;
    border-radius: 20px;
    width: 500px; /* BIGGER */
    margin: 80px auto;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8);
}

    /* TITLE */
    .modal-box h3 {
        background: linear-gradient(90deg, #3b82f6, #22c55e);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

/* INPUTS */
.modal input,
.modal textarea {
    background: #0f172a;
    color: #e2e8f0;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 12px;
    font-size: 14px;
}

    .modal input::placeholder,
    .modal textarea::placeholder {
        color: #94a3b8;
    }

    /* FOCUS EFFECT */
    .modal input:focus,
    .modal textarea:focus {
        border-color: #3b82f6;
        box-shadow: 0 0 10px rgba(59,130,246,0.4);
    }

/* BUTTON */
.modal button {
    padding: 12px;
    border-radius: 10px;
    font-weight: 500;
    background: linear-gradient(90deg, #3b82f6, #22c55e);
    border: none;
}

    .modal button:hover {
        transform: scale(1.03);
    }

/* CLOSE BUTTON */
.close-btn {
    position: absolute;
    right: 25px;
    top: 15px;
    color: #94a3b8;
    font-size: 28px;
    cursor: pointer;
}

    .close-btn:hover {
        color: white;
    }
@media (max-width: 600px) {
    .modal-box {
        width: 90%;
    }
}
table {
    border-collapse: collapse;
    background: #0f172a;
}

th {
    background: #1e293b;
}

td, th {
    padding: 10px;
}