@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

body {
    font-family: 'Poppins', sans-serif;
}

/* Navbar */
.custom-navbar {
    background: #fff;
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

/* Logo Image */
.navbar-brand img {
    height: 50px;
    /* adjust based on your logo */
    width: auto;
    object-fit: contain;
}

/* Nav Links */
.navbar-nav .nav-link {
    font-size: 15px;
    color: #444;
    margin: 0 14px;
    position: relative;
    transition: 0.3s;
}

/* Active Link */
.navbar-nav .nav-link.active {
    color: #ff3d00;
    font-weight: 600;
}

/* Underline effect */
.navbar-nav .nav-link.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: #ff3d00;
    border-radius: 2px;
}

/* Hover */
.navbar-nav .nav-link:hover {
    color: #ff3d00;
}

/* Button */
.btn-order {
    background: linear-gradient(45deg, #ff6a00, #ff2d2d);
    color: #fff;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 80, 0, 0.3);
    color: #fff;
}

/* Mobile Toggle Fix */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Align items properly */
.navbar {
    align-items: center;
}

.navbar-brand img {
    transition: 0.3s;
}

.navbar-brand img:hover {
    transform: scale(1.05);
}

@media (max-width: 991px) {
    .navbar-nav {
        text-align: center;
        margin-top: 15px;
    }

    .btn-order {
        display: block;
        margin: 15px auto;
    }
}

/* Colors */
.text-orange {
    color: #ff6a00;
}

.btn-orange {
    background: linear-gradient(45deg, #ff6a00, #ff2d2d);
    color: #fff;
    border: none;
    padding: 10px 20px;
}

.btn-orange:hover {
    opacity: 0.9;
}

.btn-outline-orange {
    border: 2px solid #ff6a00;
    color: #ff6a00;
}

/* Hero */
.hero {
    height: 500px;
}

.hero-slide {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-slide h4 {
    font-family: 'Pacifico', cursive;
    font-size: 34px;
    color: #8b5a2b;
    letter-spacing: 1px;
}

.hero-text {
    font-size: 18px;
    color: #8b5a2b;
    /* soft dark grey */
    line-height: 1.6;
    font-weight: 400;
    max-width: 450px;
    letter-spacing: 0.5px;
}

.hero-subtext {
    font-size: 15px;
    color: #a06b3b;
    /* light grey */
    line-height: 1.6;
    margin-top: 8px;
    max-width: 486px;
}

/* Dark overlay for readability */
.hero-slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 60px;
    font-weight: 800;
    background: linear-gradient(90deg, #ff8a00, #ff2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
    color: transparent;
    text-shadow: 0 5px 15px rgba(255, 100, 0, 0.3);
}

/* Buttons */
/* Orange Button */
.btn-orange {
    background: linear-gradient(45deg, #ff6a00, #ff2d2d);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 80, 0, 0.3);
}

/* Outline Button */
.btn-outline-orange {
    border: 2px solid #ff6a00;
    color: #ff6a00;
    padding: 10px 22px;
    border-radius: 30px;
    font-weight: 500;
    transition: 0.3s;
    background: transparent;
}

.btn-outline-orange:hover {
    background: linear-gradient(45deg, #ff6a00, #ff2d2d);
    color: #fff;
    border: none;
}

/* Icon spacing */
.btn i {
    font-size: 16px;
}

.btn:hover i {
    transform: translateX(3px);
    transition: 0.3s;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-item.active .hero-title,
.carousel-item.active .hero-text,
.carousel-item.active .hero-subtext,
.carousel-item.active h4 {
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-item {
    transition: transform 1s ease-in-out;
}

/* Background zoom effect */
.hero-slide {
    transform: scale(1);
    transition: transform 4s ease;
}

.carousel-item.active .hero-slide {
    transform: scale(1.08);
}

.hero-title,
.hero-text,
.hero-subtext,
.hero h4 {
    opacity: 0;
    transform: translateY(30px);
}

.carousel-item.active .hero-title {
    animation: fadeUp 0.8s ease forwards;
}

.carousel-item.active .hero-text {
    animation: fadeUp 1s ease forwards;
}

.carousel-item.active .hero-subtext {
    animation: fadeUp 1.2s ease forwards;
}

.carousel-item.active h4 {
    animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Features */
/* Section spacing */
.features-section {
    margin-top: -70px;
    position: relative;
    z-index: 5;
}

/* White card background */
.features-wrapper {
    background: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Each item */
.feature-item {
    position: relative;
    padding: 10px;
}

/* Divider line */
.feature-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: #eee;
}

/* Icon circle */
.icon-box {
    width: 60px;
    height: 60px;
    margin: 0 auto 12px;
    background: linear-gradient(45deg, #ff6a00, #ff2d2d);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box i {
    color: #fff;
    font-size: 24px;
}

/* Title */
.feature-item h6 {
    font-weight: 600;
    margin-top: 10px;
    color: #222;
}

/* Text */
.feature-item p {
    font-size: 14px;
    color: #777;
    margin: 0;
}

/* Responsive fix */
@media (max-width: 768px) {
    .feature-item:not(:last-child)::after {
        display: none;
    }
}

/* Menu */
.menu .card {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
}

.menu .card img {
    border-radius: 15px 15px 0 0;
}



/* Section */
.product-section {
    background: #fffaf6;
}

/* Stylish Heading */
.sub-title {
    font-family: 'Pacifico', cursive;
    color: #ff7a00;
    font-size: 22px;
}

.main-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 10px;
}

.main-title span {
    background: linear-gradient(45deg, #ff6a00, #ff2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Card */
.product-card {
    border-radius: 18px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
    position: relative;
    color: #333;
}

/* Different Backgrounds */
.bg1 {
    background: #fff3e0;
}

.bg2 {
    background: #f3f9ff;
}

.bg3 {
    background: #fff0f5;
}

.bg4 {
    background: #f4fff6;
}

/* Image */
.product-card img {
    width: 100%;
    height: 150px;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Title */
.product-card h6 {
    font-weight: 600;
}

/* Description */
.desc {
    font-size: 13px;
    color: #666;
    min-height: 40px;
}

/* Price */
.price {
    font-size: 18px;
    font-weight: 700;
    color: #ff3d00;
}

/* Button */
.btn-cart {
    background: linear-gradient(45deg, #ff6a00, #ff2d2d);
    color: #fff;
    border-radius: 25px;
    padding: 8px 18px;
    font-size: 14px;
    margin-top: 8px;
    display: inline-block;
    transition: 0.3s;
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 80, 0, 0.3);
    color: #fff;
}

/* Hover */
.product-card:hover {
    transform: translateY(-8px);
}

/* Badge */
.badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #ff6a00;
    color: #fff;
    font-size: 11px;
    padding: 5px 10px;
    border-radius: 20px;
}

/* Price Wrapper */
.price {
    font-size: 18px;
    font-weight: 700;
    color: #ff3d00;
    margin-bottom: 10px;
}

/* Old Price (Deleted) */
.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
    margin-right: 8px;
}

/* Button */
.btn-cart {
    background: linear-gradient(45deg, #ff6a00, #ff2d2d);
    color: #fff;
    border-radius: 25px;
    padding: 8px 16px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.btn-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 80, 0, 0.3);
    color: #fff;
}

/* Icon */
.btn-cart i {
    font-size: 14px;
}

/* Section spacing */
.ad-banner {
    padding: 40px 0;
    background: #fff;
}

/* Banner wrapper */
.banner-wrapper {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

/* Image */
.banner-wrapper img {
    width: 100%;
    display: block;
}



/* Section */
.about-section {
    background: #fffaf6;
}

/* Image */

.about-img img {
    width: 600px;
    height: 400px;
    object-fit: cover;
    /* image stretch হবে না */
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

/* Content */
.about-sub {
    font-family: 'Pacifico', cursive;
    color: #ff7a00;
    font-size: 20px;
}

.about-title {
    font-size: 32px;
    font-weight: 700;
    margin: 10px 0;
}

.about-title span {
    background: linear-gradient(45deg, #ff6a00, #ff2d2d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */
.about-text {
    color: #666;
    line-height: 1.7;
}

/* Features */
.about-features {
    margin-top: 15px;
}

.about-features div {
    margin-bottom: 8px;
    font-size: 15px;
}

.about-features i {
    color: #ff3d00;
    margin-right: 8px;
}

/* Button reuse */
.btn-orange {
    background: linear-gradient(45deg, #ff6a00, #ff2d2d);
    color: #fff;
    border-radius: 30px;
    padding: 10px 22px;
    transition: 0.3s;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 80, 0, 0.3);
    color: #fff;
}

/* Team Section */
.team-section {
    background: #fffaf6;
}

/* Card */
.team-card {
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Image */
.team-img {
    width: 120px;
    height: 120px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #ff6a00;
}

.team-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Name */
.team-card h5 {
    font-weight: 600;
}

/* Role */
.role {
    color: #ff3d00;
    font-size: 14px;
    margin-bottom: 10px;
}

/* Social Icons */
.social-icons a {
    display: inline-block;
    margin: 0 5px;
    width: 35px;
    height: 35px;
    line-height: 35px;
    border-radius: 50%;
    background: #f1f1f1;
    color: #444;
    transition: 0.3s;
}

.social-icons a:hover {
    background: #ff3d00;
    color: #fff;
}

/* Hover */
.team-card:hover {
    transform: translateY(-8px);
}

/* Quote Section */
.team-quote {
    background: linear-gradient(45deg, #ff6a00, #ff2d2d);
    color: #fff;
    padding: 25px;
    border-radius: 15px;
    max-width: 800px;
    margin: auto;
    font-size: 18px;
    font-style: italic;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Section */
.distributor-section {
    background: #fff;
}

/* Left Content */
.dist-text {
    color: #666;
    margin: 15px 0;
}

/* Points */
.dist-points {
    list-style: none;
    padding: 0;
}

.dist-points li {
    margin-bottom: 8px;
    font-size: 15px;
}

.dist-points i {
    color: #ff3d00;
    margin-right: 8px;
}

/* Form Box */
.dist-form {
    background: #fffaf6;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Inputs */
.dist-form .form-control {
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 10px 15px;
    font-size: 14px;
}

.dist-form .form-control:focus {
    border-color: #ff6a00;
    box-shadow: none;
}

/* Button */
.btn-orange {
    background: linear-gradient(45deg, #ff6a00, #ff2d2d);
    color: #fff;
    border-radius: 30px;
    padding: 10px;
    transition: 0.3s;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 80, 0, 0.3);
    color: #fff;
}

/* Section */
.gallery-section {
    background: #fffaf6;
}

/* Item */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
}

/* Image */
.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s;
}

/* Hover Zoom */
.gallery-item:hover img {
    transform: scale(1.08);
}

/* Overlay */
.gallery-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 61, 0, 0.2);
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Section */
.contact-section {
    background: #fff;
}

/* Info */
.contact-info h5 {
    font-weight: 600;
}

.contact-info p {
    color: #666;
    margin: 10px 0 20px;
}

/* Info Box */
.info-box {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 14px;
}

.info-box i {
    width: 40px;
    height: 40px;
    background: #ff6a00;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

/* Form Box */
.contact-form {
    background: #fffaf6;
    padding: 30px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Inputs */
.contact-form .form-control {
    border-radius: 10px;
    border: 1px solid #eee;
    padding: 10px 15px;
    font-size: 14px;
}

.contact-form .form-control:focus {
    border-color: #ff6a00;
    box-shadow: none;
}

/* Button */
.btn-orange {
    background: linear-gradient(45deg, #ff6a00, #ff2d2d);
    color: #fff;
    border-radius: 30px;
    padding: 10px 25px;
    transition: 0.3s;
}

.btn-orange:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 80, 0, 0.3);
    color: #fff;
}

/* Section */
.newsletter-section {
    background: linear-gradient(45deg, #ff6a00, #ff2d2d);
    color: #fff;
}

/* Box */
.newsletter-box {
    max-width: 700px;
    margin: auto;
}

/* Title */
.news-title {
    font-size: 32px;
    font-weight: 700;
}

.news-title span {
    text-decoration: underline;
}

/* Text */
.news-text {
    margin-top: 10px;
    opacity: 0.9;
}

/* Form */
.newsletter-form .form-control {
    border-radius: 30px 0 0 30px;
    padding: 12px 20px;
    border: none;
}

.newsletter-form .btn {
    border-radius: 0 30px 30px 0;
    padding: 12px 25px;
    background: #fff;
    color: #ff3d00;
    font-weight: 600;
}

/* Hover */
.newsletter-form .btn:hover {
    background: #000;
    color: #fff;
}

/* Footer */
.footer-section {
    background: #111;
    color: #ccc;
}

/* Logo */
.footer-logo {
    width: 100%;
    background-color: #302e2e38;
}

/* Titles */
.footer-title {
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Text */
.footer-text {
    font-size: 14px;
    line-height: 1.6;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #ff6a00;
}

/* Contact icons */
.footer-section .pr-1 {
    color: #ff6a00;
    margin-right: 8px;
}

/* SOCIAL ICON FIX (IMPORTANT) */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    /* FIX */
    align-items: center;
    /* vertical center */
    justify-content: center;
    /* horizontal center */
    background: #222;
    color: #fff;
    border-radius: 50%;
    font-size: 16px;
    transition: 0.3s;
}

.footer-social a:hover {
    background: #ff3d00;
}

/* Divider */
.footer-section hr {
    border-color: #333;
}

/* Bottom text */
.footer-section p {
    font-size: 14px;
}


/* MObile css */

@media (max-width: 768px) {

    /* Hero */
    .hero-slide {
        padding: 15px;
    }

    .hero,
    .hero-slide {
        height: 420px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero h4 {
        font-size: 22px;
    }

    .hero-text {
        font-size: 14px;
        max-width: 100%;
        width: 239px;
    }

    .hero-subtext {
        font-size: 10px;
        width: 219px;
    }

    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
        position: absolute;
        top: 77px;
        left: 0;
        z-index: 9;
        width: 100%;
    }

    .features-section {
        margin-top: -42px;
        position: relative;
        z-index: 5;
    }

    .about-sub {
        margin-top: 10px;
    }

    /* Buttons */
    .btn-orange,
    .btn-outline-orange {
        display: block;
        width: 39%;
        margin-bottom: 10px;
        text-align: center;
        font-size: 10px;
        padding: 3px 10px;
        font-size: 12px;
        border-radius: 10px;
    }

    /* About */
    .about-img img {
        width: 100%;
        height: auto;
    }

    .about-title {
        font-size: 24px;
    }

    .btn-cart {
        background: linear-gradient(45deg, #ff6a00, #ff2d2d);
        color: #fff;
        border-radius: 25px;
        padding: 5px 14px;
        font-size: 14px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        transition: 0.3s;
    }

    .price {
        font-size: 16px;
    }

    .desc {
        font-size: 12px;
    }

    .main-title {
        font-size: 20px;
    }

    /* Team */
    .team-card {
        margin-bottom: 20px;
    }

    /* Distributor */
    .dist-form {
        margin-top: 20px;
    }

    /* Gallery */
    .gallery-item img {
        height: 180px;
    }

    /* Contact */
    .contact-form {
        margin-top: 20px;
    }

    /* Newsletter */
    .news-title {
        font-size: 24px;
    }

    .newsletter-form .form-control {
        border-radius: 30px;
        margin-bottom: 10px;
    }

    .newsletter-form .btn {
        border-radius: 30px;
        width: 100%;
    }

    /* Footer */
    .footer-section .col-md-3 {
        margin-bottom: 20px;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }
}

/* tablet css */

@media (min-width: 769px) and (max-width: 1024px) {

    /* Hero */
    .hero-title {
        font-size: 42px;
    }

    .hero-text {
        font-size: 16px;
    }

    /* About */
    .about-img img {
        width: 100%;
        height: auto;
    }

    /* Team */
    .team-card {
        margin-bottom: 20px;
    }

    /* Product */
    .product-card img {
        height: 120px;
    }

    /* Gallery */
    .gallery-item img {
        height: 200px;
    }

    /* Footer */
    .footer-logo {
        width: 80%;
    }
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: #fff;
        padding: 15px;
        border-radius: 10px;
    }
}

/* PRELOADER */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #ff6a00, #ff2d2d);
    top: 0;
    left: 0;
    z-index: 9999;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Wrapper */
.loader-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
}

/* SPINNER (rotates only this) */
.loader-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255,255,255,0.2);
    border-top: 4px solid #fff;
    border-radius: 50%;

    animation: spin 1.2s linear infinite;
}

/* LOGO (center, NOT rotating) */
.loader-logo-box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 180px;
    height: 180px;
    background: #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOGO IMAGE (zoom only) */
.loader-logo-box img {
    width: 100%;
    animation: zoomPulse 1.5s ease-in-out infinite;
}

/* SPIN */
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* ZOOM */
@keyframes zoomPulse {
    0%   { transform: scale(1); }
    50%  { transform: scale(1.15); }
    100% { transform: scale(1); }
}
.loader-logo-box {
    box-shadow: 0 0 25px rgba(255,255,255,0.6);
}

.chbot-wrapper {
  position: fixed;
  bottom: 120px;
  right: 25px;
  z-index: 1000;
}

.chbot-toggle {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: #f77207;
  color: #fff;
  border: none;
  font-size: 22px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.chbot-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
}

.chbot-box {
  position: absolute;
     bottom: 88px;
    right: 22px;
  width: 220px;
  background: #fff;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: none;
}

.chbot-box h6 {
  margin-bottom: 10px;
  font-weight: 600;
}

.chbot-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: #25d366;
  color: #fff;
  border-radius: 6px;
  margin-bottom: 8px;
  text-decoration: none;
  font-size: 14px;
}

.chbot-option.vid {
  background: #003af8;
}

.bg-info {
  background: #ff0000 !important;
}

.chbot-option:hover {
  opacity: 0.9;
}

/* Caller Image */
.chbot-icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  animation: blPulse 1.5s infinite;
  box-shadow: 0 0 0 rgba(40, 167, 69, 0.7);
}

/* Pulse Animation */
@keyframes blPulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    opacity: 1;
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 15px rgba(40, 167, 69, 0);
    opacity: 0.9;
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    opacity: 1;
  }
}