/* ========================================
   CENTAURUSS IT SERVICES - MAIN STYLESHEET
   ======================================== */

:root {
  --primary: #1a3c6e;
  --primary-dark: #0f2548;
  --accent: #e8971a;
  --accent-light: #f5b845;
  --light-bg: #f4f7fb;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-body: #4a5568;
  --text-muted: #718096;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(26, 60, 110, 0.10);
  --shadow-lg: 0 12px 40px rgba(26, 60, 110, 0.16);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

/* ---- TOP BAR ---- */
.topbar {
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
  color: var(--text-body);
  padding: 7px 0;
  font-size: 0.82rem;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--text-body);
}

.topbar i {
  color: var(--accent);
}

.topbar-right a {
  color: var(--text-muted);
  margin-left: 10px;
  font-size: 0.82rem;
  transition: var(--transition);
  text-decoration: none;
  width: 28px;
  height: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.topbar-right a:hover {
  color: var(--white);
  background: var(--accent);
  border-color: var(--accent);
}

/* ---- NAVBAR ---- */
#mainNav {
  background: var(--white);
  box-shadow: 0 2px 16px rgba(26, 60, 110, 0.09);
  padding: 8px 0;
  transition: var(--transition);
}

#mainNav.scrolled {
  background: #decce4;
  box-shadow: 0 4px 24px rgba(26, 60, 110, 0.13);
}

.navbar-brand img {
  /* transition: var(--transition); */
  /* Logo has transparent/white bg — add padding+border for visibility */
  /* background: var(--white);
  border-radius: 8px;
  padding: 0px 5px;
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(26,60,110,0.08); */
}

.nav-link {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--primary) !important;
  padding: 6px 14px !important;
  letter-spacing: 0.4px;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

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

.btn-quote {
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 8px 20px !important;
  transition: var(--transition);
}

.btn-quote:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
}

.navbar-toggler {
  border: none;
  outline: none;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ---- HERO SLIDER ---- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 810px;
}

.carousel,
.carousel-inner,
.carousel-item {
  height: 100%;
}

.slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.1);
}

.carousel-item.active .slide-bg {
  animation: heroZoomOut 4s ease-out forwards;
}

@keyframes heroZoomOut {
  from {
    transform: scale(1.1);
  }

  to {
    transform: scale(1);
  }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 37, 72, 0.88) 0%, rgba(26, 60, 110, 0.55) 60%, transparent 100%);
}

.carousel-caption {
  position: relative;
  inset: unset;
  text-align: left;
  padding: 0;
  height: 100%;
}

.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 4px;
  margin-bottom: 18px;
}

.hero-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.btn-outline-custom {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 11px 28px;
  border-radius: 6px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  margin: 0 4px;
}

.carousel-indicators button.active {
  background: var(--accent);
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--primary);
  padding: 32px 0;
}

.stat-item {
  text-align: center;
  padding: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ---- SECTIONS ---- */
.section-pad {
  padding: 90px 0;
}

.bg-light-custom {
  background: var(--light-bg);
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232, 151, 26, 0.1);
  padding: 4px 14px;
  border-radius: 4px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.text-accent {
  color: var(--accent);
}

.section-title-sm {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
  text-align: justify;
}

.btn-primary-custom {
  background: var(--accent);
  color: var(--white);
  border: none;
  font-family: 'Rajdhani', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 12px 30px;
  border-radius: 6px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  background: var(--accent-light);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 151, 26, 0.4);
}

/* ---- ABOUT ---- */
.about-img-wrap {
  position: relative;
  display: inline-block;
}

.about-img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}

.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--accent);
  color: var(--white);
  border-radius: 12px;
  padding: 18px 22px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(232, 151, 26, 0.35);
}

.badge-num {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
}

.badge-text {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.af-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
  font-weight: 500;
}

.af-item i {
  color: var(--accent);
  font-size: 1rem;
}

/* ---- PRODUCTS ---- */
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;

}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;

}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;

}

.product-card:hover .product-img img {
  transform: scale(1.07);
}

.product-info {
  padding: 16px 18px;
}

.product-info h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.product-info p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- SERVICES ---- */
.services-section {
  background: var(--white);
}

.service-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.3rem;
  color: var(--white);
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.service-card h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  margin-top: 10px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-link {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.service-link:hover {
  color: var(--accent);
  gap: 8px;
}

/* Services Accordion */
.services-accordion .accordion-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm) !important;
  margin-bottom: 10px;
  overflow: hidden;
}

.services-accordion .accordion-button {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-dark);
  background: var(--white);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
}

.services-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
  background: rgba(26, 60, 110, 0.04);
  box-shadow: none;
}

.services-accordion .accordion-button::after {
  margin-left: auto;
}

.acc-num {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 30px;
}

.services-accordion .accordion-body {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 12px 20px 16px 64px;
  text-align: justify;
}

/* ---- WHY US ---- */
.why-section {
  background: var(--white);
}

.why-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 36px 24px;
  transition: var(--transition);
  height: 100%;
}

.why-card:hover {
  background: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-card:hover h5,
.why-card:hover p {
  color: var(--white);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
}

.why-card h5 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  transition: var(--transition);
}

.why-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  transition: var(--transition);
  margin: 0;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.check-item i {
  width: 24px;
  height: 24px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.rounded-custom {
  border-radius: var(--radius);
}

/* ---- BRANDS ---- */
.brands-section {}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (min-width: 576px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 992px) {
  .brands-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
  }
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid #eaeaea;
  transition: var(--transition);
  height: 120px;
}

.brand-logo:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}

.brand-logo img {
  max-height: 60px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(0.2);
  transition: filter 0.3s;
}

.brand-logo:hover img {
  filter: grayscale(0);
}

.see-more-btn-wrap {
  text-align: center;
  margin-top: 40px;
}

/* ---- CONTACT ---- */
.contact-section {
  background: var(--light-bg);
}

.contact-info-block {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 36px 30px;
  color: var(--white);
  height: 100%;
}

.contact-info-block h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: 24px;
}

.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 22px;
}

.ci-icon {
  width: 40px;
  height: 40px;
  background: rgba(232, 151, 26, 0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--accent);
  flex-shrink: 0;
}

.ci-label {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
}

.ci-val {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
}

.social-links a:hover {
  background: var(--accent);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
}

.contact-form-wrap h4 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text-dark);
}

.form-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.custom-input {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.custom-input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26, 60, 110, 0.1);
  outline: none;
}

/* ---- FORM NOTE ---- */
.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--light-bg);
  border-radius: 6px;
  padding: 8px 12px;
  border-left: 3px solid var(--accent);
}

/* ---- FOOTER ---- */
.footer {
  background: #decce4;
  border-top: 2px solid var(--border);
}

.footer-logo-wrap {
  /* display: inline-block;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 0px 5px;
  box-shadow: 0 2px 8px rgba(26,60,110,0.08); */
}

.footer-top {
  padding: 64px 0 40px;
}

.footer-desc {
  color: var(--primary);
  font-size: 0.9rem;
  line-height: 1.8;
  text-align: justify;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  background: var(--white);
  color: var(--primary);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-socials a:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.footer-heading {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 1px;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--primary);
  font-size: 0.88rem;
  margin-bottom: 12px;
  line-height: 1.5;
}

.footer-contact-item i {
  color: var(--accent);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: var(--text-dark);
  font-size: 0.85rem;
  background: var(--white);
}

.footer-bottom a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ---- BACK TO TOP ---- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 44px;
  height: 44px;
  background: var(--accent);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232, 151, 26, 0.4);
  transition: var(--transition);
  opacity: 0;
  pointer-events: none;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
}

/* ---- FLOATING SOCIAL SIDEBAR ---- */
.floating-social {
  position: fixed;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 998;
  display: flex;
  flex-direction: column;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.15);
}

.floating-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: var(--white);
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.floating-social a:last-child {
  border-bottom: none;
}

.floating-social a:hover {
  background: var(--accent);
  width: 48px;
  color: var(--white);
}

/* ---- FLOATING WHATSAPP CHAT BUTTON ---- */
.floating-whatsapp {
  position: fixed;
  left: 30px;
  bottom: 30px;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  z-index: 999;
  text-decoration: none;
  transition: var(--transition);
  animation: wa-pulse 2.2s infinite;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
  color: var(--white);
}

/* ---- ANIMATIONS ---- */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: heroIn 0.7s forwards;
}

.delay-1 {
  animation-delay: 0.2s;
}

.delay-2 {
  animation-delay: 0.4s;
}

.delay-3 {
  animation-delay: 0.6s;
}

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brandScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes wa-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  }

  70% {
    box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="fade-right"] {
  transform: translateX(-30px);
}

[data-animate="fade-left"] {
  transform: translateX(30px);
}

[data-animate].visible {
  opacity: 1;
  transform: translate(0);
}

@media (max-width: 768px) {
  .floating-social a {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .floating-social a:hover {
    width: 36px;
  }

  .floating-whatsapp {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    left: 16px;
    bottom: 16px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .section-pad {
    padding: 64px 0;
  }

  .about-badge {
    bottom: -10px;
    right: -10px;
    padding: 12px 16px;
  }

  .hero-section {
    height: 80vh;
  }
}

@media (max-width: 768px) {
  .section-pad {
    padding: 48px 0;
  }

  .topbar-left span:last-child {
    display: none;
  }

  .hero-section {
    height: 70vh;
    min-height: 500px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 1.7rem;
  }

  .about-badge {
    display: none;
  }

  .contact-info-block,
  .contact-form-wrap {
    padding: 24px 18px;
  }
}

/* ---- BRANDS SCROLL ANIMATION ---- */
@keyframes brandScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}