/* Az Solutions - DevArcadia Enterprise Style CSS with Exact Logo Color Theme */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@600;700;800&display=swap');

:root {
  --primary-blue: #232e8b;
  --primary-hover: #1d2673;
  --accent-cyan: #0077c8;
  --accent-bright: #0088d6;
  --bg-light: #f8fafc;
  --bg-ice: #f0f7ff;
  --card-bg: #ffffff;
  --text-dark: #0f172a;
  --text-muted: #475569;
  --border-color: #e2e8f0;
}

body {
  font-family: 'Inter', 'Plus Jakarta Sans', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
  overflow-x: hidden;
}

.heading-font {
  font-family: 'Space Grotesk', sans-serif;
}

/* BRAND EXACT LOGO TYPOGRAPHY & COLORS (#232E8B Royal Blue & #0077C8 Ocean Cyan) */
.az-brand-title {
  font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.az-text-royal {
  color: #232e8b !important;
}

.az-text-cyan {
  color: #0077c8 !important;
}

.az-bg-royal {
  background-color: #232e8b !important;
}

.az-bg-cyan {
  background-color: #0077c8 !important;
}

/* Headings & Links */
h1, h2, h3, h4, h5, h6 {
  color: #232e8b;
}

a {
  transition: all 0.25s ease;
}

a:hover {
  color: #0077c8 !important;
}

/* Header Top Bar */
.header-top {
  background: var(--primary-blue);
  color: #ffffff;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-top a {
  color: #ffffff;
  transition: color 0.3s;
}

.header-top a:hover {
  color: #0088d6 !important;
}

/* LARGE PROMINENT LOGO BADGE STYLING (az_logo - 1.png) */
.site-logo-container {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo-badge-header {
  background: #ffffff;
  border: 3px solid #0077c8;
  border-radius: 16px;
  padding: 8px 14px;
  box-shadow: 0 8px 24px rgba(35, 46, 139, 0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-logo-container:hover .logo-badge-header {
  transform: scale(1.08);
  box-shadow: 0 12px 30px rgba(0, 119, 200, 0.35);
  border-color: #232e8b;
}

.logo-badge-hero {
  background: #ffffff;
  border: 5px solid #0077c8;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 15px 45px rgba(35, 46, 139, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-hero-logo 3s ease-in-out infinite alternate;
}

@keyframes pulse-hero-logo {
  0% { transform: scale(1); box-shadow: 0 15px 45px rgba(35, 46, 139, 0.25); }
  100% { transform: scale(1.05); box-shadow: 0 20px 55px rgba(0, 119, 200, 0.45); }
}

.logo-badge-footer {
  background: #ffffff;
  border: 3px solid #0077c8;
  border-radius: 16px;
  padding: 8px 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* DevArcadia Hero Styling */
.hero {
  position: relative;
  padding: 24px 0 36px;
  background: linear-gradient(135deg, #f0f7ff 0%, #f8fafc 50%, #ffffff 100%);
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: #ffffff;
  border: 2px solid #0077c8;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  color: var(--primary-blue);
  box-shadow: 0 6px 18px rgba(35, 46, 139, 0.12);
  margin-bottom: 24px;
}

.text-gradient {
  background: linear-gradient(135deg, #232e8b 0%, #0077c8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
}

.hero-feature i {
  color: #0077c8;
  font-size: 16px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 32px;
}

.btn-primary {
  background: linear-gradient(135deg, #232e8b 0%, #0077c8 100%);
  color: #ffffff !important;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 8px 24px rgba(0, 119, 200, 0.3);
  transition: all 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0077c8 0%, #232e8b 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 119, 200, 0.4);
  color: #ffffff !important;
}

.btn-white {
  background: #ffffff;
  color: var(--primary-blue) !important;
  border: 2px solid #cbd5e1;
  padding: 16px 32px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 15px;
  transition: all 0.3s;
}

.btn-white:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan) !important;
  transform: translateY(-2px);
}

.hero-trust {
  display: flex;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid #e2e8f0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}

.trust-item i {
  color: var(--accent-cyan);
}

/* Hero Floating Cards & Large Logo Orbit */
.hero-visual {
  position: relative;
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.graphic-circle {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 119, 200, 0.2) 0%, rgba(255,255,255,0) 75%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.floating-card {
  position: absolute;
  background: #ffffff;
  border: 2px solid #0077c8;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(35, 46, 139, 0.15);
  z-index: 10;
  animation: float-card 4s ease-in-out infinite alternate;
}

.card-1 {
  top: 0px;
  left: -50px;
}

.card-2 {
  top: 15px;
  right: -50px;
  animation-delay: 1.2s;
}

.card-3 {
  top: 180px;
  right: -60px;
  animation-delay: 2.2s;
}

.card-4 {
  bottom: 10px;
  right: -40px;
  animation-delay: 3.1s;
}

.card-5 {
  bottom: 20px;
  left: -50px;
  animation-delay: 3.8s;
}

@keyframes float-card {
  0% { transform: translateY(0px); }
  100% { transform: translateY(-12px); }
}

.card-icon {
  width: 40px;
  height: 40px;
  background: #f0f7ff;
  color: var(--accent-cyan);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 8px;
}

.card-title {
  font-size: 12px;
  color: #232e8b;
  font-weight: 700;
}

.card-value {
  font-size: 14px;
  font-weight: 800;
  color: #0077c8;
}

/* Service Cards */
.service-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 32px 24px;
  height: 100%;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  border-color: var(--accent-cyan);
  box-shadow: 0 20px 40px -10px rgba(0, 119, 200, 0.22);
  transform: translateY(-5px);
}

.service-card:hover h3 {
  color: #0077c8 !important;
}

.service-card .icon {
  width: 60px;
  height: 60px;
  background: #f0f7ff;
  border: 2px solid #0077c8;
  color: var(--primary-blue);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 19px;
  font-weight: 800;
  color: #232e8b;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.service-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card .learn-more {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-cyan) !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card .learn-more:hover {
  color: var(--primary-blue) !important;
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #232e8b 0%, #0077c8 100%);
  color: #ffffff;
  padding: 24px 0;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  display: block;
  color: #ffffff;
}

.stat-label {
  font-size: 14px;
  color: #e0f2fe;
  font-weight: 600;
  margin-top: 4px;
}

/* Testimonials */
.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 28px;
  height: 100%;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: #0077c8;
}

.testimonial-card .stars {
  color: #0077c8;
  margin-bottom: 16px;
}

.testimonial-card .quote {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #232e8b 0%, #0077c8 100%);
  color: #ffffff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.client-name {
  font-size: 14px;
  font-weight: 800;
  color: #232e8b;
}

.client-title {
  font-size: 12px;
  color: var(--text-muted);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #232e8b 0%, #0077c8 100%);
  color: #ffffff;
  padding: 24px 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff !important;
}

.cta-section p {
  font-size: 16px;
  color: #e0f2fe;
  max-width: 600px;
  margin: 0 auto 32px;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 75px 0 35px;
  font-size: 14px;
}

.site-footer h4 {
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 20px;
}

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

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

.site-footer ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s;
}

.site-footer ul li a:hover {
  color: #0077c8 !important;
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-contact-item i {
  color: #0077c8;
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 50px;
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

/* WhatsApp Floating */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
  background: linear-gradient(135deg, #232e8b 0%, #0077c8 100%);
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 8px 30px rgba(0, 119, 200, 0.45);
  transition: all 0.3s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #ffffff !important;
  box-shadow: 0 12px 35px rgba(35, 46, 139, 0.6);
}

/* Demo Active Tab */
.filter-btn.active {
  background: linear-gradient(135deg, #232e8b 0%, #0077c8 100%) !important;
  color: #ffffff !important;
  border-color: #0077c8 !important;
}
