:root {
    --primary-bg: #0b101b;
    --secondary-bg: #141c2f;
    --accent-info: #0dcaf0;
    --accent-blue: #3a7bd5;
    --accent-indigo: #00d2ff;
    --text-primary: #ffffff;
    --text-secondary: #94a3b8;
    --glass-bg: rgba(20, 28, 47, 0.7);
    --border-color: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    color-scheme: dark;
}

.bg-black-2 {
    background-color: #05080f;
}

.text-secondary-light {
    color: #cbd5e1;
}

.section-padding {
    padding: 120px 0;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 10px;
}

/* Navbar */
.glass-nav {
    background: rgba(11, 16, 27, 0.8);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.glass-nav .navbar-brand {
    color: #ffffff !important;
    font-size: 1.5rem;
    letter-spacing: 1px;
    text-decoration: none;
}

.glass-nav .nav-link {
    color: #94a3b8;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s;
}

.glass-nav .nav-link:hover,
.glass-nav .nav-link.active {
    color: var(--accent-info);
}

/* Buttons */
.btn-gradient {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-indigo));
    color: white !important;
    border: none;
    transition: transform 0.2s;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(58, 123, 213, 0.4);
}

.btn-info {
    background-color: var(--accent-info);
    border: none;
}

/* Gradients */
.text-gradient {
    background: linear-gradient(135deg, #0dcaf0, #00d2ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(circle, rgba(13, 202, 240, 0.1), transparent 70%);
    z-index: -1;
}

/* Solution Cards */
.solution-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-info);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--accent-info);
    margin-bottom: 25px;
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-footer-meta {
    margin-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.demo-link {
    color: var(--accent-info);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
}

.demo-link:hover {
    text-decoration: underline;
}

/* Testimonials */
.testimonial-scroller {
    width: 100%;
    margin-top: 50px;
}

.testimonial-track {
    display: flex;
    gap: 30px;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.testimonial-card {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    padding: 30px;
    width: 350px;
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-380px * 5));
    }

    /* Adjust based on count */
}

/* Contact & Glass Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    border-radius: 30px;
}

.bg-gradient-dark {
    background: linear-gradient(135deg, #05080f, #1e293b);
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: rgba(13, 202, 240, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-info);
    font-size: 1.2rem;
}

.form-control,
.form-select {
    background-color: #141c2f !important;
    border: 1px solid var(--border-color);
    color: white !important;
    padding: 12px 15px;
}

.form-select option {
    background-color: #141c2f;
    color: white;
}

#contactSubject option {
    color: #ffffff !important;
    background-color: #141c2f !important;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-info);
    box-shadow: none;
    color: white;
}

/* Ratings */
.pointer {
    cursor: pointer;
}

.rating-stars i:hover,
.rating-stars i.active {
    font-weight: 900;
}

/* Support Widget */
.support-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.talk-bubble {
    background: white;
    color: black;
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    animation: bounce 2s infinite;
    position: relative;
}

.talk-bubble::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 15px;
    border-width: 8px 8px 0;
    border-style: solid;
    border-color: white transparent transparent;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    color: white;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Footer */
.footer-link {
    font-size: 1.2rem;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--accent-info);
}