﻿:root {
    --neon-green: #00c896;
    --neon-orange: #ff6b35;
    --neon-cyan: #00b7eb;
    --bg: #ffffff;
    --bg-light: #f8fcff;
    --text: #0f2a44;
    --text-muted: #4a6fa5;
    --card-bg: rgba(255, 255, 255, 0.92);
    --border: rgba(0, 200, 150, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.bg-particles, .bg-grid {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
}

.bg-particles {
    background: radial-gradient(circle at 15% 20%, rgba(0, 200, 150, 0.06) 0%, transparent 45%), radial-gradient(circle at 85% 75%, rgba(0, 183, 235, 0.05) 0%, transparent 55%);
}

.bg-grid {
    background-image: linear-gradient(rgba(0, 183, 235, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 183, 235, 0.04) 1px, transparent 1px);
    background-size: 70px 70px;
    opacity: 0.35;
    z-index: -1;
}

/* =============================================
   HEADER & NAVBAR STYLES
============================================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 200, 150, 0.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 2.3rem;
    font-weight: 900;
    letter-spacing: -1px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan), var(--neon-orange));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 10px rgba(0, 200, 150, 0.6), 0 0 20px rgba(0, 183, 235, 0.5), 0 0 30px rgba(255, 107, 53, 0.4);
    filter: drop-shadow(0 0 15px rgba(0, 200, 150, 0.7));
    font-family: 'Segoe UI', system-ui, sans-serif;
}

/* Hamburger Icon */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    cursor: pointer;
    z-index: 1002;
}

    .hamburger span {
        width: 100%;
        height: 3.5px;
        background: var(--text);
        border-radius: 10px;
        transition: all 0.35s ease;
    }

/* Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

    .nav-menu a {
        color: var(--text-muted);
        text-decoration: none;
        font-weight: 600;
        font-size: 1.05rem;
        transition: all 0.3s;
        position: relative;
    }

        .nav-menu a:hover,
        .nav-menu a.active {
            color: var(--neon-green);
            text-shadow: 0 0 12px rgba(0, 200, 150, 0.5);
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2.5px;
            bottom: -6px;
            left: 0;
            background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
            transition: width 0.4s ease;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 12px 0;
    z-index: 999;
    backdrop-filter: blur(8px);
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 24px;
    color: var(--text);
    text-decoration: none;
    font-size: 1rem;
}

    .dropdown-content a:hover {
        background: rgba(0,200,150,0.08);
        color: var(--neon-green);
    }

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        padding: 80px 20px;
        box-shadow: -10px 0 40px rgba(0,0,0,0.12);
        z-index: 1000;
        transition: right 0.45s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

        .nav-menu.active {
            right: 0;
        }

        .nav-menu a {
            font-size: 1.35rem;
            font-weight: 700;
        }

    /* Hamburger transforms to X when active */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Dropdown adapts for mobile */
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: transparent;
        border: none;
        padding: 10px 0 20px;
    }

        .dropdown-content a {
            font-size: 1.15rem;
            padding: 12px 0;
        }

    /* Contact button in mobile menu */
    .mobile-contact-btn {
        margin-top: 20px;
        padding: 14px 40px !important;
        font-size: 1.1rem !important;
    }
}

#hero {
    min-height: 50vh;
    padding: 160px 0 100px;
    background: linear-gradient(135deg, #f0faff 0%, #e6f9ff 100%);
    position: relative;
    overflow: hidden;
}

    #hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 30%, rgba(255,107,53,0.08) 0%, transparent 65%);
    }

.hero-content h1 {
    font-size: 4.4rem;
    margin-bottom: 28px;
    background: linear-gradient(90deg, var(--neon-green), var(--neon-orange), var(--neon-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    filter: drop-shadow(0 0 25px rgba(0,200,150,0.35));
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.45rem;
    max-width: 760px;
    margin: 0 auto 55px;
    color: var(--text-muted);
}

.btn {
    display: inline-block;
    padding: 16px 50px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    margin: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.btn-primary {
    background: linear-gradient(90deg, var(--neon-green), #00a67c);
    color: white;
    box-shadow: 0 0 30px rgba(0,200,150,0.45);
}

    .btn-primary:hover {
        transform: translateY(-5px) scale(1.04);
        box-shadow: 0 15px 45px rgba(0,200,150,0.6);
    }

.btn-outline {
    border: 2.5px solid var(--neon-cyan);
    color: var(--neon-cyan);
    background: rgba(255,255,255,0.6);
    box-shadow: 0 0 20px rgba(0,183,235,0.3);
}

    .btn-outline:hover {
        background: rgba(0,183,235,0.12);
        transform: translateY(-5px);
    }

section {
    padding: 130px 0;
}

    section h2 {
        text-align: center;
        font-size: 3.4rem;
        margin-bottom: 24px;
        background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.subtitle {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 80px;
    color: var(--text-muted);
    font-size: 1.3rem;
}

.card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.5s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

    .card:hover {
        transform: translateY(-14px);
        border-color: var(--neon-green);
        box-shadow: 0 25px 70px rgba(0, 200, 150, 0.22);
    }

    .card i {
        font-size: 3.8rem;
        margin-bottom: 28px;
        background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        filter: drop-shadow(0 0 18px rgba(0, 200, 150, 0.55));
    }

    .card h3 {
        margin-bottom: 18px;
        font-size: 1.7rem;
        color: var(--text);
    }

/* Sliders */
.slider-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
    transition: transform 0.4s;
}

    .slider-item:hover {
        transform: scale(1.04);
    }

    .slider-item img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        display: block;
    }

.client-item {
    height: 140px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 16px;
}

    .client-item img {
        max-width: 80%;
        max-height: 80%;
    }

.blog-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: 0 10px 35px rgba(0,0,0,0.08);
}

    .blog-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 20px 60px rgba(0,200,150,0.18);
    }

    .blog-card img {
        width: 100%;
        height: 220px;
        object-fit: cover;
    }

.blog-content {
    padding: 24px;
}

    .blog-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .blog-content p {
        color: var(--text-muted);
        font-size: 1.05rem;
    }
.blog-item-meta ul {
    margin: 0;
    padding: 0;
    margin-top: 14px;
    border-top: 1px solid #e6e8eb;
    padding-top: 18px;
}

    .blog-item-meta ul li {
        display: inline-block;
        margin-right: 15px;
        position: relative;
        color: #232323;
    }

        .blog-item-meta ul li i {
            margin-right: 5px;
            color: var(--neon-green);
        }
/* Floating Bubble */
.chat-bubble {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 200, 150, 0.5);
    z-index: 9999;
    transition: all 0.4s ease;
}

    .chat-bubble:hover {
        transform: scale(1.1);
        box-shadow: 0 12px 40px rgba(0, 200, 150, 0.7);
    }

/* Chat Window */
.chat-window {
    position: fixed;
    bottom: 110px;
    right: 30px;
    width: 380px;
    height: 520px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.18);
    overflow: hidden;
    z-index: 9998;
    border: 1px solid rgba(0, 200, 150, 0.2);
    backdrop-filter: blur(12px);
    transition: all 0.4s ease;
}

/* Header */
.chat-header {
    background: linear-gradient(90deg, var(--neon-green), var(--neon-cyan));
    color: white;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.15rem;
}

    .chat-header button {
        background: none;
        border: none;
        color: white;
        font-size: 1.8rem;
        cursor: pointer;
        transition: transform 0.2s;
    }

        .chat-header button:hover {
            transform: scale(1.2);
        }

/* User Info Form */
.chat-user-info {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .form-group label {
        font-weight: 600;
        color: var(--text);
        font-size: 1rem;
    }

    .form-group input {
        padding: 14px 18px;
        border: 1px solid var(--border);
        border-radius: 12px;
        font-size: 1rem;
        outline: none;
        transition: all 0.3s;
    }

        .form-group input:focus {
            border-color: var(--neon-green);
            box-shadow: 0 0 0 4px rgba(0, 200, 150, 0.15);
        }

.start-btn {
    padding: 14px 24px;
    font-size: 1.1rem;
    background: linear-gradient(90deg, var(--neon-green), #00a67c);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 200, 150, 0.3);
    transition: all 0.3s;
}

    .start-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(0, 200, 150, 0.4);
    }

/* Messages Area */
.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    background: rgba(248, 252, 255, 0.6);
}

.message {
    margin-bottom: 16px;
    padding: 14px 18px;
    border-radius: 18px;
    max-width: 80%;
    line-height: 1.5;
    word-wrap: break-word;
}

    .message.user {
        background: var(--neon-green);
        color: white;
        margin-left: auto;
        border-bottom-right-radius: 4px;
    }

    .message.admin, .message.system {
        background: var(--neon-cyan);
        color: #0f2a44;
        margin-right: auto;
        border-bottom-left-radius: 4px;
    }

    .message.system {
        background: rgba(0, 0, 0, 0.08);
        color: #555;
        text-align: center;
        font-style: italic;
    }

/* Input Area */
.chat-input-area {
    display: flex;
    padding: 16px;
    border-top: 1px solid var(--border);
    background: white;
    gap: 12px;
}

    .chat-input-area input {
        flex: 1;
        padding: 14px 18px;
        border: 1px solid var(--border);
        border-radius: 50px;
        outline: none;
        font-size: 1rem;
        transition: all 0.3s;
    }

        .chat-input-area input:focus {
            border-color: var(--neon-green);
            box-shadow: 0 0 0 4px rgba(0, 200, 150, 0.15);
        }

    .chat-input-area button {
        width: 52px;
        height: 52px;
        background: var(--neon-green);
        color: white;
        border: none;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
    }

        .chat-input-area button:hover {
            background: #00a67c;
            transform: scale(1.1);
        }
@media (max-width:768px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }

    .slider-item {
        flex: 0 0 280px;
    }
}

/* Desktop hover still works */
.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    display: block;
}

/* Mobile: use .active class instead of hover */
@media (max-width: 768px) {
    .dropdown .dropdown-content {
        display: none; /* hide by default */
        position: static; /* better for mobile flow */
        width: 100%;
        box-shadow: none;
        background: rgba(248, 252, 255, 0.95);
        border: 1px solid var(--border);
        border-radius: 8px;
        margin-top: 10px;
    }

    .dropdown.active .dropdown-content {
        display: block;
    }

    /* Optional: Rotate arrow when open */
    .dropdown-toggle::after {
        content: ' ▾';
        transition: transform 0.3s;
    }

    .dropdown.active .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}
/* Testimonials specific styles */
.testimonial-card {
    padding: 40px 30px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 200, 150, 0.2);
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

    .testimonial-card:hover {
        transform: translateY(-12px);
        box-shadow: 0 25px 70px rgba(0, 200, 150, 0.25);
        border-color: var(--neon-green);
    }

    .testimonial-card::before {
        content: '“';
        position: absolute;
        top: 20px;
        left: 30px;
        font-size: 6rem;
        color: rgba(0, 200, 150, 0.08);
        line-height: 1;
        font-family: Georgia, serif;
    }

.author {
    margin-top: 20px;
    font-weight: 600;
    color: var(--text);
}

    .author span {
        display: block;
        font-weight: 400;
        font-size: 0.95rem;
        margin-top: 4px;
    }

footer,
footer * {
    text-align: left !important;
}

    footer .social-icons {
        justify-content: flex-start;
    }

    footer .container > div:last-child {
        text-align: left;
    }

.faq-item.active {
    border-color: var(--neon-green);
    box-shadow: 0 20px 60px rgba(0, 200, 150, 0.18);
}

.faq-question:hover {
    background: rgba(0, 200, 150, 0.05);
}

.faq-item.active .faq-question {
    background: rgba(0, 200, 150, 0.08);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 200, 150, 0.22);
    border-color: var(--neon-green);
}

.pricing-card ul li i.fa-check {
    filter: drop-shadow(0 0 4px rgba(0,200,150,0.5));
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 200, 150, 0.22);
    border-color: var(--neon-green);
}

.feature-card ul li i {
    filter: drop-shadow(0 0 6px rgba(0,200,150,0.4));
    transition: transform 0.3s;
}

.feature-card:hover ul li i {
    transform: scale(1.15);
}

.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
}

    .page-header h1 {
        font-weight: 900;
        letter-spacing: -1px;
    }

    .page-header nav ol li a:hover {
        color: var(--neon-green);
        text-shadow: 0 0 10px rgba(0,200,150,0.5);
    }
