* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
  background-color: #f8fafc;
  color: #1f2937;
  font-family: "Inter", sans-serif;
  overflow-x: hidden;
  
}

html {
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.highlight {
  color: #1f8bb4;
  font-weight: 600;
}

/* =======================
   NAVBAR
======================= */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 25px 8%; /* taller navbar */
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
}

.logo img {
  height: 90px;
  width: auto;
  transform: scale(3.0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(3.1);
}

/* ================= NAV ================= */
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link,
.dropdown-toggle {
  background: none;
  border: none;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  transition: 0.3s ease;
}

/* Underline animation */
.nav-link::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #2563eb;
  transition: 0.3s ease;
}

.nav-link:hover::after,
.dropdown-toggle:hover::after {
  width: 100%;
}
/* Keep underline for active page link */
.nav-link.active::after,
.dropdown-toggle.active::after {
  width: 100%;
}


/* ================= DROPDOWN ================= */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 50px;
  left: 0;
  min-width: 260px;
  background: white;
  border-radius: 16px;
  padding: 15px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: 0.3s ease;
}

.dropdown-menu a {
  display: block;
  padding: 12px 25px;
  color: #1f2937;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s ease;
}

.dropdown-menu a:hover {
  background: #f1f5f9;
  color: #2563eb;
  padding-left: 30px;
}

/* Desktop hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ================= LOGIN ================= */
.login-btn {
  padding: 10px 22px;
  border-radius: 25px;
  background: #2563eb;
  color: white;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;

  /* 🔥 pulse animation */
  animation: pulseGlow 2.0s infinite;
}

/* hover overrides animation slightly */
.login-btn:hover {
  background: #1e4fd8;
  transform: translateY(-2px);
  animation: none;
}

/* ================= PULSE ANIMATION ================= */
@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(37, 99, 235, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
  }
}

/* ================= HAMBURGER ================= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1f2937;
  border-radius: 3px;
  transition: 0.3s ease;
}

/* Animate hamburger into X */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}
/* ================= MOBILE ================= */
@media (max-width: 900px) {

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: white;
    flex-direction: column;
    padding: 120px 30px;
    gap: 25px;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: 0.4s ease;
  }

  .nav.active {
    right: 0;
  }

  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 15px;
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: block;
  }

  .hamburger {
    display: flex;
  }
}


/* =========================
   HERO SECTION UPGRADED
========================= */

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  max-width: 1200px;   /* controls content width */
  margin: 0 auto;      /* centers the whole section */
  padding: 180px 30px; /* spacing left & right */
}

.hero-badge {
  display: inline-block;
  background: #e0e7ff;
  color: #1e40af;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
  font-weight: 600;
}


.hero-text {
  flex: 1 1 400px;
  text-align: left;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 5px;
  flex-wrap: wrap; /* prevents breaking on small screens */
}
.btn-primary {
  background: linear-gradient(135deg, #2563eb, #3b82f6);
  color: #fff;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
   font-family: "Inter", sans-serif;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.45);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.35);
  color: #0077ff;
  padding: 14px 26px;
  border-radius: 10px;
  text-decoration: none;
  margin-left: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
   font-family: "Inter", sans-serif;
   border-color: #0077ff;
   font-weight: 600;
}

.btn-secondary:hover {
    transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(37, 99, 235, 0.45);
}

.hero-image {
  flex: 1 1 400px;
  text-align: center;
  padding-left: 10%;
}

.hero-image img {
  width: 100%;
  max-width: 420px;   /* controls size */
  height: auto;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  padding: 8%;
 
}

/* =========================
   HERO RESPONSIVE FIX
========================= */

/* Tablet */
@media (max-width: 1024px) {
  .hero-container {
    padding: 140px 30px 100px;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }

  .hero-image {
    padding-left: 0;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-container {
    flex-direction: column;
      padding: 150px 20px 80px; /* pushes content below collapsed nav */
    text-align: center;
  }

  .hero-text {
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-secondary {
    margin-left: 0;
  }

  .hero-image {
    padding-left: 0;
  }

  .hero-image img {
    max-width: 320px;
    padding: 0;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    gap: 12px;
  }
}







/* ================= CONTENT BLOCK BASE ================= */
.content-block {
  padding: 90px 8%;
  background: #ffffff;
}

.content-block:nth-child(even) {
  background: #f5f7fb;
}

/* CONTAINER */
.content-container {
  max-width: 1000px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  gap: 25px;
}

/* ================= ICON ================= */

.feature-icon {
  width: 58px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  border-radius: 16px;

  background: linear-gradient(
    135deg,
    rgba(37,99,235,0.12),
    rgba(37,99,235,0.04)
  );

  border: 1px solid rgba(37,99,235,0.12);

  box-shadow: 0 10px 25px rgba(37,99,235,0.08);

  transition: 0.3s ease;
}

.feature-icon i {
  font-size: 1.4rem;
  color: #2563eb;

  line-height: 1;
}

/* hover effect */
.feature-card:hover .feature-icon {
  transform: translateY(-3px) scale(1.05);

  box-shadow: 0 15px 30px rgba(37,99,235,0.15);
}

/* TITLE */
.content-title {
  font-size: 2rem;
  color: #001f3f;
  margin-bottom: 10px;
}

/* ================= FEATURES GRID ================= */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 100%;
}

/* CARD */
.feature-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  text-align: left;
}

.feature-card:hover {
  transform: translateY(-5px);
 box-shadow: 0 15px 35px rgba(37, 99, 235, 0.45);
}

.feature-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #111827;
}

.feature-card p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.6;
}

/* ================= IMAGE ================= */
.content-image {
  width: 100%;
  display: flex;
  justify-content: center;
}

.content-image img {
  width: 95%;
  max-width: 1000px;
  height: auto;
  border-radius: 14px;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .content-title {
    font-size: 1.8rem;
  }

  .features-grid {
    gap: 15px;
  }

  .content-image img {
    width: 90%;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr; /* stack cards */
  }

  .content-title {
    font-size: 1.5rem;
  }

  .content-image img {
    width: 95%;
  }
}

/* ================= SMALL PHONES ================= */
@media (max-width: 480px) {
  .content-title {
    font-size: 1.3rem;
  }

  .feature-card {
    padding: 18px;
  }

  .content-image img {
    width: 100%;
  }
}








/* =======================
   PRODUCT SECTIONS
======================= */
.product-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  flex-wrap: wrap;
  padding: 60px 26%;
}

.product-section h2 {
  font-size: 36px;
  color: #1e40af;
  margin-bottom: 25px;
}

.product-section p {
  font-size: 16px;
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 25px;
}

.product-section ul {
  list-style: none;
  padding-left: 0;
}

.product-section ul li {
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
}

.product-section ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #2563eb;
}

/* Alternating layout */
.product-left-text {
  display: flex;
  gap: 50px;
}

.product-left-text .product-text {
  flex: 1;
}

.product-left-text .product-image {
  flex: 1;
}

.product-right-text {
  display: flex;
  gap: 50px;
}

.product-right-text .product-text {
  flex: 1;
}

.product-right-text .product-image {
  flex: 1;
}




/* =======================
   TINTECH FULL-WIDTH IMAGE
======================= */
.product-section.gray-section {
  padding: 60px 0;       /* reduce top/bottom padding */
}

.product-section.gray-section .product-container {
  width: 90%;            /* almost full width */
  max-width: 1400px;     /* bigger max width for large screens */
  margin: 0 auto;        /* center container */
  display: flex;
  flex-direction: column;
  align-items: center;   /* centers image */
  text-align: left;      /* keeps text left-aligned */
  gap: 30px;             /* spacing between elements */
}

.product-section.gray-section .product-container h2,
.product-section.gray-section .product-container p,
.product-section.gray-section .product-container ul {
  width: 100%;           /* full width for text */
  max-width: 900px;      /* comfortable line length */
}

.product-section.gray-section .product-container img {
  width: 100%;           /* image fills container width */
  height: auto;          /* maintain aspect ratio */
  max-width: 1000px;     /* allow bigger images on large screens */
  border-radius: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
  margin-top: 30px;      /* spacing from text */
}

/* =======================
   RESPONSIVE
======================= */

/* Medium screens (tablet) */
@media (max-width: 1024px) {
  .product-section.gray-section .product-container {
    width: 95%;
    gap: 25px;
  }

  .product-section.gray-section .product-container h2,
  .product-section.gray-section .product-container p,
  .product-section.gray-section .product-container ul {
    max-width: 700px;
  }

  .product-section.gray-section .product-container img {
    max-width: 800px;
  }
}

/* Small screens (mobile) */
@media (max-width: 768px) {
  .product-section.gray-section .product-container {
    width: 100%;
    padding: 40px 20px;
    text-align: left;    /* keep text left-aligned even on mobile */
    gap: 20px;
  }

  .product-section.gray-section .product-container h2,
  .product-section.gray-section .product-container p,
  .product-section.gray-section .product-container ul {
    max-width: 100%;
  }

  .product-section.gray-section .product-container img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 20px;
  }
}

/* Extra small screens */
@media (max-width: 480px) {
  .product-section.gray-section {
    padding: 30px 10px;
  }

  .product-section.gray-section .product-container {
    gap: 15px;
  }

  .product-section.gray-section .product-container img {
    margin-top: 15px;
  }
}








/* ======================= 
   WORTH SECTION CENTERED
======================= */
.worth-section {
  padding: 90px 8%;
}

.worth-section .product-container {
  max-width: 850px;   /* controls width of content */
  margin: 0 auto;     /* centers the container */
  text-align: left; /* centers heading and paragraph */
}

.worth-section p {
  font-size: 1.1rem;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 30px;
}

.worth-list {
  list-style: none;
  padding-left: 0;
  margin: 0 auto;
  max-width: 700px;   /* optional: makes the list narrower */
  text-align: left;   /* keeps bullets readable */
}

.worth-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 18px;
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.7;
}

.worth-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #2563eb;
  font-weight: 600;
}







/* =======================
   CTA SECTION
======================= */

.cta-section {

  text-align: center;

  padding: 100px 8%;

  color: #0f172a;

  border-radius: 28px;

  margin-bottom: 140px;

  width: 100%;

  max-width: 100%;

  position: relative;

  overflow: hidden;

  background:
    radial-gradient(
      circle at top left,
      rgba(37,99,235,0.10),
      transparent 30%
    ),

    radial-gradient(
      circle at bottom right,
      rgba(14,165,233,0.08),
      transparent 30%
    ),

    linear-gradient(
      135deg,
      #ffffff 0%,
      #f8fbff 35%,
      #eef5ff 70%,
      #ffffff 100%
    );

  box-shadow:
    0 25px 60px rgba(37,99,235,0.10);

  border:
    1px solid rgba(37,99,235,0.08);
}

/* HEADING */

.cta-section h2 {

  font-size: 3rem;

  line-height: 1.2;

  margin-bottom: 20px;

  color: #1e3a8a;

  font-family: "Montserrat", sans-serif;
}

/* TEXT */

.cta-section p {

  font-size: 1.1rem;

  line-height: 1.8;

  margin-bottom: 35px;

  color: #475569;

  max-width: 760px;

  margin-left: auto;

  margin-right: auto;
}

/* BUTTON */

.cta-section .btn-primary {

  display: inline-flex;

  align-items: center;

  justify-content: center;

  padding: 15px 34px;

  background:
    linear-gradient(
      135deg,
      #2563eb,
      #3b82f6
    );

  color: white;

  font-weight: 600;

  border-radius: 999px;

  text-decoration: none;

  transition: 0.35s ease;

  box-shadow:
    0 15px 35px rgba(37,99,235,0.22);
}

.cta-section .btn-primary:hover {

  transform: translateY(-4px);

  box-shadow:
    0 20px 45px rgba(37,99,235,0.28);
}

/* =======================
   TABLET
======================= */

@media (max-width: 1024px) {

  .cta-section {

    padding: 85px 6%;

    margin-bottom: 110px;

    border-radius: 24px;
  }

  .cta-section h2 {

    font-size: 2.4rem;
  }

  .cta-section p {

    font-size: 1rem;
  }
}

/* =======================
   MOBILE
======================= */

@media (max-width: 768px) {

  .cta-section {

    padding: 70px 5%;

    border-radius: 18px;

    margin-bottom: 90px;
  }

  .cta-section h2 {

    font-size: 2rem;
  }

  .cta-section p {

    font-size: 0.98rem;

    line-height: 1.7;
  }

  .cta-section .btn-primary {

    width: 100%;

    max-width: 280px;
  }
}

/* =======================
   SMALL PHONES
======================= */

@media (max-width: 480px) {

  .cta-section {

    padding: 60px 5%;

    border-radius: 16px;
  }

  .cta-section h2 {

    font-size: 1.7rem;
  }

  .cta-section p {

    font-size: 0.95rem;
  }
}



/* =======================
   RESPONSIVE
======================= */
@media (max-width: 900px) {
  .product-hero {
    flex-direction: column-reverse;
    text-align: center;
  }

  .product-hero .hero-left {
    margin-top: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
}




/* --------------------
   FOOTER
-------------------- */

.footer {
  background: #0f172a;
  color: #fff;
  padding: 80px 8% 30px 8%;
  font-family: "Inter", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-branding img {
  width: 250px;
  margin-bottom: 20px;
}

.footer-tagline {
  max-width: 300px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #fff;
}

.footer-column h3 {
  margin-bottom: 18px;
  color: white;
  font-size: 16px;
}

.footer-column a {
  display: block;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #2563eb;
  transform: translateX(4px);
}

.footer-column p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #fff;
}

.footer-small {
  margin-top: 12px;
  font-size: 13px;
  color: #fff;
}

/* Social Links */
.footer-socials a {
  margin-right: 15px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.footer-socials a:hover {
  color: #2563eb;
}

/* Divider */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 50px 0 25px 0;
}

/* Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #fff;
}

.footer-legal a {
  margin-left: 20px;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.footer-legal a:hover {
  color: #2563eb;
}

/* =============================
   FOOTER RESPONSIVE
============================= */

/* Tablets (≤ 1024px) */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer {
    padding: 70px 6% 30px 6%;
  }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-branding img {
    margin: 0 auto 20px auto;
  }

  .footer-tagline {
    margin: 0 auto 20px auto;
  }

  .footer-column a {
    transform: none;
  }

  .footer-socials {
    justify-content: center;
  }

  .footer-socials a {
    margin: 0 10px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-legal a {
    margin: 0 10px;
  }
}

/* Small Mobile (≤ 480px) */
@media (max-width: 480px) {
  .footer {
    padding: 60px 5% 25px 5%;
  }

  .footer-column h3 {
    font-size: 15px;
  }

  .footer-column p,
  .footer-column a {
    font-size: 13px;
  }
}

/* --------------------
   RESPONSIVE
-------------------- */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 24px;
  }

  .hero {
    padding: 90px 24px;
  }

  .features,
  .collections,
  .app {
    padding: 60px 24px;
  }

  .hero h1 {
    font-size: 34px;
  }
}

/* ================================
   SCROLL REVEAL BASE (Apple Style)
================================ */

/* Hidden state */
.reveal{
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

/* When visible */
.reveal.active{
  opacity: 1;
  transform: translateY(0) scale(1);
}


/* ================================
   DIRECTION VARIATIONS
================================ */

/* From left */
.reveal-left{
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.8s ease;
}

.reveal-left.active{
  opacity: 1;
  transform: translateX(0);
}

/* From right */
.reveal-right{
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.8s ease;
}

.reveal-right.active{
  opacity: 1;
  transform: translateX(0);
}

/* Zoom in */
.reveal-zoom{
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s ease;
}

.reveal-zoom.active{
  opacity: 1;
  transform: scale(1);
}


/* ================================
   STAGGER EFFECT (Apple feel)
================================ */

.reveal:nth-child(1){ transition-delay: 0.1s; }
.reveal:nth-child(2){ transition-delay: 0.2s; }
.reveal:nth-child(3){ transition-delay: 0.3s; }
.reveal:nth-child(4){ transition-delay: 0.4s; }
.reveal:nth-child(5){ transition-delay: 0.5s; }





/* ================================
   PERFORMANCE OPTIMIZATION
================================ */

.reveal,
.reveal-left,
.reveal-right,
.reveal-zoom{
  will-change: transform, opacity;
}


/* ================================
   OPTIONAL: DISABLE ON SMALL DEVICES
================================ */

@media (max-width: 600px){
  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-zoom{
    transform: none;
    opacity: 1;
    transition: none;
  }
}
/* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;

  background: linear-gradient(135deg, #39FF14, #00FF85);
  color: white;

  font-size: 26px;
  width: 90px;
  height: 90px;

  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 999;

  transition: all 0.3s ease;

  /* 🔥 Glow effect */
  animation: pulse 2s infinite;
}

/* HOVER */
.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
}

/* 🔥 PULSE ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* TABLET */
@media (max-width: 900px) {
  .whatsapp-float {
    width: 65px;
    height: 65px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
}

/* MOBILE */
@media (max-width: 600px) {
  .whatsapp-float {
    width: 58px;
    height: 58px;
    font-size: 22px;
    bottom: 18px;
    right: 18px;
  }
}

/* SMALL MOBILE */
@media (max-width: 400px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 20px;
    bottom: 15px;
    right: 15px;
  }
}