/* Common widgets styles extracted from services.html */
.r3-nav-search-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(155, 93, 229, 0.1));
  border: 1px solid rgba(0, 212, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
  margin-right: 0.6rem;
}

.r3-nav-search-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
  border-color: var(--neon-blue);
}

.r3-nav-search-btn i {
  font-size: 1rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.r3-search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 0, 20, 0.7);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10000;
}

.r3-search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.r3-search-panel {
  position: fixed;
  right: 0;
  top: 0;
  width: 450px;
  max-width: 90vw;
  height: 100vh;
  background: rgba(8, 4, 28, 0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(0, 212, 255, 0.2);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10001;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.5);
}

.r3-search-panel.active {
  transform: translateX(0);
}

.r3-search-panel-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
  position: relative;
}

.r3-search-panel-header h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  color: var(--neon-blue);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.r3-search-panel-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 59, 110, 0.1);
  border: 1px solid rgba(255, 59, 110, 0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.r3-search-panel-close:hover {
  background: rgba(255, 59, 110, 0.2);
  transform: rotate(90deg);
}

.r3-search-panel-close i {
  color: var(--neon-red);
  font-size: 1rem;
}

.r3-search-input-wrapper {
  position: relative;
}

.r3-search-input {
  width: 100%;
  padding: 15px 50px 15px 20px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 10px;
  color: var(--text-primary);
  font-family: 'Exo 2', sans-serif;
  font-size: 1rem;
  outline: none;
  transition: all 0.3s ease;
}

.r3-search-input:focus {
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.r3-search-input::placeholder {
  color: var(--text-muted);
}

.r3-search-icon {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 1.1rem;
}

.r3-search-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 2rem;
}

.r3-search-section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.65rem;
  color: var(--neon-purple);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.r3-popular-searches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 2rem;
}

.r3-popular-tag {
  padding: 8px 14px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.r3-popular-tag:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--neon-blue);
  color: var(--neon-blue);
  transform: translateY(-2px);
}

.r3-search-results {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.r3-search-result {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: var(--text-primary);
}

.r3-search-result:hover {
  background: rgba(0, 212, 255, 0.08);
  border-color: var(--neon-blue);
  transform: translateX(3px);
}

.r3-result-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(155, 93, 229, 0.15));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.r3-result-icon i {
  font-size: 1rem;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.r3-result-content {
  flex: 1;
}

.r3-result-content h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.r3-result-content p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.r3-result-arrow {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.r3-search-result:hover .r3-result-arrow {
  color: var(--neon-blue);
  transform: translateX(3px);
}

.r3-no-results {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--text-muted);
}

.r3-no-results i {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.3;
}

.r3-no-results p {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.r3-no-results small {
  font-size: 0.9rem;
  opacity: 0.7;
}

.r3-lang-widget {
  position: fixed;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9998;
}

.r3-lang-toggle {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(155, 93, 229, 0.2), rgba(0, 212, 255, 0.2));
  border: 1px solid rgba(155, 93, 229, 0.3);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.r3-lang-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(155, 93, 229, 0.5);
  border-color: var(--neon-purple);
}

.r3-lang-toggle i {
  font-size: 1.2rem;
  background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.r3-lang-dropdown {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%) translateX(10px);
  width: 200px;
  background: rgba(12, 8, 35, 0.98);
  border: 1px solid rgba(155, 93, 229, 0.3);
  border-radius: 16px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.r3-lang-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

.r3-lang-header {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.7rem;
  color: var(--neon-purple);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 8px 12px;
  border-bottom: 1px solid rgba(155, 93, 229, 0.2);
  margin-bottom: 5px;
}

.r3-lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.r3-lang-option:hover {
  background: rgba(155, 93, 229, 0.1);
}

.r3-lang-option.active {
  background: linear-gradient(135deg, rgba(155, 93, 229, 0.2), rgba(0, 212, 255, 0.2));
  border: 1px solid rgba(155, 93, 229, 0.3);
}

.r3-lang-flag {
  font-size: 1.2rem;
}

.r3-lang-name {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.r3-lang-option.active .r3-lang-name {
  color: var(--text-primary);
}

@keyframes r3-chat-pulse {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }

  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@keyframes r3-msg-slide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes r3-typing {

  0%,
  60%,
  100% {
    transform: translateY(0);
  }

  30% {
    transform: translateY(-10px);
  }
}

.r3-chat-container {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 9999;
  font-family: 'Exo 2', sans-serif;
}

.r3-chat-toggle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(0, 212, 255, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.r3-chat-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 35px rgba(0, 212, 255, 0.5);
}

.r3-chat-toggle i {
  font-size: 1.5rem;
  color: #030014;
}

.r3-chat-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  animation: r3-chat-pulse 2s ease-out infinite;
  z-index: -1;
}

.r3-chat-window {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 380px;
  max-width: calc(100vw - 50px);
  background: rgba(12, 8, 35, 0.98);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.4s ease;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(0, 212, 255, 0.1);
}

.r3-chat-window.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.r3-chat-header {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  padding: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.r3-chat-header-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.r3-chat-avatar {
  width: 45px;
  height: 45px;
  background: rgba(3, 0, 20, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.r3-chat-avatar i {
  font-size: 1.2rem;
  color: #030014;
}

.r3-chat-header-text h4 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  color: #030014;
  margin-bottom: 2px;
}

.r3-chat-header-text span {
  font-size: 0.75rem;
  color: rgba(3, 0, 20, 0.7);
  display: flex;
  align-items: center;
  gap: 5px;
}

.r3-chat-header-text span::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #00ff88;
  border-radius: 50%;
}

.r3-chat-close {
  background: none;
  border: none;
  color: #030014;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0.7;
  transition: all 0.3s ease;
}

.r3-chat-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.r3-chat-form {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.r3-chat-form-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  color: var(--neon-blue);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.r3-chat-input-group {
  position: relative;
}

.r3-chat-input-group input,
.r3-chat-input-group textarea {
  width: 100%;
  padding: 12px 15px 12px 42px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 10px;
  color: #FFFFFF;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.r3-chat-input-group textarea {
  min-height: 80px;
  resize: none;
  padding-top: 12px;
}

.r3-chat-input-group i {
  position: absolute;
  left: 15px;
  top: 14px;
  color: #6B7A8F;
  font-size: 0.9rem;
}

.r3-chat-input-group input:focus,
.r3-chat-input-group textarea:focus {
  outline: none;
  border-color: var(--neon-blue);
  box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.r3-chat-input-group input::placeholder,
.r3-chat-input-group textarea::placeholder {
  color: #6B7A8F;
}

.r3-chat-submit {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: #030014;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.r3-chat-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.r3-chat-messages {
  height: 300px;
  overflow-y: auto;
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.r3-chat-messages.active {
  display: flex;
}

.r3-chat-message {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  animation: r3-msg-slide 0.3s ease;
}

.r3-chat-message.bot {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(155, 93, 229, 0.15));
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.r3-chat-message.user {
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  color: #030014;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

.r3-chat-message-time {
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 5px;
  display: block;
}

.r3-typing {
  display: flex;
  gap: 5px;
  padding: 15px;
  align-self: flex-start;
}

.r3-typing span {
  width: 8px;
  height: 8px;
  background: var(--neon-blue);
  border-radius: 50%;
  animation: r3-typing 1.4s ease infinite;
}

.r3-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.r3-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

.r3-chat-input-area {
  padding: 1rem;
  border-top: 1px solid rgba(0, 212, 255, 0.15);
  display: none;
}

.r3-chat-input-area.active {
  display: block;
}

.r3-chat-input-container {
  display: flex;
  gap: 10px;
}

.r3-chat-msg-input {
  flex: 1;
  padding: 12px 15px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 25px;
  color: #FFFFFF;
  font-family: 'Exo 2', sans-serif;
  font-size: 0.9rem;
}

.r3-chat-msg-input:focus {
  outline: none;
  border-color: var(--neon-blue);
}

.r3-chat-send {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, var(--neon-blue), var(--neon-purple));
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.r3-chat-send:hover {
  transform: scale(1.1);
}

.r3-chat-send i {
  color: #030014;
  font-size: 1rem;
}

.r3-chat-quick {
  display: flex;
  gap: 8px;
  padding: 0 1rem 1rem;
  flex-wrap: wrap;
}

.r3-quick-btn {
  padding: 8px 14px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: 20px;
  color: #B8C5D6;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.r3-quick-btn:hover {
  background: rgba(0, 212, 255, 0.2);
  color: var(--neon-blue);
  border-color: var(--neon-blue);
}

.r3-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  text-decoration: none;
}

.r3-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 25px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .r3-search-panel {
    width: 100vw;
    max-width: 100vw;
  }

  .r3-search-panel-header {
    padding: 1.5rem 1.5rem 1rem;
  }

  .r3-search-body {
    padding: 1rem 1.5rem;
  }

  .r3-lang-widget {
    right: 15px !important;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 9998;
  }

  .r3-lang-dropdown {
    right: 60px;
    left: auto;
    top: 50%;
    bottom: auto;
    width: 210px;
    max-height: 78vh;
    overflow-y: auto;
    transform: translateY(-50%) translateX(10px);
  }

  .r3-lang-dropdown.active {
    transform: translateY(-50%) translateX(0);
  }

  .r3-chat-window {
    width: calc(100vw - 30px);
    right: -10px;
    bottom: 75px;
  }
}


/* Shared footer legal links fix */
.footer-legal {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
}

.footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.footer-legal a:hover {
  color: var(--neon-blue);
  text-decoration: none;
}

.footer-legal span {
  color: var(--text-muted);
}

/* Scoped common footer styles to prevent per-page conflicts */
.r3-common-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
  text-align: initial;
}

.r3-common-footer .footer-bottom p {
  margin: 0;
}

.r3-common-footer .footer-legal {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: initial;
}

.r3-common-footer .footer-legal a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
}

.r3-common-footer .footer-legal a:hover {
  color: var(--neon-blue);
  text-decoration: none;
}

.r3-common-footer .footer-legal span {
  color: var(--text-muted);
}

@media (max-width: 768px) {
  .r3-common-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .r3-common-footer .footer-legal {
    justify-content: center;
  }
}

/* Unified common footer look (match Home page) */
.r3-common-footer {
  background: var(--darker-bg);
  position: relative;
  z-index: 1;
  padding: 5rem 2rem 2rem;
  border-top: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-red), var(--neon-purple), var(--neon-blue)) 1;
}

.r3-common-footer .footer-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.r3-common-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.r3-common-footer .footer-brand img {
  height: 60px;
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 0 15px rgba(155, 93, 229, 0.4));
}

.r3-common-footer .footer-brand p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.r3-common-footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.r3-common-footer .footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.r3-common-footer .footer-contact a:hover {
  color: var(--neon-blue);
}

.r3-common-footer .footer-contact i {
  width: 16px;
  color: var(--neon-purple);
}

.r3-common-footer .footer-social-grid {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.r3-common-footer .footer-social-row {
  display: flex;
  gap: 0.5rem;
}

.r3-common-footer .footer-social-row a {
  width: 40px;
  height: 40px;
  background: rgba(12, 8, 35, 0.8);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.r3-common-footer .footer-social-row a:hover {
  transform: translateY(-3px);
}

.r3-common-footer .footer-social-row a.linkedin:hover {
  border-color: #0077B5;
  color: #0077B5;
  box-shadow: 0 5px 15px rgba(0, 119, 181, 0.3);
}

.r3-common-footer .footer-social-row a.facebook:hover {
  border-color: #1877F2;
  color: #1877F2;
  box-shadow: 0 5px 15px rgba(24, 119, 242, 0.3);
}

.r3-common-footer .footer-social-row a.twitter:hover {
  border-color: #1DA1F2;
  color: #1DA1F2;
  box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

.r3-common-footer .footer-social-row a.instagram:hover {
  border-color: #E4405F;
  color: #E4405F;
  box-shadow: 0 5px 15px rgba(228, 64, 95, 0.3);
}

.r3-common-footer .footer-social-row a.youtube:hover {
  border-color: #FF0000;
  color: #FF0000;
  box-shadow: 0 5px 15px rgba(255, 0, 0, 0.3);
}

.r3-common-footer .footer-social-row a.tiktok:hover {
  border-color: #00F2EA;
  color: #00F2EA;
  box-shadow: 0 5px 15px rgba(0, 242, 234, 0.3);
}

.r3-common-footer .footer-social-row a.pinterest:hover {
  border-color: #E60023;
  color: #E60023;
  box-shadow: 0 5px 15px rgba(230, 0, 35, 0.3);
}

.r3-common-footer .footer-social-row a.threads:hover {
  border-color: #FFFFFF;
  color: #FFFFFF;
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

.r3-common-footer .footer-social-row a.bluesky:hover {
  border-color: #0085FF;
  color: #0085FF;
  box-shadow: 0 5px 15px rgba(0, 133, 255, 0.3);
}

.r3-common-footer .footer-social-row a.reddit:hover {
  border-color: #FF4500;
  color: #FF4500;
  box-shadow: 0 5px 15px rgba(255, 69, 0, 0.3);
}

.r3-common-footer .footer-column h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.r3-common-footer .footer-column ul {
  list-style: none;
  position: relative;
  z-index: 1;
}

.r3-common-footer .footer-column ul li {
  margin-bottom: 0.75rem;
}

.r3-common-footer .footer-column ul li a {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.r3-common-footer .footer-column ul li a:hover {
  color: var(--neon-blue);
}

.r3-common-footer .footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--card-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: initial;
  color: initial;
  font-size: initial;
}

.r3-common-footer .footer-bottom p {
  margin: 0;
  font-size: 0.88rem;
  background: linear-gradient(90deg, #64748b, var(--neon-blue), var(--neon-purple), var(--neon-red), #64748b);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: footerGlow 8s linear infinite;
}

.r3-common-footer .footer-legal {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.r3-common-footer .footer-legal a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.r3-common-footer .footer-legal a:hover {
  color: var(--neon-blue);
}

.r3-common-footer .footer-legal span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

@media (max-width: 1024px) {
  .r3-common-footer .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .r3-common-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .mobile-show{
    display: block !important;
  }
  .mobile-show ul{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .r3-common-footer .footer-column {
    display: none;
  }

  .r3-common-footer .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .r3-common-footer .footer-legal {
    justify-content: center;
  }

}

/* Scoped common header styles */
.r3-common-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(3, 0, 20, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--card-border);
}

.r3-common-header .nav-top-line {
  height: 3px;
  background: var(--r3-header-line, var(--gradient-main));
}

.r3-common-header .nav-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.5rem;
}

.r3-common-header .logo img {
  height: 55px;
  filter: drop-shadow(0 0 12px rgba(155, 93, 229, 0.4));
  transition: all 0.3s ease;
}

.r3-common-header .nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.r3-common-header .nav-menu>li {
  position: relative;
}

.r3-common-header .nav-menu>li>a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 1.3rem;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-secondary);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
  position: relative;
}

.r3-common-header .nav-menu>li>a::before {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--r3-header-hover, var(--neon-blue)), var(--r3-header-hover2, var(--neon-purple)));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--r3-header-hover, var(--neon-blue));
}

.r3-common-header .nav-menu>li:hover>a::before {
  width: 70%;
}

.r3-common-header .nav-menu>li>a:hover {
  color: var(--r3-header-hover, var(--neon-blue));
  background: rgba(0, 212, 255, 0.08);
}

.r3-common-header .nav-menu>li>a i.fa-chevron-down {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.r3-common-header .nav-menu>li:hover>a i.fa-chevron-down {
  transform: rotate(180deg);
}

.r3-common-header .nav-cta {
  background: var(--r3-header-cta, var(--gradient-main)) !important;
  color: var(--dark-bg) !important;
  font-weight: 700 !important;
  padding: 0.9rem 1.8rem !important;
  border-radius: 10px !important;
  box-shadow: 0 0 25px var(--r3-header-cta-shadow, rgba(0, 212, 255, 0.3));
}

.r3-common-header .nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 35px var(--r3-header-cta-shadow, rgba(0, 212, 255, 0.5)) !important;
}

.r3-common-header .mega-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 850px;
  width: 850px;
  background: rgba(8, 4, 28, 0.98);
  border: 2px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 212, 255, 0.2), inset 0 0 60px rgba(0, 212, 255, 0.05);
  backdrop-filter: blur(30px);
}

.r3-common-header .mega-dropdown::before {
  content: '';
  position: absolute;
  top: -2px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--r3-header-hover, var(--neon-blue)), var(--r3-header-hover2, var(--neon-purple)), var(--r3-header-hover, var(--neon-blue)), transparent);
}

.r3-common-header .nav-menu>li:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.r3-common-header .mega-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.8rem;
  margin-bottom: 0.8rem;
  border-bottom: 1px solid rgba(0, 212, 255, 0.15);
}

.r3-common-header .mega-header h3 {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.75rem;
  color: var(--r3-header-hover, var(--neon-blue));
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.r3-common-header .mega-header h3 i {
  font-size: 0.9rem;
  background: var(--r3-header-cta, var(--gradient-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.r3-common-header .mega-header a {
  font-size: 0.8rem;
  color: var(--r3-header-hover2, var(--neon-purple));
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.r3-common-header .mega-header a:hover {
  color: var(--r3-header-hover, var(--neon-blue));
  gap: 0.5rem;
}

.r3-common-header .mega-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.r3-common-header .mega-grid.single-col {
  grid-template-columns: 1fr;
}

.r3-common-header .mega-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid transparent;
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.02), rgba(155, 93, 229, 0.02));
}

.r3-common-header .mega-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 212, 255, 0.15) 50%, transparent 100%);
  transition: left 0.6s ease;
  transform: skewX(-20deg);
}

.r3-common-header .mega-item:hover::before {
  left: 150%;
}

.r3-common-header .mega-item:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(155, 93, 229, 0.12));
  border-color: rgba(0, 212, 255, 0.4);
  transform: translateX(5px) translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.25), inset 0 0 20px rgba(0, 212, 255, 0.08);
}

.r3-common-header .mega-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 2px;
  background: linear-gradient(135deg, var(--r3-header-hover, var(--neon-blue)), var(--r3-header-hover2, var(--neon-purple)));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.r3-common-header .mega-item:hover::after {
  opacity: 1;
}

.r3-common-header .mega-icon {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(155, 93, 229, 0.2));
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.r3-common-header .mega-icon::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, rgba(0, 212, 255, 0.4), transparent);
  animation: r3MegaIconRotate 3s linear infinite;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.r3-common-header .mega-item:hover .mega-icon {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.35), rgba(155, 93, 229, 0.35));
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.5), inset 0 0 15px rgba(0, 212, 255, 0.3);
  transform: scale(1.1) rotate(5deg);
  border-color: rgba(0, 212, 255, 0.6);
}

.r3-common-header .mega-item:hover .mega-icon::before {
  opacity: 1;
}

.r3-common-header .mega-icon i {
  font-size: 1.1rem;
  background: var(--r3-header-cta, var(--gradient-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.6));
  transition: all 0.4s ease;
}

.r3-common-header .mega-item:hover .mega-icon i {
  filter: drop-shadow(0 0 12px rgba(0, 212, 255, 0.9));
  transform: scale(1.15);
}

.r3-common-header .mega-content h4 {
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.r3-common-header .mega-item:hover .mega-content h4 {
  color: var(--r3-header-hover, var(--neon-blue));
}

.r3-common-header .mega-content p {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.3;
  position: relative;
  z-index: 1;
}

.r3-common-header .mega-badge {
  display: inline-block;
  margin-top: 0.3rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.65rem;
  color: var(--r3-header-hover, var(--neon-blue));
  background: rgba(0, 212, 255, 0.1);
  border-radius: 15px;
  font-weight: 600;
  border: 1px solid rgba(0, 212, 255, 0.2);
  position: relative;
  z-index: 1;
}

.r3-common-header .mega-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.8rem;
  margin-top: 0.8rem;
  border-top: 1px solid rgba(0, 212, 255, 0.15);
}

.r3-common-header .mega-stats {
  display: flex;
  gap: 1.5rem;
}

.r3-common-header .mega-stat {
  text-align: center;
}

.r3-common-header .mega-stat strong {
  display: block;
  font-family: 'Orbitron', sans-serif;
  font-size: 0.95rem;
  color: var(--r3-header-hover, var(--neon-blue));
}

.r3-common-header .mega-stat span {
  font-size: 0.65rem;
  color: var(--text-muted);
}

.r3-common-header .mega-cta {
  padding: 0.5rem 1rem;
  background: var(--r3-header-cta, var(--gradient-main));
  color: var(--dark-bg);
  border-radius: 8px;
  text-decoration: none;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  font-size: 0.8rem;
}

.r3-common-header .mega-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.r3-common-header .mega-cta-outline:hover {
  background: linear-gradient(135deg, var(--neon-red), var(--neon-purple));
  color: var(--dark-bg);
}

.r3-common-header .mobile-menu-toggle {
  display: none;
}

.r3-common-header .mobile-search-toggle {
  display: none;
}

@keyframes r3MegaIconRotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 900px) {

  .r3-common-header .nav-container {
    padding: 0.5rem 0.5rem;
  }

  .r3-common-header .logo img {
    height: 46px;
  }

  .r3-common-header .mobile-menu-toggle {
    display: flex !important;
    position: fixed;
    top: 16px;
    right: 16px;
    width: 34px;
    height: 30px;
    border: 0;
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    cursor: pointer;
    z-index: 1005;
  }

  .r3-common-header .mobile-search-toggle {
    display: flex !important;
    position: fixed;
    top: 16px;
    right: 62px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(155, 93, 229, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1005;
  }

  .r3-common-header .mobile-search-toggle i {
    font-size: 0.95rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .r3-common-header .mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--r3-header-hover, var(--neon-blue)) 0%, #00F0FF 50%, var(--r3-header-hover2, var(--neon-purple)) 100%);
    box-shadow: 0 0 10px rgba(0, 212, 255, 1), 0 0 20px rgba(0, 240, 255, 0.8), 0 0 30px rgba(155, 93, 229, 0.6);
    transition: transform 0.25s ease, opacity 0.25s ease;
    position: relative;
  }

  .r3-common-header .mobile-menu-toggle span::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, var(--r3-header-hover, var(--neon-blue)), var(--r3-header-hover2, var(--neon-purple)));
    filter: blur(6px);
    opacity: 0.7;
    z-index: -1;
    border-radius: 2px;
  }

  .r3-common-header .mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .r3-common-header .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .r3-common-header .mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .r3-common-header .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
    z-index: 1002;
  }

  .r3-common-header .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  body.menu-open {
    overflow: hidden;
  }

  .r3-common-header .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(92vw, 420px);
    height: 100vh;
    max-height: 100vh;
    background: rgba(3, 0, 20, 0.98);
    transform: translateX(100%);
    transition: transform 0.35s ease;
    flex-direction: column;
    align-items: stretch;
    padding: 6rem 1rem 1rem;
    overflow-y: auto;
    z-index: 1003;
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none;
  }

  .r3-common-header .nav-menu.mobile-active {
    transform: translateX(0);
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    height: 100vh;
    max-height: 100vh;
    pointer-events: auto;
  }

  

  .r3-common-header .nav-menu>li {
    display: block;
    width: 100%;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .r3-common-header .nav-menu>li>a {
    display: flex !important;
    justify-content: space-between;
    width: 100%;
    padding: 0.95rem 1rem;
    color: var(--text-primary);
    font-size: 1.05rem;
  }

  .r3-common-header .nav-menu>li>a::before {
    display: none;
  }

  .r3-common-header .nav-menu>li+li {
    margin-top: 0.2rem;
  }

  .r3-common-header .nav-menu .nav-cta {
    width: 100%;
    justify-content: center;
    margin-top: 0.6rem;
  }

  .r3-common-header .nav-search-item {
    display: none !important;
  }

  .r3-common-header .mega-dropdown {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    width: 100%;
    min-width: 100%;
    display: none;
    opacity: 1;
    visibility: visible;
    padding: 0.7rem;
    margin-top: 0.35rem;
    max-height: 42vh;
    overflow-y: auto;
    border-width: 1px;
    border-radius: 14px;
  }

  .r3-common-header .nav-menu>li.active .mega-dropdown {
    display: block;
  }

  .r3-common-header .nav-menu>li:hover .mega-dropdown,
  .r3-common-header .nav-menu>li.active .mega-dropdown {
    left: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  .r3-common-header .mega-header {
    padding-bottom: 0.45rem;
    margin-bottom: 0.45rem;
  }

  .r3-common-header .mega-header h3 {
    font-size: 0.68rem;
    letter-spacing: 1px;
  }

  .r3-common-header .mega-header a {
    font-size: 0.72rem;
  }

  .r3-common-header .mega-grid {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .r3-common-header .mega-item {
    padding: 0.6rem 0.65rem;
    gap: 0.55rem;
    border-width: 1px;
    transform: none !important;
    box-shadow: none !important;
  }

  .r3-common-header .mega-item::before,
  .r3-common-header .mega-item::after {
    display: none;
  }

  .r3-common-header .mega-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    border-width: 1px;
    transform: none !important;
    box-shadow: none !important;
  }

  .r3-common-header .mega-icon::before {
    display: none;
  }

  .r3-common-header .mega-icon i {
    font-size: 0.85rem;
    transform: none !important;
    filter: none;
  }

  .r3-common-header .mega-content h4 {
    font-size: 0.86rem;
    margin: 0;
    color: var(--text-primary);
  }

  .r3-common-header .mega-content p,
  .r3-common-header .mega-badge,
  .r3-common-header .mega-footer {
    display: none;
  }

  .r3-chat-container{
    bottom: 20px;
    right: 18px;
  }
}

/* Shared content section header alignment */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

/* =========================================================
   Shared Mobile Content Baseline (match Index-style compact UI)
   Mobile/tablet only - does not affect desktop
   ========================================================= */
@media (max-width: 1024px) {
  .services-grid,
  .industries-grid,
  .why-grid,
  .stats-grid,
  .certifications-grid,
  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 1rem !important;
  }
}

@media (max-width: 768px) {
  .hero h1,
  .hero-container h1,
  .services-hero h1 {
    font-size: clamp(1.35rem, 5.5vw, 2rem) !important;
    line-height: 1.2 !important;
  }

  .hero p,
  .hero-container > p,
  .hero .subtitle {
    font-size: 0.85rem !important;
    line-height: 1.55 !important;
  }

  .services-grid,
  .industries-grid,
  .why-grid,
  .stats-grid,
  .certifications-grid,
  .cert-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 0.9rem !important;
  }

  .service-card,
  .industry-card,
  .why-card,
  .stat-card,
  .cert-card {
    padding: 1rem 0.65rem !important;
    border-radius: 14px !important;
  }

  .service-card h3,
  .industry-card h3,
  .why-card h3,
  .cert-card h3 {
    font-size: 0.86rem !important;
    line-height: 1.25 !important;
  }

  .service-card p,
  .industry-card p,
  .why-card p,
  .cert-card p {
    font-size: 0.72rem !important;
    line-height: 1.35 !important;
  }

  .service-icon,
  .industry-icon,
  .why-icon {
    width: 44px !important;
    height: 44px !important;
  }

  .service-icon i,
  .industry-icon i,
  .why-icon i {
    font-size: 1.05rem !important;
  }

  .btn,
  .btn-primary,
  .btn-secondary {
    font-size: 0.75rem !important;
    padding: 0.65rem 1.05rem !important;
  }
}

@media (max-width: 480px) {

  .mobile-hidden{
    display: none !important;
  }

  .service-hero{
    min-height: 90vh;
  }

  .hero-stats-row{
    gap: 1rem;
    justify-content: center;
  }

  .hero-stat-item h3{
    font-size: 1rem;
  }

  .services-grid,
  .industries-grid,
  .why-grid,
  .stats-grid,
  .certifications-grid,
  .cert-grid {
    gap: 0.55rem !important;
  }

  .service-card,
  .industry-card,
  .why-card,
  .stat-card,
  .cert-card {
    padding: 0.82rem 0.45rem !important;
  }

  .service-card h3,
  .industry-card h3,
  .why-card h3,
  .cert-card h3 {
    font-size: 0.76rem !important;
  }

  .service-card p,
  .industry-card p,
  .why-card p,
  .cert-card p {
    font-size: 0.62rem !important;
  }

  .service-icon,
  .industry-icon,
  .why-icon {
    width: 38px !important;
    height: 38px !important;
  }

  .service-icon i,
  .industry-icon i,
  .why-icon i {
    font-size: 0.95rem !important;
  }
}

