﻿/********** Template CSS **********/
:root {
    --primary: #06A3DA;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 600 !important;
}


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
    width: 36px;
    height: 36px;
}

.btn-sm-square {
    width: 30px;
    height: 30px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

.testimonial-carousel .owl-item .testimonial-item {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 75px;
    z-index: 99;
}

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

/* Mobile optimization: icon only */

/* ===== GLOBAL FIX: Prevent horizontal scroll ===== */
html, body {
    overflow-x: hidden;
}

/* ===== FOOTER ===== */
.footer-wrapper {
    background-color: #061429; /* Dark navy */
    color: #fff;
}

.footer-about-inner {
    background-color: #00AEEF; /* Bright blue */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    text-align: center;
}

    .footer-about-inner p {
        margin-bottom: 0;
    }

.footer-wrapper .row > div {
    display: flex;
    flex-direction: column;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
#whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 15px; /* Slightly inside screen */
    display: flex;
    align-items: center;
    gap: 5px;
    background: #25d366;
    border-radius: 50px;
    padding: 10px 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 9999;
    max-width: calc(100vw - 20px); /* Never overflow */
    box-sizing: border-box;
}

    #whatsapp-button a {
        display: flex;
        align-items: center;
        text-decoration: none;
    }

    #whatsapp-button i {
        color: white;
        font-size: 36px;
        line-height: 1;
    }

#whatsapp-link {
    color: white;
    font-size: 22px;
    text-decoration: none;
    margin-right: 8px;
}

#close-whatsapp {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    line-height: 1;
}

/* Remove default icon injection */
.whatsapp-float {
    background: none !important;
    text-decoration: none;
}

    .whatsapp-float::before {
        content: none !important;
    }

#whatsapp-button a::before,
#whatsapp-button a::after {
    content: none !important;
}

/* ===== MOBILE OPTIMIZATION ===== */
@media (max-width: 480px) {
    #whatsapp-button {
        padding: 8px; /* Smaller padding */
        gap: 0; /* Remove space between icon and text */
    }

    #whatsapp-link {
        display: none; /* Hide text label */
    }

    #whatsapp-button i {
        font-size: 28px; /* Smaller icon */
    }
}

h1.m-0 {
    display: flex;
    flex-wrap: wrap; /* Allow logo + text to wrap */
    align-items: center;
    white-space: normal; /* Force text to wrap instead of staying in one line */
    overflow-wrap: break-word; /* Break long words if needed */
    font-size: 1.2rem;
}

h1.m-0 img {
    flex-shrink: 0; /* Prevent logo from shrinking oddly */
    height: 28px;
    margin-right: 8px;
}

@media (max-width: 480px) {
    h1.m-0 {
        font-size: 1rem;
    }

        h1.m-0 img {
            height: 24px;
            margin-bottom: 4px;
        }
}
/*here top banner image */


.carousel-blur-wrapper {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

/* Background fade + zoom */
.carousel-blur-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(20px);
    transform: scale(1.1);
    animation: zoomBlur 15s ease-in-out infinite alternate;
    z-index: 1;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Foreground image fade */
.carousel-top-img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: auto;
    max-height: 100vh;
    object-fit: contain;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* Caption elements base */
.carousel-item {
    height: 80vh; /* Same height for all slides */
    min-height: 500px;
    overflow: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures image fills area without distortion */
}

/* Active slide triggers */
.carousel-item.active .carousel-blur-bg {
    opacity: 1;
    transition-delay: 0s;
}

.carousel-item.active .carousel-top-img {
    opacity: 1;
    transition-delay: 0.4s;
}

/* Staggered delays */
.carousel-item.active .caption-item.heading {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.0s;
}

.carousel-item.active .caption-item.subheading {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.4s;
}

.carousel-item.active .caption-item.paragraph {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.8s;
}

.carousel-item.active .caption-item.buttons {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 2.2s;
}

/* Zoom animation */
@keyframes zoomBlur {
    0% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1.2);
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .carousel-blur-wrapper {
        height: 70vh;
    }

    .carousel-top-img {
        max-height: 70vh;
    }
}
.call-link-top,
.email-link-top {
    color: #EEF9FF !important; /* default white text */
    text-decoration: none; /* remove underline */
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.call-link-top:hover,
.email-link-top:hover {
    color: #ffc107; /* gold on hover */
    text-decoration: underline; /* underline on hover */
}
.call-link,
.email-link {
    color: #06A3DA !important; /* default white text */
    text-decoration: none; /* remove underline */
    transition: color 0.3s ease, text-decoration 0.3s ease;
}

.call-link:hover,
.email-link:hover {
    color: #ffc107; /* gold on hover */
    text-decoration: underline; /* underline on hover */
}

.user-menu {
    /* Semi-transparent background */
    background-color: rgba(255, 255, 255, 0.1) !important;
    /* Frosted glass effect */
    backdrop-filter: blur(5px);
    /* Subtle shadow and border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.user-menu .dropdown-item,
.user-menu .dropdown-item i {
    /* White text and icon colors */
    color: #fff !important;
}

.user-menu .dropdown-divider {
    /* Subtle white divider line */
    border-color: rgba(255, 255, 255, 0.2);
}

.user-menu .dropdown-item:hover {
    /* Lighter hover effect */
    background-color: rgba(255, 255, 255, 0.1);
}

/* Style for the logout button to maintain color consistency */
.user-menu .dropdown-item.text-danger i {
    color: #fff !important; /* Keep icon white */
}

.user-menu .dropdown-item.text-danger {
    color: #fff !important; /* Keep text white */
}

.user-menu .dropdown-item.text-danger:hover {
    background-color: rgba(220, 53, 69, 0.2); /* Transparent red hover background */
}

/* Base styling for the dropdown menu */
/*.services-dropdown .dropdown-menu {
    border: none;
    padding: 1.5rem;*/ /* Increased padding for a spacious feel */
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/ /* Softer, more professional shadow */
    /*border-radius: 8px;*/ /* Rounded corners for a modern look */
    /*min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);*/ /* Initial position for animation */
    /*transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);*/ /* A smooth cubic-bezier transition */
/*}*/

    /* Make menu visible and animate on show */
    /*.services-dropdown .dropdown-menu.show {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }*/

/* Styles for the dropdown items */
/*.services-dropdown .dropdown-item {
    font-weight: 500;
    color: #495057;*/ /* A softer text color */
    /*padding: 0.75rem 1rem;
    border-radius: 5px;*/ /* Rounded corners on hover */
    /*margin-bottom: 5px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.services-dropdown .dropdown-item i {
    color: #888;*/ /* Icon color */
    /*transition: color 0.2s ease;
}*/

/* Hover and active states for a professional feel */
/*.services-dropdown .dropdown-item:hover,
.services-dropdown .dropdown-item:focus {
    background-color: #f8f9fa;*/ /* Light background on hover */
    /*color: #007bff;*/ /* Primary color on hover */
/*}

.services-dropdown .dropdown-item:hover i,
.services-dropdown .dropdown-item:focus i {
    color: #007bff;*/ /* Primary color for icon on hover */
/*}*/

/* Style for the dropdown header */
/*.services-dropdown .dropdown-header {
    font-weight: 700;
    color: #6c757d;
    margin-bottom: 0.5rem;
    padding: 0 1rem;
}*/

/* Optional: Center the dropdown menu under the link */
@media (min-width: 992px) {
    .services-dropdown .dropdown-menu {
        left: 70%;
        transform: translateX(-70%) translateY(10px);
    }

    .services-dropdown:hover .dropdown-menu {
        transform: translateX(-70%) translateY(0);
    }
}

.services-menu {
    /* Set a fixed width for the two-column layout */
    width: 840px; /* Adjust this value as needed to fit content */
    /* Center the dropdown for larger screens, overriding default behavior */
    left: 70% !important;
    transform: translateX(-70%) !important;
    /* Adjusted semi-transparent background (10% opaque) */
    background-color: rgba(255, 255, 255, 0.1) !important;
    /* Apply a slight blur effect to the background content */
    backdrop-filter: blur(5px);
    /* Keep shadows and borders subtle */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.services-menu .dropdown-header,
.services-menu .dropdown-item,
.services-menu .dropdown-item i {
    /* Ensure text and icons are fully opaque for readability */
    color: #fff !important;
}

.services-menu .dropdown-item:hover {
    /* Subtle hover effect for feedback */
    background-color: rgba(0, 0, 0, 0.05);
    color: #fff !important;
}

/* Ensure the divider is also subtle */
.services-menu .dropdown-divider {
    border-color: rgba(0, 0, 0, 0.1);
    color: #fff !important;
}
.top-bar {
    height: 50px; /* Example height of your top bar */

    background-color: #f0f0f0;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1001; /* Must be higher than header's z-index */
}
.main-header {
    position: fixed;
    top: 15px;
    left: 0;
    width: 100%;
    z-index: 1100;
    transition: background-color 0.5s ease;
}
/* Initial state: Transparent background */
.header-initial {
    background-color: transparent;
    transition: background-color 0.5s ease;
}

/* Scrolled state: Semi-transparent background */
.header-scrolled {
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    transition: background-color 0.5s ease;
}

/* Adjust the dropdown's background when the header is scrolled */
.header-scrolled .services-menu {
    background-color: rgba(255, 255, 255, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* New rule: Change text color to #132d54 when header is scrolled */
.header-scrolled .services-menu .dropdown-header,
.header-scrolled .services-menu .dropdown-item,
.header-scrolled .services-menu .dropdown-item i {
    color: #132d54 !important;
}

.header-scrolled .services-menu .dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.05); /* Keep a subtle hover background */
    color: #132d54 !important; /* Ensure hover color also matches */
}


/* Chat Bot Related --- Start */
#chatbot-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    background-color: #fff;
    transition: height 0.3s ease-in-out;
}

    /* Add a minimized state */
    #chatbot-container.minimized {
        width: 80px;
        height: 35px; /* Adjust height for the minimized state */
    }

#chatbot-header {
    padding: 0px;
    background-color: #00AEEF;
    color: #fff;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#chatbot-body {
    /* Hide the body by default to start minimized */
    display: none;
}

#chatbot-toggle-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5em;
    cursor: pointer;
}

.chatbot-send-btn {
    border: none;
    background-color: #00AEEF;
    color: #fff;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 5px;
}
/* chat conversation related */
.chat-row {
    display: flex;
    align-items: flex-end;
    margin: 8px;
}

    .chat-row.user {
        justify-content: flex-end;
    }

    .chat-row.bot {
        justify-content: flex-start;
    }

.chat-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 8px;
    flex-shrink: 0;
}

.chat-message {
    max-width: 70%;
    padding: 10px 14px;
    border-radius: 15px;
    font-size: 14px;
    line-height: 1.4;
    word-wrap: break-word;
}

.user-message {
    background-color: #007bff; /* blue */
    color: white;
    border-bottom-right-radius: 5px;
}

.bot-message {
    background-color: #f1f0f0; /* gray */
    color: #333;
    border-bottom-left-radius: 5px;
}

/* --- Mobile responsive (like WhatsApp) --- */
@media (max-width: 768px) {
    .chat-row {
        flex-direction: row;
        justify-content: flex-start !important;
    }

        .chat-row.user {
            justify-content: flex-end !important;
        }

    .chat-message {
        max-width: 100% !important;
        width: calc(100% - 50px); /* leave space for avatar */
    }

    .chat-avatar {
        width: 30px;
        height: 30px;
        margin: 0 5px;
    }
}
/* typeing style*/
.typing {
    display: flex;
    gap: 4px;
    padding: 8px 12px;
    border-radius: 15px;
    background: #f1f0f0;
    color: #555;
    align-items: center;
}

.typing span {
    width: 6px;
    height: 6px;
    background-color: #555;
    border-radius: 50%;
    display: inline-block;
    animation: bounce 1.2s infinite ease-in-out;
}

.typing span:nth-child(1) {
    animation-delay: 0s;
}

.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);
    }
}
/* typeing style*/
/* chat conversation related */


/* Chat Bot Related --- End */