body {
  font-family: 'Segoe UI', sans-serif;
}
/* navbar */


/* Header */
.header {
  background: #0d6efd; /* Bootstrap primary blue */
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Logo */
.logo {
  height: 42px;
  object-fit: contain;
}

/* Nav links */
.navbar .nav-link {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: all 0.3s ease;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: #ffffff;
}

/* Dropdown */
.dropdown-menu {
  border-radius: 12px;
  border: none;
  padding: 8px 0;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.dropdown-item {
  font-size: 14px;
  padding: 10px 18px;
  transition: 0.3s;
}

.dropdown-item:hover {
  background: #eff6ff;
  color: #0d6efd;
}

/* CTA Button */
.call-btn {
  background: #ffffff;
  color: #0d6efd;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
}

.call-btn:hover {
  background: #e7f0ff;
  color: #0d6efd;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

/* Navbar toggler */
.navbar-toggler {
  border: none;
  filter: invert(1); /* makes icon white */
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile menu */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #0d6efd;
    padding: 15px;
    border-radius: 0 0 12px 12px;
  }

  .navbar .nav-link {
    color: #fff;
  }

  .call-btn {
    display: inline-block;
    margin-top: 12px;
  }
}

/* hero section */
/* HERO SECTION */
.hero-section {
  min-height: 100vh;
  overflow: hidden;
  color: #fff;
}

/* Video */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 0;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.6),
    rgba(0, 0, 0, 0.2)
  );
  z-index: 1;
}

/* Pattern overlay */
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(#3b82f6 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}

/* Content */
.hero-section .container {
  z-index: 2;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 6px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
  font-size: 14px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: #3b82f6;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

/* Title */
.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-title span {
  color: #3b82f6;
}

/* Text */
.hero-text {
  font-size: 18px;
  color: #d1d5db;
  max-width: 550px;
  margin-bottom: 30px;
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.hero-call {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  border: none;
  padding: 12px 26px;
  border-radius: 10px;
}

.hero-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}

.hero-secondary {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  padding: 12px 26px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
}

.hero-secondary:hover {
  background: rgba(255,255,255,0.2);
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.mouse {
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 20px;
  display: flex;
  justify-content: center;
}

.wheel {
  width: 4px;
  height: 8px;
  background: #fff;
  margin-top: 8px;
  border-radius: 2px;
  animation: scroll 1.5s infinite;
}

/* Animations */
@keyframes scroll {
  0% { opacity: 0; transform: translateY(0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateY(10px); }
}

@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 16px;
  }
}
/* service section */
/* Section */
.services-section {
  background: #f8fafc;
}

/* Heading */
.section-tag {
  color: #2563eb;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-top: 10px;
}

.section-desc {
  color: #6b7280;
  max-width: 600px;
  margin: 10px auto 0;
}

/* Card */
.service-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: #dbeafe;
}

/* Icon */
.icon-box {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: #fff;
  font-size: 22px;
  transition: 0.3s;
}

.service-card:hover .icon-box {
  transform: scale(1.1);
}

/* Gradient colors */
.bg1 { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.bg2 { background: linear-gradient(135deg, #60a5fa, #2563eb); }
.bg3 { background: linear-gradient(135deg, #38bdf8, #0ea5e9); }
.bg4 { background: linear-gradient(135deg, #22c55e, #16a34a); }
.bg5 { background: linear-gradient(135deg, #0ea5e9, #0284c7); }
.bg6 { background: linear-gradient(135deg, #2563eb, #1e3a8a); }

/* Text */
.service-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  color: #6b7280;
  font-size: 14px;
}

/* Learn more */
.learn-more {
  margin-top: 15px;
  font-size: 14px;
  color: #2563eb;
  font-weight: 500;
  transition: 0.3s;
}

.service-card:hover .learn-more {
  letter-spacing: 0.5px;
}
/* stats section */
/* Section */
.stats-section {
  overflow: hidden;
  color: #fff;
}

/* Background */
.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f172a, #1e3a8a, #0f172a);
  z-index: 0;
}

/* Pattern */
.stats-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(#3b82f6 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 1;
}

.stats-section .container {
  z-index: 2;
}

/* Box */
.stat-box {
  position: relative;
}

/* Icon */
.stat-box .icon {
  width: 55px;
  height: 55px;
  margin: 0 auto 15px;
  border-radius: 12px;
  background: rgba(59,130,246,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #3b82f6;
}

/* Counter */
.counter {
  font-size: 42px;
  font-weight: 700;
  display: inline-block;
}

.suffix {
  font-size: 28px;
  color: #60a5fa;
  margin-left: 4px;
}

/* Text counter */
.counter-text {
  font-size: 42px;
  font-weight: 700;
  color: #3b82f6;
}

/* Label */
.stat-box p {
  margin-top: 10px;
  font-size: 14px;
  color: #cbd5f5;
}
/* why choose us */
/* Section */
.why-modern {
  background: linear-gradient(to right, #f8fafc, #eef2ff);
}

/* Card */
.modern-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
  height: 100%;
}

/* Icon */
.modern-card i {
  font-size: 28px;
  color: #2563eb;
  background: #eff6ff;
  padding: 14px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 15px;
}

/* Title */
.modern-card h6 {
  font-weight: 600;
  margin-bottom: 8px;
}

/* Text */
.modern-card p {
  font-size: 13px;
  color: #6b7280;
}

/* Hover */
.modern-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
  border-color: #dbeafe;
}

/* Owl spacing */
.modern-slider .item {
  padding: 10px;
}

/* Arrows */
.owl-nav button {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #2563eb !important;
  color: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.owl-nav .owl-prev { left: -15px; }
.owl-nav .owl-next { right: -15px; }

/* Dots */
.owl-dots {
  margin-top: 20px;
}
/* footer */
/* Footer */
.footer {
  background: #0f172a;
  color: #cbd5e1;
}

/* CTA */
.footer-cta {
  background: linear-gradient(135deg, #2563eb, #1e40af);
  color: #fff;
  padding: 30px 0;
}

.footer-cta h4 {
  margin: 0;
  font-weight: 600;
}

.cta-btn {
  font-weight: 600;
}

/* Main */
.footer-main {
  padding: 60px 0;
}

/* Logo */
.logo-box {
  width: 45px;
  height: 45px;
  background: #2563eb;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border-radius: 8px;
}

/* Titles */
.footer-title {
  color: #fff;
  margin-bottom: 15px;
}

/* Links */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #94a3b8;
  text-decoration: none;
}

.footer-links a:hover {
  color: #60a5fa;
}

/* Social */
.socials a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: #1e293b;
  color: #fff;
  text-align: center;
  line-height: 35px;
  border-radius: 6px;
  margin-right: 8px;
}

.socials a:hover {
  background: #2563eb;
}

/* Contact */
.footer p i {
  margin-right: 8px;
  color: #60a5fa;
}

/* WhatsApp */
.whatsapp-btn {
  background: #22c55e;
  color: #fff;
  font-size: 14px;
}

.whatsapp-btn:hover {
  background: #16a34a;
}

/* Bottom */
.footer-bottom {
  border-top: 1px solid #1e293b;
  padding: 15px 0;
  font-size: 14px;
}

.footer-bottom a {
  color: #94a3b8;
  margin-left: 15px;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #60a5fa;
}

@media screen and (max-width: 768px) {
  .footer-links,.footer-title ,.footer-main{
    text-align: center;
  }
}
/* about us page  */
  /* Section */
    .breadcrumb-section {
      background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                  url('./assets/bread-crumb-section.jpg') center/cover no-repeat;
      padding: 60px 0;
      color: #fff;
      margin-top: 2rem;
    }

    /* Title */
    .page-title {
      font-size: 32px;
      font-weight: 700;
    }

    /* Breadcrumb */
    .breadcrumb {
      background: transparent;
      margin: 0;
    }

    .breadcrumb-item a {
      color: #c7d2fe;
      text-decoration: none;
      font-size: 14px;
    }

    .breadcrumb-item a:hover {
      color: #fff;
    }

    /* Active */
    .breadcrumb-item.active {
      color: #ffffff;
      font-weight: 500;
    }

    /* Divider */
    .breadcrumb-item + .breadcrumb-item::before {
      color: #c7d2fe;
    }

    /* Responsive */
    @media (max-width: 768px) {
      .breadcrumb-section {
        text-align: center;
      }

      .page-title {
        margin-bottom: 10px;
        font-size: 26px;
      }
    }
    /* ABOUT SECTION */
.about-section {
  background: #f8fafc;
}

.section-title {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111827;
}

.section-text {
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Side box */
.about-box {
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  color: #fff;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.about-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.about-box h5 {
  font-size: 28px;
  font-weight: 700;
}

/* MISSION SECTION */
.mission-section {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #fff;
  padding: 70px 20px;
}

.mission-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}

.mission-text {
  max-width: 800px;
  margin: 0 auto 15px;
  color: #e0e7ff;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 26px;
  }

  .mission-title {
    font-size: 28px;
  }
}
/* Section */
.values-section {
  background: #f8fafc;
  padding: 70px 0;
}

/* Heading */
.values-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
  position: relative;
}

/* Underline effect */
.values-section h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #2563eb;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* Card */
.value-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* Icon */
/* Icon wrapper effect */
.value-card i {
  font-size: 30px;
  color: #2563eb;
  background: #eff6ff;
  padding: 15px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 15px;
  transition: 0.3s;
}

/* Hover */
.value-card:hover i {
  background: #2563eb;
  color: #fff;
  transform: scale(1.1);
}

/* Title */
.value-card h6 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

/* Hover Effect */
.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: #dbeafe;
}

/* Icon hover animation */
.value-card:hover i {
  background: #2563eb;
  color: #fff;
  transform: scale(1.1);
}

/* Glow border effect */
.value-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: 0.3s;
}

.value-card:hover::before {
  border-color: #bfdbfe;
}

/* Responsive */
@media (max-width: 768px) {
  .values-section h2 {
    font-size: 26px;
  }

  .value-card {
    padding: 25px 15px;
  }
}
/* Section */
.process-section {
  background: #f8fafc;
  padding: 70px 0;
}

/* Heading */
.process-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  position: relative;
}

/* underline */
.process-section h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #2563eb;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* Card */
.process-card {
  background: #ffffff;
  padding: 30px 20px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

/* Step Number */
.process-card span {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 10px 20px rgba(37,99,235,0.3);
}

/* Title */
.process-card h6 {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
}

/* Hover */
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  border-color: #dbeafe;
}

/* Connector Line (Desktop only) */
@media (min-width: 768px) {
  .process-card::after {
    content: "";
    position: absolute;
    top: 30px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #c7d2fe;
    z-index: -1;
  }

  .col-md-3:last-child .process-card::after {
    display: none;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .process-section h2 {
    font-size: 26px;
  }

  .process-card {
    padding: 25px 15px;
  }

  .process-card span {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
}
/* Section */
.stats-section {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  padding: 70px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Optional pattern overlay */
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
}

/* Container fix */
.stats-section .container {
  position: relative;
  z-index: 2;
}

/* Card wrapper */
.stats-section .col-md-3 {
  padding: 15px;
}

/* Individual stat box */
.stats-section .col-md-3 h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
}

/* Label */
.stats-section .col-md-3 p {
  font-size: 14px;
  color: #dbeafe;
  margin: 0;
}

/* Hover effect */
.stats-section .col-md-3:hover {
  transform: translateY(-6px);
  transition: 0.3s;
}

/* Add subtle divider */
@media (min-width: 768px) {
  .stats-section .col-md-3:not(:last-child) {
    border-right: 1px solid rgba(255,255,255,0.2);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .stats-section {
    padding: 50px 0;
  }

  .stats-section .col-md-3 h3 {
    font-size: 32px;
  }
}
/* Section */
.cta-section {
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  padding: 80px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Subtle pattern */
.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.2;
}

/* Content */
.cta-section .container {
  position: relative;
  z-index: 2;
}

/* Heading */
.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Text */
.cta-section p {
  font-size: 16px;
  color: #dbeafe;
  margin-bottom: 25px;
}

/* Button */
.cta-section .btn {
  background: #ffffff;
  color: #2563eb;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: none;
}

/* Hover */
.cta-section .btn:hover {
  background: #e0e7ff;
  color: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 15px;
  }

  .cta-section h2 {
    font-size: 26px;
  }

  .cta-section p {
    font-size: 14px;
  }
}
.privacy-section {
  background: #f8fafc;
}

.privacy-section h1 {
  font-size: 36px;
  font-weight: 700;
}

.privacy-section h4 {
  margin-top: 25px;
  font-weight: 600;
  color: #1e3a8a;
}

.privacy-section p,
.privacy-section li {
  color: #4b5563;
  line-height: 1.7;
  font-size: 14px;
}

.privacy-section ul {
  padding-left: 18px;
}
/* contact us page */
/* HERO */
.contact-hero {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 700;
}

.contact-hero p {
  color: #dbeafe;
}

/* MAIN */
.contact-main {
  background: #f8fafc;
  padding: 70px 0;
}

/* LEFT */
.contact-main h2 {
  font-weight: 700;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
}

.contact-item i {
  font-size: 20px;
  color: #2563eb;
}

.contact-item span {
  font-size: 12px;
  color: #6b7280;
}

.contact-item p {
  margin: 0;
  font-weight: 600;
}

/* FORM CARD */
.contact-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* INPUT */
.contact-card input,
.contact-card textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
}

/* BUTTON */
.contact-card button {
  width: 100%;
  background: #2563eb;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-weight: 600;
}

.contact-card button:hover {
  background: #1e3a8a;
}

/* WHATSAPP */
.whatsapp-btn {
  background: #22c55e;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
}

/* MAP */
.map-section iframe {
  width: 100%;
  height: 350px;
  border: 0;
}
/* Wrapper */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

/* Common Style */
.float-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  position: relative;
}

/* Call Button */
.call-btn-floating {
  background: #2563eb;
}

/* WhatsApp Button */
.whatsapp-btn {
  background: #25d366;
}

/* Hover */
.float-btn:hover {
  transform: translateY(-5px) scale(1.05);
}

/* Pulse Animation */
.float-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: inherit;
  opacity: 0.5;
  animation: pulse 2s infinite;
  z-index: -1;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  70% {
    transform: scale(1.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 0;
  }
}

/* Mobile Size */
@media (max-width: 768px) {
  .float-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}