body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

:root {
    --primary: #ff8501;
    --dark: #222;
    --white: #fff;
}

/* ===============================
   HEADER MAIN
=================================*/

.navbar-layout {
    position: absolute;
    width: 100%;
    z-index: 999;
}

.navbar {
    padding: 20px 0;
}


.navbar-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.main_header_inner {
    background: #fff;
    padding: 15px;
    border-radius: 60px;
}

/* ===============================
   LOGO
=================================*/
.logo-container img {
    max-height: 55px;
}

/* ===============================
   NAV LINKS
=================================*/
.navbar-nav {
    gap: 25px;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.qa-chat-container {
    flex: 1;
    min-width: 300px;
    max-width: 650px;
    padding: 30px;
    position: relative;
    border-radius: 60px;
    display: flex;
    max-height: 170px !important;
    flex-direction: column;
    border: 3px solid black;
    background: #ffffff;
}



/* ===============================
   DROPDOWN
=================================*/
.dropdown-menu {
    border-radius: 12px;
    border: none;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.dropdown-item {
    padding: 10px 20px;
    font-weight: 500;
    transition: 0.3s;
}

.dropdown-item:hover {
    background: #fff4e6;
    color: var(--primary);
}

/* ===============================
   BUTTON
=================================*/
.btn-accent {
    background: var(--primary);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 100px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-accent:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* ===============================
   MOBILE TOGGLE
=================================*/
.nav-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 22px;
    color: #222;
}

.nav-btn:focus {
    outline: none;
}

/* ===============================
   STICKY EFFECT
=================================*/
.navbar-layout.sticky {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.flex-md-row {
    gap: 20px;
}

/* ===============================
   RESPONSIVE
=================================*/
@media (max-width: 1199px) {

    .nav-btn {
        display: block;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 15px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    .navbar-nav {
        gap: 15px;
    }

    .navbar-button-container {
        margin-top: 15px;
    }
}


@media (max-width: 768px) {

    .logo-container img {
        max-height: 35px;
    }

    .btn-accent {
        padding: 6px 16px !important;
        font-size: 14px;
    }

    .qa-video img {
        width: 100% !important;
    }

    .qa-chat-container {
        min-width: auto !important;
        max-width: max-content !important;
        padding: 0px !important;
        border-radius: 20px;
        width: 100%;

    }

    .qa-chat-box {
        width: 100% !important;
        padding: 20px;
    }

    .qa-chat-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }

    .qa-wrapper {
        flex-direction: column-reverse !important;
    }

    .qa-section {
        padding-bottom: 0px !important;
    }

    .right_card {
        flex-direction: column-reverse;
        display: flex;
        gap: 40px;
    }

    .google-ads-section {
        padding-top: 0px !important;
    }
}



.google-ads-section {
    padding-top: 90px;
}

.ads-box {
    background: #f4f4f4;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.ads-box:hover {
    transform: translateY(-5px);
}

/* Header */
.ads-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
}

.ads-header img {
    width: 60px;
}

.ads-header h3 {
    font-weight: 600;
    margin: 0;
}

/* Features */
.ads-features {
    margin-bottom: 30px;
}

.feature {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature span {
    color: #34a853;
    font-size: 22px;
}

/* Bottom Section */
.ads-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.badges {
    display: flex;
    align-items: center;
    gap: 15px;
}

.badges img {
    width: 120px;
}

.expert-badge {
    background: linear-gradient(135deg, #0d1b2a, #1b263b);
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
}

/* CTA Button */
.ads-cta-btn {
    background: var(--primary);
    color: #fff;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.ads-cta-btn:hover {
    background: #e67600;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {

    .ads-header {
        flex-direction: column;
        text-align: center;
    }

    .ads-bottom {
        flex-direction: column;
        text-align: center;
    }

    .badges {
        justify-content: center;
    }

    .ads-cta-btn {
        width: 100%;
        text-align: center;
    }
    .cta-btn {
    width: 100%;
    text-align: center;
}
.section-padding {
    padding: 40px 0 !important;
}
.contact-section {
    padding: 40px 0 !important;
}
.chat-section {
    padding: 40px 0 !important;
}
#pricing h2 {
    font-size: 30px !important;
}
.pricing-card h4 {
    font-size: 16px;
}
.ads-box {
    padding: 20px !important;
}
}


/* ===== Hero ===== */
.hero {
    background: #ff850121;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 160px 0 120px;
    text-align: center;
}

/* ===== Sections ===== */
.section-padding {
    padding: 80px 0;
}

.icon-box {
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .05);
    transition: .3s;
}

.icon-box:hover {
    transform: translateY(-10px);
}




/* =====================================
   SECTION SPACING
=====================================*/
.section {
    padding: 100px 0;
    background: #f1f1f16e;
}



/* =====================================
   BUTTON
=====================================*/
.btn-accent {
    background: #ff8501;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    border: none;
    transition: 0.3s;
}

.btn-accent:hover {
    background: #e67300;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 133, 1, 0.25);
}



.text-warning {
    --bs-text-opacity: 1;
    color: #ff8501 !important;
}











/* =====================================
   RESPONSIVE
=====================================*/
@media (max-width: 992px) {

    .heading-wrapper-title h2 {
        font-size: 30px;
    }

    .section {
        padding: 70px 0;
    }

    .card-counter {
        margin-bottom: 20px;
    }
}


/* Section Background */
.premium-contact-section {
    padding: 100px 15px;
    background: linear-gradient(135deg, #1a1a1a, #2c2c2c);
}

/* Card */
.premium-contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--white);
}

/* Heading */
.premium-contact-card h2 {
    font-weight: 700;
}

/* Subtext */
.contact-subtext {
    color: #bbb;
    font-size: 15px;
}

/* Input */
.premium-input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

.premium-input:focus {
    background: rgba(255, 255, 255, 0.12);
    border-color: var(--primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 133, 1, 0.25);
    color: #fff;
}

/* Floating label color */
.form-floating>label {
    color: #aaa;
}

/* Button */
.premium-btn {
    background: var(--primary);
    border: none;
    padding: 14px;
    font-weight: 600;
    border-radius: 30px;
    transition: .3s;
}

.premium-btn:hover {
    background: #ff9c33;
    transform: translateY(-2px);
}

/* Responsive */
@media(max-width:576px) {
    .premium-contact-card {
        padding: 35px 25px;
    }
}


/* ===============================
   PREMIUM PRICING SECTION
================================ */

.section-padding {
    padding: 70px 0;
    background: linear-gradient(135deg, #fff, #f8f9fa);
}

#pricing h2 {
    font-size: 42px;
    color: #222;
    position: relative;
}

#pricing h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #ff8501;
    display: block;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* Pricing Card */
.pricing-card {
    background: #ffffff;
    border-radius: 25px;
    padding: 45px 30px;
    height: 100%;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* Plan Title */
.pricing-card h4 {
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 10px;
    color: #222;
}

/* Price */
.pricing-card h2 {
    font-size: 38px;
    font-weight: 800;
    color: #ff8501;
}

/* Features */
.pricing-card p {
    font-size: 16px;
    color: #555;
    margin: 10px 0;
}

/* Button */
.pricing-card .btn {
    background: #ff8501;
    border: none;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.pricing-card .btn:hover {
    background: #e67600;
    transform: scale(1.05);
}

/* Highlight Middle Plan */
.pricing-card.border-warning {
    border: none !important;
    background: linear-gradient(180deg, #fff, #fff7ef);
    box-shadow: 0 25px 70px rgba(255, 133, 1, 0.25);
    transform: scale(1.05);
}

/* Popular Badge */
.pricing-card.border-warning::before {
    content: "MOST POPULAR";
    position: absolute;
    top: 20px;
    right: -45px;
    background: #ff8501;
    color: #fff;
    padding: 8px 50px;
    transform: rotate(45deg);
    font-size: 12px;
    font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-card.border-warning {
        transform: scale(1);
    }
}

.footer-cta {
    background: linear-gradient(45deg, #ff8501, #ff9d2f);
    padding: 40px;
    border-radius: 15px;
    color: #fff;
}

.footer-cta-btn {
    background: #fff;
    color: #ff8501;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
}

.premium-footer h5 {
    color: var(--primary);
}

.premium-footer a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.premium-footer a:hover {
    color: var(--primary);
}

/* ===== WhatsApp Button ===== */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    font-size: 28px;
    padding: 12px 16px;
    border-radius: 50%;
    z-index: 999;
}

/* ===== Form ===== */
.form-control:focus {
    border-color: var(--primary);
    box-shadow: none;
}


/* ===============================
   FOOTER MAIN
=================================*/

.bg-footer {
    background: #3b3b3b;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.section-footer {
    color: #bbb;
}

.hero-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
}

/* ===============================
   LOGO
=================================*/
.footer-logo img {
    max-height: 55px;
}

/* ===============================
   QUICK LINKS (TOP MENU)
=================================*/
.quick-link {
    color: #ccc;
    text-decoration: none;
    margin: 5px 15px;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.quick-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 0%;
    height: 2px;
    background: #ff8501;
    transition: 0.3s;
}

.quick-link:hover {
    color: #ff8501;
}

.quick-link:hover::after {
    width: 100%;
}

/* ===============================
   HEADINGS
=================================*/
.section-footer h3 {
    color: #ff8501;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* ===============================
   ABOUT TEXT
=================================*/
.accent-color-3 {
    color: #bbb;
    line-height: 1.7;
}

/* ===============================
   SERVICES LIST
=================================*/
.chevron-list {
    list-style: none;
    padding: 0;
}

.chevron-list li {
    margin-bottom: 10px;
}

.chevron-list li a {
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.chevron-list li a:hover {
    color: #ff8501;
    padding-left: 5px;
}

/* ===============================
   CONTACT LIST
=================================*/
.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #ccc;
}

.footer-list i {
    color: #ff8501;
    margin-right: 10px;
    font-size: 16px;
}

/* ===============================
   SOCIAL ICONS
=================================*/
.social-container-footer {
    margin-top: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin-right: 10px;
    text-decoration: none;
    color: #ffffff;
    transition: 0.3s;
}

.social-icon:hover {
    background: #ff8501;
    color: #fff;
    transform: translateY(-5px);
}

/* ===============================
   NEWSLETTER
=================================*/
#newsletterForm input {
    background: #1a1a1a;
    border: 1px solid #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 6px;
    width: 100%;
}

#newsletterForm input:focus {
    border-color: #ff8501;
    outline: none;
}

/* .btn-accent{
    background: #ff8501;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 600;
    transition: 0.3s;
} */

.btn-accent:hover {
    background: #e67300;
}

/* ===============================
   ALERT MESSAGES
=================================*/
.alert {
    padding: 15px;
    border-radius: 6px;
    font-size: 14px;
}

.success {
    background: #1e3a2f;
    color: #6fffb0;
}

.error {
    background: #3a1e1e;
    color: #ff8a8a;
}

.hidden {
    display: none;
}



/* ===============================
   COPYRIGHT
=================================*/
.section-footer .text-center p {
    font-size: 14px;
    color: #888;
}

/* ===============================
   RESPONSIVE
=================================*/
@media(max-width:768px) {

    .quick-link {
        margin: 5px 10px;
        font-size: 14px;
    }

    .section-footer {
        text-align: center;
    }

    .footer-list li {
        justify-content: start;
    }


}



.qa-video img {
    width: 400px;
}

/* Section */
.qa-section {
    padding: 160px 15px;
    background: #ff850124;
    padding-bottom: 0px;
}

/* Layout */
.qa-wrapper {
    display: flex;
    gap: 40px;
    align-items: start;
    justify-content: center;
    flex-wrap: wrap;
}

/* Video */
.qa-video {
    flex: 1;
    min-width: 280px;
    max-width: 450px;
    position: relative;
}

.qa-video video {
    width: 100%;
    border-radius: 20px;

    object-fit: cover;
}

/* Soft dark overlay to reduce green */
/* .qa-video::after {
                content: "";
                position: absolute;
                inset: 0;
                background: rgba(0, 0, 0, 0.25);
                border-radius: 20px;
            } */

/* Chat */
.qa-chat-container {
    flex: 1;
    min-width: 300px;
    max-width: 650px;
    padding: 10px 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
}

.vector_card {
    position: absolute;
    bottom: -41px;
    left: 10px;
}

.qa-chat-box {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-height: 150px;
    overflow-y: auto;
    scroll-behavior: smooth;
    padding-right: 5px;

    /* Hide scrollbar - IE, Edge */
    -ms-overflow-style: none;

    /* Hide scrollbar - Firefox */
    scrollbar-width: none;
}

/* Hide scrollbar - Chrome, Safari */
.qa-chat-box::-webkit-scrollbar {
    display: none;
}

/* Smooth Scrollbar */
.qa-chat-box::-webkit-scrollbar {
    width: 6px;
}

.qa-chat-box::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

/* Message */
.qa-msg {
    max-width: 100%;
    padding: 14px 18px;
    border-radius: 18px;
    font-size: 15px;
    line-height: 1.6;
    opacity: 0;
    transform: translateY(25px);
    animation: fadeUp 0.4s ease forwards;
}

.qa-q {
    background: var(--primary);
    align-self: flex-end;
    border-bottom-right-radius: 5px;
    padding: 7px;
    color: #fff;
}

.qa-a {
    background: var(--primary);
    align-self: flex-start;
    color: #fff;
    border-bottom-left-radius: 5px;
    padding: 7px;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing dots */
.typing span {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    margin: 0 2px;
    animation: bounce 1.2s infinite;
}

.typing span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {

    0%,
    80%,
    100% {
        transform: scale(0);
    }

    40% {
        transform: scale(1);
    }
}

/* Separator */
/* .qa-sep {
                height: 1px;
                background: #333;
                margin: 25px 0;
            } */

/* CTA */
.qa-cta {
    text-align: center;
}

.qa-cta a {
    background: var(--primary);
    color: #fff;
    padding: 12px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.qa-cta a:hover {
    opacity: 0.85;
}

/* Responsive */
@media (max-width: 992px) {
    .qa-wrapper {
        flex-direction: column;
    }

}

@media (max-width: 576px) {
    .qa-msg {
        max-width: 90%;
        font-size: 14px;
    }
}


/* Section Background */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fff7ef, #ffe2c6);
}

/* Glass Card */
.contact-card {
    background: rgba(255, 255, 255, 0.7);
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: 0.4s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

/* Floating Input Group */
.floating-group {
    position: relative;
    margin-bottom: 25px;
}

.floating-group input {
    width: 100%;
    padding: 14px 10px;
    border: none;
    border-bottom: 2px solid #ccc;
    background: transparent;
    outline: none;
    font-size: 16px;
    transition: 0.3s;
}

.floating-group label {
    position: absolute;
    top: 14px;
    left: 10px;
    color: #888;
    transition: 0.3s;
    pointer-events: none;
}

/* Animation on focus */
.floating-group input:focus {
    border-color: var(--primary);
}

.floating-group input:focus+label,
.floating-group input:valid+label {
    top: -10px;
    font-size: 12px;
    color: var(--primary);
}

/* Button */
.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 50px;
    background: var(--primary);
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #e67600;
    transform: scale(1.03);
}

/* Responsive */
@media(max-width:768px) {
    .contact-card {
        padding: 40px 25px;
    }
}


/* Background Glow */
.bg-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 133, 1, 0.25), transparent 70%);
    filter: blur(60px);
    z-index: 0;
    animation: float 8s infinite ease-in-out alternate;
}

@keyframes float {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(40px);
    }
}

.ads-section {
    position: relative;
    padding: 70px 0;
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 60px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    transition: 0.4s ease;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.12);
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 30px;
}

.highlight {
    color: var(--primary);
}

.problem-list li,
.solution-list li {
    font-size: 18px;
    margin-bottom: 20px;
    list-style: none;
    position: relative;
    padding-left: 38px;
    font-weight: 500;
}

.problem-list li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    font-size: 20px;
    color: #ff4d4d;
}

.solution-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    font-size: 20px;
    color: var(--primary);
}

.premium-badge {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(45deg, #ff8501, #ffb347);
    color: #fff;
    font-size: 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-weight: 600;
}

.cta-btn {
    background: linear-gradient(45deg, #ff8501, #ff6a00);
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 25px;
    transition: 0.3s ease;
    box-shadow: 0 10px 25px rgba(255, 133, 1, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 133, 1, 0.6);
}

/* Responsive */
@media(max-width:992px) {
    .glass-card {
        padding: 20px;
    }
}

@media(max-width:768px) {
    .section-title {
        font-size: 28px;
    }

    .ads-section {
        padding: 30px 0;
    }

    .section-footer {
        text-align: start;
    }

    .solution-list {
        padding: 0px;
    }

    .section-title {
        font-size: 22px;
    }

    ul.problem-list {
        padding: 0px;
    }

    .qa-section {
        padding: 130px 15px;
    }
}




/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}













/* Section */
.chat-section {
    padding: 60px 0;
}

/* Main Box */
.chat-wrapper {
    background: var(--white);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

/* Left Character */
.chat-character {
    text-align: center;
}

.chat-character img {
    max-width: 280px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.chat-character h4 {
    margin-top: 20px;
    font-weight: 600;
    color: var(--dark);
}

.chat-character span {
    color: var(--primary);
    font-size: 14px;
}

/* Chat Area */
.chat-chat-box {
    height: 420px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    scrollbar-width: none;
    padding-right: 10px;
}

/* Scrollbar */
.chat-chat-box::-webkit-scrollbar {
    width: 6px;
}

.chat-chat-box::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Message Base */
.chat-msg {
    padding: 14px 20px;
    margin-bottom: 15px;
    border-radius: 18px;
    max-width: 85%;
    font-size: 15px;
    line-height: 1.6;
    animation: fadeUp 0.4s ease forwards;
}

/* Question (Client) */
.chat-question {
    background: #eef1f6;
    align-self: flex-start;
    color: #333;
}

/* Answer (NAT) */
.chat-answer {
    background: linear-gradient(45deg, #ff8501, #ff6a00);
    color: #fff;
    align-self: flex-end;
    box-shadow: 0 10px 25px rgba(255, 133, 1, 0.4);
}

/* CTA Button */
.chat-cta {
    margin-top: 25px;
    display: inline-block;
    padding: 12px 32px;
    background: var(--primary);
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.chat-cta:hover {
    background: #e67600;
    transform: translateY(-3px);
}

/* Animation */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media(max-width:992px) {
    .chat-wrapper {
        padding: 30px;
    }

    .chat-character {
        margin-bottom: 40px;
    }
}



/* Blur background */
.modal-backdrop.show {
    backdrop-filter: blur(6px);
}

/* Custom Button */
.open-btn{
    padding:12px 25px;
    font-size:18px;
    border-radius:30px;
}






