/* =========================
   GILROY (LIMITED USE)
========================= */

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Light.otf') format('opentype');
  font-weight: 300;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-ExtraBold.otf') format('opentype');
  font-weight: 800;
}

/* =========================
   GLOBAL
========================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Gilroy', sans-serif;
  background: #f6f7f9;
  -webkit-font-smoothing: antialiased;
  padding-top: 130px;
}

/* =========================
   NAVBAR (TALL + PREMIUM)
========================= */

.custom-navbar {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 80px);
  max-width: 1400px;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);

  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);

  box-shadow:
    0 12px 50px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.7);

  padding: 20px 40px; /* 🔥 HEIGHT INCREASED */
  z-index: 1000;
}

/* =========================
   NAV LINKS (FIXED FONT)
========================= */

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-left a,
.nav-right a {
  font-family: 'Gilroy', sans-serif; /* 🔥 FIXED */
  font-weight: 500;
  font-size: 15.5px;

  margin: 0 20px;
  text-decoration: none;

  color: #444;
  position: relative;

  transition: all 0.3s ease;
}

/* Hover */
.nav-left a:hover,
.nav-right a:hover {
  color: #000;
}

/* Underline */
.nav-left a::after,
.nav-right a::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: width 0.3s ease;
}

.nav-left a:hover::after,
.nav-right a:hover::after {
  width: 60%;
}

/* =========================
   LOGO CENTER
========================= */

.logo-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo-center img {
  height: 48px; /* slightly bigger */
  display: block;
}

/* =========================
   TOGGLER
========================= */

.custom-toggler {
  width: 28px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: none;
  background: transparent;
  padding: 0;
}

/* 🔥 Force perfect rendering */
.custom-toggler span {
  display: block;
  width: 100%;
  height: 2px; /* use EVEN pixel */
  background: #000;
  border-radius: 2px;

  transform-origin: center;
  backface-visibility: hidden;
  will-change: transform;

  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ACTIVE */
.custom-toggler.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.custom-toggler.active span:nth-child(2) {
  opacity: 0;
}

.custom-toggler.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =========================
   SIDEBAR
========================= */

.sidebar {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: #fff;

  box-shadow: 10px 0 50px rgba(0,0,0,0.1);

  transition: 0.4s cubic-bezier(.4,0,.2,1);
  z-index: 1100;

  padding: 36px 30px;
}

.sidebar.active {
  left: 0;
}

.sidebar-logo {
  margin-bottom: 40px;
}

.sidebar-logo img {
  height: 44px;
}

.sidebar nav a {
  font-family: 'Gilroy', sans-serif; /* 🔥 FIXED */
  font-weight: 500;
  display: block;
  margin: 16px 0;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: all 0.25s ease;
}

.sidebar nav a:hover {
  transform: translateX(6px);
  color: #000;
}

/* =========================
   OVERLAY
========================= */

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(3px);

  opacity: 0;
  visibility: hidden;

  transition: 0.3s ease;
  z-index: 1050;
}

.sidebar-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  body {
    padding-top: 100px;
  }

  .custom-navbar {
    width: calc(100% - 30px);
    top: 12px;
    padding: 16px 20px;
  }

  .logo-center img {
    height: 38px;
  }
}

/* Hero Section */

/* =========================
   HERO SECTION
========================= */

.hero {
  padding: 60px 20px 100px;
  text-align: center;
  position: relative;

  background: transparent;
}

/* Headline */
.hero h1 {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: 64px;
  line-height: 1.1;
  color: #111;

  max-width: 900px;
  margin: 0 auto 20px;
}

.hero h1 span {
  color: #555;
}

/* Subtext */
.hero p {
  font-size: 18px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Buttons */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Primary Button */
.btn-primary {
  padding: 14px 28px;
  border-radius: 12px;
  background: #000;
  color: #fff;
  text-decoration: none;
  font-weight: 600;

  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #222;
}

/* Secondary Button */
.btn-secondary {
  padding: 14px 28px;
  border-radius: 12px;
  background: transparent;
  border: 1px solid rgba(0,0,0,0.1);
  color: #000;
  text-decoration: none;
  font-weight: 500;

  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(0,0,0,0.05);
}

@media (max-width: 991px) {

  .hero {
    padding: 60px 20px 80px; 
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero p {
    font-size: 16px;
  }

   .hero-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    white-space: nowrap;   /* 🔥 TEXT NEVER BREAKS */
    padding: 12px 18px;    /* thoda compact for mobile */
    font-size: 14px;
  }
}

/* =========================
   HERO PATTERN SUPPORT
========================= */

.hero {
  position: relative;
  overflow: hidden;
}

/* reuse same pattern */
.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);

  background-size: 40px 40px;

  animation: gridMove 20s linear infinite;
}

/* dots layer */
.hero-pattern::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image: radial-gradient(rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 80px 80px;

  opacity: 0.5;
}

/* ensure content above */
.hero .container {
  position: relative;
  z-index: 2;
}

/* End Hero Section */

/* What we do section */

/* =========================
   DARK SERVICES SECTION
========================= */

.services-dark {
  padding: 120px 20px;
  background: #0d0d0f;
  position: relative;
  overflow: hidden;
}

/* Subtle gradient glow (premium feel) */
.services-dark::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent 70%);
  top: -200px;
  left: -200px;
  z-index: 0;
}

.services-dark::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 70%);
  bottom: -200px;
  right: -200px;
  z-index: 0;
}

/* Ensure content is above glow */
.services-dark .container {
  position: relative;
  z-index: 2;
}

/* =========================
   HEADER
========================= */

.services-dark .services-header {
  max-width: 700px;
  margin: 0 auto 70px;
}

.services-dark .section-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;

  color: #fff;

  padding: 6px 14px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255,255,255,0.15);

  margin-bottom: 18px;
}

.services-dark h2 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

.services-dark p {
  font-size: 18px;
  color: #aaa;
}

/* =========================
   GRID
========================= */

.services-dark .services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* =========================
   CARD
========================= */

.services-dark .service-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 18px;
  padding: 30px;

  border: 1px solid rgba(255,255,255,0.06);

  backdrop-filter: blur(10px);

  transition: all 0.35s ease;
}

/* Hover */
.services-dark .service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* =========================
   ICON
========================= */

.services-dark .icon {
  width: 46px;
  height: 46px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: rgba(255,255,255,0.06);
  margin-bottom: 18px;

  font-size: 18px;
  color: #fff;
}

/* =========================
   TEXT
========================= */

.services-dark h3 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 10px;
}

.services-dark p {
  font-size: 15px;
  color: #aaa;
  line-height: 1.6;
}

/* =========================
   CTA
========================= */

.services-dark .services-cta {
  margin-top: 70px;
}

.services-dark .services-cta p {
  color: #aaa;
  margin-bottom: 14px;
}

/* Dark button override */
.services-dark .btn-primary {
  background: #fff;
  color: #000;
}

.services-dark .btn-primary:hover {
  background: #ddd;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .services-dark .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services-dark h2 {
    font-size: 34px;
  }
}

@media (max-width: 576px) {

  .services-dark .services-grid {
    grid-template-columns: 1fr;
  }

  .services-dark {
    padding: 90px 16px;
  }

  .services-dark p {
    font-size: 16px;
  }
}

/* End What we do Section */

/* Trusted Brand Section */

/* =========================
   BRANDS SECTION (LIGHT)
========================= */

.brands {
  padding: 110px 20px;
  background: #f6f7f9;
}

/* Header */
.brands-header {
  max-width: 700px;
  margin: 0 auto 60px;
}

.brands .section-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;

  color: #555;

  padding: 6px 14px;
  border-radius: 999px;

  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.08);

  margin-bottom: 16px;
}

.brands h2 {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 16px;
}

.brands p {
  font-size: 18px;
  color: #666;
}

/* Logos Grid */
.brands-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 40px;
  align-items: center;
  margin-top: 50px;
}

/* Individual Logo */
.brand-item {
  display: flex;
  justify-content: center;
  align-items: center;

  opacity: 0.7;
  transition: all 0.3s ease;
}

.brand-item img {
  max-height: 34px;
  max-width: 100%;
  object-fit: contain;

  filter: grayscale(100%);
  transition: all 0.3s ease;
}

/* Hover Effect */
.brand-item:hover {
  opacity: 1;
}

.brand-item:hover img {
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .brands-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .brands h2 {
    font-size: 32px;
  }
}

@media (max-width: 576px) {

  .brands-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .brands {
    padding: 80px 16px;
  }

  .brands p {
    font-size: 16px;
  }
}

/* End Trusted Brand Section */


/* Office Section */

/* =========================
   OFFICE V2 (DARK PREMIUM)
========================= */

.office-v2 {
  padding: 120px 20px;
  background: #0b0b0d;
  position: relative;
  overflow: hidden;
}

.office-v2 .btn-primary {
  background: #fff;
  color: #000;

  padding: 14px 28px;
  border-radius: 12px;

  font-weight: 600;
  text-decoration: none;

  display: inline-block;

  transition: all 0.3s ease;
}

/* Hover */
.office-v2 .btn-primary:hover {
  background: #e5e5e5;
  transform: translateY(-2px);
}

/* Ambient glow */
.office-v2::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 70%);
  top: -200px;
  right: -200px;
}

/* Layout */
.office-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */

.office-content {
  max-width: 520px;
}

.office-v2 .section-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;
  color: #fff;

  padding: 6px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);

  margin-bottom: 18px;
}

.office-v2 h2 {
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

.office-v2 p {
  font-size: 17px;
  color: #aaa;
  line-height: 1.7;
  margin-bottom: 14px;
}

.office-sub {
  color: #888;
  margin-bottom: 26px;
}

/* =========================
   IMAGES
========================= */

.office-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Tall image */
.img-tall {
  grid-row: span 2;
}

.img-tall img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* Small grid */
.img-grid {
  display: contents;
}

.img-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* Hover */
.office-images img {
  transition: transform 0.4s ease, filter 0.4s ease;
}

.office-images img:hover {
  transform: scale(1.05);
  filter: brightness(1.1);
}



/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .office-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .office-v2 h2 {
    font-size: 32px;
  }

  .office-images {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {

  .office-images {
    grid-template-columns: 1fr;
  }

  .img-tall {
    grid-row: auto;
  }

  .office-v2 {
    padding: 90px 16px;
  }
}

/* End */

/* Contact Section */

/* =========================
   CONTACT SECTION (LIGHT PREMIUM)
========================= */

.contact-section {
  padding: 120px 20px;
  background: #f6f7f9;
  position: relative;
  overflow: hidden;
}

/* Subtle ambient glow */
.contact-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,0,0,0.04), transparent 70%);
  top: -200px;
  right: -200px;
}

/* Layout */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* =========================
   LEFT CONTENT
========================= */

.contact-content {
  max-width: 520px;
}

.contact-section .section-label {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: 600;

  color: #555;

  padding: 6px 14px;
  border-radius: 999px;

  background: rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.08);

  margin-bottom: 18px;
}

.contact-content h2 {
  font-size: 42px;
  font-weight: 800;
  color: #111;
  margin-bottom: 18px;
}

.contact-content p {
  font-size: 17px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Contact Info */
.contact-info div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  color: #444;
  font-size: 15px;
}

.contact-info i {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: rgba(0,0,0,0.05);
  color: #111;
  flex-shrink: 0;
}

/* =========================
   FORM CARD
========================= */

.contact-form {
  background: rgba(255,255,255,0.7);
  padding: 30px;
  border-radius: 18px;

  border: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(12px);

  box-shadow:
    0 10px 40px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.7);

  transition: all 0.3s ease;
}

.contact-form:hover {
  transform: translateY(-4px);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.1);
}

/* Inputs */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;

  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.8);

  color: #111;
  font-size: 14px;

  outline: none;
  transition: all 0.25s ease;
}

/* Focus */
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(0,0,0,0.2);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.05);
}

/* Placeholder */
.contact-form ::placeholder {
  color: #888;
}

/* Rows */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form textarea {
  margin-bottom: 20px;
  resize: none;
}

/* Button (already matches your system) */
.contact-form .btn-primary {
  width: 100%;
  text-align: center;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .contact-content h2 {
    font-size: 32px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}


/* End Contact Section */

/* Footer */

/* =========================
   FOOTER (LIGHT PREMIUM)
========================= */

/* =========================
   FOOTER (DARK PREMIUM)
========================= */

.footer {
  padding: 100px 20px 40px;
  background: #0b0b0d;
  border-top: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}

/* Subtle glow */
.footer::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent 70%);
  top: -200px;
  left: -200px;
}

/* Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

/* =========================
   BRAND
========================= */

.footer-brand img {
  height: 42px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 15px;
  color: #aaa;
  max-width: 320px;
  line-height: 1.6;
}

/* =========================
   HEADINGS
========================= */

.footer-links h4,
.footer-contact h4 {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

/* =========================
   LINKS
========================= */

.footer-links a {
  display: block;
  font-size: 14px;
  color: #aaa;
  text-decoration: none;
  margin-bottom: 10px;

  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(4px);
}

/* =========================
   CONTACT
========================= */

.footer-contact p {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 8px;
}

/* =========================
   SOCIAL ICONS
========================= */

.footer-social {
  margin-top: 16px;
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: rgba(255,255,255,0.08);
  color: #fff;

  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: #fff;
  color: #000;
  transform: translateY(-3px);
}

/* =========================
   BOTTOM
========================= */

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  font-size: 13px;
  color: #aaa;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 576px) {

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 80px 16px 30px;
  }

  .footer-brand p {
    max-width: 100%;
  }
}

/* End Footer */

/* =========================
   CUSTOM SCROLLBAR (LIGHT, SLIM)
========================= */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  transition: background 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(0,0,0,0.2) transparent;
}

/* About CSS */

/* =========================
   ABOUT HERO
========================= */

.about-hero {
  padding: 140px 20px 90px;
  text-align: center;
}

.about-hero h1 {
  font-size: 64px;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
  margin-bottom: 20px;
}

.about-hero h1 span {
  color: #555;
}

.about-hero p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  color: #666;
}

/* =========================
   STORY
========================= */

.about-story {
  padding: 120px 20px;
}

.story-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-content h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 18px;
}

.story-content p {
  color: #666;
  line-height: 1.7;
  font-size: 16px;
}

.story-content .muted {
  color: #888;
}

.story-image img {
  width: 100%;
  border-radius: 20px;
}

/* =========================
   VALUES (DARK)
========================= */

.about-values {
  padding: 120px 20px;
  background: #0d0d0f;
}

.about-values h2 {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
}

.about-values .section-label{
  color: #aaa;
}

.values-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.value-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 30px;
  transition: 0.35s ease;
  backdrop-filter: blur(10px);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.15);
}

.value-card .icon {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #fff;
  margin: 0 auto 18px;
}

.value-card h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.value-card p {
  color: #aaa;
  font-size: 15px;
}

/* =========================
   TEAM
========================= */

.about-team {
  padding: 120px 20px;
}

.team-grid {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.team-card {
  width: calc(33.33% - 20px);
  max-width: 320px;
}
.team-card img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 14px;
}

.team-card h4 {
  font-size: 18px;
  font-weight: 600;
}

.team-card p {
  color: #666;
  font-size: 14px;
}

/* Mobile view */
@media (max-width: 768px) {
  .team-card {
    width: 100%;
    max-width: 100%;
  }
}

/* =========================
   CTA (DARK)
========================= */

.about-cta {
  padding: 40px 20px 110px;
  background: #f6f7f9;
  text-align: center;
}

.about-cta h2 {
  font-size: 42px;
  font-weight: 800;
  color: #111;
}

.about-cta p {
  color: #aaa;
  margin: 15px 0 25px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .about-hero h1 {
    font-size: 38px;
  }

  .story-wrapper {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {

  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-hero {
    padding: 110px 16px 70px;
  }
}


/* =========================
   HERO BASE
========================= */

.about-hero {
  position: relative;
  padding: 140px 20px 100px;
  text-align: center;
  overflow: hidden;
}

/* =========================
   DIGITAL GRID PATTERN
========================= */

.hero-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;

  /* 🔥 subtle grid */
  background-image:
    linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);

  background-size: 40px 40px;

  animation: gridMove 20s linear infinite;
}

/* slow movement */
@keyframes gridMove {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(40px);
  }
}

/* =========================
   CONTENT ABOVE PATTERN
========================= */

.about-hero .container {
  position: relative;
  z-index: 2;
}

/* =========================
   OPTIONAL: DATA DOTS (🔥 marketing feel)
========================= */

.hero-pattern::after {
  content: "";
  position: absolute;
  inset: 0;

  background-image: radial-gradient(rgba(0,0,0,0.08) 1px, transparent 1px);
  background-size: 80px 80px;

  opacity: 0.5;
}

/* =========================
   TEXT (keep yours)
========================= */

.about-hero h1 {
  font-size: 64px;
  font-weight: 800;
  color: #111;
  line-height: 1.1;
}

.about-hero h1 span {
  color: #555;
}

.about-hero p {
  max-width: 600px;
  margin: 20px auto 0;
  color: #666;
  font-size: 18px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .about-hero {
    padding: 110px 20px 70px;
  }

  .about-hero h1 {
    font-size: 38px;
  }
}
/* End About CSS */

/* Services CSS */


/* =========================
   HERO
========================= */

.services-hero {
  position: relative;
  padding: 140px 20px 90px;
  text-align: center;
  overflow: hidden;
}

.services-hero h1 {
  font-size: 64px;
  font-weight: 800;
  color: #111;
}

.services-hero h1 span {
  color: #555;
}

.services-hero p {
  max-width: 600px;
  margin: 20px auto 0;
  color: #666;
}

/* =========================
   SERVICES GRID
========================= */

.services-main {
  padding: 120px 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-box {
  padding: 30px;
  border-radius: 18px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);

  transition: 0.3s ease;
}

.service-box:hover {
  transform: translateY(-6px);
}

.service-box i {
  font-size: 22px;
  margin-bottom: 15px;
  color: #000;
}

.service-box h3 {
  font-size: 18px;
  font-weight: 600;
}

.service-box p {
  font-size: 14px;
  color: #666;
}

/* =========================
   PROCESS (DARK)
========================= */

.services-process {
  padding: 120px 20px;
  background: #0d0d0f;
}

.services-process .section-label{
  color: #aaa;
}

.services-process h2 {
  color: #fff;
  font-size: 42px;
}

.process-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 30px;
}

.process-step span {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
}

.process-step h4 {
  color: #fff;
  margin: 10px 0;
}

.process-step p {
  color: #aaa;
}

/* =========================
   CTA
========================= */

.services-cta {
  padding: 100px 20px;
  text-align: center;
}

.services-cta h2 {
  font-size: 42px;
  font-weight: 800;
}

.services-cta p {
  color: #666;
  margin: 15px 0 25px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .services-hero h1 {
    font-size: 38px;
  }

  .services-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2,1fr);
  }
}

@media (max-width: 576px) {

  .services-grid {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .services-hero {
    padding: 110px 16px 70px;
  }
}


/* End Services CSS */

/* Contact Page CSS */

/* =========================
   HERO
========================= */

html, body {
  overflow-x: hidden;
}

.contact-hero {
  position: relative;
  padding: 140px 20px 90px;
  text-align: center;
  overflow: hidden;
}

.contact-hero h1 {
  font-size: 64px;
  font-weight: 800;
  color: #111;
}

.contact-hero h1 span {
  color: #555;
}

.contact-hero p {
  max-width: 600px;
  margin: 20px auto 0;
  color: #666;
}

.info-item span {
    word-wrap: break-word;
    overflow-wrap: break-word !important;
    word-break: break-word;
    display: block; 
    line-height: 1.4;
}

/* Specific fix for the location icon alignment */
.info-item {
    align-items: flex-start; 
}


/* =========================
   MAIN CONTACT
========================= */

.contact-main {
  padding: 120px 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.contact-info-box h2 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info-box p {
  color: #666;
  margin-bottom: 25px;
}

/* INFO ITEMS */
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;
}



.info-item i {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(0,0,0,0.05);

  display: flex;
  align-items: center;
  justify-content: center;
}

/* RIGHT FORM */
.contact-form-box {
  background: rgba(255,255,255,0.7);
  padding: 30px;
  border-radius: 18px;

  border: 1px solid rgba(0,0,0,0.06);
  backdrop-filter: blur(10px);

  box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}

/* INPUTS */
.contact-form-box input,
.contact-form-box textarea {
  width: 100%;
  padding: 14px;
  border-radius: 12px;

  border: 1px solid rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.8);

  margin-bottom: 15px;
  outline: none;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

/* =========================
   MAP
========================= */

.contact-map {
  padding: 120px 20px;
  background: #0d0d0f;
}

.contact-map .section-label{
  color: #aaa;
}

.contact-map h2 {
  color: #fff;
}

.map-box {
  margin-top: 40px;
  height: 300px;
  border-radius: 18px;

  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
}

.map-box {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}
/* =========================
   CTA
========================= */

.contact-cta {
  padding: 100px 20px;
  text-align: center;
}

.contact-cta h2 {
  font-size: 42px;
  font-weight: 800;
}

.contact-cta p {
  color: #666;
  margin: 15px 0 25px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 38px;
  }
}

@media (max-width: 576px) {

  .contact-main {
    padding: 80px 16px;
  }

  .contact-map {
    padding: 80px 16px;
  }
}

/* FIX: Turnstile responsive */
.cf-turnstile {
  width: 100% !important;
  max-width: 100%;
  overflow: hidden;
}

.cf-turnstile iframe {
  width: 100% !important;
  max-width: 100% !important;
}

/* EXTRA SAFETY */
.contact-form-box {
  overflow: hidden;
}

/* End Contact CSS */

/* Web Design Page */

/* =========================
   HERO SPLIT
========================= */

.webx-hero {
  padding: 100px 20px 100px;
}

.webx-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.webx-hero-text h1 {
  font-size: 64px;
  font-weight: 800;
}

.webx-hero-text span {
  color: #555;
}

.webx-hero-visual {
  position: relative;
}

.webx-hero .btn-primary {
  display: inline-block;   /* 🔥 IMPORTANT */
  margin-top: 10px;
}

/* MAIN MOCKUP */
.mock-main img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
}


/* FLOATING CARD */
.mock-floating {
  position: absolute;
  bottom: -40px;
  right: 20px;
  width: 60%;
}

.mock-floating img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.mock-main img {
  animation: floatUp 6s ease-in-out infinite;
}

.mock-floating img {
  animation: floatUp 6s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes floatUp {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* =========================
   CLEAN SERVICES SECTION
========================= */

.webx-services {
  padding: 80px 20px 60px;
}

/* GRID */
.webx-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD BASE */
.webx-card {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);

  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ICON */
.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0,0,0,0.05);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  margin-bottom: 15px;
}

/* NUMBER */
.webx-card span {
  font-size: 13px;
  font-weight: 600;
  color: #999;
  margin-bottom: 6px;
}

/* TITLE */
.webx-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
}

/* TEXT */
.webx-card p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* 🔥 HOVER */
.webx-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .webx-services-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .webx-services-grid {
    grid-template-columns: 1fr;
  }
}
/* =========================
   STORY SECTION (MODERN)
========================= */

.webx-story {
   padding: 80px 20px 40px;
}
.story-step:last-child {
  margin-bottom: 0;
}

/* HEADER */
.webx-story-header h2 {
  font-size: 42px;
  font-weight: 700;
  max-width: 700px;
  margin: 0 auto 60px;
}

.webx-story-header span {
  color: #666;
}

/* STEPS */
.webx-story-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

/* SINGLE STEP */
.story-step {
  position: relative;
  padding-left: 50px;
  margin-bottom: 50px;
}

/* VERTICAL LINE */
.story-step::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(0,0,0,0.08);
}

/* DOT */
.step-line {
  position: absolute;
  left: 10px;
  top: 5px;
  width: 18px;
  height: 18px;
  background: #111;
  border-radius: 50%;
}

/* CONTENT */
.step-content h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-content p {
  color: #666;
  line-height: 1.6;
  font-size: 15px;
}

/* HOVER (subtle) */
.story-step:hover .step-line {
  transform: scale(1.2);
  transition: 0.3s;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 576px) {
  .webx-story-header h2 {
    font-size: 28px;
  }

  .story-step {
    padding-left: 40px;
  }
}


/* =========================
   CTA SECTION (PREMIUM)
========================= */

.webx-cta {
  padding: 60px 20px 40px;
}

/* BOX */
.webx-cta-box {
  max-width: 700px;
  margin: 0 auto;
  padding: 60px 40px;

  background: transparent;
  border-radius: 20px;
}

/* TITLE */
.webx-cta-box h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 15px;
}

/* SUBTEXT */
.webx-cta-box p {
  color: #666;
  font-size: 16px;
  margin-bottom: 30px;
}

/* BUTTON */
.webx-cta-box .btn-primary {
  display: inline-block;
  padding: 14px 28px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 576px) {
  .webx-cta-box {
    padding: 40px 20px;
  }

  .webx-cta-box h2 {
    font-size: 26px;
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .webx-hero-grid {
    grid-template-columns: 1fr;
  }

  .webx-story-grid {
    grid-template-columns: 1fr;
  }

  .webx-hero-text h1 {
    font-size: 38px;
  }

  .webx-sticky {
    position: static;
  }
}

@media (max-width: 768px) {
  .webx-hero-visual {
    display: none;
  }
}

/* End Web Design */


/* SEO SECTION */

/* =========================
   SEO HERO (UNIQUE STYLE)
========================= */

/* HERO */
.seo-hero {
  padding: 50px 20px 80px;
}

.seo-hero-wrap {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* LEFT */
.seo-hero-left h1 {
  font-size: 60px;
  font-weight: 800;
  line-height: 1.1;
}

.seo-hero-left p {
  color: #666;
  max-width: 520px;
  margin: 20px 0;
}

.seo-hero-cta {
  display: flex;
  gap: 15px;
}

/* BUTTON */
.btn-outline {
  padding: 14px 26px;
  border: 1px solid #111;
  border-radius: 10px;
  text-decoration: none;
  color: #111;
  transition: 0.3s;
}

.btn-outline:hover {
  background: #111;
  color: #fff;
}

/* RIGHT SIDE */
.seo-hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ROW FIXED */
.seo-metric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* CARD */
.seo-metric-card {
  background: #fff;
  padding: 30px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.05);

  /* 🔥 SHADOW IMPROVED */
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);

  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.seo-metric-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* HIGHLIGHT CARD */
.seo-metric-card.highlight {
  background: #111;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.seo-metric-card.highlight p {
  color: rgba(255,255,255,0.7);
}

/* ICON */
.metric-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,0,0,0.05);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 18px;
}

/* ICON IN DARK CARD */
.seo-metric-card.highlight .metric-icon {
  background: rgba(255,255,255,0.1);
}

/* TEXT */
.seo-metric-card h3 {
  font-size: 34px;
  font-weight: 800;
}

.seo-metric-card p {
  color: #666;
  font-size: 14px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .seo-hero-wrap {
    grid-template-columns: 1fr;
  }

  .seo-metric-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .seo-hero-left h1 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .seo-hero-right {
    display: none;
  }
}

@media (max-width: 576px) {
  .seo-hero {
    min-height: 90vh;
    display: flex;
    align-items: center;

    /* 🔥 important breathing space below */
    padding-bottom: 100px;
  }
  .seo-hero-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    height: 52px;           /* 🔥 fixed height = perfect centering */
    padding: 0 22px;        /* remove vertical padding */
    line-height: normal;
  }

  .seo-hero-cta .btn-outline {
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* =========================
   SERVICES LIST (DIFFERENT)
========================= */

/* =========================
   SPLIT SCROLL SEO SECTION
========================= */

.seo-services {
  padding: 120px 20px;
}

/* GRID */
.seo-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

/* LEFT STICKY */
.seo-left-inner {
  position: sticky;
  top: 120px;
}

.seo-left h2 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin: 20px 0;
}

.seo-left p {
  color: #666;
  max-width: 400px;
}

/* RIGHT FLOW */
.seo-right {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/* BLOCK */
.seo-block {
  position: relative;
  padding-left: 40px;
  transition: all 0.3s ease;
}

/* NUMBER */
.seo-block span {
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 14px;
  font-weight: 600;
  color: #aaa;
}

/* TITLE */
.seo-block h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
}

/* TEXT */
.seo-block p {
  color: #666;
  max-width: 500px;
}

/* HOVER EFFECT */
.seo-block:hover {
  transform: translateX(10px);
}

.seo-block:hover h3 {
  color: #000;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .seo-split {
    grid-template-columns: 1fr;
  }

  .seo-left-inner {
    position: static;
    margin-bottom: 40px;
  }
}


/* =========================
   RESULTS DARK SECTION
========================= */

.seo-results {
  padding: 80px 20px;
}

.seo-results-box {
  background: #111;
  color: #fff;
  padding: 60px;
  border-radius: 20px;
  text-align: center;
}

.seo-results-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 30px;
}

.seo-results-grid h3 {
  font-size: 32px;
}

/* =========================
   CTA
========================= */

.seo-cta {
  padding: 80px 20px;
}

.seo-cta-box h2 {
  font-size: 34px;
  font-weight: 700;
}

.seo-cta-box p {
  color: #666;
  margin: 15px 0 25px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .seo-hero-wrap {
    grid-template-columns: 1fr;
  }

  .seo-process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .seo-process-grid {
    grid-template-columns: 1fr;
  }

  .seo-results-grid {
    flex-direction: column;
    gap: 20px;
  }

  .seo-hero-left h1 {
    font-size: 36px;
  }
}

/* add + before first two */
.counter::before {
  content: "+";
}

/* remove + from 3rd and add x */
.seo-results-grid div:nth-child(3) .counter::before {
  content: "";
}

.seo-results-grid div:nth-child(3) .counter::after {
  content: "x";
}

/* END SEO SECTION */

/* Ecommerce Section */

/* =========================
   HERO
========================= */

.ecomx-hero {
  display: flex;
  align-items: center;        /* vertical center */
  padding: 60 20px; 
  margin-top: 50px; 
}

.ecomx-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ecomx-hero-text h1 {
  font-size: 60px;
  font-weight: 800;
}
.ecomx-hero-text p {
  margin-bottom: 30px;
}

.ecomx-hero-text span {
  color: #666;
}

.ecomx-hero-visual img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
  .ecomx-hero-visual {
    display: none;
  }

  .ecomx-hero-grid {
    grid-template-columns: 1fr; /* full width text */
  }
}
/* =========================
   STRIP (NO CARDS)
========================= */

.ecomx-strip {
  padding: 40px 20px;
}

.ecomx-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 30px 0;
}

.ecomx-strip h3 {
  font-size: 16px;
  font-weight: 700;
}

.ecomx-strip p {
  font-size: 14px;
  color: #666;
}


/* =========================
   FEATURES (EDITORIAL)
========================= */

.ecomx-features {
  padding: 80px 20px;
}

.ecomx-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}

.ecomx-row.reverse {
  direction: rtl;
}

.ecomx-row.reverse .ecomx-content {
  direction: ltr;
}

.ecomx-content span {
  font-size: 13px;
  color: #999;
  font-weight: 600;
}

.ecomx-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin: 10px 0;
}

.ecomx-content p {
  color: #666;
  line-height: 1.7;
}

.ecomx-visual img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}


/* =========================
   PROCESS
========================= */

.ecomx-process {
  padding: 80px 20px;
}

.ecomx-process-header h2 {
  font-size: 38px;
  margin-bottom: 60px;
}

.ecomx-process-list {
  max-width: 700px;
  margin: 0 auto;
}

.ecomx-process-list div {
  margin-bottom: 40px;
}

.ecomx-process-list h4 {
  font-size: 20px;
  font-weight: 700;
}

.ecomx-process-list p {
  color: #666;
}


/* =========================
   CTA
========================= */

.ecomx-cta {
  padding: 60px 20px;
}

.ecomx-cta-box {
  max-width: 600px;
  margin: 0 auto;
}

.ecomx-cta-box h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.ecomx-cta-box p {
  color: #666;
  margin-bottom: 20px;
}

.ecomx-cta-box p {
  margin-bottom: 30px;
}

.ecomx-row:last-child {
  margin-bottom: 0;
}


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {

  .ecomx-hero-grid,
  .ecomx-row {
    grid-template-columns: 1fr;
  }

  .ecomx-strip-grid {
    grid-template-columns: 1fr 1fr;
  }

}

@media (max-width: 576px) {

  .ecomx-strip-grid {
    grid-template-columns: 1fr;
  }

  .ecomx-hero-text h1 {
    font-size: 36px;
  }

}

/* End Ecommerce Section */

/* Social Media Page */

/* HERO */
.sm-hero {
  padding: 40px 20px;
  text-align: center;
}

.sm-hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.2;
}

.sm-hero h1 span {
  color: #666;
}

.hero-sub {
  max-width: 600px;
  margin: 20px auto;
  color: #666;
}

.hero-cta {
  margin-top: 20px;
}

.text-link {
  margin-left: 20px;
  text-decoration: underline;
  color: #111;
}

/* STRIP */
.sm-strip {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 18px 0;
}

.sm-strip-row {
  display: flex;
  justify-content: center;   /* center align */
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;           /* responsive wrap */
}

.sm-strip-row span {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  white-space: nowrap;
}

.sm-strip-row span::after {
  content: "•";
  margin-left: 50px;
  color: #ccc;
}

.sm-strip-row span:last-child::after {
  display: none;
}

@media (max-width: 768px) {
  .sm-strip {
    display: none;
  }
}

@media (max-width: 768px) {
  .sm-process{
    display: none;
  }
}


/* VALUE */
.sm-value {
  padding: 60px 20px 40px;
}

.sm-value-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.value-left h2 {
  font-size: 42px;
  font-weight: 700;
}

.value-right p {
  color: #666;
  margin-bottom: 20px;
}

.sm-services {
  padding: 60px 20px 40px
}

/* EACH ROW */
.sm-service {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: start;
  padding: 50px 0;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

/* BIG NUMBER */
.sm-index {
  font-size: 64px;
  font-weight: 700;
  color: rgba(0,0,0,0.08);
  line-height: 1;
}

/* CONTENT */
.sm-content {
  max-width: 600px;
}

.sm-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 10px;
}

.sm-content p {
  color: #666;
  font-size: 16px;
  line-height: 1.6;
}

/* 🔥 HOVER EFFECT (premium subtle) */
.sm-service:hover {
  transform: translateX(10px);
}

.sm-service:hover .sm-index {
  color: rgba(0,0,0,0.2);
}

.sm-service:hover h3 {
  letter-spacing: 0.3px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .sm-service {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sm-index {
    font-size: 28px;
  }

  .sm-content h3 {
    font-size: 22px;
  }
}
/* METRICS */
.sm-metrics {
  padding: 60px 20px 40px;
  text-align: center;
}

.metrics-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.metric h2 {
  font-size: 48px;
  font-weight: 800;
}

.metric span {
  color: #666;
  font-size: 14px;
}

/* PROCESS */
.sm-process {
  padding: 60px 20px 100px;
}

.process-line {
  display: flex;
  justify-content: space-between;
  border-top: 2px solid #111;
  margin-top: 40px;
  padding-top: 20px;
}

.process-step span {
  font-weight: 600;
  color: #aaa;
}

/* CTA */
.sm-cta {
  padding: 100px 20px;
}

.sm-cta h2 {
  font-size: 40px;
  font-weight: 700;
}

.sm-cta p {
  color: #666;
  margin: 15px 0 20px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .sm-hero h1 {
    font-size: 38px;
  }

  .sm-value-grid {
    grid-template-columns: 1fr;
  }

  .metrics-grid {
    flex-direction: column;
    gap: 30px;
  }

  .process-line {
    flex-direction: column;
    gap: 15px;
    border-top: none;
  }
}

/* End Social Media Page */