
/*
Theme Name: Safwa Futurist
Description: A modern data solutions theme for Safwa Enjaz with futuristic design elements and comprehensive business sections.
Author: Safwa Enjaz
Version: 1.0.0
Text Domain: safwa-futurist
*/

/* CSS Variables */
:root {
  --safwa-dark: #0e1b21;
  --safwa-light: #f8fafc;
  --safwa-accent: #10c9d2;
  --safwa-grey: #94a3b8;
  --safwa-card-dark: #1a2832;
  --safwa-gradient-start: #10c9d2;
  --safwa-gradient-end: #0891b2;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--safwa-dark);
  color: var(--safwa-light);
  line-height: 1.6;
}

/* Navigation */
.safwa-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(14, 27, 33, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 201, 210, 0.2);
  transition: all 0.3s ease;
}

.safwa-nav.scrolled {
  background: rgba(14, 27, 33, 0.98);
  box-shadow: 0 4px 20px rgba(16, 201, 210, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-image {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--safwa-accent);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-brand:hover {
  color: var(--safwa-light);
}

.nav-menu {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--safwa-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.cta-button {
  background: linear-gradient(135deg, var(--safwa-gradient-start), var(--safwa-gradient-end));
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 201, 210, 0.3);
}

.full-width {
  width: 100%;
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  background: linear-gradient(135deg, rgba(14, 27, 33, 0.9), rgba(26, 40, 50, 0.8));
}

.hero-container {
  max-width: 1200px;
  width: 100%;
}

.hero-content {
  margin-bottom: 4rem;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, var(--safwa-accent), var(--safwa-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--safwa-grey);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.metric-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.metric-card {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 201, 210, 0.4);
  box-shadow: 0 12px 40px rgba(16, 201, 210, 0.15);
}

.metric-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--safwa-accent);
  margin-bottom: 0.5rem;
}

.metric-subtitle {
  font-size: 0.875rem;
  color: var(--safwa-grey);
  margin-bottom: 0.25rem;
}

.metric-description {
  font-size: 0.875rem;
  color: var(--safwa-grey);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 30px;
  border: 2px solid var(--safwa-accent);
  border-radius: 15px;
  opacity: 0.7;
}

.scroll-indicator::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 6px;
  background: var(--safwa-accent);
  border-radius: 1px;
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { opacity: 0; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* Common Section Styles */
.section-subtitle {
  text-align: center;
  color: var(--safwa-grey);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--safwa-accent);
  margin-bottom: 1rem;
}

/* Why Choose Section */
.why-choose-section {
  padding: 4rem 1rem;
  background: rgba(16, 201, 210, 0.05);
  position: relative;
  background-image: url('/wp-content/graphics/why choose.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 27, 33, 0.7);
  z-index: 1;
}

.why-choose-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(26, 40, 50, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(16, 201, 210, 0.2);
}

.why-choose-icon {
  font-size: 2rem;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--safwa-gradient-start), var(--safwa-gradient-end));
  border-radius: 50%;
}

.why-choose-item h3 {
  color: var(--safwa-accent);
  margin-bottom: 0.5rem;
}

.why-choose-item p {
  color: var(--safwa-grey);
}

/* Services Section */
.services-section {
  padding: 4rem 1rem;
  background: rgba(14, 27, 33, 0.8);
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 201, 210, 0.4);
  box-shadow: 0 12px 40px rgba(16, 201, 210, 0.15);
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-title {
  color: var(--safwa-accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.service-description {
  color: var(--safwa-grey);
  margin-bottom: 1.5rem;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  background: rgba(16, 201, 210, 0.1);
  color: var(--safwa-accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  border: 1px solid rgba(16, 201, 210, 0.3);
}

/* Dashboard Showcase */
.dashboard-showcase-section {
  padding: 4rem 1rem;
  background: rgba(16, 201, 210, 0.05);
}

.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.dashboard-card {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.dashboard-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 201, 210, 0.4);
  box-shadow: 0 12px 40px rgba(16, 201, 210, 0.15);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.dashboard-header h3 {
  color: var(--safwa-accent);
  font-size: 1.25rem;
}

.industry-tag {
  background: rgba(16, 201, 210, 0.1);
  color: var(--safwa-accent);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  border: 1px solid rgba(16, 201, 210, 0.3);
}

.dashboard-result {
  text-align: center;
  margin-bottom: 1rem;
}

.result-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--safwa-accent);
  margin-bottom: 0.5rem;
}

.result-text {
  color: var(--safwa-grey);
  font-size: 1.125rem;
}

.dashboard-method {
  color: var(--safwa-grey);
  text-align: center;
}

/* Technology Section */
.technology-section {
  padding: 4rem 1rem;
  background: rgba(14, 27, 33, 0.8);
}

.technology-container {
  max-width: 1200px;
  margin: 0 auto;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.tech-category {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.tech-category:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 201, 210, 0.4);
  box-shadow: 0 12px 40px rgba(16, 201, 210, 0.15);
}

.tech-category h3 {
  color: var(--safwa-accent);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tech-tag {
  background: rgba(16, 201, 210, 0.1);
  color: var(--safwa-accent);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  border: 1px solid rgba(16, 201, 210, 0.3);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: rgba(16, 201, 210, 0.2);
}

/* Industry Focus */
.industry-focus-section {
  padding: 4rem 1rem;
  background: rgba(16, 201, 210, 0.05);
}

.industry-container {
  max-width: 1200px;
  margin: 0 auto;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 201, 210, 0.4);
  box-shadow: 0 12px 40px rgba(16, 201, 210, 0.15);
}

.industry-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.industry-card h3 {
  color: var(--safwa-accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.industry-card p {
  color: var(--safwa-grey);
}

/* Visual Dashboard Examples */
.visual-dashboard-section {
  padding: 4rem 1rem;
  background: rgba(14, 27, 33, 0.8);
}

.visual-dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
}

.visual-dashboard-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.visual-dashboard-card {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.visual-dashboard-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 201, 210, 0.4);
  box-shadow: 0 12px 40px rgba(16, 201, 210, 0.15);
}

.visual-dashboard-card h3 {
  color: var(--safwa-accent);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.dashboard-visual {
  margin-bottom: 1.5rem;
}

.dashboard-metric {
  font-size: 2rem;
  font-weight: bold;
  color: var(--safwa-accent);
  margin-bottom: 0.5rem;
}

.dashboard-label {
  color: var(--safwa-grey);
  font-size: 0.875rem;
}

.visual-dashboard-card p {
  color: var(--safwa-grey);
  margin-bottom: 0.5rem;
}

/* Process Section */
.process-section {
  padding: 4rem 1rem;
  background: rgba(16, 201, 210, 0.05);
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 201, 210, 0.4);
  box-shadow: 0 12px 40px rgba(16, 201, 210, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--safwa-gradient-start), var(--safwa-gradient-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.process-step h3 {
  color: var(--safwa-accent);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--safwa-grey);
}

/* Data Governance */
.data-governance-section {
  padding: 4rem 1rem;
  position: relative;
  background-image: url('/wp-content/graphics/why choose.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.data-governance-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 27, 33, 0.7);
  z-index: 1;
}

.governance-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.governance-grid {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: space-between;
  align-items: stretch;
}

.governance-feature {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}

.governance-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 201, 210, 0.4);
  box-shadow: 0 12px 40px rgba(16, 201, 210, 0.15);
}

.governance-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.governance-feature h3 {
  color: var(--safwa-accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.governance-feature p {
  color: var(--safwa-grey);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* About Section */
.about-section {
  padding: 4rem 1rem;
  position: relative;
  background: rgba(16, 201, 210, 0.05);
  background-image: url('/wp-content/graphics/why choose.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 27, 33, 0.7);
  z-index: 1;
}

.about-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  font-size: 1.125rem;
  color: var(--safwa-grey);
  margin-bottom: 3rem;
  line-height: 1.7;
}

.about-stats {
  display: flex;
  justify-content: space-around;
  gap: 2rem;
}

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

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--safwa-accent);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--safwa-grey);
  font-size: 1.125rem;
}

/* Quote Section */
.quote-section {
  padding: 4rem 1rem;
  background: rgba(14, 27, 33, 0.8);
}

.quote-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Contact Section */
.contact-section {
  padding: 4rem 1rem;
  background: rgba(16, 201, 210, 0.05);
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

/* Forms */
.quote-form,
.contact-form {
  margin-top: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--safwa-accent);
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid rgba(16, 201, 210, 0.3);
  border-radius: 6px;
  background: rgba(26, 40, 50, 0.8);
  color: var(--safwa-light);
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--safwa-accent);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

/* Footer */
.footer-section {
  background: rgba(14, 27, 33, 0.95);
  border-top: 1px solid rgba(16, 201, 210, 0.2);
  padding: 3rem 1rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.brand-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(16, 201, 210, 0.2);
}

.brand-unit {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-image {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-text h3 {
  color: var(--safwa-accent);
  font-size: 1.5rem;
  margin: 0;
}

.brand-est {
  color: var(--safwa-grey);
  font-size: 0.875rem;
  font-weight: 400;
}

.brand-slogan {
  color: var(--safwa-grey);
  max-width: 400px;
  margin: 0;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 2rem;
}

.footer-column h4 {
  color: var(--safwa-accent);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--safwa-grey);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: var(--safwa-grey);
}

.contact-icon {
  font-size: 1.1rem;
  min-width: 20px;
}

.contact-info a {
  color: var(--safwa-grey);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: var(--safwa-accent);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 201, 210, 0.2);
}

.footer-bottom p {
  color: var(--safwa-grey);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .metric-cards-grid,
  .dashboard-grid,
  .industry-grid,
  .visual-dashboard-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-columns {
    gap: 2rem;
  }

  .brand-row {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-groups {
    gap: 3rem;
  }

  .brand-column {
    margin-right: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .nav-menu {
    display: none;
  }

  .why-choose-grid,
  .services-grid,
  .technology-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile optimized background for Why Choose section */
  .why-choose-section {
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }

  .metric-cards-grid,
  .dashboard-grid,
  .industry-grid,
  .visual-dashboard-grid,
  .governance-grid,
  .about-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .brand-row {
    text-align: center;
  }

  /* Further optimize for very small screens */
  @media (max-width: 480px) {
    .why-choose-section {
      background-size: cover;
      background-position: center top;
    }
  }
}

/*
Theme Name: Safwa Futurist
Description: A futuristic data solutions theme replicating Safwa Enjaz design
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  --safwa-primary: #0E1B21;
  --safwa-accent: #10C9D2;
  --safwa-secondary: #006D83;
  --safwa-gradient-start: #006D83;
  --safwa-gradient-end: #008FA9;
  --safwa-light: #FFFFFF;
  --safwa-grey: #FAFAFA;
  --safwa-card-dark: #1A2832;
}

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

body {
  font-family: 'Space Grotesk', sans-serif;
  background-color: var(--safwa-primary);
  color: var(--safwa-light);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Navigation Styles */
.safwa-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14, 27, 33, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(16, 201, 210, 0.2);
  transition: all 0.3s ease;
}

.safwa-nav.scrolled {
  background: rgba(14, 27, 33, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo-image {
  width: 75px;
  height:75px;
  object-fit: contain;
}

.nav-brand {
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--safwa-accent);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--safwa-light);
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

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

.cta-button {
  background: linear-gradient(135deg, var(--safwa-gradient-start), var(--safwa-gradient-end));
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 201, 210, 0.3);
  opacity: 0.9;
}

.cta-button.full-width {
  width: 100%;
  justify-content: center;
}

/* Hero Section */
.hero-section {
  background: radial-gradient(ellipse at center, rgba(16, 201, 210, 0.1) 0%, var(--safwa-primary) 50%);
  padding: 4rem 1rem;
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--safwa-light);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-content p {
  font-size: 1.125rem;
  color: var(--safwa-grey);
  margin-bottom: 2rem;
  max-width: 500px;
}

/* Common Section Styles */
.section-subtitle {
  text-align: center;
  color: var(--safwa-grey);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: var(--safwa-accent);
  margin-bottom: 1rem;
}

/* Why Choose Section */
.why-choose-section {
  padding: 4rem 1rem;
  background: rgba(16, 201, 210, 0.05);
  position: relative;
  background-image: url('/wp-content/graphics/why choose.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.why-choose-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 27, 33, 0.7);
  z-index: 1;
}

.why-choose-container {
  position: relative;
  z-index: 2;
}

.why-choose-container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.why-choose-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(26, 40, 50, 0.5);
  border-radius: 12px;
  border: 1px solid rgba(16, 201, 210, 0.2);
}

.why-choose-icon {
  font-size: 2rem;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--safwa-gradient-start), var(--safwa-gradient-end));
  border-radius: 50%;
}

.why-choose-item h3 {
  color: var(--safwa-accent);
  margin-bottom: 0.5rem;
}

.why-choose-item p {
  color: var(--safwa-grey);
}

/* Metric Cards */
.metric-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric-card {
  background: rgba(26, 40, 50, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.metric-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 201, 210, 0.4);
  box-shadow: 0 8px 32px rgba(16, 201, 210, 0.1);
}

.metric-card-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.metric-title {
  font-size: 2rem;
  font-weight: bold;
  color: var(--safwa-accent);
}

.metric-subtitle {
  font-size: 0.875rem;
  color: var(--safwa-grey);
}

.metric-description {
  font-size: 0.875rem;
  color: var(--safwa-grey);
}

/* Service Cards */
.services-section {
  padding: 4rem 1rem;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 201, 210, 0.4);
  box-shadow: 0 12px 40px rgba(16, 201, 210, 0.15);
}

.service-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--safwa-gradient-start), var(--safwa-gradient-end));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.5rem;
}

.service-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--safwa-accent);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--safwa-grey);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-tag {
  background: rgba(16, 201, 210, 0.2);
  color: var(--safwa-grey);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.service-tag:hover {
  background: var(--safwa-accent);
  color: var(--safwa-primary);
}

/* Dashboard Showcase */
.dashboard-showcase-section {
  padding: 4rem 1rem;
}

.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
}

.dashboard-grid {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: space-between;
  align-items: stretch;
}

.dashboard-card {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 0;
}

.dashboard-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 201, 210, 0.4);
  box-shadow: 0 12px 40px rgba(16, 201, 210, 0.15);
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.dashboard-header h3 {
  color: var(--safwa-light);
  font-size: 1.25rem;
}

.industry-tag {
  background: var(--safwa-accent);
  color: var(--safwa-primary);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
}

.dashboard-result {
  text-align: center;
  margin-bottom: 1rem;
}

.result-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--safwa-accent);
  line-height: 1;
}

.result-text {
  color: var(--safwa-grey);
  font-size: 1rem;
}

.dashboard-method {
  color: var(--safwa-grey);
  font-style: italic;
  text-align: center;
}

/* Technology Section */
.technology-section {
  padding: 4rem 1rem;
}

.technology-container {
  max-width: 1200px;
  margin: 0 auto;
}

.technology-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.tech-category {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
}

.tech-category h3 {
  color: var(--safwa-accent);
  margin-bottom: 1rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tech-tag {
  background: rgba(16, 201, 210, 0.2);
  color: var(--safwa-grey);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: var(--safwa-accent);
  color: var(--safwa-primary);
}

/* Industry Focus */
.industry-focus-section {
  padding: 4rem 1rem;
  background: rgba(16, 201, 210, 0.05);
}

.industry-container {
  max-width: 1200px;
  margin: 0 auto;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 201, 210, 0.4);
  box-shadow: 0 12px 40px rgba(16, 201, 210, 0.15);
}

.industry-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.industry-card h3 {
  color: var(--safwa-accent);
  margin-bottom: 1rem;
}

.industry-card p {
  color: var(--safwa-grey);
}

/*
Theme Name: Safwa Futurist
Description: A modern, responsive website for Safwa Enjaz data solutions company with futuristic design and interactive dashboards.
Author: Safwa Enjaz
Version: 1.0.0
Text Domain: safwa-futurist
Tags: business, data-solutions, responsive, modern
Requires at least: 5.0
Tested up to: 6.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
*/

/* Visual Dashboard */
.visual-dashboard-section {
  padding: 4rem 1rem;
  position: relative;
  background: rgba(16, 201, 210, 0.05);
  background-image: url('/wp-content/graphics/why choose.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.visual-dashboard-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 27, 33, 0.7);
  z-index: 1;
}

.visual-dashboard-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.visual-dashboard-grid {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: space-between;
  align-items: stretch;
}

.visual-dashboard-card {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}

.visual-dashboard-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 201, 210, 0.4);
  box-shadow: 0 12px 40px rgba(16, 201, 210, 0.15);
}

.visual-dashboard-card h3 {
  color: var(--safwa-light);
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.dashboard-visual {
  margin-bottom: 1rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dashboard-metric {
  font-size: 2rem;
  font-weight: bold;
  color: var(--safwa-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.dashboard-label {
  color: var(--safwa-grey);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Process Section */
.process-section {
  padding: 4rem 1rem;
  background: rgba(16, 201, 210, 0.05);
}

.process-container {
  max-width: 1200px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 201, 210, 0.4);
  box-shadow: 0 12px 40px rgba(16, 201, 210, 0.15);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--safwa-gradient-start), var(--safwa-gradient-end));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  color: white;
}

.process-step h3 {
  color: var(--safwa-accent);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--safwa-grey);
}

/* Data Governance */
.data-governance-section {
  padding: 4rem 1rem;
  position: relative;
  background-image: url('/wp-content/graphics/why choose.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.data-governance-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 27, 33, 0.7);
  z-index: 1;
}

.governance-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.governance-grid {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: space-between;
  align-items: stretch;
}

.governance-feature {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}

.governance-feature:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 201, 210, 0.4);
  box-shadow: 0 12px 40px rgba(16, 201, 210, 0.15);
}

.governance-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.governance-feature h3 {
  color: var(--safwa-accent);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.governance-feature p {
  color: var(--safwa-grey);
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* About Section */
.about-section {
  padding: 4rem 1rem;
  position: relative;
  background: rgba(16, 201, 210, 0.05);
  background-image: url('/wp-content/graphics/why choose.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(14, 27, 33, 0.7);
  z-index: 1;
}

.about-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-content p {
  color: var(--safwa-grey);
  font-size: 1.125rem;
  margin-bottom: 3rem;
}

.about-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  justify-content: space-between;
  align-items: stretch;
}

.stat-item {
  background: rgba(26, 40, 50, 0.8);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 0;
  min-height: 150px;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--safwa-accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--safwa-grey);
  font-size: 1rem;
}

/* Form Styles */
.quote-section,
.contact-section {
  padding: 4rem 1rem;
}

.quote-container,
.contact-container {
  max-width: 800px;
  margin: 0 auto;
}

.quote-form,
.contact-form {
  background: rgba(26, 40, 50, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 201, 210, 0.2);
  border-radius: 12px;
  padding: 2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  color: var(--safwa-grey);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  background: var(--safwa-primary);
  border: 1px solid rgba(16, 201, 210, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
  color: var(--safwa-light);
  font-family: 'Space Grotesk', sans-serif;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--safwa-accent);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.form-select {
  cursor: pointer;
}

/* Footer */
.footer-section {
  background: rgba(26, 40, 50, 0.9);
  border-top: 1px solid rgba(16, 201, 210, 0.2);
  padding: 3rem 1rem 1rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Brand Row */
.brand-row {
  margin-bottom: 3rem;
}

.brand-unit {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-logo-image {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}

.brand-text h3 {
  color: var(--safwa-accent);
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.brand-est {
  color: var(--safwa-grey);
  font-size: 0.875rem;
  font-weight: 400;
  opacity: 0.8;
}

.brand-slogan {
  color: var(--safwa-grey);
  line-height: 1.6;
  font-size: 1rem;
  margin: 0;
  max-width: 600px;
}

/* Footer Columns - Grid Layout */
.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-column h4 {
  margin: 0 0 1.5rem 0;
  color: var(--safwa-accent);
  font-size: 1.125rem;
  font-weight: 600;
}

/* Links Column */
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--safwa-grey);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  padding: 0.25rem 0;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--safwa-accent);
  outline: 2px solid var(--safwa-accent);
  outline-offset: 2px;
}

/* Contact Info Column */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info p {
  margin: 0;
  color: var(--safwa-grey);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
}

.contact-info .contact-icon {
  font-size: 1rem;
  min-width: 20px;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.contact-info a {
  color: var(--safwa-grey);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-info a:hover,
.contact-info a:focus {
  color: var(--safwa-accent);
  outline: 2px solid var(--safwa-accent);
  outline-offset: 2px;
}

/* Contact icon colors */
.contact-info p:nth-child(1) .contact-icon {
  color: var(--safwa-accent); /* Email */
}

.contact-info p:nth-child(2) .contact-icon {
  color: #4CAF50; /* Phone */
}

.contact-info p:nth-child(3) .contact-icon {
  color: #ff6b6b; /* Location */
}

.contact-info p:nth-child(4) .contact-icon {
  color: #FFA726; /* Days */
}

.contact-info p:nth-child(5) .contact-icon {
  color: #42A5F5; /* Hours */
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(16, 201, 210, 0.2);
  color: var(--safwa-grey);
}

/* Animations */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.pulse-animation {
  animation: pulse 2s infinite;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid var(--safwa-accent);
  border-radius: 12px;
  opacity: 0.7;
}

.scroll-indicator::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--safwa-accent);
  border-radius: 2px;
  animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {
  0%, 20% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(12px); }
  80%, 100% { transform: translateX(-50%) translateY(0); }
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .technology-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-groups {
    gap: 3rem;
  }

  .brand-column {
    margin-right: 0;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .nav-menu {
    display: none;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile optimized background for Why Choose section */
  .why-choose-section {
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
    /* On mobile, we'll use a smaller cropped version when available */
    background-image: url('/wp-content/graphics/why choose.png');
  }

  /* Further optimize for very small screens */
  @media (max-width: 480px) {
    .why-choose-section {
      background-size: cover;
      background-position: center top;
    }
  }
}

  .industry-grid {
    grid-template-columns: 1fr;
  }

  .visual-dashboard-grid,
  .governance-grid,
  .about-stats,
  .dashboard-grid {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
  }

  .visual-dashboard-card,
  .governance-feature,
  .stat-item,
  .dashboard-card {
    max-width: 300px;
    min-width: 250px;
    flex: 1;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    gap: 2.5rem;
    text-align: center;
  }

  /* Mobile Footer Layout */
  .brand-row {
    text-align: center;
    margin-bottom: 2.5rem;
  }

  .brand-unit {
    justify-content: center;
    margin-bottom: 1rem;
  }

  .footer-logo-image {
    width: 70px;
    height: 70px;
  }

  .brand-text h3 {
    font-size: 1.25rem;
  }

  .brand-slogan {
    text-align: center;
    max-width: 100%;
    font-size: 0.9rem;
  }

  /* Mobile Footer Columns */
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .footer-column h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  .contact-info {
    align-items: center;
    text-align: center;
  }

  .contact-info p {
    font-size: 0.9rem;
    justify-content: center;
    text-align: center;
  }
}

/* WordPress specific styles */
.wp-block-group {
  margin: 0;
}

.alignwide {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.alignfull {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}