

* {
    padding: 0;
    margin: 0;
    font-family: 'Barlow', sans-serif;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Apply transitions only to specific properties for better performance */
div, h1, h2, h3, h4, p, i, a, .header, .head_text {
    transition: background 0.3s, color 0.3s, transform 0.3s, left 0.4s ease;
}



a {text-decoration:none; color:unset;}







::placeholder {font-style:italic;}
/* General Header Styles */
.header {
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); /* Softer shadow */
}

/* Better Login Button Integration */
.login_btn {
    background: #e43737;
    border-radius: 50px !important;
    padding: 8px 20px !important;
}

.login_btn h3, .login_btn i {
    color: white !important;
}

.login_btn:hover i, .login_btn:hover h3{
    
    transform: translateY(-2px);
}



.head_cont {
    display: flex;
    align-items: center;
    gap: 20px;
}

.head_logo img {
    height: 45px;
    width: auto;
}

.head_text {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #333;
    padding: 8px 12px;
    border-radius: 5px;
    transition: 0.3s;
}

.head_text h3 {
    font-size: 15px;
    font-weight: 500;
    margin-left: 8px;
}

.head_text i {
        font-size: 18px;
    color: #3a3b3d;
}

.head_text:hover {
     transform: translateY(-2px);
}

/* Dropdown Menu */
.head_text { position: relative; }

.head_list_box {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    z-index: 1001;
}

.head_text:hover .head_list_box {
    display: block;
}

.head_list {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    color: #444;
}

.head_list:hover {
    background: #eef2f7;
    color: #007bff;
}

/* Mobile Top Bar (Hidden on Desktop) */

.mobile_home_btn {    background: #e43737;
    padding: 10px;
    border-radius: 6px;}
.mobile_header {
                 display: none;
    background: linear-gradient(135deg, #ed6c6c, #f26857, #ffa8a8);
    padding: 10px 20px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(228, 55, 55, 0.2);
    color: #ffffff;
}

.mobile_header img { height: 35px; }

/* Hamburger Icon */
.mobile_home_btn span {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile_home_btn div {
       width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    transition: 0.3s;
}

/* Hamburger Animation to 'X' */
.cross_menu_line .mhline1 { transform: rotate(45deg) translate(5px, 6px); }
.cross_menu_line .mhline2 { opacity: 0; }
.cross_menu_line .mhline3 { transform: rotate(-45deg) translate(5px, -6px); }

/* Outside Click Overlay */
.outside_click_close {
       display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 20%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

@media (max-width: 991px) {
    .mobile_header { display: flex; }

    .header {
               position: fixed;
    top: 0;
    left: -1000px;
    width: 80%;
    height: 100vh;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 25px;
    background: #fff;
    box-shadow: 4px 0 15px rgba(0,0,0,0.2);
    z-index: 10000;
    }

    .head_cont {
        flex-direction: column;
        width: 100%;
        align-items: flex-start;
    }

    .head_text {
           width: -webkit-fill-available;
    padding: 15px;
    border-bottom: 1px solid #f0f0f0;
    }

    .head_list_box {
        position: static;
        box-shadow: none;
        width: 100%;
        padding-left: 20px;
    }
}

/* Hero Container */
.hero1 {
    min-height: 90vh;
    padding: 60px 5% 40px 5%;
    background: radial-gradient(circle at top right, #fdf4f4, #ffffff);
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.cont_grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
}

/* Typography */
.text_lyr h1 {
    font-size: clamp(40px, 6vw, 70px);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
}

.tlyr1 { color: #021314; }
.tlyr2 { color: #e43737; } /* Your Brand Red */
.tlyr3 { 
    display: block;
    -webkit-text-stroke: 1px #021314;
    color: transparent;
}

.text_lyr h2 {
    font-size: 18px;
    color: #555;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 550px;
}

/* Premium Button */
.create_btn {
    display: inline-flex;
    background: #e43737;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 18px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(228, 55, 55, 0.3);
    cursor: pointer;
}

.create_btn i {
    margin-left: 10px;
    transition: 0.3s;
}

.create_btn:hover i {
    transform: translateX(5px);
}

.create_btn:hover {
    background: #021314;
    transform: translateY(-3px);
}

/* Image Layer */
.img_lyr img {
    width: 100%;
    max-width: 600px;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.1));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Google Reviews Badge */
.google_reviews {
    margin-top: 50px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.g_re_box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid #eee;
    padding: 12px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.g_re_logo { height: 25px; }
.g_re_count p { font-weight: 700; color: #021314; font-size: 20px; }
.g_re { height: 15px; }

.g_re_btn {
    font-size: 14px;
    color: #e43737;
    font-weight: 600;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 991px) {
   .cont_grid {
   
    text-align: center;
    display: flex;
    flex-direction: column-reverse;
}
    
    .text_lyr h2 { margin: 0 auto 30px auto; }
    
    .google_reviews {
        flex-direction: column;
        margin-top: 30px;
    }
}

/* Section Styling */
.services {
    padding: 80px 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    /* Cool Mesh Background */
    background-color: #ffffff;
    background-image: 
        radial-gradient(at 0% 0%, rgba(228, 55, 55, 0.05) 0px, transparent 50%), 
        radial-gradient(at 100% 0%, rgba(121, 204, 255, 0.1) 0px, transparent 50%), 
        radial-gradient(at 100% 100%, rgba(249, 177, 89, 0.1) 0px, transparent 50%), 
        radial-gradient(at 0% 100%, rgba(228, 55, 55, 0.05) 0px, transparent 50%);
}

.coming_soon {    font-size: 12px;
    background: linear-gradient(45deg, #e43737, #f15c63);
    width: fit-content;
    color: white;
    padding: 2px 5px;
    border-radius: 16px;
    position: absolute;
    top: 15px;
    left: 18px;}
/* Individual Card */
.service-card {
       background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    position: relative;
    text-align: center;
    border: 1px solid #f0f0f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #e43737;
}

.service-card img {      width: 100%;
    height: 200px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid orange;
    padding: 9px;}

/* Icon Box Design */
.icon-box {
      width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 28px;
    transition: 0.3s;
    position: absolute;
    top: 15px;
    z-index: 2;
    right: 10;
}

.service-card:hover .icon-box {
    transform: rotate(10deg) scale(1.1);
}

/* Dynamic Colors for Icons */
.yellow { background: #fff9e6; color: #f9b159; }
.red { background: #feebeb; color: #e43737; }
.cyan { background: #e6f7ff; color: #17a2b8; }
.blue { background: #ebf2ff; color: #007bff; }
.gold { background: #fff5e6; color: #d4af37; }

/* Text Styling */
.service-card h3 {
    font-size: 22px;
    color: #021314;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* WhatsApp Button */
.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #f8f9fa;
    color: #021314;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
    border: 1px solid #eee;
}

.service-btn i {
    color: #25d366; /* WhatsApp Green */
    font-size: 18px;
}

.service-btn:hover {
    background: #021314;
    color: #fff;
    border-color: #021314;
}



.demo_section {
    padding: 80px 0;
    background: #fbfbfb; /* Light background to separate from hero */
}

.container_header {
    text-align: center;
    margin-bottom: 50px;
}

.title_line {
    width: 60px;
    height: 3px;
    background: #e43737;
    margin: 15px auto;
    border-radius: 2px;
}

/* Card Improvements */
.demo_c {
    background: #fff;
    border-radius: 20px;
    margin: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.img_box {
    overflow: hidden;
    height: 350px; /* Consistent height for all templates */
}

.img_box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s transform;
}

.demo_c:hover .img_box img {
    transform: scale(1.1);
}

/* Badges */
.badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.menu_badge { background: #f9b159; }
.card_badge { background: #007bff; }

/* Overlay & Button */
.demo_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(2, 19, 20, 0.7); /* Your color2 with transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
}

.demo_c:hover .demo_overlay {
    opacity: 1;
}

.view_c_demo {
    background: #e43737;
    color: #fff;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(20px);
    transition: 0.4s;
}

.demo_c:hover .view_c_demo {
    transform: translateY(0);
}


/* Position the Navigation Buttons */
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none; /* Allows clicks to pass through the container */
}

.owl-nav button {
    pointer-events: all; /* Re-enable clicks for the buttons */
    width: 50px;
    height: 50px;
    background: #ffffff !important;
    border-radius: 50% !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1) !important;
    color: #021314 !important;
    font-size: 20px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s !important;
}

.owl-nav button:hover {
    background: #e43737 !important;
    color: #ffffff !important;
}

/* Adjust the positioning slightly outside the container */
.owl-prev { margin-left: -25px; }
.owl-next { margin-right: -25px; }

@media (max-width: 991px) {
    .owl-nav { display: none; } /* Hide arrows on mobile for better touch experience */
}

/* Lower opacity for all cards */
.owl-item {
    opacity: 0.5;
    transition: 0.4s;
}

/* Fully bright only for visible items */
.owl-item.active {
    opacity: 1;
}

/* Add a subtle scale to the center-most item if you use 'center: true' in JS */
.owl-item.center .demo_c {
    transform: scale(1.05);
    border-color: #e43737;
}


.pricing_section {
    padding: 100px 5%;
    background: #f4f7f6;
}

.flex_pricing {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.flex_pricingin {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    width: 350px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.4s;
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Recommended Plan Highlight */
.flex_pricingin.recommended {
    border: 2px solid #e43737;
    transform: scale(1.05);
    z-index: 2;
    box-shadow: 0 20px 40px rgba(228, 55, 55, 0.15);
}

.popular_badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #e43737;
    color: #fff;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.plan_tag {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    color: #888;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.price_box {
    margin: 20px 0;
}

.old_price {
    display: block;
    text-decoration: line-through;
    color: #bbb;
    font-size: 16px;
}


.old_price {
    text-decoration: line-through;
    color: #888;
    display: block; /* Puts it above the main price */
    font-size: 0.9rem;
}

.amount {
    font-size: 2rem;
    font-weight: bold;
}

.pricing-toggle button {
    padding: 8px 16px;
    cursor: pointer;
    border: 1px solid #ddd;
    background: #fff;
    margin-right: 5px;
}

.pricing-toggle button:hover {
    background: #f0f0f0;
}

.amount {
    font-size: 45px;
    font-weight: 900;
    color: #021314;
}

.currency, .duration {
    font-size: 18px;
    color: #666;
}

/* Feature List */
.flex_pricingin ul {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
}

.flex_pricingin ul li {
    padding: 10px 0;
    border-bottom: 1px solid #f9f9f9;
    font-size: 14px;
    color: #444;
}

.flex_pricingin ul li i {
    color: #28a745;
    margin-right: 10px;
}

.new_feat {
    background: #79ccff;
    color: #fff;
    font-size: 9px;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 5px;
    vertical-align: middle;
}

/* Buttons */
.create_btn_pricing {
    display: block;
    padding: 15px;
    background: #021314;
    color: #fff;
    border-radius: 12px;
    font-weight: 700;
    transition: 0.3s;
}

.red_btn {
    background: #e43737;
}

.create_btn_pricing:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 991px) {
    .flex_pricingin.recommended {
        transform: scale(1);
    }
}


.qr_download_section {
    padding: 80px 5%;
    background: #ffffff;
    text-align: center;
}

.pdf_card_slider {
    margin-top: 40px;
}

/* Individual QR Item */
.qr_item {
    background: #f8f9fa;
    border-radius: 25px;
    padding: 20px;
    margin: 15px;
    position: relative;
    overflow: hidden;
    transition: 0.4s ease;
    border: 1px solid #eee;
    box-shadow: 0 10px 20px rgba(0,0,0,0.02);
}

.qr_item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    background: #fff;
    border-color: #e43737;
}

.qr_item img {
    width: auto !important;
    height: 350px !important;
    margin: 0 auto;
    border-radius: 15px;
    transition: 0.5s;
}

/* QR Tag (Top Label) */
.qr_tag {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: #e43737;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

/* Hover Overlay */
.qr_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(228, 55, 55, 0.9); /* Your brand red with transparency */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.4s;
    border-radius: 25px;
}

.qr_item:hover .qr_overlay {
    opacity: 1;
}

.qr_btn {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    border: 2px solid #fff;
    padding: 12px 25px;
    border-radius: 50px;
    transform: scale(0.8);
    transition: 0.3s;
}

.qr_item:hover .qr_btn {
    transform: scale(1);
}


.business_opportunity {
    padding: 100px 5%;
    background: #ffffff;
}

.business_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

/* Card Styling */
.fr_card {
    background: #fdfdfd;
    padding: 40px;
    border-radius: 30px;
    border: 1px solid #eee;
    transition: 0.4s;
    display: flex;
    flex-direction: column;
}

.fr_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: #e43737;
}

/* Premium Card (Dark) */
.premium_fr {
    background: #021314;
    color: #fff;
    border: none;
}

.premium_fr .fr_header i { color: #e43737; }
.premium_fr h2 { color: #fff; }
.premium_fr .fr_list li { color: #ccc; border-bottom: 1px solid #1a2a2b; }

.fr_header {
    text-align: center;
    margin-bottom: 30px;
}

.fr_header i {
    font-size: 40px;
    color: #e43737;
    margin-bottom: 15px;
}

.fr_header h2 {
    font-size: 24px;
    font-weight: 800;
}

.fr_badge {
    background: #e43737;
    color: #fff;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-block;
    margin-top: 10px;
    text-transform: uppercase;
}

/* List Styling */
.fr_list {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.fr_list li {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.fr_list li i {
    color: #e43737;
}

/* Tag Cloud for "Other Services" */
.services_tag_cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.services_tag_cloud span {
    background: #eee;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    color: #555;
}

/* Button */
.offer_btn {
    display: block;
    text-align: center;
    background: #e43737;
    color: #fff;
    padding: 15px;
    border-radius: 15px;
    font-weight: 700;
    transition: 0.3s;
}

.offer_btn.outline {
    background: transparent;
    border: 2px solid #021314;
    color: #021314;
}

.offer_btn:hover {
    background: #021314;
    color: #fff;
    border-color: #021314;
}


.footer_main {
    background: #021314; /* Your Brand Dark Color */
    color: #ffffff;
    padding: 80px 5% 20px;
    font-family: 'Barlow', sans-serif;
}

.footer_container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer_logo {
    height: 50px;
    margin-bottom: 20px;
}

.brand_desc {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer_column h3 {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
}

.footer_column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: #e43737;
}

/* Contact & Links */
.footer_contact_row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #ccc;
}

.footer_contact_row i { color: #e43737; }

.footer_links { list-style: none; }
.footer_links li { margin-bottom: 12px; }
.footer_links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}
.footer_links a:hover { color: #e43737; padding-left: 5px; }

/* Form Styling */
.footer_form textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 15px;
    color: #fff;
    resize: none;
    height: 100px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.footer_form textarea:focus {
    border-color: #e43737;
    outline: none;
    background: rgba(255,255,255,0.08);
}

.footer_submit {
    width: 100%;
    background: #e43737;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.footer_submit:hover { background: #fff; color: #e43737; }

/* Social Icons */
.social_links { display: flex; gap: 15px; margin-top: 20px; }
.social_links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: 0.3s;
}
.social_links a:hover { background: #e43737; transform: translateY(-3px); }

/* Footer Bottom */
.footer_bottom {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    font-size: 13px;
    color: #777;
}

.footer_bottom a { color: #e43737; text-decoration: none; font-weight: 600; }

@media (max-width: 991px) {
    .footer_container { grid-template-columns: 1fr; gap: 40px; }
    .footer_main { text-align: center; }
    .footer_column h3::after { left: 50%; transform: translateX(-50%); }
    .social_links { justify-content: center; }
}

/* Back to Top Button Styling */
.totop_btn {
    display: none; /* Hidden by default */
    position: fixed;
    bottom: 100px; /* Positioned above the WhatsApp float */
    right: 35px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #e43737; /* Your Brand Red */
    color: white;
    cursor: pointer;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 22px;
    box-shadow: 0 4px 15px rgba(228, 55, 55, 0.3);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.totop_btn:hover {
    background-color: #021314; /* Your Brand Dark */
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Subtle pulse animation for better visibility */
@keyframes btnPulse {
    0% { box-shadow: 0 0 0 0 rgba(228, 55, 55, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(228, 55, 55, 0); }
    100% { box-shadow: 0 0 0 0 rgba(228, 55, 55, 0); }
}

.totop_btn {
    animation: btnPulse 2s infinite;
}

.wtsp_chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.wtsp_chat a {
    width: 60px;
    height: 60px;
    background-color: #25d366;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: 0.3s;
    position: relative;
}

/* The Live Notification Dot */
.noti_dot {
    position: absolute;
    top: 2px;
    right: 5px;
    width: 14px;
    height: 14px;
    background: #ff3b30;
    border: 2px solid #fff;
    border-radius: 50%;
}

/* Tooltip that pops up */
.chat_tooltip {
    position: absolute;
    right: 75px;
    top: 50%;
    transform: translateY(-50%);
    background: #021314;
    color: #fff;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.chat_tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #021314;
}

/* Hover Effects */
.wtsp_chat:hover .chat_tooltip {
    opacity: 1;
    visibility: visible;
    right: 80px;
}

.wtsp_chat a:hover {
    transform: scale(1.1) rotate(5deg);
    background-color: #128c7e;
}

/* Continuous Pulse Animation */
@keyframes wtspPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.wtsp_chat a {
    animation: wtspPulse 2s infinite;
}