/*
Theme Name: ICSSA Deluxe
Author: AB
Version: 4.0
Text Domain: icssa-deluxe
Description: Premium bilingual corporate WordPress theme for ICSSA Digital Experience 2026.
*/

:root {
    --bg: #f4f7fb;
    --surface: #ffffff;
    --surface-soft: #e8eef6;
    --surface-strong: #d7e5f3;
    --ink: #071727;
    --text: #102238;
    --muted: #66758a;
    --line: rgba(12, 40, 72, .14);
    --primary: #0058b7;
    --primary-strong: #003d82;
    --accent: #16a0c4;
    --gold: #b68a35;
    --navy: #071324;
    --shadow: 0 24px 70px rgba(8, 28, 52, .12);
    --radius: 8px;
    --container: 1180px;
}

body.dark-mode {
    --bg: #07101d;
    --surface: #0c1a2d;
    --surface-soft: #102742;
    --surface-strong: #193b62;
    --ink: #f7fbff;
    --text: #eef6ff;
    --muted: #aebdd0;
    --line: rgba(255, 255, 255, .13);
    --primary: #63adff;
    --primary-strong: #9acbff;
    --accent: #53d8f5;
    --shadow: 0 24px 70px rgba(0, 0, 0, .35);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
}
body, button, input, textarea, select { letter-spacing: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid rgba(22, 160, 196, .55); outline-offset: 4px; }

.skip-link {
    position: fixed;
    left: 16px;
    top: 16px;
    z-index: 999;
    transform: translateY(-140%);
    padding: 12px 16px;
    color: #fff;
    background: var(--primary-strong);
    border-radius: var(--radius);
}
.skip-link:focus { transform: translateY(0); }

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: transform .25s ease;
}

.market-ticker {
    height: 34px;
    color: #dce9f7;
    background: #050d19;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    overflow: hidden;
}
.ticker-track {
    display: flex;
    align-items: center;
    gap: 28px;
    width: max-content;
    min-width: 100%;
    height: 34px;
    padding-left: max(20px, calc((100vw - var(--container)) / 2));
    animation: tickerMove 42s linear infinite;
}
.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
    font-size: 12px;
}
.ticker-item b { color: #fff; }
.ticker-item em { color: #91a2ba; font-style: normal; }
.ticker-item i { font-style: normal; font-size: 10px; }
.ticker-item .up, .up { color: #62d394; }
.ticker-item .down, .down { color: #ff7b7b; }
@keyframes tickerMove {
    from { transform: translateX(0); }
    to { transform: translateX(-22%); }
}

.header-shell {
    width: min(1240px, calc(100% - 32px));
    min-height: 72px;
    margin: 12px auto 0;
    padding: 12px 16px 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #0c1b2f;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    box-shadow: 0 18px 55px rgba(0, 35, 76, .13);
    backdrop-filter: blur(18px);
    transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.is-scrolled .header-shell {
    background: rgba(255, 255, 255, .97);
    border-color: rgba(7, 23, 39, .1);
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 232px;
}
.brand img {
    width: 104px;
    height: 48px;
    object-fit: contain;
}
.brand-copy { display: grid; gap: 1px; }
.brand-copy strong { color: var(--primary-strong); font-size: 13px; }
.brand-copy span {
    max-width: 180px;
    color: #65758a;
    font-size: 10px;
    line-height: 1.35;
    text-transform: uppercase;
}

.primary-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: #182a42;
    font-size: 13px;
    font-weight: 800;
}
.primary-nav a {
    position: relative;
    padding: 8px 0;
}
.primary-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}
.primary-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 9px; }
.button, .icon-button, .language-toggle {
    border: 0;
    border-radius: 999px;
}
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    font-size: 14px;
    font-weight: 900;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 18px 36px rgba(0, 88, 183, .24);
}
.button-secondary {
    color: var(--text);
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--line);
}
.button-small {
    min-height: 42px;
    padding: 0 17px;
    color: #fff;
    background: var(--navy);
}
.icon-button, .language-toggle {
    min-width: 42px;
    height: 42px;
    color: #071727;
    background: #eef4fb;
    font-size: 13px;
    font-weight: 900;
}
.theme-icon {
    display: block;
    width: 18px;
    height: 18px;
    margin: auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #0a66c2 0 50%, #fff 50% 100%);
    box-shadow: inset 0 0 0 2px rgba(7, 22, 41, .18);
}
.language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 12px;
}
.language-toggle span:first-child { color: var(--primary-strong); }

.hero {
    position: relative;
    min-height: 820px;
    padding: 190px 0 110px;
    color: #fff;
    overflow: hidden;
    background: #061223;
}
.hero-media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(100deg, rgba(4, 15, 29, .98), rgba(0, 74, 150, .82) 48%, rgba(6, 18, 35, .48)),
        radial-gradient(circle at 78% 22%, rgba(22, 160, 196, .32), transparent 34%),
        linear-gradient(180deg, transparent 58%, rgba(3, 9, 18, .85)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 74px),
        repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 74px);
}
.hero-media::before {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 46%;
    background:
        linear-gradient(180deg, transparent, rgba(2, 8, 16, .78)),
        linear-gradient(90deg, transparent 0 5%, rgba(24,160,201,.55) 5% 11%, transparent 11% 14%, rgba(255,255,255,.12) 14% 17%, transparent 17% 22%, rgba(0,88,183,.62) 22% 31%, transparent 31% 35%, rgba(255,255,255,.1) 35% 40%, transparent 40% 46%, rgba(22,160,196,.45) 46% 56%, transparent 56% 60%, rgba(255,255,255,.12) 60% 65%, transparent 65% 70%, rgba(0,88,183,.52) 70% 79%, transparent 79% 84%, rgba(22,160,196,.42) 84% 92%, transparent 92%);
    clip-path: polygon(0 70%, 7% 70%, 7% 38%, 13% 38%, 13% 70%, 20% 70%, 20% 22%, 28% 22%, 28% 70%, 34% 70%, 34% 44%, 40% 44%, 40% 70%, 48% 70%, 48% 15%, 56% 15%, 56% 70%, 63% 70%, 63% 35%, 69% 35%, 69% 70%, 77% 70%, 77% 25%, 84% 25%, 84% 70%, 91% 70%, 91% 42%, 97% 42%, 97% 70%, 100% 70%, 100% 100%, 0 100%);
    opacity: .9;
}
.hero-media::after {
    content: "";
    position: absolute;
    inset: 18% 8% auto auto;
    width: min(520px, 46vw);
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    background:
        radial-gradient(circle, transparent 0 38%, rgba(255,255,255,.1) 39% 40%, transparent 41%),
        repeating-linear-gradient(25deg, transparent 0 17px, rgba(255,255,255,.08) 18px 19px);
    opacity: .32;
}
.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 58px;
}
.hero-copy { max-width: 790px; }
.eyebrow {
    margin: 0 0 18px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}
.hero h1, .section-heading h2, .final-cta h2, .contact-section h2 {
    margin: 0;
    line-height: 1;
    font-weight: 900;
}
.hero h1 {
    max-width: 860px;
    font-size: clamp(48px, 7vw, 88px);
}
.hero-lead {
    max-width: 680px;
    margin: 28px 0 32px;
    color: rgba(255, 255, 255, .8);
    font-size: 19px;
    line-height: 1.75;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-note {
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .72);
    font-size: 14px;
}
.command-panel {
    padding: 30px;
    color: #071727;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.command-panel span {
    color: var(--primary-strong);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}
.command-panel strong {
    display: block;
    margin: 18px 0 6px;
    color: var(--primary-strong);
    font-size: 58px;
    line-height: .92;
}
.command-panel p { color: #58697f; line-height: 1.65; }
.panel-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 22px; }
.panel-grid b {
    padding: 14px;
    background: #eef5fb;
    border: 1px solid rgba(0, 88, 183, .13);
    border-radius: var(--radius);
    text-align: center;
}

.trust-strip { position: relative; z-index: 2; margin-top: -48px; padding-bottom: 42px; }
.metric-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.metric-card, .value-card, .insight-card, .contact-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.metric-card { min-height: 150px; padding: 24px; }
.metric-card strong { display: block; color: var(--primary-strong); font-size: 42px; line-height: 1; }
.metric-card span { display: block; margin-top: 12px; color: var(--muted); font-weight: 800; }

.section { padding: 104px 0; }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading.wide { max-width: 920px; }
.section-heading.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-heading h2, .contact-section h2, .final-cta h2 {
    color: var(--text);
    font-size: clamp(34px, 5vw, 58px);
}
.section-heading p {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}
.split-layout, .story-grid, .clients-grid, .tools-grid, .contact-grid {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1fr);
    gap: 56px;
    align-items: start;
}
.challenge-section { background: var(--surface); }
.question-stack { display: grid; gap: 13px; }
.question-stack article {
    padding: 22px 24px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--text);
    font-weight: 850;
}

.story-section {
    background:
        linear-gradient(135deg, rgba(0, 88, 183, .08), transparent 42%),
        var(--bg);
}
.visual-frame {
    position: relative;
    min-height: 450px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(7, 19, 36, .95), rgba(0, 88, 183, .78)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.1) 0 1px, transparent 1px 52px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.visual-frame span {
    position: absolute;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.22);
}
.visual-frame span:nth-child(1) { left: 9%; bottom: 0; width: 22%; height: 62%; }
.visual-frame span:nth-child(2) { left: 37%; bottom: 0; width: 18%; height: 82%; }
.visual-frame span:nth-child(3) { right: 12%; bottom: 0; width: 28%; height: 48%; }
.text-link {
    display: inline-flex;
    margin-top: 24px;
    color: var(--primary);
    font-weight: 950;
    border-bottom: 2px solid var(--accent);
}

.timeline-section { background: var(--navy); color: #fff; }
.timeline-section .section-heading h2, .timeline-section .section-heading p { color: #fff; }
.timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}
.timeline-item {
    min-height: 230px;
    padding: 24px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.13);
    border-radius: var(--radius);
}
.timeline-item span { color: var(--accent); font-size: 24px; font-weight: 950; }
.timeline-item h3 { margin: 26px 0 10px; font-size: 20px; }
.timeline-item p { color: rgba(255,255,255,.7); line-height: 1.65; }

.values-section { background: var(--surface-soft); }
.cards-grid { display: grid; gap: 18px; }
.values-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.value-card { min-height: 210px; padding: 28px; }
.value-card h3, .insight-card h3 { margin: 0 0 14px; color: var(--text); font-size: 24px; }
.value-card p, .insight-card p { color: var(--muted); line-height: 1.7; }

.solutions-section { background: var(--bg); }
.solution-list { display: grid; gap: 28px; }
.solution-block {
    display: grid;
    grid-template-columns: minmax(280px, .72fr) minmax(0, 1fr);
    min-height: 430px;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.solution-block:nth-child(even) { grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr); }
.solution-block:nth-child(even) .solution-visual { order: 2; }
.solution-visual {
    position: relative;
    min-height: 320px;
    background:
        radial-gradient(circle at 72% 18%, rgba(22,160,196,.42), transparent 28%),
        linear-gradient(135deg, rgba(6,19,38,.98), rgba(0,88,183,.74)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.12) 0 1px, transparent 1px 58px);
}
.solution-visual::before {
    content: "";
    position: absolute;
    inset: 18% 12% 0;
    border: 1px solid rgba(255,255,255,.18);
    background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
    clip-path: polygon(0 100%, 0 40%, 18% 40%, 18% 18%, 34% 18%, 34% 58%, 52% 58%, 52% 0, 74% 0, 74% 46%, 100% 46%, 100% 100%);
}
.tone-warehouse .solution-visual::before,
.tone-scan .solution-visual::before {
    clip-path: polygon(0 100%, 0 44%, 18% 44%, 18% 28%, 42% 28%, 42% 44%, 64% 44%, 64% 18%, 100% 18%, 100% 100%);
}
.tone-blueprint .solution-visual { background-image: radial-gradient(circle at 70% 20%, rgba(182,138,53,.34), transparent 30%), linear-gradient(135deg, #061326, #0058b7), repeating-linear-gradient(0deg, rgba(255,255,255,.11) 0 1px, transparent 1px 36px); }
.tone-digital .solution-visual::before,
.tone-dashboard .solution-visual::before { clip-path: circle(42% at 52% 55%); }
.solution-content { padding: clamp(28px, 4vw, 48px); }
.card-index {
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
}
.solution-content h3 {
    margin: 16px 0 12px;
    color: var(--text);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.04;
}
.solution-content p { color: var(--muted); line-height: 1.7; }
.solution-content .slogan {
    color: var(--primary-strong);
    font-size: 20px;
    font-weight: 900;
}
.business-value {
    display: grid;
    gap: 8px;
    margin: 24px 0;
    padding: 18px;
    background: var(--surface-soft);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
}
.business-value b { color: var(--text); }
.business-value span { color: var(--muted); line-height: 1.6; }

.industries-section {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(7,19,36,.96), rgba(0,61,130,.86)),
        repeating-linear-gradient(120deg, rgba(255,255,255,.05) 0 1px, transparent 1px 58px);
}
.industries-section .section-heading h2,
.industries-section .section-heading p { color: #fff; }
.industry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}
.industry-card {
    display: grid;
    gap: 12px;
    min-height: 260px;
    padding: 22px;
    text-align: left;
    color: #fff;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius);
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
}
.industry-card:hover, .industry-card.is-active {
    transform: translateY(-5px);
    background: rgba(255,255,255,.14);
    border-color: rgba(83,216,245,.48);
}
.industry-card span { color: var(--accent); font-weight: 950; }
.industry-card strong { font-size: 24px; }
.industry-card em { color: rgba(255,255,255,.84); font-style: normal; line-height: 1.4; }
.industry-card small { color: rgba(255,255,255,.66); line-height: 1.55; }

.clients-section, .tools-section { background: var(--surface); }
.trust-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-content: start;
}
.trust-cloud span {
    padding: 16px 18px;
    color: var(--primary-strong);
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    font-weight: 900;
}
.cards-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.insight-card { min-height: 250px; padding: 28px; }
.insight-card span {
    display: inline-flex;
    margin-bottom: 28px;
    color: var(--accent);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
}
.tool-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.tool-panel div {
    min-height: 150px;
    padding: 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--navy), var(--primary-strong));
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.tool-panel span { color: var(--accent); font-weight: 950; }
.tool-panel strong { display: block; margin-top: 22px; font-size: 24px; }

.final-cta {
    padding: 96px 0;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-strong), var(--navy));
}
.final-cta h2 { max-width: 880px; color: #fff; }
.final-cta .hero-actions { margin-top: 28px; }

.contact-section {
    color: #fff;
    background:
        linear-gradient(135deg, rgba(7,19,36,.97), rgba(0,88,183,.82)),
        repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 62px);
}
.contact-section .section-heading h2,
.contact-section .section-heading p,
.contact-section .eyebrow { color: #fff; }
.contact-card {
    display: grid;
    gap: 15px;
    padding: 28px;
    background: rgba(255,255,255,.97);
}
.contact-card label { display: grid; gap: 8px; color: #172a44; font-size: 13px; font-weight: 900; }
.contact-card input, .contact-card textarea, .contact-card select {
    width: 100%;
    border: 1px solid rgba(11, 43, 78, .16);
    border-radius: var(--radius);
    padding: 14px 15px;
    color: #071727;
    background: #fff;
}

.site-footer {
    padding: 58px 0 26px;
    background: var(--surface);
    border-top: 1px solid var(--line);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .9fr .7fr;
    gap: 38px;
}
.footer-logo { width: 150px; margin-bottom: 18px; }
.site-footer h2 { margin: 0 0 16px; font-size: 15px; text-transform: uppercase; }
.site-footer p, .site-footer a {
    color: var(--muted);
    line-height: 1.7;
}
.site-footer a { display: block; margin-bottom: 8px; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 42px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
    }
    .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1180px) {
    .primary-nav { display: none; }
    .brand { min-width: 0; }
}

@media (max-width: 980px) {
    .hero-grid, .metric-grid, .split-layout, .story-grid, .clients-grid, .tools-grid, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .values-grid, .cards-grid.three { grid-template-columns: 1fr; }
    .solution-block, .solution-block:nth-child(even) { grid-template-columns: 1fr; }
    .solution-block:nth-child(even) .solution-visual { order: 0; }
    .industry-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .hero { min-height: auto; }
    .command-panel { max-width: 520px; }
}

@media (max-width: 720px) {
    .container { width: min(100% - 28px, var(--container)); }
    .market-ticker { height: 30px; }
    .ticker-track { height: 30px; gap: 20px; }
    .header-shell {
        width: min(100% - 20px, 1240px);
        min-height: 64px;
        margin-top: 8px;
        border-radius: 22px;
        flex-wrap: wrap;
    }
    .brand-copy, .button-small { display: none; }
    .brand img { width: 116px; }
    .header-actions { margin-left: auto; }
    .hero { padding: 150px 0 76px; }
    .hero h1 { font-size: 43px; }
    .hero-lead { font-size: 17px; }
    .section { padding: 76px 0; }
    .metric-grid, .timeline, .industry-grid, .tool-panel { grid-template-columns: 1fr; }
    .solution-content, .metric-card, .value-card, .insight-card, .contact-card, .command-panel { padding: 24px; }
    .industry-card { min-height: 220px; }
    .footer-bottom { flex-direction: column; }
}


/* ===== WhatsApp Floating Button ===== */

.whatsapp-float{
    position:fixed;
    right:25px;
    bottom:25px;
    width:65px;
    height:65px;
    background:#25D366;
    color:#ffffff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 10px 30px rgba(0,0,0,.30);
    z-index:9999;
    transition:all .3s ease;
    animation:whatsappPulse 2s infinite;
}

.whatsapp-float:hover{
    transform:scale(1.1);
    box-shadow:0 15px 40px rgba(0,0,0,.40);
}

.whatsapp-float svg{
    width:34px;
    height:34px;
}

@keyframes whatsappPulse{

0%{
transform:scale(1);
}

50%{
transform:scale(1.08);
}

100%{
transform:scale(1);
}

}