/* =====================================================
   INFIXORA — PREMIUM DIGITAL AGENCY STYLESHEET
   (Cleaned & Organized)
===================================================== */

/* ===============================
   1. THEME VARIABLES
================================= */
:root {
  --bg-color: #F8FAFC;
  --card-bg: #FFFFFF;
  --text-color: #0F172A;
  --heading-color: #020617;

  --primary-color: #2563EB;
  --secondary-color: #06B6D4;
  --accent-color: #14B8A6;

  --border-color: #E2E8F0;
  --nav-bg: rgba(255, 255, 255, .85);

  --shadow: 0 15px 40px rgba(15, 23, 42, .08);
  --transition: .3s ease;
}

[data-theme="dark"] {
  --bg-color: #020617;
  --card-bg: #0F172A;
  --text-color: #CBD5E1;
  --heading-color: #FFFFFF;

  --primary-color: #38BDF8;
  --secondary-color: #06B6D4;
  --accent-color: #2DD4BF;

  --border-color: #1E293B;
  --nav-bg: rgba(2, 6, 23, .85);

  --shadow: 0 15px 40px rgba(0, 0, 0, .45);
}

/* ===============================
   2. GLOBAL / BASE
================================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg-color);
  color: var(--text-color);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  color: var(--heading-color);
}

p {
  line-height: 1.8;
  color: var(--text-color);
}

a, button, .card, .nav-link {
  transition: var(--transition);
}

/* ===============================
   3. NAVBAR
================================= */
.navbar {
  background: var(--nav-bg);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 0;
}

.navbar-brand {
  font-size: 26px;
  font-weight: 800;
  color: var(--heading-color) !important;
}

.nav-link {
  color: var(--text-color) !important;
  font-weight: 500;
  margin: 0 10px;
}

.nav-link:hover {
  color: var(--primary-color) !important;
}

.navbar-toggler {
  border-color: var(--border-color);
}

.navbar-toggler-icon {
  filter: invert(1);
}

[data-theme="light"] .navbar-toggler-icon {
  filter: none;
}

/* ===============================
   4. HERO SECTION
================================= */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;

  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, .15), transparent 35%),
    linear-gradient(135deg, var(--bg-color), var(--card-bg));
}

[data-theme="dark"] .hero-section {
  background: linear-gradient(135deg, #020617, #0F172A);
}

/* faint tech grid background */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(56, 189, 248, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, .08) 1px, transparent 1px);
  background-size: 45px 45px;
  mask-image: linear-gradient(to bottom, black, transparent);
  pointer-events: none;
}

/* glowing blue orb */
.hero-section::after {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  right: -200px;
  top: 100px;
  background: radial-gradient(circle, rgba(37, 99, 235, .35), transparent 70%);
  filter: blur(80px);
  animation: heroGlow 8s infinite alternate;
}

@keyframes heroGlow {
  from { transform: translateY(0); }
  to   { transform: translateY(60px); }
}

/* CTA button */
.btn-premium {
  padding: 15px 32px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(90deg, #2563EB, #38BDF8);
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(56, 189, 248, .4);
}

.btn-premium:hover {
  transform: translateY(-5px);
}

/* ===============================
   5. ORBIT / AI VISUAL (hero right side)
================================= */
.tech-visual {
  height: 550px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.orbit-system {
  width: 500px;
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(56, 189, 248, .35);
  border-radius: 50%;
}

.ring-one   { width: 250px; height: 250px; }
.ring-two   { width: 350px; height: 350px; }
.ring-three { width: 450px; height: 450px; }

.orbit-core {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: #0F172A;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 0 80px #38BDF8;
  z-index: 10;
  animation: corePulse 3s infinite;
}

.orbit-core i {
  font-size: 60px;
  color: #38BDF8;
}

@keyframes corePulse {
  50% { box-shadow: 0 0 150px #38BDF8; }
}

.orbit-item {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -35px;
  width: 70px;
  height: 70px;
  border-radius: 20px;
  background: #0F172A;
  border: 1px solid #38BDF8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #38BDF8;
  box-shadow: 0 0 25px #38BDF8;
}

.item-one   { animation: moveOne 8s linear infinite; }
.item-two   { animation: moveTwo 12s linear infinite; }
.item-three { animation: moveThree 16s linear infinite; }
.item-four  { animation: moveFour 10s linear infinite; }

@keyframes moveOne {
  from { transform: rotate(0deg) translateX(125px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(125px) rotate(-360deg); }
}

@keyframes moveTwo {
  from { transform: rotate(0deg) translateX(175px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(175px) rotate(-360deg); }
}

@keyframes moveThree {
  from { transform: rotate(0deg) translateX(225px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(225px) rotate(-360deg); }
}

@keyframes moveFour {
  from { transform: rotate(0deg) translateX(150px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(150px) rotate(-360deg); }
}

/* ===============================
   6. CARDS (service / feature cards)
================================= */
.card {
  position: relative;
  overflow: hidden;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  right: -40px;
  top: -40px;
  background: radial-gradient(circle, rgba(37, 99, 235, .18), transparent 70%);
}

.card:hover {
  transform: translateY(-12px);
}

/* ===============================
   7. COUNTER SECTION
================================= */
.counter-value {
  font-size: 48px;
  font-weight: 800;
  color: #38BDF8;
}

/* ===============================
   8. UTILITY / TEXT COLORS
================================= */
.text-muted {
  color: #64748B !important;
}

[data-theme="dark"] .text-muted {
  color: #94A3B8 !important;
}

/* ===============================
   9. ABOUT VISUAL
================================= */
.about-visual {
  height: 380px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, .18), transparent 60%),
    var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow);
  position: relative;
}

.about-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===============================
   10. PRICING CARDS
================================= */
.pricing-card {
  position: relative;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
}

.pricing-featured {
  background: var(--card-bg);
  border: 2px solid var(--primary-color);
  box-shadow: var(--shadow);
  transform: scale(1.05);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-color);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
}

.pricing-amount {
  margin: 15px 0 5px;
}

.pricing-value {
  font-size: 38px;
  font-weight: 800;
  color: var(--heading-color);
}

.pricing-period {
  color: var(--text-color);
  opacity: .6;
  font-size: 14px;
}

/* ===============================
   11. DYNAMIC OFFER POPUP
================================= */
.offer-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.offer-popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.offer-popup {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: var(--card-bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
  transform: scale(.9);
  transition: var(--transition);
}

.offer-popup-overlay.active .offer-popup {
  transform: scale(1);
}

.offer-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

.offer-popup-banner {
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  font-size: 60px;
  color: #fff;
}

.offer-popup-body {
  padding: 30px;
  text-align: center;
}

.offer-popup-badge {
  display: inline-block;
  background: rgba(37, 99, 235, .12);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  padding: 6px 16px;
  border-radius: 50px;
}


/* ===============================
   12. FREE CONSULTATION BOX
================================= */
.consultation-box {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 24px;
  padding: 40px;
  color: #fff;
}

.consultation-box h3,
.consultation-box p {
  color: #fff;
}

.consultation-box .text-muted {
  color: rgba(255, 255, 255, .85) !important;
}

.consultation-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: #fff;
}

.consultation-points span {
  font-size: 14px;
  color: #fff;
}

.consultation-box .offer-popup-badge {
  background: rgba(255, 255, 255, .2);
  color: #fff;
}

.consultation-box .btn-premium {
  background: #fff;
  color: var(--primary-color) !important;
  box-shadow: none;
}

.consultation-box .btn-premium:hover {
  transform: translateY(-3px);
}


/* ===============================
   13. TESTIMONIALS
================================= */
.testimonial-card {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  height: 100%;
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 14px;
  margin-bottom: 15px;
}

.testimonial-quote {
  color: var(--text-color);
  font-style: italic;
  line-height: 1.8;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
}

/* ===============================
   14. PARTNER LOGOS
================================= */
.partner-logo {
  width: 100%;
  height: 90px;
  border-radius: 16px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: var(--text-color);
  opacity: .6;
  transition: var(--transition);
}

.partner-logo:hover {
  opacity: 1;
  color: var(--primary-color);
  border-color: var(--primary-color);
}

/* ===============================
   15. DEMO SECTION
================================= */
.demo-box {
  position: relative;
  height: 320px;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, .2), transparent 60%),
    var(--bg-color);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.demo-play-btn {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: none;
  background: var(--primary-color);
  color: #fff;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 0 12px rgba(37, 99, 235, .15);
  transition: var(--transition);
}

.demo-play-btn:hover {
  transform: scale(1.1);
}


.featured-post {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.featured-thumb {
  height: 100%;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, .18), transparent 60%),
    var(--bg-color);
  font-size: 90px;
  color: var(--primary-color);
}

.featured-content {
  padding: 40px;
}

.blog-meta {
  font-size: 13px;
  color: var(--text-color);
  opacity: .65;
}

.blog-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 100%;
  transition: var(--transition);
}

.blog-card:hover {
  transform: translateY(-8px);
}

.blog-thumb {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, .18), transparent 60%),
    var(--bg-color);
  font-size: 50px;
  color: var(--primary-color);
}

.blog-body {
  padding: 24px;
}

.newsletter-cta {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 50px 30px;
}

.newsletter-input {
  max-width: 320px;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

.newsletter-input::placeholder {
  color: var(--text-color);
  opacity: .5;
}


/* ===============================
   16. PORTFOLIO FILTER & CARDS
================================= */
.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-color);
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.filter-btn.active {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.portfolio-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-8px);
}

.portfolio-thumb {
  position: relative;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, .18), transparent 60%),
    var(--bg-color);
  font-size: 60px;
  color: var(--primary-color);
  overflow: hidden;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(37, 99, 235, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-view {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff;
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration: none;
}

.portfolio-info {
  padding: 22px;
}

.portfolio-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--primary-color);
}


/* ===============================
   17. SERVICE ICON BOX & FEATURE LIST
================================= */
.service-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 18px;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 30px;
  box-shadow: var(--shadow);
}

.feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: var(--text-color);
}

.feature-list li i {
  color: var(--primary-color);
  font-size: 16px;
}


/* ===============================
   18. PAGE BANNER (inner pages)
================================= */
.page-banner {
  padding: 160px 0 70px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, .12), transparent 40%),
    var(--bg-color);
  border-bottom: 1px solid var(--border-color);
}

/* ===============================
   19. TEAM CARD
================================= */
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary-color);
}

.team-card {
  cursor: pointer;
}

.team-view-hint {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-color);
  opacity: 0;
  transition: var(--transition);
}

.team-card:hover .team-view-hint {
  opacity: 1;
}

/* ===============================
   19b. TEAM MEMBER DETAIL MODAL
================================= */
.team-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .75);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1060;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 20px;
}

.team-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.team-modal {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
  transform: scale(.9);
  transition: var(--transition);
}

.team-modal-overlay.active .team-modal {
  transform: scale(1);
}

.team-modal-close {
  background: rgba(148, 163, 184, .2) !important;
  color: var(--text-color) !important;
}

.team-modal-header {
  text-align: center;
  padding: 40px 30px 20px;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, .15), transparent 60%),
    var(--bg-color);
  border-bottom: 1px solid var(--border-color);
}

.team-modal-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 38px;
  color: var(--primary-color);
}

.team-modal-body {
  padding: 30px;
}

.team-modal-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}

.team-skill-tag {
  background: rgba(37, 99, 235, .1);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

.team-modal-contact-link {
  display: inline-flex;
  align-items: center;
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: 10px;
}

.team-modal-contact-link:hover {
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.team-modal-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.team-modal-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.team-modal-socials a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}


/* ===============================
   20. THEME TOGGLE BUTTON (navbar)
================================= */
.theme-toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: transparent;
  color: var(--text-color);
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.theme-toggle-btn:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

/* ===============================
   21. FOOTER
================================= */
.footer-brand {
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--heading-color);
  text-decoration: none;
}

.footer-brand i {
  color: var(--primary-color);
}

.footer-brand span {
  color: var(--secondary-color);
}

.site-footer {
  background: var(--card-bg);
  color: var(--text-color);
  border-top: 1px solid var(--border-color);
}

.footer-text {
  color: var(--text-color);
  opacity: .8;
  font-size: 15px;
  line-height: 1.7;
}

.site-footer ul.footer-links {
  padding-left: 0;
  margin-bottom: 0;
}

.site-footer ul.footer-links li {
  margin-bottom: 10px;
  list-style: none;
}

.site-footer ul.footer-links li a {
  color: var(--text-color) !important;
  opacity: .75;
  text-decoration: none !important;
  font-size: 15px;
  transition: var(--transition);
}

.site-footer ul.footer-links li a:hover {
  color: var(--primary-color) !important;
  opacity: 1;
  padding-left: 4px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-right: 10px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: 16px;
  text-decoration: none;
}

.footer-socials a:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.footer-newsletter .form-control {
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  color: var(--text-color);
}

.footer-newsletter .form-control::placeholder {
  color: var(--text-color);
  opacity: .5;
}

.footer-newsletter .form-control:focus {
  background: var(--bg-color);
  border-color: var(--primary-color);
  box-shadow: none;
  color: var(--text-color);
}

.footer-hint {
  display: block;
  margin-top: 8px;
  color: var(--text-color);
  opacity: .6;
}

.footer-divider {
  border-color: var(--border-color);
}

.footer-legal {
  color: var(--text-color);
  opacity: .75;
  text-decoration: none;
  font-size: 14px;
}

.footer-legal:hover {
  color: var(--primary-color);
  opacity: 1;
}

.footer-dot {
  margin: 0 8px;
  color: var(--border-color);
}

/* ===============================
   22. WHATSAPP FLOAT BUTTON
================================= */
.whatsapp-float {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .3);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ===============================
   23. RESPONSIVE
================================= */
@media (max-width: 1200px) {
  .display-3 {
    font-size: 45px;
  }

  .orbit-system {
    transform: scale(.9);
  }
}

@media (max-width: 992px) {
  .hero-section {
    text-align: center;
  }

  .tech-visual {
    margin-top: 50px;
  }

  .orbit-system {
    transform: scale(.85);
  }
}

@media (max-width: 576px) {
  .display-3 {
    font-size: 32px;
  }

  .tech-visual {
    height: 400px;
  }

  .orbit-system {
    width: 400px;
    height: 400px;
    transform: scale(.7);
    margin-left: -40px;
  }

  .ring-three {
    display: none;
  }

  .orbit-item {
    width: 55px;
    height: 55px;
    margin: -27px;
    font-size: 22px;
  }

  .counter-value {
    font-size: 32px;
  }
}