@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Outfit:wght@500;700;900&display=swap');

/* Design System Variables */
:root {
  --headings-primary: #0B2C3D;
  --body-text: #565656;
  --accent-text: #FF6B35;
  --white-text: #FFFFFF;
  --meta-text: #7D7D7D;
  
  --bg-main: #FFFFFF;
  --bg-secondary: #F8F9FA;
  --bg-card: #FFFFFF;
  --bg-footer: #0B2C3D;
  --banner-orange: #FF6B35;
  
  --btn-primary-bg: #FF6B35;
  --btn-primary-text: #FFFFFF;
  --btn-secondary-bg: transparent;
  --btn-secondary-border: #0B2C3D;
  --btn-secondary-text: #0B2C3D;
  
  --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  --box-shadow-hover: 0 15px 40px rgba(11, 44, 61, 0.12);
  --orange-gradients: linear-gradient(135deg, #FF6B35, #FF8A5C);
  --teal-gradients: linear-gradient(135deg, #0B2C3D, #144C66);
  --border-color: #E9ECEF;
  --border-radius: 12px;
  
  --transition-speed: 0.3s;
}

/* Base resets */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--bg-main);
  color: var(--body-text);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--headings-primary);
  font-weight: 700;
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all var(--transition-speed) ease-in-out;
}

/* Typography elements */
.h1-hero {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  color: var(--headings-primary);
  margin-bottom: 1.5rem;
}

.h2-section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--headings-primary);
  text-align: center;
  margin-bottom: 1rem;
}

.h2-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent-text);
  margin: 15px auto 0 auto;
  border-radius: 2px;
}

.h3-card-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--headings-primary);
  margin-bottom: 0.75rem;
}

.small-meta {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--meta-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Layout Utilities */
.container {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}

.section-spacing {
  padding: 80px 0;
}

.section-secondary {
  background-color: var(--bg-secondary);
}

.grid-3-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.grid-2-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

/* Header & Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.02);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--headings-primary);
}

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

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

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--body-text);
  padding: 8px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-text);
  transition: width 0.3s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-text);
}

.nav-link.active {
  font-weight: 700;
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-action {
  display: inline-flex;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--headings-primary);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobile Menu Drawer */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: -100%;
  width: 100%;
  height: calc(100vh - 80px);
  background-color: var(--bg-main);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  gap: 25px;
  transition: left 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.mobile-nav.active {
  left: 0;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.mobile-nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--headings-primary);
}

.mobile-nav-link.active {
  color: var(--accent-text);
}

/* Button Components */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--border-radius);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--btn-primary-bg);
  color: var(--btn-primary-text);
}

.btn-primary:hover {
  background-color: var(--btn-primary-bg);
  filter: brightness(0.9);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background-color: var(--btn-secondary-bg);
  border-color: var(--btn-secondary-border);
  color: var(--btn-secondary-text);
}

.btn-secondary:hover {
  background-color: var(--headings-primary);
  color: var(--white-text);
  border-color: var(--headings-primary);
  transform: translateY(-2px);
  box-shadow: var(--box-shadow);
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 100px 0 120px 0;
  background: radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(11, 44, 61, 0.03) 0%, transparent 60%),
              var(--bg-main);
  overflow: hidden;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  z-index: 2;
}

.hero-subtitle {
  color: var(--accent-text);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: block;
}

.hero-text {
  font-size: 1.15rem;
  color: var(--body-text);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  border: 4px solid var(--white-text);
}

.hero-image {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  display: block;
}

.stats-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--teal-gradients);
  color: var(--white-text);
  padding: 24px 30px;
  border-radius: var(--border-radius);
  box-shadow: 0 15px 35px rgba(11, 44, 61, 0.2);
  z-index: 3;
}

.stats-badge-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-text);
  line-height: 1.1;
  margin-bottom: 4px;
}

.stats-badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Stat Box Section */
.stat-box-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 30px;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.stat-grid-box {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--box-shadow);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  border: 1px solid var(--border-color);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: var(--headings-primary);
  line-height: 1.1;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.875rem;
  color: var(--meta-text);
  font-weight: 600;
  text-transform: uppercase;
}

.contact-card-box {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: 0 10px 30px rgba(11, 44, 61, 0.08);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  color: var(--headings-primary);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

/* General Card Styles */
.card-classic {
  background-color: var(--bg-card);
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  overflow: hidden;
  transition: all var(--transition-speed) cubic-bezier(0.25, 0.8, 0.25, 1);
  border: 1px solid var(--border-color);
}

.card-classic:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--accent-text);
}

.card-img-wrapper {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-speed) ease;
}

.card-classic:hover .card-img {
  transform: scale(1.05);
}

.card-body {
  padding: 30px;
}

.card-meta {
  margin-bottom: 10px;
}

.card-text {
  color: var(--body-text);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.card-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--accent-text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.card-link:hover {
  text-decoration: underline;
  color: var(--btn-primary-hover);
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: center;
}

.feature-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.feature-card {
  background-color: var(--bg-card);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  padding: 24px;
  border: 1px solid var(--border-color);
  transition: all var(--transition-speed) ease;
}

.feature-card:hover {
  border-color: var(--accent-text);
  transform: translateY(-4px);
  box-shadow: var(--box-shadow-hover);
}

.feature-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 107, 53, 0.1);
  color: var(--accent-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Outfit', sans-serif;
}

.feature-center-img {
  width: 100%;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  display: block;
}

/* Testimonials Grid */
.testimonial-card {
  background-color: var(--bg-secondary);
  padding: 30px;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
  border: 1px solid transparent;
}

.testimonial-card:hover {
  background-color: var(--bg-card);
  box-shadow: var(--box-shadow-hover);
  border-color: var(--border-color);
}

.stars-row {
  color: #FFC107;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.testimonial-quote {
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--body-text);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-weight: 700;
  color: var(--headings-primary);
  font-size: 0.95rem;
}

.author-company {
  font-size: 0.8rem;
  color: var(--meta-text);
}

/* Portfolio Gallery Alternating Layout */
.portfolio-item {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 80px;
}

.portfolio-item:nth-child(even) {
  grid-template-columns: 0.9fr 1.1fr;
}

.portfolio-item:nth-child(even) .portfolio-gallery-wrapper {
  order: 2;
}

.portfolio-gallery-wrapper {
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.portfolio-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.portfolio-tags {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.portfolio-tag {
  background-color: var(--bg-secondary);
  color: var(--headings-primary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Process Timeline (Horizontal flex) */
.process-section {
  background: var(--teal-gradients);
  color: var(--white-text);
}

.process-section .h2-section-title {
  color: var(--white-text);
}

.process-row {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  gap: 20px;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  transition: all var(--transition-speed) ease;
}

.process-step:hover {
  transform: scale(1.05);
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
}

.process-step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: var(--orange-gradients);
  color: var(--white-text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin: 0 auto 20px auto;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.process-step-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white-text);
  margin-bottom: 10px;
}

.process-step-desc {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 200px;
  margin: 0 auto;
}

.process-arrow {
  position: absolute;
  top: 35px;
  right: -10%;
  width: 20%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
}

.process-step:last-child .process-arrow {
  display: none;
}

/* Contact Grid Forms */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: stretch;
}

.contact-info-wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

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

.contact-meta-item {
  background-color: var(--bg-secondary);
  padding: 20px;
  border-radius: var(--border-radius);
  border: 1px solid var(--border-color);
}

.contact-meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--meta-text);
  font-weight: 700;
  margin-bottom: 5px;
}

.contact-meta-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--headings-primary);
}

.contact-form-card {
  background-color: var(--bg-card);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--headings-primary);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--body-text);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--accent-text);
  background-color: var(--bg-main);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
  outline: none;
}

textarea.form-control {
  resize: none;
  height: 150px;
}

/* Call to Action Section */
.cta-banner {
  background-color: var(--bg-footer);
  color: var(--white-text);
  position: relative;
  overflow: hidden;
}

.cta-banner-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.cta-banner-title {
  color: var(--white-text);
  font-size: 2.2rem;
  max-width: 650px;
  margin-bottom: 0;
}

.cta-banner-title::after {
  display: none;
}

/* Footer styling */
footer {
  background-color: var(--bg-footer);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--white-text);
}

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

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-title {
  color: var(--white-text);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 25px;
  font-family: 'Outfit', sans-serif;
  position: relative;
}

.footer-title::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--accent-text);
  margin-top: 10px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-link:hover {
  color: var(--accent-text);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.footer-contact-item svg {
  color: var(--accent-text);
  width: 18px;
  height: 18px;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-link:hover {
  color: var(--white-text);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(11, 44, 61, 0.8);
  backdrop-filter: blur(5px);
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-content {
  background-color: var(--bg-card);
  max-width: 750px;
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  animation: modalReveal 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalReveal {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-header-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.modal-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(11, 44, 61, 0.6);
  border: none;
  color: var(--white-text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.modal-close-btn:hover {
  background-color: var(--accent-text);
}

.modal-close-btn svg {
  width: 20px;
  height: 20px;
}

.modal-body {
  padding: 40px;
  overflow-y: auto;
}

.modal-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.modal-title {
  font-size: 2.2rem;
  color: var(--headings-primary);
  margin-bottom: 20px;
}

.modal-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--body-text);
  margin-bottom: 20px;
}

/* Star rating component */
.rating-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}

.rating-stars svg {
  width: 18px;
  height: 18px;
}

.rating-stars svg.filled {
  fill: #FFC107;
  color: #FFC107;
}

.rating-stars svg.empty {
  color: var(--meta-text);
}

.rating-number {
  font-weight: 700;
  color: var(--accent-text);
  font-size: 1.1rem;
  margin-left: 8px;
}

/* Page Hero Template */
.page-hero {
  padding: 80px 0;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
}

.page-hero-title {
  font-size: 3rem;
  margin-bottom: 10px;
}

/* Privacy Page Content Layout */
.legal-layout {
  max-width: 800px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 40px;
}

.legal-section-title {
  font-size: 1.4rem;
  color: var(--headings-primary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-section-num {
  color: var(--accent-text);
  font-weight: 700;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .stats-badge {
    right: 20px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-center-column {
    display: none; /* Hide the centered design image on smaller devices to focus on feature cards */
  }
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 60px 0;
  }
  
  .navbar {
    height: 70px;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .nav-menu, .header-action {
    display: none;
  }
  
  .mobile-nav {
    top: 70px;
    height: calc(100vh - 70px);
  }
  
  .stat-box-container {
    grid-template-columns: 1fr;
    margin-top: -30px;
  }
  
  .stat-grid-box {
    padding: 30px;
  }
  
  .contact-card-box {
    padding: 30px;
  }
  
  .portfolio-item, .portfolio-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .portfolio-item:nth-child(even) .portfolio-gallery-wrapper {
    order: 0;
  }
  
  .portfolio-img {
    height: 280px;
  }
  
  .process-row {
    flex-direction: column;
    gap: 40px;
  }
  
  .process-arrow {
    display: none;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-meta-list {
    grid-template-columns: 1fr;
  }
  
  .cta-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
