:root {
--primary:#4f2bd6;
--dark:#0a001f;
--purple:#6a35ff;
--text:#ffffff;
}

* {
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body {
background:#070014;
color:var(--text);
overflow-x:hidden;
}

.logo-link {
  text-decoration: none;
  display: inline-block;
}

/* optional hover effect */
.logo-link:hover .nex,
.logo-link:hover .ign {
  opacity: 0.85;
  transition: 0.3s;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 2px;
}



.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 72px;        /* adjust if needed */
  height: auto;
  display: block;
}

.logo-link {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}


/* LOGO NAME IMAGE */
.logo-name{
  height: 60px;      /* text height control */
  width: auto;
  display: block;
}

/* MOBILE */
@media(max-width:768px){
  .logo-name{
    height: 26px;
  }
}


/* HEADER */
header {
display:flex;
justify-content:space-between;
align-items:center;
padding:25px 60px;
border-bottom:1px solid rgba(255,255,255,0.1);
position:relative;
z-index:100;
}

/* .logo {
font-size:28px;
font-weight:800;
letter-spacing:2px;
} */

.header-right {
display:flex;
gap:25px;
align-items:center;
}

.btn {
border:2px solid #fff;
padding:12px 24px;
color:#fff;
text-decoration:none;
font-weight:600;
font-size:14px;
letter-spacing:1px;
transition:all 0.3s;
}

.btn:hover {
background:#fff;
color:#4f2bd6;
}

/* MENU TOGGLE */
.menu-toggle {
font-size:24px;
cursor:pointer;
display:flex;
flex-direction:column;
gap:5px;
transition:transform 0.3s;
}

.menu-toggle span {
display:block;
width:20px;
height:2px;
background:#fff;
}


/* 🔥 ONLY MIDDLE LINE SHORT */
.menu-toggle span:nth-child(2) {
  width: 13px;        /* adjust: 14px / 16px / 18px */
  align-self: flex-end; /* right align for premium look */
} 

.menu-toggle:hover {
transform:scale(1.05);
}

/* SIDEBAR */
.sidebar {
position:fixed;
top:0;
right:-100%;
width:100%;
max-width:600px;
height:100vh;
background:linear-gradient(135deg, #1B2C5C, #9b51e0);
padding:60px 80px;
transition:right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
z-index:2000;
overflow-y:auto;
}

.sidebar.active {
right:0;
}

.sidebar-header {
position:fixed;
top:40px;
width:calc(100% - 160px);
max-width:440px;
display:flex;
justify-content:space-between;
align-items:center;
z-index:10;
padding:20px 0;
}

.sidebar-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
}





.close {
font-size:32px;
cursor:pointer;
color:#fff;
transition:transform 0.3s;
line-height:1;
}

.close:hover {
transform:rotate(90deg);
}

/* SIDEBAR MENU */
.sidebar-menu {
list-style:none;
margin:100px 0 40px;
}

.sidebar-menu > li {
margin:30px 0;
}

.sidebar-menu a {
color:#fff;
text-decoration:none;
font-size:32px;
font-weight:700;
letter-spacing:1px;
transition:all 0.3s;
display:inline-block;
text-transform:uppercase;
}

.sidebar-menu > li > a:hover {
color:#b8a3ff;
transform:translateX(10px);
}

/* DROPDOWN TOGGLE */
.dropdown-toggle {
display:flex;
align-items:center;
justify-content:space-between;
width:100%;
cursor:pointer;
}

.arrow {
font-size:20px;
transition:transform 0.3s ease;
margin-left:10px;
}

.has-dropdown.active .arrow {
transform:rotate(180deg);
}

/* DROPDOWN CONTENT */
.dropdown-content {
max-height:0;
overflow:hidden;
transition:max-height 0.4s ease;
margin-top:0;
}

.has-dropdown.active .dropdown-content {
max-height:1000px;
margin-top:20px;
}

/* VIEW ALL */
.view-all {
font-size:14px;
letter-spacing:2px;
opacity:0.8;
margin-bottom:25px;
font-weight:600;
}

/* SERVICE GRID - 3 COLUMNS */
.service-grid {
display:grid;
grid-template-columns:repeat(3, 1fr);
gap:32px;
margin-top:20px;
}

.service-grid > div h4 {
font-size:13px;
letter-spacing:1px;
margin-bottom:15px;
opacity:0.85;
color:#b8a3ff;
}

.service-grid a {
display:block;
padding:8px 0;
font-size:14px !important;
font-weight:400 !important;
text-transform:none !important;
color:rgba(255,255,255,0.9) !important;
transition:all 0.2s;
}

.service-grid a:hover {
color:#fff !important;
padding-left:8px;
transform:none !important;
}

/* WORK BY INDUSTRY - 2 COLUMNS */
/* .has-dropdown:nth-of-type(3) .dropdown-content {
display:block;
} */

.has-dropdown:nth-of-type(3) .dropdown-content a {
font-size:16px !important;
font-weight:500 !important;
text-transform:none !important;
padding:10px 0;
display:block;
}

/* SIDEBAR FOOTER */
.sidebar-footer {
margin-top:auto;
padding-top:30px;
}

.sidebar-footer .btn-quote {
background:#fff;
color:#4f2bd6;
padding:16px 32px;
font-size:16px;
font-weight:700;
text-decoration:none;
display:inline-block;
border:none;
cursor:pointer;
transition:all 0.3s;
letter-spacing:1px;
}

.sidebar-footer .btn-quote:hover {
transform:translateX(5px);
box-shadow:0 4px 15px rgba(255,255,255,0.3);
}

/* OVERLAY */
.overlay {
position:fixed;
inset:0;
background:rgba(0,0,0,0.7);
opacity:0;
visibility:hidden;
transition:0.4s;
z-index:1500;
}

.overlay.active {
opacity:1;
visibility:visible;
}

/* MOBILE RESPONSIVE */
@media(max-width:900px) {
header {
padding:20px 30px;
}

.btn {
display:none;
}

.sidebar {
max-width:100%;
padding:60px 40px;
}

.sidebar-header {
width:calc(100% - 80px);
top:30px;
padding:15px 0;
}

.sidebar-logo {
font-size:20px;
}

.sidebar-menu {
margin:80px 0 30px;
}

.sidebar-menu a {
font-size:24px;
}

.sidebar-menu > li {
margin:20px 0;
}

.service-grid {
grid-template-columns:1fr;
gap:20px;
}

.service-grid > div h4 {
margin-top:20px;
}
}

@media(max-width:500px) {
.sidebar-menu a {
font-size:20px;
}

.close {
font-size:28px;
}

.service-grid a,
.has-dropdown:nth-of-type(3) .dropdown-content a {
font-size:14px !important;
}
}
/* WORK BY INDUSTRY - FORCE 2 COLUMN */
.dropdown-content.industry-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 60px;
  margin-top: 25px;
}


/* WORK BY INDUSTRY - 2 COLUMN GRID */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px 60px;
  margin-top: 25px;
}

.industry-col a {
  display: block;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  padding: 10px 0;
  color: rgba(255,255,255,0.9);
  transition: all 0.25s ease;
}

.industry-col a:hover {
  color: #fff;
  padding-left: 10px;
}


@media(max-width:900px) {
  .dropdown-content.industry-grid {
    grid-template-columns: 1fr;
  }
}

.hero-visual {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85) contrast(1.1) saturate(1.05);
}

/* MAIN PURPLE OVERLAY (DigitalSilk Match) */
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(58, 22, 128, 0.88),   /* deep purple */
    rgba(10, 0, 31, 0.92)     /* near black */
  );
  z-index: 1;
}

/* RIGHT SIDE HIGHLIGHT GLOW */
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 75% 30%,
    rgba(120, 70, 255, 0.45),
    transparent 55%
  );
  z-index: 2;
}
.hero-visual {
  box-shadow: inset 0 0 120px rgba(0,0,0,0.6);
}


  /* HERO SECTION */
        .hero {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            min-height: 85vh;
            padding: 60px 60px 120px 60px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at center, rgba(183, 23, 223, 0.849), transparent 70%);
            pointer-events: none;
        }

        .hero-left {
            position: relative;
            z-index: 10;
        }

        .hero-left h5 {
            font-weight: 600;
            letter-spacing: 3px;
            opacity: .7;
            font-size: 13px;
            margin-bottom: 20px;
        }

        .hero-left h1 {
            font-size: 72px;
            font-weight: 800;
            line-height: 1.1;
            margin: 0;
            letter-spacing: -1px;
        }

        .hero-left p {
            opacity: .8;
            margin: 25px 0 35px 0;
            font-size: 18px;
            font-weight: 400;
        }

        .hero-left .btn-primary {
            background: #4169e1;
            color: #fff;
            padding: 16px 32px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            font-size: 14px;
            letter-spacing: 1px;
        }

        .hero-left .btn-primary:hover {
            background: #5179f1;
            transform: translateX(5px);
        }

        /* HERO RIGHT - TILTED IMAGES */
        .hero-right {
            position: relative;
            height: 500px;
            transform: perspective(1000px) rotateY(-5deg);
        }

        

        /* ACHIEVEMENTS */
        .achievements {
            display: flex;
            gap: 60px;
            margin-top: 50px;
            align-items: center;
        }

        .achievement {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .achievement-icon {
            font-size: 32px;
            color: #ffd700;
        }

        .achievement-text h4 {
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 5px;
            opacity: 0.9;
        }

        .stars {
            color: #ffd700;
            font-size: 14px;
            letter-spacing: 2px;
        }

        .forbes {
            opacity: 0.7;
            font-size: 32px;
            font-weight: 700;
            font-style: italic;
        }

        /* BRANDS SECTION */
        .brands {
            background: rgba(10, 10, 30, 0.5);
            padding: 40px 60px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .brands-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .brand-logo {
            opacity: 0.6;
            font-size: 28px;
            font-weight: 700;
            letter-spacing: 2px;
            transition: opacity 0.3s;
            filter: grayscale(100%);
        }

        .brand-logo:hover {
            opacity: 1;
            filter: grayscale(0%);
        }


     /* =========================
   HERO MOBILE CENTER ALIGN
========================= */
@media (max-width: 768px) {

  .hero {
    grid-template-columns: 1fr;
    padding: 120px 20px 80px;
    min-height: auto;
    text-align: center;
    justify-items: center;
  }

  /* TEXT CENTER */
  .hero-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-left h5 {
    text-align: center;
  }

  .hero-left h1 {
    font-size: 38px;
    line-height: 1.15;
    text-align: center;
  }

  .hero-left p {
    font-size: 16px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  /* BUTTON CENTER */
  .hero-left .btn-primary {
    margin: 0 auto;
  }

  /* ACHIEVEMENTS CENTER */
  .achievements {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    text-align: center;
  }

  /* IMAGE CENTER */
  .hero-right {
    margin-top: 50px;
    height: auto;
    transform: none;
    display: flex;
    justify-content: center;
  }

 
}




@media (max-width: 768px) {

  .hero-right {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: visible;
  }

  .laptop-grid {
    position: relative;
    left: auto;
    top: auto;
    transform: translateY(-220px); /* 🔥 same visual height like -400px */

    width: 100%;
    max-width: 340px;
    margin: 0 auto;

    grid-template-columns: repeat(2, 1fr);
    gap: 12px;

    animation: none;
  }

  .laptop {
    height: 130px;
  }
}


.brands {
            background: rgba(10, 10, 30, 0.5);
            padding: 30px 0;
            overflow: hidden;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .brands-marquee {
            width: 100%;
            overflow: hidden;
        }

        .brands-row {
            display: flex;
            align-items: center;
            gap: 60px;
            width: max-content;
            animation: moveLeft 50s linear infinite;
            /* slow speed */
        }

        @keyframes moveLeft {
            from {
                transform: translateX(0);
            }

            to {
                transform: translateX(-50%);
            }
        }

        /* optional */
        .brands-marquee:hover .brands-row {
            animation-play-state: paused;
        }






/* =========================
   BRANDS – MOBILE FIX
========================= */
@media (max-width: 768px) {

  .brands {
    padding: 18px 0;          /* height reduce */
  }

  .brands-row {
    gap: 30px;                /* space reduce */
    animation-duration: 35s;  /* little faster for mobile */
  }

  .brand-logo {
    font-size: 18px;          /* 🔥 main size control */
    letter-spacing: 1px;
    opacity: 0.7;
  }
}







.ds-newsletter {
  background: linear-gradient(135deg, #061b3a, #3b1b7a);
  padding: 80px 20px;
}

/* ROW */
.ds-newsletter-row {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* TITLE */
.ds-newsletter-title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  max-width: 420px;
}

/* FORM */
.ds-newsletter-form {
  display: flex;
  align-items: center;
  max-width: 520px;
  width: 100%;
}

/* INPUT */
.ds-newsletter-form input {
  flex: 1;
  height: 54px;
  padding: 0 20px;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.3);
  background: transparent;
  color: #fff;
  outline: none;
  border-radius: 6px 0 0 6px;
}

.ds-newsletter-form input::placeholder {
  color: rgba(255,255,255,0.7);
}

/* BUTTON */
.ds-newsletter-form button {
  height: 54px;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, #00c6ff, #0072ff);
  border-radius: 0 6px 6px 0;
  transition: all 0.3s ease;
}

.ds-newsletter-form button:hover {
  background: linear-gradient(90deg, #0072ff, #00c6ff);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ds-newsletter-row {
    flex-direction: column;
    text-align: center;
  }

  .ds-newsletter-title {
    max-width: 100%;
  }

  .ds-newsletter-form {
    max-width: 100%;
  }
}


.ds-contact-wrap{
padding:0 26px;
color:#fff;
font-weight:600;
cursor:pointer;
}


/* Contact Section */
.ds-contact{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
padding:90px 10%;
}


.ds-contact-left .tagline{
font-size:12px;
letter-spacing:2px;
opacity:.7;
}


.ds-contact-left h2{
font-size:38px;
margin-top:10px;
color:#2fd3ff;
}


.ds-contact-right h3{
font-size:26px;
margin-bottom:25px;
}


.ds-form input,
.ds-form textarea{
width:100%;
background:transparent;
border:none;
border-bottom:1px solid rgba(255,255,255,0.3);
padding:12px 0;
margin-bottom:22px;
color:#fff;
outline:none;
}


.ds-form textarea{
resize:none;
height:90px;
}


.ds-form button{
margin-top:15px;
background:linear-gradient(90deg,#14b6ff,#6f5bff);
border:none;
padding:14px 34px;
color:#fff;
font-weight:600;
cursor:pointer;
}


/* Responsive */
@media(max-width:900px){
.ds-newsletter,
.ds-contact{
flex-direction:column;
grid-template-columns:1fr;
text-align:center;
}


.ds-newsletter-form{
margin-top:20px;
}
}


.ds-footer {
  background: linear-gradient(135deg, #009bdf, #0066cc);
  color: #fff;
  padding: 100px 20px 40px;
  font-family: "Inter", sans-serif;
}

.ds-footer-container {
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.ds-footer-heading {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 70px;
}

/* Links Grid */
.ds-footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 70px;
}

.ds-footer-col ul {
  list-style: none;
  padding: 0;
}

.ds-footer-col ul li {
  margin-bottom: 10px;
}

.ds-footer-col a,
.footer-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.ds-footer-col a:hover,
.footer-link:hover {
  color: #00f0ff;
  padding-left: 6px;
}

.ds-footer-col a:visited,
.footer-link:visited {
  color: rgba(255, 255, 255, 0.85);
}

/* Locations */
.ds-footer-locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.25);
}

.ds-footer-locations h5 {
  font-size: 14px;
  margin-bottom: 6px;
}

.ds-footer-locations p {
  font-size: 13px;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-link {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease, text-decoration 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Bottom */
.ds-footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 25px;
  margin-top: 40px;
  font-size: 13px;
}

.ds-footer-bottom-links a {
  color: #fff;
  text-decoration: none;
  margin-left: 25px;
  opacity: 0.85;
}

.ds-footer-bottom-links a:hover {
  opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
  .ds-footer-links,
  .ds-footer-locations {
    grid-template-columns: 1fr 1fr;
  }

  .ds-footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .ds-footer-links,
  .ds-footer-locations {
    grid-template-columns: 1fr;
  }

  .ds-footer-heading {
    font-size: 32px;
  }
}

/* ===============================
   FOOTER MOBILE FIX
================================ */

/* Footer Top Fix */
@media (max-width: 768px) {

  .ds-footer-top {
    flex-direction: column !important;
    gap: 20px;
  }

  .ds-footer-logo {
    position: static !important;
    margin-bottom: 10px;
  }

  .ds-footer-logo img {
    height: 120px !important;
    margin: 0 auto;
  }

  .ds-footer-heading {
    font-size: 32px !important;
    text-align: center;
  }
}

/* Footer Links Grid Fix */
@media (max-width: 900px) {
  .ds-footer-links {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

/* Mobile: One column */
@media (max-width: 600px) {
  .ds-footer-links {
    grid-template-columns: 1fr !important;
    text-align: center;
  }

  .ds-footer-col h4 {
    margin-top: 20px;
  }
}

/* Locations Fix */
@media (max-width: 768px) {
  .ds-footer-locations {
    flex-direction: column;
    gap: 25px;
    text-align: center;
  }
}

/* Bottom Bar */
@media (max-width: 768px) {
  .ds-footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .ds-footer-bottom-links a {
    margin: 0 10px;
  }
}





.whatsapp-float {
    position: fixed !important;
    bottom: 16px;
    right: 16px;

    width: 56px;
    height: 56px;

    background: #25D366;
    color: #fff;

    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    box-shadow: 0 10px 25px rgba(0,0,0,.35);

    z-index: 2147483647;
    text-decoration: none;

    visibility: visible !important;
    opacity: 1 !important;
    
    /* 🔥 ANIMATION */
    animation: whatsappBounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* ====================================
   🔥 WHATSAPP ANIMATIONS
==================================== */

/* BOUNCE ANIMATION */
@keyframes whatsappBounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.05);
    }
}

/* PULSE ANIMATION (Alternative) */
@keyframes whatsappPulse {
    0%, 100% {
        box-shadow: 0 10px 25px rgba(0,0,0,.35);
    }
    50% {
        box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    }
}

/* GLOW ANIMATION (Alternative) */
@keyframes whatsappGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(37, 211, 102, 0));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(37, 211, 102, 0.8));
    }
}

/* ROTATE ANIMATION (Alternative) */
@keyframes whatsappRotate {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(10deg) scale(1.08);
    }
}

/* Remove from overflow-x: hidden on mobile */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        overflow-y: auto !important;
    }
    
    html {
        overflow: visible !important;
    }
}

/* WhatsApp Float Button - Mobile Specific */
@media (max-width: 768px) {
    .whatsapp-float {
        position: fixed !important;
        bottom: 20px !important;
        right: 20px !important;
        width: 60px !important;
        height: 60px !important;
        background: #25D366 !important;
        color: #fff !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 32px !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.35) !important;
        z-index: 999999 !important;
        text-decoration: none !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: whatsappBounce 2s ease-in-out infinite;
    }
    
    .whatsapp-float:hover {
        animation: none;
        transform: scale(1.15);
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.5) !important;
    }
}

/* Desktop */
@media (min-width: 769px) {
    .whatsapp-float {
        position: fixed !important;
        bottom: 46px;
        right: 46px;
        width: 56px;
        height: 56px;
        background: #25D366;
        color: #fff;
        border-radius: 50%;
        display: flex !important;
        align-items: center;
        justify-content: center;
        font-size: 28px;
        box-shadow: 0 10px 25px rgba(0,0,0,.35);
        z-index: 999999;
        text-decoration: none;
        visibility: visible;
        opacity: 1;
animation: whatsappBounce 2s ease-in-out infinite, whatsappPulse 2s ease-in-out infinite;   }
    
    .whatsapp-float:hover {
        animation: none;
        transform: scale(1.15);
        box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    }
}