* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0a1628;
    --secondary: #1e3a5f;
    --accent: #00d4ff;
    --accent-dark: #0099cc;
    --text-primary: #e8eef4;
    --text-secondary: #94a3b8;
    --surface: rgba(255, 255, 255, 0.03);
    --surface-hover: rgba(255, 255, 255, 0.06);
    --border: rgba(255, 255, 255, 0.08);
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background: var(--primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.bg-animation::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(30, 58, 95, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(10, 22, 40, 1) 0%, transparent 70%);
    animation: bgPulse 15s ease-in-out infinite;
}

@keyframes bgPulse {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-2%, 2%) scale(1.05);
    }

    66% {
        transform: translate(2%, -2%) scale(0.95);
    }
}

/* Grid Overlay */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.2rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: all 0.3s ease;
}

nav.scrolled {
    padding: 0.8rem 5%;
    background: rgba(10, 22, 40, 0.95);
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.logo-text span {
    color: var(--accent);
    font-weight: 400;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.6rem 1.8rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
}

.hero-content {
    max-width: 700px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease;
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 550px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.btn-primary {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.35);
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    background: var(--surface-hover);
    border-color: var(--accent);
    color: var(--accent);
}

/* Hero Visual */
.hero-visual {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 500px;
    height: 500px;
    opacity: 0.6;
}

.ai-visual {
    width: 100%;
    height: 100%;
    position: relative;
}

.ai-node {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.05));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.15), inset 0 0 20px rgba(0, 212, 255, 0.05);
    animation: aiNodeFloat 5s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.ai-node:nth-child(1) {
    top: 10%;
    left: 20%;
    animation-delay: 0s;
}

.ai-node:nth-child(2) {
    top: 25%;
    left: 65%;
    animation-delay: 0.6s;
}

.ai-node:nth-child(3) {
    top: 45%;
    left: 15%;
    animation-delay: 1.2s;
}

.ai-node:nth-child(4) {
    top: 15%;
    left: 80%;
    animation-delay: 1.8s;
}

.ai-node:nth-child(5) {
    top: 60%;
    left: 70%;
    animation-delay: 2.4s;
}

.ai-node:nth-child(6) {
    top: 75%;
    left: 30%;
    animation-delay: 3.0s;
}

.ai-node:nth-child(7) {
    top: 35%;
    left: 45%;
    animation-delay: 3.6s;
}

.ai-node:nth-child(8) {
    top: 55%;
    left: 85%;
    animation-delay: 4.2s;
}

.ai-node:nth-child(9) {
    top: 80%;
    left: 55%;
    animation-delay: 1.0s;
}

.ai-node:nth-child(10) {
    top: 5%;
    left: 50%;
    animation-delay: 2.0s;
}

.ai-node:nth-child(11) {
    top: 70%;
    left: 10%;
    animation-delay: 3.0s;
}

.ai-node:nth-child(12) {
    top: 40%;
    left: 90%;
    animation-delay: 4.5s;
}

@keyframes aiNodeFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.15), inset 0 0 20px rgba(0, 212, 255, 0.05);
    }

    25% {
        transform: translateY(-12px) scale(1.05);
        box-shadow: 0 0 35px rgba(0, 212, 255, 0.25), inset 0 0 25px rgba(0, 212, 255, 0.1);
    }

    50% {
        transform: translateY(-5px) scale(1.02);
        box-shadow: 0 0 25px rgba(0, 212, 255, 0.2), inset 0 0 20px rgba(0, 212, 255, 0.08);
    }

    75% {
        transform: translateY(-18px) scale(1.08);
        box-shadow: 0 0 40px rgba(0, 212, 255, 0.3), inset 0 0 30px rgba(0, 212, 255, 0.12);
    }
}


/* Section Styles */
section {
    padding: 6rem 5%;
}

#services {
    border-top: 1px solid var(--border);
    background: var(--surface);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.2rem;
}

.service-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(0, 212, 255, 0.08);
    border: 1px solid rgba(0, 212, 255, 0.15);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--accent);
    font-weight: 500;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Solutions */
.solutions {
    /* background: var(--surface); */
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.solution-item {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.solution-item:hover {
    background: var(--surface-hover);
    border-color: rgba(0, 212, 255, 0.2);
}

.solution-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.solution-content h4 {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
}

.solution-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Industries */
#industries {
    background: var(--surface);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.industry-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.1);
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.industry-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.industry-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Why Choose Us */
.why-us {
    /* background: var(--surface); */
    border-top: 1px solid var(--border);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-check {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success);
    font-size: 0.9rem;
    margin-top: 2px;
}

.feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}

.feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 6rem 5%;
    position: relative;
    overflow: hidden;
    background: var(--surface);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-detail h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.contact-detail p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* CLICKABLE CONTACT LINKS */
.contact-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.contact-link:hover {
    color: var(--accent);
}

.contact-link::after {
    content: '↗';
    font-size: 0.75rem;
    opacity: 0;
    transform: translateX(-4px);
    transition: all 0.3s ease;
}

.contact-link:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.contact-detail:has(.contact-link) {
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-detail:has(.contact-link):hover {
    transform: translateX(5px);
}

.contact-detail:has(.contact-link):hover .contact-detail-icon {
    border-color: var(--accent);
    background: rgba(0, 212, 255, 0.1);
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

/* Fix dropdown white background - add this inside your existing <style> tag */
.form-group select {
    background: rgba(10, 22, 40, 0.9) !important;
    color: var(--text-primary);
}

.form-group select option {
    background: var(--primary);
    color: var(--text-primary);
}

.form-group select:focus {
    background: rgba(10, 22, 40, 0.95) !important;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--border);
    padding: 4rem 5% 2rem;
}

.footer-grid {
    display: grid;
    /* grid-template-columns: 2fr 1fr 1fr 1fr; */
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.footer-brand .logo-text {
    font-size: 1.5rem;
    /* margin-bottom: 1rem; */
    display: block;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.85rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }


    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        padding-top: 6rem;
    }
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary);
}

::-webkit-scrollbar-thumb {
    background: var(--secondary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: rgba(10, 22, 40, 0.98);
    backdrop-filter: blur(30px);
    border-left: 1px solid var(--border);
    z-index: 2000;
    padding: 1.5rem 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: var(--surface-hover);
    border-color: var(--accent);
    color: var(--accent);
}

.mobile-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    /* flex: 1; */
}

.mobile-nav-links li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav-links a {
    display: block;
    padding: 1.2rem 0;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--accent);
    padding-left: 1rem;
}

.mobile-nav-cta {
    display: block;
    text-align: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.mobile-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: var(--surface);
    border: 1px solid var(--border);
    color: var(--text-primary);
    width: 42px;
    height: 42px;
    border-radius: 10px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn:hover {
    background: var(--surface-hover);
    border-color: var(--accent);
    color: var(--accent);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.5);
    transform: scale(1.05);
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--accent);
}


/* ============================================
           AI VOICE CALLING AGENT SECTION - NEW STYLES
           ============================================ */

.voice-agent-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 5% 4rem;
    position: relative;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03) 0%, rgba(30, 58, 95, 0.1) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.voice-agent-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.voice-agent-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.voice-agent-text>p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.voice-agent-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.2rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--success);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.voice-agent-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.voice-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.voice-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1.2rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.voice-feature-item:hover {
    border-color: rgba(0, 212, 255, 0.3);
    transform: translateX(5px);
}

.voice-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 153, 204, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
}

.voice-feature-item span {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
}

.voice-agent-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.call-btn-pulse {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--primary);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.call-btn-pulse::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    opacity: 0;
    z-index: -1;
    animation: btnPulse 2s ease-in-out infinite;
}

@keyframes btnPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0;
    }
}

.call-btn-pulse:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}


.phone-mockup {
    width: 320px;
    height: 640px;
    background: linear-gradient(145deg, #1a2744 0%, #0f1d33 100%);
    border-radius: 40px;
    border: 3px solid rgba(0, 212, 255, 0.2);
    box-shadow:
        0 0 60px rgba(0, 212, 255, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 0 40px rgba(0, 212, 255, 0.05);
    padding: 1rem;
    position: relative;
    overflow: hidden;
    animation: phoneFloat 6s ease-in-out infinite;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #0d1b2a 0%, #1b2838 100%);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #0a1628;
    border-radius: 0 0 16px 16px;
    z-index: 10;
}

.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1.2rem;
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 0.5rem;
}

.phone-app-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    background: rgba(0, 212, 255, 0.05);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
}

.phone-app-header i {
    color: var(--accent);
    font-size: 1rem;
}

.phone-app-header span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
}

.phone-dashboard {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    overflow-y: auto;
}

.phone-stat-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

.phone-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 0.8rem;
    text-align: center;
}

.phone-stat-card .stat-icon {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.phone-stat-card .stat-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent);
}

.phone-stat-card .stat-label {
    font-size: 0.65rem;
    color: var(--text-secondary);
    margin-top: 0.2rem;
}

.phone-chart-area {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1rem;
    flex: 1;
}

.phone-chart-header {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.phone-chart-bar {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    height: 80px;
    margin-bottom: 0.5rem;
}

.phone-bar {
    flex: 1;
    background: linear-gradient(to top, var(--accent), rgba(0, 212, 255, 0.3));
    border-radius: 4px 4px 0 0;
    animation: barGrow 2s ease-out forwards;
    transform-origin: bottom;
}

.phone-bar:nth-child(1) {
    height: 40%;
    animation-delay: 0.1s;
}

.phone-bar:nth-child(2) {
    height: 65%;
    animation-delay: 0.2s;
}

.phone-bar:nth-child(3) {
    height: 45%;
    animation-delay: 0.3s;
}

.phone-bar:nth-child(4) {
    height: 80%;
    animation-delay: 0.4s;
}

.phone-bar:nth-child(5) {
    height: 55%;
    animation-delay: 0.5s;
}

.phone-bar:nth-child(6) {
    height: 70%;
    animation-delay: 0.6s;
}

.phone-bar:nth-child(7) {
    height: 90%;
    animation-delay: 0.7s;
}

@keyframes barGrow {
    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}

.phone-donut {
    width: 100px;
    height: 100px;
    margin: 0 auto;
    position: relative;
}

.phone-donut svg {
    transform: rotate(-90deg);
}

.phone-donut-circle {
    fill: none;
    stroke-width: 12;
}

.phone-donut-bg {
    stroke: rgba(255, 255, 255, 0.05);
}

.phone-donut-fill {
    stroke: var(--accent);
    stroke-dasharray: 251;
    stroke-dashoffset: 75;
    stroke-linecap: round;
    animation: donutFill 2s ease-out forwards;
}

@keyframes donutFill {
    from {
        stroke-dashoffset: 251;
    }

    to {
        stroke-dashoffset: 75;
    }
}

.phone-bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
    color: var(--text-secondary);
    font-size: 0.6rem;
}

.phone-nav-item i {
    font-size: 1.1rem;
}

.phone-nav-item.active {
    color: var(--accent);
}

/* Voice Agent Features Grid */
.voice-agent-features {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 153, 204, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 1.2rem;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Voice Agent Dashboard Preview */
.dashboard-preview {
    position: relative;
    overflow: hidden;
}

.dashboard-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.dashboard-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
}

.dashboard-card:hover {
    border-color: rgba(0, 212, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}

.dashboard-card-header {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.dashboard-card-header i {
    font-size: 1.3rem;
    color: var(--accent);
}

.dashboard-card-header h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.dashboard-metric {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.dashboard-metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
}

.dashboard-metric-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.dashboard-metric-change {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.3rem 0.8rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid var(--success);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 600;
}

.dashboard-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.dashboard-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.dashboard-list-item-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.dashboard-list-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.dashboard-list-item-icon.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.dashboard-list-item-icon.warning {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.dashboard-list-item-icon.info {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent);
}

.dashboard-list-item-text {
    font-size: 0.9rem;
    color: var(--text-primary);
}

.dashboard-list-item-sub {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.dashboard-status {
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.dashboard-status.converted {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border: 1px solid var(--success);
}

.dashboard-status.interested {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent);
    border: 1px solid var(--accent);
}

.dashboard-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
    border: 1px solid var(--warning);
}

/* Responsive for Voice Agent */
@media (max-width: 1024px) {
    .voice-agent-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .voice-agent-text {
        order: 1;
    }

    .voice-agent-visual {
        order: 2;
    }

    .voice-features {
        align-items: center;
    }

    .phone-mockup {
        width: 280px;
        height: 560px;
    }

    .nav-cta {
        display: none
    }

    .nav-links {
        display: none
    }

    .mobile-menu-btn {
        display: flex;
    }
}

@media (max-width: 768px) {
    .phone-mockup {
        width: 260px;
        height: 520px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

/* Floating particles for voice agent section */
.voice-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.voice-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0.3;
    animation: particleFloat 8s ease-in-out infinite;
}

.voice-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.voice-particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 1s;
}

.voice-particle:nth-child(3) {
    top: 40%;
    left: 50%;
    animation-delay: 2s;
}

.voice-particle:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 3s;
}

.voice-particle:nth-child(5) {
    top: 30%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes particleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 0.6;
    }
}

/* Wave animation */
.wave-container {
    display: flex;
    align-items: center;
    gap: 3px;
    height: 30px;
}

.wave-bar {
    width: 4px;
    background: linear-gradient(to top, var(--accent), var(--accent-dark));
    border-radius: 2px;
    animation: wave 1.2s ease-in-out infinite;
}

.wave-bar:nth-child(1) {
    height: 10px;
    animation-delay: 0s;
}

.wave-bar:nth-child(2) {
    height: 20px;
    animation-delay: 0.1s;
}

.wave-bar:nth-child(3) {
    height: 15px;
    animation-delay: 0.2s;
}

.wave-bar:nth-child(4) {
    height: 25px;
    animation-delay: 0.3s;
}

.wave-bar:nth-child(5) {
    height: 18px;
    animation-delay: 0.4s;
}

.wave-bar:nth-child(6) {
    height: 22px;
    animation-delay: 0.5s;
}

.wave-bar:nth-child(7) {
    height: 12px;
    animation-delay: 0.6s;
}

@keyframes wave {

    0%,
    100% {
        transform: scaleY(0.5);
    }

    50% {
        transform: scaleY(1);
    }
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid var(--danger);
    border-radius: 50px;
    font-size: 0.8rem;
    color: var(--danger);
    font-weight: 600;
}

.live-dot {
    width: 8px;
    height: 8px;
    background: var(--danger);
    border-radius: 50%;
    animation: livePulse 1.5s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

@keyframes btnPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.05);
        opacity: 0;
    }
}
/* ===============================
AI CHATBOT
=============================== */

#aiChat{
    position:fixed;
    bottom:25px;
    right:25px;
    z-index:99999;
}

#chatToggle{
    width:65px;
    height:65px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    background:linear-gradient(135deg,#00d4ff,#0099cc);
    color:white;
    font-size:28px;
    box-shadow:0 15px 40px rgba(0,212,255,.35);
    transition:.3s;
}

#chatToggle:hover{
    transform:scale(1.08);
}
#chatToggle.hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    pointer-events: none;
}

.chat-notification{
    position:absolute;
    top:8px;
    right:8px;
    width:14px;
    height:14px;
    border-radius:50%;
    background:#22c55e;
    border:2px solid white;
}

.chat-window{
    position:absolute;
    right:0;
    bottom:10px;
    width:450px;
    height:640px;
    background:#0d1726;
    border-radius:22px;
    overflow:hidden;
    display:none;
    flex-direction:column;
    border:1px solid rgba(255,255,255,.08);
    box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.chat-window.active{
    display:flex;
    animation:popup .25s;
}

@keyframes popup{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:none;
    }
}

.chat-header{
    display:flex;
    align-items:center;
    padding:13px;
    /* background:linear-gradient(135deg,#00d4ff,#0099cc); */
    background:linear-gradient(135deg,#0099cc,#0a1628f2);
}

.chat-avatar{
    width:48px;
    height:48px;
    border-radius:50%;
    background:white;
    color:#0099cc;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:22px;
    margin-right:14px;
    object-fit: cover;
    border: 5px solid rgba(10, 22, 40, 0.95);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
    transition: all 0.3s ease;
}

.chat-title h3{
    margin:0;
    color:white;
    font-size:17px;
}

.chat-title span{
    color:white;
    font-size:13px;
}

.online-dot{
    display:inline-block;
    width:8px;
    height:8px;
    background:#22c55e;
    border-radius:50%;
    margin-right:4px;
}

#chatClose{
    margin-left:auto;
    margin-right: 10px;
    border:none;
    background:none;
    color:white;
    cursor:pointer;
    font-size:20px;
}

#chatMessages{
    flex:1;
    overflow:auto;
    padding:20px;
    background:#09111d;
}
#chatMessages a{
    text-decoration: none;
    cursor: pointer;
}

.chat-card a {
    color: #38bdf8;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.25s ease;
    word-break: break-word;
}

.chat-card a:hover {
    color: #00d4ff;
    text-decoration: underline;
}

.chat-card a:visited {
    color: #60a5fa;
}

.chat-card a i {
    margin-right: 6px;
}

.bot-message,
.user-message{
    display:flex;
    margin-bottom:15px;
}

.user-message{
    justify-content:flex-end;
}

.message{
    max-width:85%;
    padding:14px 18px;
    border-radius:18px;
    line-height:1.6;
    font-size:14px;
}

.bot-message .message{
    background:#162536;
    color:white;
}

.user-message .message{
    background:#00d4ff;
    color:#06111c;
}

.quick-actions{
    display:flex;
    gap:8px;
    overflow:auto;
    padding:12px;
    background:#0f1b2a;
}
.quick-actions::-webkit-scrollbar {
    /*display: none;              /* Chrome, Safari, Edge */
    height: 5px;
}
.quick-btn{
    white-space:nowrap;
    border:none;
    cursor:pointer;
    background:#162536;
    color:white;
    border-radius:50px;
    padding:9px 15px;
    transition:.25s;
}

.quick-btn:hover{
    background:#00d4ff;
    color:#06111c;
}

.chat-footer{
    display:flex;
    padding:15px;
    gap:10px;
    background:#0f1b2a;
}

#chatInput{
    font-size:16px;
   flex:1;
    background:#162536;
    border:none;
    color:white;
    padding:14px;
    border-radius:30px;
    outline:none;
}

#chatSend{
    width:50px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    background:#00d4ff;
    color:#06111c;
    font-size:18px;
}

.typing{
    display:none;
    padding:0 20px 10px;
}

.typing span{
    width:8px;
    height:8px;
    display:inline-block;
    margin-right:5px;
    background:#00d4ff;
    border-radius:50%;
    animation:typing 1.2s infinite;
}

.typing span:nth-child(2){
    animation-delay:.2s;
}

.typing span:nth-child(3){
    animation-delay:.4s;
}

@keyframes typing{
    0%,80%,100%{
        transform:scale(.5);
        opacity:.4;
    }

    40%{
        transform:scale(1);
        opacity:1;
    }
}

@media(max-width:600px){

.chat-window{
    width:calc(100vw - 20px);
    height:calc(100vh - 110px);
    right:-10px;
}

}
#chatMessages::-webkit-scrollbar {
    width: 6px;
}

#chatMessages::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,.15);
    border-radius: 20px;
}

.message ul{
    margin-top:10px;
    padding-left:18px;
}

.message li{
    margin:4px 0;
}
.chat-actions {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.chat-actions a {
    text-decoration: none !important;
}


.btn-whatsapp,
.btn-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    flex: 1;
    min-width: 140px;

    height: 46px;

    border-radius: 30px;

    font-size: 14px;
    font-weight: 600;

    color: #fff !important;

    transition: .25s ease;

    cursor: pointer;

    border: none;
}


.btn-whatsapp {
    background: linear-gradient(135deg,#25D366,#128C7E);
    min-width: 150px; /* Adjust as needed */
    padding: 0 13px;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,211,102,.35);
}

.btn-call {
    background: linear-gradient(135deg,#3B82F6,#2563EB);
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,99,235,.35);
}

.btn-whatsapp i,
.btn-call i {
    font-size: 15px;
}

@media (max-width:480px){

    .chat-actions{
        flex-direction:column;
    }

    .btn-whatsapp,
    .btn-call{
        width:100%;
    }

}
