/* Root Variables - Colors from Screenshot */
:root {
    --primary-green: #2a8c4a;
    --secondary-yellow: #f1d643;
    --text-dark: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #ffffff;
    --transition: all 0.3s ease;
    --bg-color: #f8f7f0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
}

/* Navbar Styles */
.navbar {
    background: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.brand-name {
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -1px;
}

.text-primary-green {
    color: var(--primary-green);
}

.nav-link {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-dark) !important;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary-green) !important;
}

.phone-link {
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

/* Button Styling from Screenshot */
.btn-quick-contact {
    background-color: var(--secondary-yellow);
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.btn-quick-contact:hover {
    background-color: #e2c83c;
    transform: translateY(-2px);
}

/* Utilities */
.section-padding {
    padding: 80px 0;
}

    .border-success {
        border-color: #198754 !important;
    }

    .text-success {
        color: #198754 !important;
    }

    .bg-success {
        background-color: #198754 !important;
    }

    .row .col-lg-6>div:hover {
        transform: translateY(-5px);
        transition: 0.3s;
    }





/* BALANCED HERO STYLES */
.hero-industrial-balanced {
    min-height: 65vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-color);
}

.industrial-bg-layer {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Relevant Factory/Water Treatment Image */
    background-image: url('https://images.unsplash.com/photo-1541888946425-d81bb19480c5?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    background-color: var(--bg-color) /* Light overlay for clarity */
    background-blend-mode: overlay;
    z-index: 1;
}

.fw-800 { font-weight: 800; }

.status-dot {
    height: 10px; width: 10px;
    background-color: var(--secondary-yellow);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 5px var(--secondary-yellow);
}

/* Spec Box Styling */
.spec-box {
    padding: 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    border-top: 5px solid var(--primary-green);
    border-inline: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
.spec-label { font-size: 0.7rem; color: #555; font-weight: 700; text-transform: uppercase; text-align: center; display: block; margin-bottom: 5px; }
.spec-value { font-size: 1.6rem; font-weight: 800; color: #000; display: flex; align-items: center; justify-content: center; gap: 8px; }

.badge-fast {
    font-size: 0.7rem;
    background: var(--primary-green);
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
}
/* Realistic Layered Drop Shadow */
.procurement-card {
    background: #ffffff;
    border-radius: 12px;
    border: 1.5px solid #ebebeb; /* Very subtle border */
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    /* Professional Layered Shadow: Ambient + Direct Drop */
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.1), 
        0 10px 25px -5px rgba(0, 0, 0, 0.1),
        0 20px 40px -10px rgba(0, 0, 0, 0.05);
    
    animation: snappyJump 5s infinite;
}

/* Snappy Animation with realistic return */
@keyframes snappyJump {
    0%, 85%, 100% { transform: scale(1) rotate(0deg); }
    88% { transform: scale(1.03) rotate(1.5deg); }   /* Quick Tilt */
    92% { transform: scale(1.03) rotate(-1.5deg); }  /* Quick Tilt Back */
    96% { transform: scale(1.05) rotate(0deg); }     /* Slight Pop */
}

/* Shadow intensifies on focus/hover for depth */
.procurement-card:focus-within {
    animation: none !important;
    transform: translateY(-5px) scale(1.01) !important;
    box-shadow: 
        0 20px 50px -12px rgba(25, 135, 84, 0.15), 
        0 15px 30px -5px rgba(0, 0, 0, 0.08);
    border-color: #198754 !important;
}

/* Clean Separated Heading Area */
.card-head-zone {
    background: #212529;
    padding: 22px;
    text-align: center;
    border-bottom: 4px solid #198754;
}

/* Highlighted Thick Inputs */
.form-control {
    border: 2px solid #dfdfdf !important;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    color: #333;
}

.form-control:focus {
    border-color: #198754 !important;
    background-color: #ffffff !important;
    box-shadow: none !important; /* Keep it clean */
}

.btn-quick-contact {
    background: #198754;
    color: #fff;
    border: none;
    padding: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-transform: uppercase;
    transition: 0.3s;
}




/*------------ urgency strip ---------------*/
  
.urgency-strip {
    background: #ecf0cf; 
    color: #000;
    padding: 10px 0;
    font-weight: 700;
    font-size: 0.85rem;
    overflow: hidden;
    white-space: nowrap;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
}

.ticker-wrapper {
    display: flex;
    animation: ticker 30s linear infinite;
}

.ticker-item {
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-item i {
    color: #d32f2f; /* Alert red for icons */
}

/* Keyframe for the moving text */
@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Red Pulse Dot for "Live" effect */
.live-dot {
    height: 8px;
    width: 8px;
    background-color: #d32f2f;
    border-radius: 50%;
    display: inline-block;
    margin-right: 5px;
    box-shadow: 0 0 8px #d32f2f;
    animation: blink 1s infinite;
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.3; }
    100% { opacity: 1; }
}
/*------------ urgency strip end---------------*/

/* ---------------- Industrial Applications ------------- */
    .transition-hover {
        transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
        cursor: pointer;
    }
    .transition-hover:hover {
        background-color: #f8fff9 !important;
        transform: translateY(-3px);
        box-shadow: 0 4px 12px rgba(0,0,0,0.08) !important;
    }
    .bg-soft-success {
        background-color: #e8f5e9;
    }
    /* Simple 4-column layout for desktop */
    @media (min-width: 992px) {
        .col-lg-3 { width: 25%; }
    }

/* ---------------- Industrial Applications end-------------- */

/* ---------------- DISTRIBUTION HUB ------------ */
    .extra-small { font-size: 0.75rem; }
    .pulse-dot {
        height: 10px;
        width: 10px;
        background-color: #28a745;
        border-radius: 50%;
        display: inline-block;
        animation: pulse 1.5s infinite;
    }
    @keyframes pulse {
        0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7); }
        70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(40, 167, 69, 0); }
        100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(40, 167, 69, 0); }
    }
    .ml-delhi-cta-btn:hover {
        background: #146c43 !important;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(25, 135, 84, 0.3);
    }
/* ---------------- DISTRIBUTION HUB END------------- */


/* Technical Specs Styling */
.ls-2 { letter-spacing: 2px; }

.analysis-card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.analysis-header {
    border-bottom: 2px solid var(--secondary-yellow);
}

.table-hover tbody tr:hover {
    background-color: #f8f9fa;
}

/* Application Cards */
.app-card {
    border-radius: 12px;
    transition: all 0.3s ease;
    background: #fff;
    border-top: 4px solid #f0f0f0 !important;
}

.app-card:hover {
    transform: translateY(-5px);
    border-top-color: var(--primary-green) !important;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05) !important;
}

.app-icon {
    font-size: 2rem;
    line-height: 1;
}

.border-warning {
    border-top-color: var(--secondary-yellow) !important;
}

/* Global Typography adjustment */
.fw-800 { font-weight: 800; }








/* waht is magniusm lime */
/* Clean & Minimalist Styles */
.product-image-container img {
    max-width: 380px;
    height: 380px;
    object-fit: cover;
    background: #fff;
}

.text-secondary {
    color: #555 !important;
    line-height: 1.7;
    font-size: 1.05rem;
}

.dot-green {
    height: 8px;
    width: 8px;
    background-color: var(--primary-green);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.custom-list span {
    color: #333;
}

.bg-light {
    background-color: #f8f9fa !important;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .product-image-container img {
        max-width: 250px;
        height: 250px;
    }
    .ps-lg-4 { text-align: left; }
}







/* Table Specific Styling */
.custom-spec-table {
    border: 1px solid #dee2e6;
    font-size: 0.95rem;
}

.custom-spec-table thead {
    background-color: #004d40; /* Deep industrial green if you prefer, or #212529 for black */
}

.custom-spec-table tbody td {
    padding: 15px !important;
    color: #333;
}

.custom-spec-table .bg-light {
    background-color: #fcfcfc !important;
    color: #000;
}

/* Hover effect for rows */
.custom-spec-table tbody tr:hover {
    background-color: #f1f3f5;
    transition: 0.2s;
}

.italic { font-style: italic; }

@media (max-width: 768px) {
    .custom-spec-table {
        font-size: 0.85rem;
    }
}


/* Premium Dealing UI Styles */
.thumb-box {
    width: 70px;
    height: 70px;
    border: 2px solid #f0f0f0;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.thumb-box img {
    width: 100%; height: 100%; object-fit: cover;
}

.thumb-box.active, .thumb-box:hover {
    border-color: var(--primary-green);
    box-shadow: 0 0 10px rgba(0, 128, 0, 0.1);
}

.main-stage img {
    height: 400px;
    object-fit: cover;
}

.dealing-card {
    border-radius: 8px;
    overflow: hidden;
}

.btn-primary-green {
    background-color: var(--primary-green);
    color: white;
    border: none;
}
.btn-primary-green:hover {
    background-color: #006400;
    color: white;
}

.tracking-wider { letter-spacing: 1.5px; }

@media (max-width: 768px) {
    .main-stage img { height: 300px; }
}






/* SCOPED CTA STYLES - Prefix: .ml-cta- */

.ml-cta-wrapper {
    padding: 0px 0;
    background-color: #ffffff;
}

.ml-cta-card {
    background: #f9fbf2; /* Aligned: Subtle Lime-Tint White */
    border: 1px solid #eef2d7;
    border-radius: 16px;
    overflow: hidden;
    border-left: 6px solid #008000; /* Primary Green Focus */
}

.ml-cta-content {
    padding: 40px;
}

.ml-cta-badge {
    display: inline-block;
    padding: 5px 15px;
    background: #00800015; /* Transparent Green */
    color: #008000; /* Green Text */
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 50px;
    margin-bottom: 20px;
}

.ml-cta-heading {
    font-weight: 800;
    font-size: 2.2rem;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.ml-cta-heading .text-highlight {
    color: #008000; /* Primary Green */
}

.ml-cta-text {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.ml-cta-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.ml-cta-features span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #333;
}

.check-icon {
    color: #008000;
    font-style: normal;
    margin-right: 5px;
}

/* Action Box Styling */
.ml-cta-action-box {
    padding: 50px;
    background: rgba(0,0,0,0.02); /* Subtle contrast */
    border-left: 1px solid #eef2d7;
    text-align: center;
}

.ml-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ml-cta-btn {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-align: left;
}

.ml-btn-whatsapp {
    background: #25d366;
    color: white;
}

.ml-btn-call {
    background: #1a1a1a; /* Professional Industrial Dark */
    color: white;
}

.ml-cta-btn .icon {
    font-size: 1.8rem;
    margin-right: 15px;
}

.ml-cta-btn .btn-label small {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    opacity: 0.9;
}

.ml-cta-btn .btn-label strong {
    font-size: 1.1rem;
}

.ml-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    color: white;
}

.ml-cta-notice {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* Responsive Fix */
@media (max-width: 991px) {
    .ml-cta-content, .ml-cta-action-box { padding: 30px; }
    .ml-cta-heading { font-size: 1.8rem; }
    .ml-cta-action-box { border-left: none; border-top: 1px solid #eef2d7; }
}










/* COMPRESSED FAQ STYLES - Prefix: .ml-faq- */
.ml-faq-wrapper { padding: 60px 0; background: #ffffff; }
.ml-faq-title { font-weight: 900; font-size: 2.0rem; color: #1a1a1a; }
.ml-faq-primary { color: #008000; } /* Set to Primary Green */
.ml-faq-divider { width: 40px; height: 3px; background: #008000; margin-top: 8px; }

.ml-faq-item { 
    border: 1px solid #f2f2f2; 
    border-radius: 4px; 
    margin-bottom: 10px; 
    background: #fff;
    transition: 0.2s ease;
}

.ml-faq-btn {
    width: 100%; padding: 14px 18px; border: none; background: none;
    display: flex; justify-content: space-between; align-items: center;
    font-weight: 700; font-size: 0.9rem; color: #333; text-align: left;
    cursor: pointer;
}

.ml-faq-plus { font-size: 1.1rem; color: #008000; transition: 0.3s; }

.ml-faq-content { 
    max-height: 0; overflow: hidden; transition: 0.3s ease-in-out; 
}

.ml-faq-content p { 
    padding: 0 18px 14px 18px; 
    font-size: 0.85rem; 
    color: #555; 
    margin: 0; 
    line-height: 1.6;
}

/* Active State */
.ml-faq-item.active { border-color: #008000; }
.ml-faq-item.active .ml-faq-content { max-height: 200px; }
.ml-faq-item.active .ml-faq-plus { transform: rotate(45deg); }









/* SCOPED TESTIMONIAL STYLES - Prefix: .ml-test- */
.ml-test-wrapper {
    padding: 60px 0;
    background-color: #ffffff;
}

.ml-test-sub {
    color: #008000;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.ml-test-title {
    font-weight: 800;
    font-size: 2.2rem;
    color: #1a1a1a;
}

.ml-test-primary { color: #008000; }

.ml-test-line {
    width: 60px;
    height: 4px;
    background: #008000;
    margin-top: 15px;
    border-radius: 2px;
}

.ml-test-card {
    background: #fff;
    padding: 40px 30px;
    border: 1px solid #f2f2f2;
    border-radius: 12px;
    height: 100%;
    transition: 0.3s ease;
}

.ml-test-featured {
    border-top: 5px solid #008000;
}

.ml-test-card:hover {
    transform: translateY(-10px);
    border-color: #008000;
}

.ml-test-rating {
    color: #ffc107;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.ml-test-quote {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 25px;
}

.ml-test-info strong {
    display: block;
    color: #1a1a1a;
    font-size: 0.95rem;
}

.ml-test-info span {
    color: #999;
    font-size: 0.85rem;
}

.filter-grayscale {
    filter: grayscale(100%);
}

.ls-1 { letter-spacing: 1px; }

@media (max-width: 991px) {
    .ml-test-card { margin-bottom: 20px; }
}








































/* UNIVERSAL FOOTER STYLES - Prefix: .ml-footer- */
:root {
    --primary-green: #008000;
}

.ml-footer-section {
    padding: 70px 0 0 0; /* No bottom padding here because of the full bar */
    background-color: #ecf0cf; /* Your Synergy theme background */
    border-top: 1px solid #dee2c8;
}

.ml-footer-logo {
    font-weight: 800;
    font-size: 1.6rem;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.ml-footer-logo span {
    color: var(--primary-green);
}

.ml-footer-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 25px;
}

.ml-badge-iso {
    font-size: 0.75rem;
    font-weight: 700;
    background: #fff;
    padding: 6px 15px;
    border: 1px solid #cbd4a2;
    border-radius: 4px;
    color: #333;
}

.ml-footer-heading {
    font-weight: 800;
    font-size: 0.9rem;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.ml-footer-list {
    list-style: none;
    padding: 0;
}

.ml-footer-list li {
    margin-bottom: 12px;
}

.ml-footer-list li a {
    text-decoration: none;
    color: #555;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.ml-footer-list li a:hover {
    color: var(--primary-green);
    padding-left: 8px;
}

.ml-footer-contact p {
    font-size: 0.95rem;
    color: #444;
    margin-bottom: 12px;
}

.ml-text-green {
    color: var(--primary-green) !important;
}

/* FULL WIDTH COPYRIGHT BAR */
.ml-footer-bottom-full {
    background-color: var(--primary-green); /* Covers full width */
    padding: 15px 0;
    margin-top: 50px;
    color: #ffffff;
    font-size: 0.85rem;
}

.ml-footer-social-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.9;
    transition: 0.3s;
}

.ml-footer-social-links a:hover {
    opacity: 1;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .ml-footer-section { text-align: center; }
    .ml-footer-list { margin-bottom: 40px; }
    .ml-footer-bottom-full { padding: 20px 0; }
}








/* SCOPED CITY SECTION - Prefix: .ml-delhi- */
.ml-delhi-wrapper {
    padding: 80px 0;
    background-color: #fcfcfc; /* Very subtle off-white */
}

.ml-delhi-badge {
    display: inline-block;
    padding: 6px 15px;
    background: #e6f2e6;
    color: #008000;
    font-weight: 800;
    font-size: 0.75rem;
    border-radius: 4px;
    margin-bottom: 20px;
}

.ml-delhi-heading {
    font-weight: 800;
    font-size: 2.3rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.ml-delhi-heading .text-green { color: #008000; }

.ml-delhi-text {
    font-size: 1.05rem;
    color: #555;
    margin: 25px 0;
}

/* Stats Box */
.ml-delhi-stats {
    display: flex;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.stat-item { flex: 1; text-align: center; }
.stat-item strong { display: block; font-size: 1.3rem; color: #1a1a1a; }
.stat-item span { font-size: 0.8rem; color: #888; text-transform: uppercase; }
.stat-divider { width: 1px; background: #eee; margin: 0 20px; }

/* List */
.ml-delhi-list { list-style: none; padding: 0; }
.ml-delhi-list li { margin-bottom: 12px; font-weight: 600; font-size: 0.95rem; color: #444; }
.ml-delhi-list li span { color: #008000; margin-right: 10px; }

/* Supply Card */
.ml-delhi-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border-top: 5px solid #1a1a1a;
}

.card-header-status {
    background: #f8f9fa;
    padding: 15px 25px;
    font-size: 0.8rem;
    font-weight: 800;
    color: #444;
    display: flex;
    align-items: center;
}

.pulse-dot {
    height: 8px; width: 8px; background: #22c55e;
    border-radius: 50%; display: inline-block; margin-right: 10px;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.4);
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.card-body-content { padding: 30px; }

.supply-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.95rem;
}

.status-green { color: #008000; font-weight: 700; }
.status-orange { color: #f59e0b; font-weight: 700; }

.ml-delhi-cta-btn {
    display: block;
    text-align: center;
    background: #008000;
    color: #fff;
    padding: 15px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    transition: 0.3s;
}

.ml-delhi-cta-btn:hover { background: #006400; color: #fff; transform: translateY(-3px); }


/*------------ footer -------------*/
    .floating-contact-wrap {
        position: fixed;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);

        display: flex;
        flex-direction: row;

        gap: 20px;
        padding: 12px 30px;
        background-color: var(--primary-green);

        border-radius: 100px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        z-index: 9999;
        backdrop-filter: blur(8px);

        border: 1px solid rgba(255, 255, 255, 0.1);
        align-items: center;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }


    .fab-btn {
        width: 55px;
        height: 55px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white !important;
        text-decoration: none !important;
        font-size: 22px;
        transition: all 0.3s ease;
        position: relative;
    }


    .fab-whatsapp {
        background-color: #25d366;
    }

    .fab-call {
        background-color: #fbbf24;
        color: #000 !important;
    }


    .fab-mail {
        background-color: #3b82f6;
    }




    .fab-whatsapp::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #25d366;
        border-radius: 50%;
        z-index: -1;
        animation: pulse-green 2s infinite;
    }


    .fab-call i {
        animation: shake-icon 4s infinite;
    }


    .fab-btn:hover {
        transform: scale(1.15) translateY(-5px);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    }


    @keyframes pulse-green {
        0% {
            transform: scale(1);
            opacity: 0.7;
        }

        100% {
            transform: scale(1.6);
            opacity: 0;
        }
    }

    @keyframes shake-icon {

        0%,
        90%,
        100% {
            transform: rotate(0);
        }

        92% {
            transform: rotate(20deg);
        }

        94% {
            transform: rotate(-20deg);
        }

        96% {
            transform: rotate(20deg);
        }

        98% {
            transform: rotate(-20deg);
        }
    }


    .fab-btn::before {
        content: attr(data-label);
        position: absolute;
        bottom: 75px;

        left: 50%;
        transform: translateX(-50%);
        background: #1e293b;
        color: #fff;
        padding: 6px 14px;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 700;
        white-space: nowrap;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .fab-btn:hover::before {
        opacity: 1;
        visibility: visible;
        bottom: 85px;
    }


    @media (max-width: 768px) {
        .floating-contact-wrap {
            bottom: 0;
            left: 0;
            transform: none;
            width: 100%;
            border-radius: 0;
            padding: 15px 0;
            gap: 0;
            justify-content: space-around;
            background-color: #0f172a;

            border: none;
            border-top: 2px solid #fbbf24;

        }

        .fab-btn {
            width: 50px;
            height: 50px;
            font-size: 20px;
        }

        .fab-btn::before {
            display: none;
        }


        .fab-whatsapp::after {
            display: none;
        }
    }
/*----------------footer end-----------------*/