/* ============================================================
   MURTAZA ENTERPRISES — Corporate Website Stylesheet
   Premium B2B Branding · Pakistan
   ============================================================
   Table of Contents
   -----------------
   0.  Font Import
   1.  CSS Custom Properties (:root)
   2.  CSS Reset & Base Styles
   3.  Custom Scrollbar
   4.  Selection Styling
   5.  Page Loader
   6.  Utility Classes
   7.  Buttons
   8.  Navigation (.navbar)
   9.  Hero Section (.hero)
   10. Services Section (.services)
   11. Why Choose Us (.why-us)
   12. Process Section (.process)
   13. CTA Banner (.cta-banner)
   14. Footer (.footer)
   15. WhatsApp Floating Button (.whatsapp-float)
   16. Back to Top Button (.back-to-top)
   17. Keyframe Animations
   18. Scroll-Triggered Animations
   19. Responsive — 1200px
   20. Responsive — 1024px
   21. Responsive — 768px
   22. Responsive — 480px
   ============================================================ */

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

/* ==========================================================
   1. CSS CUSTOM PROPERTIES
   ========================================================== */
:root {
  /* ---- Brand Colors ---- */
  --clr-primary-purple: #6B488E;
  --clr-primary-blue:   #2298D5;
  --clr-primary-pink:   #ED2F7B;
  --clr-dark:           #1A1A2E;
  --clr-dark-deep:      #0D0D1A;
  --clr-light-bg:       #F8F9FA;
  --clr-white:          #FFFFFF;
  --clr-gray:           #6C757D;
  --clr-light-gray:     #E9ECEF;
  --clr-whatsapp:       #25D366;

  /* ---- Gradients ---- */
  --gradient-brand: linear-gradient(135deg, var(--clr-primary-purple), var(--clr-primary-blue));
  --gradient-brand-wide: linear-gradient(135deg, var(--clr-primary-purple) 0%, var(--clr-primary-blue) 50%, var(--clr-primary-pink) 100%);
  --gradient-brand-text: linear-gradient(90deg, var(--clr-primary-purple), var(--clr-primary-blue), var(--clr-primary-pink));
  --gradient-dark-overlay: linear-gradient(180deg, rgba(13, 13, 26, 0.72) 0%, rgba(26, 26, 46, 0.85) 100%);

  /* ---- Typography ---- */
  --ff-heading: 'Outfit', sans-serif;
  --ff-body:    'Roboto', sans-serif;

  --fs-xs:   0.75rem;   /* 12px */
  --fs-sm:   0.875rem;  /* 14px */
  --fs-base: 1rem;      /* 16px */
  --fs-md:   1.125rem;  /* 18px */
  --fs-lg:   1.25rem;   /* 20px */
  --fs-xl:   1.5rem;    /* 24px */
  --fs-2xl:  2rem;      /* 32px */
  --fs-3xl:  2.5rem;    /* 40px */
  --fs-4xl:  3rem;      /* 48px */
  --fs-5xl:  3.5rem;    /* 56px */

  --fw-light:     300;
  --fw-regular:   400;
  --fw-medium:    500;
  --fw-semibold:  600;
  --fw-bold:      700;
  --fw-extrabold: 800;
  --fw-black:     900;

  --lh-tight:   1.2;
  --lh-normal:  1.6;
  --lh-relaxed: 1.8;

  /* ---- Spacing (4px base) ---- */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-7:  28px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-14: 56px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-25: 100px;

  /* ---- Border Radius ---- */
  --radius-sm:   6px;
  --radius-md:   10px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-pill: 50px;
  --radius-full: 50%;

  /* ---- Shadows ---- */
  --shadow-xs:    0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-sm:    0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md:    0 4px 16px rgba(0, 0, 0, 0.10);
  --shadow-lg:    0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-xl:    0 16px 48px rgba(0, 0, 0, 0.16);
  --shadow-card:  0 4px 20px rgba(107, 72, 142, 0.08);
  --shadow-card-hover: 0 12px 40px rgba(107, 72, 142, 0.18);
  --shadow-nav:   0 2px 20px rgba(0, 0, 0, 0.08);

  /* ---- Transitions ---- */
  --transition-fast:    0.2s ease;
  --transition-base:    0.3s ease;
  --transition-smooth:  0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring:  0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* ---- Z-Index Scale ---- */
  --z-behind:    -1;
  --z-base:       1;
  --z-dropdown:  100;
  --z-sticky:    200;
  --z-overlay:   500;
  --z-modal:     600;
  --z-tooltip:   700;
  --z-nav:      1000;
  --z-loader:   9999;
}

/* ==========================================================
   2. CSS RESET & BASE STYLES
   ========================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 100%; /* 16px base */
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--clr-dark);
  background-color: var(--clr-light-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  color: var(--clr-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

/* ==========================================================
   3. CUSTOM SCROLLBAR
   ========================================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--clr-light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--clr-primary-purple);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--clr-primary-blue);
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--clr-primary-purple) var(--clr-light-gray);
}

/* ==========================================================
   4. SELECTION STYLING
   ========================================================== */
::selection {
  background-color: var(--clr-primary-purple);
  color: var(--clr-white);
}

::-moz-selection {
  background-color: var(--clr-primary-purple);
  color: var(--clr-white);
}

/* ==========================================================
   5. PAGE LOADER
   ========================================================== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: var(--z-loader);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-brand-wide);
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.page-loader .spinner {
  width: 48px;
  height: 48px;
  border: 4px solid rgba(255, 255, 255, 0.25);
  border-top-color: var(--clr-white);
  border-radius: var(--radius-full);
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

/* ==========================================================
   6. UTILITY CLASSES
   ========================================================== */

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}

/* ---- Section Spacing ---- */
.section-padding {
  padding: var(--sp-25) 0;
}

/* ---- Section Header ---- */
.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--sp-16);
}

.section-subtitle {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--clr-primary-purple);
  margin-bottom: var(--sp-3);
  position: relative;
  padding-bottom: var(--sp-2);
}

.section-subtitle::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  border-radius: var(--radius-pill);
  background: var(--gradient-brand);
}

.section-title {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-3xl));
  font-weight: var(--fw-extrabold);
  color: var(--clr-dark);
  margin-bottom: var(--sp-4);
}

.section-description {
  font-size: var(--fs-md);
  color: var(--clr-gray);
  line-height: var(--lh-relaxed);
}

/* ---- Gradient Text ---- */
.gradient-text {
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================
   7. BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  font-family: var(--ff-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn i {
  font-size: 1.1em;
  transition: transform var(--transition-fast);
}

.btn:hover i {
  transform: translateX(3px);
}

/* Primary — gradient fill */
.btn-primary {
  background: var(--gradient-brand);
  color: var(--clr-white);
  border-color: transparent;
  box-shadow: 0 4px 20px rgba(107, 72, 142, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107, 72, 142, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
}

/* Secondary — outline */
.btn-secondary {
  background: transparent;
  color: var(--clr-primary-purple);
  border-color: var(--clr-primary-purple);
}

.btn-secondary:hover {
  background: var(--clr-primary-purple);
  color: var(--clr-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 72, 142, 0.25);
}

.btn-secondary:active {
  transform: translateY(0);
}

/* WhatsApp */
.btn-whatsapp {
  background: var(--clr-whatsapp);
  color: var(--clr-white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  background: #1ebe5d;
}

/* White (for dark backgrounds) */
.btn-white {
  background: var(--clr-white);
  color: var(--clr-dark);
  border-color: transparent;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

/* White Outline */
.btn-white-outline {
  background: transparent;
  color: var(--clr-white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-white-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--clr-white);
  transform: translateY(-2px);
}

/* ==========================================================
   7.5 TOP BAR
   ========================================================== */
.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: var(--clr-dark);
  color: var(--clr-white);
  z-index: calc(var(--z-nav) + 1);
  display: flex;
  align-items: center;
  font-size: 13px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.top-bar a {
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition-fast);
}

.top-bar a:hover {
  color: var(--clr-white);
}

/* ==========================================================
   8. NAVIGATION (.navbar)
   ========================================================== */
.navbar {
  position: fixed;
  top: 40px;
  left: 0;
  width: 100%;
  z-index: var(--z-nav);
  padding: var(--sp-5) 0;
  transition: all var(--transition-smooth);
  background: transparent;
}

.navbar.scrolled {
  background: var(--clr-white);
  box-shadow: var(--shadow-nav);
  padding: var(--sp-3) 0;
  top: 0;
}

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

/* Logo */
.nav-logo {
  height: 65px;
  width: auto;
  transition: height var(--transition-base), filter var(--transition-base);
}

.navbar.scrolled .nav-logo {
  height: 55px;
  filter: brightness(0); /* Makes the white logo black on the white scrolled navbar */
}

/* Nav Links */
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}

.nav-link {
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: var(--sp-1) 0;
  transition: color var(--transition-fast);
}

.navbar.scrolled .nav-link {
  color: var(--clr-dark);
}

/* Hover underline animation */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2.5px;
  border-radius: var(--radius-pill);
  background: var(--gradient-brand);
  transition: width var(--transition-smooth);
}

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

.nav-link:hover,
.nav-link.active {
  color: var(--clr-primary-purple);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link.active {
  color: var(--clr-primary-purple);
}

/* Nav CTA */
.nav-cta {
  margin-left: var(--sp-4);
}

.nav-cta .btn {
  padding: 10px 24px;
  font-size: var(--fs-sm);
}

/* Hamburger Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: calc(var(--z-nav) + 1);
  background: transparent;
  border: none;
  padding: 0;
  outline: none;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  border-radius: var(--radius-pill);
  background: var(--clr-white);
  transition: all var(--transition-base);
}

.navbar.scrolled .nav-toggle span {
  background: var(--clr-dark);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ==========================================================
   9. HERO SECTION
   ========================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--clr-dark);
}

/* Background image + overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient-dark-overlay);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

/* Content wrapper */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 700px;
  padding: 120px var(--sp-6) var(--sp-16);
  margin: auto;
}

/* Badge */
.hero-badge {
  display: inline-block;
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: var(--sp-2) var(--sp-5);
  border-radius: var(--radius-pill);
  background: rgba(107, 72, 142, 0.25);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(107, 72, 142, 0.4);
  margin-bottom: var(--sp-6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  line-height: 1.15;
  margin-bottom: var(--sp-6);
}

.hero p {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.75);
  line-height: var(--lh-relaxed);
  max-width: 550px;
  margin-inline: auto;
  margin-bottom: var(--sp-10);
}

/* Typed cursor */
.typed-text {
  color: var(--clr-primary-blue);
}

.typed-text::after {
  content: '|';
  display: inline-block;
  margin-left: 2px;
  animation: blink 0.8s step-end infinite;
  color: var(--clr-primary-blue);
  font-weight: var(--fw-light);
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* Hero Stats Strip */
.hero-stats {
  position: relative;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: var(--sp-8) var(--sp-6);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats .container {
  display: flex;
  justify-content: center;
  gap: var(--sp-16);
}

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

.hero-stat-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.hero-stat-label {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: var(--fw-medium);
}

/* Floating decorative elements */
.hero-float {
  position: absolute;
  z-index: 1;
  border-radius: var(--radius-full);
  opacity: 0.12;
  pointer-events: none;
}

.hero-float--1 {
  width: 300px;
  height: 300px;
  background: var(--clr-primary-purple);
  top: 10%;
  left: -80px;
  animation: float 6s ease-in-out infinite;
}

.hero-float--2 {
  width: 200px;
  height: 200px;
  background: var(--clr-primary-pink);
  bottom: 20%;
  right: -50px;
  animation: float 8s ease-in-out infinite 1s;
}

.hero-float--3 {
  width: 120px;
  height: 120px;
  background: var(--clr-primary-blue);
  top: 30%;
  right: 10%;
  animation: float 7s ease-in-out infinite 0.5s;
}

/* ==========================================================
   10. SERVICES SECTION
   ========================================================== */
.services {
  background: var(--clr-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.service-card {
  background: var(--clr-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--clr-light-gray);
  transition: all var(--transition-smooth);
  position: relative;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(107, 72, 142, 0.2);
}

/* Card Image */
.service-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

/* Card Content */
.service-card-content {
  padding: var(--sp-6) var(--sp-6) var(--sp-8);
}

.service-card-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  box-shadow: 0 4px 14px rgba(107, 72, 142, 0.25);
  /* Pull icon up to overlap the image */
  margin-top: -36px;
  position: relative;
  z-index: 1;
}

.service-card-icon i {
  font-size: var(--fs-lg);
  color: var(--clr-white);
}

.service-card-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  margin-bottom: var(--sp-3);
  color: var(--clr-dark);
}

.service-card-desc {
  font-size: var(--fs-sm);
  color: var(--clr-gray);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-5);
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-heading);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-primary-purple);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.service-card-link:hover {
  gap: var(--sp-3);
  color: var(--clr-primary-blue);
}

.service-card-link i {
  transition: transform var(--transition-fast);
}

.service-card-link:hover i {
  transform: translateX(3px);
}

/* ==========================================================
   11. WHY CHOOSE US (.why-us)
   ========================================================== */
.why-us {
  background: var(--clr-dark);
  position: relative;
  overflow: hidden;
}

/* Subtle decorative gradient blob */
.why-us::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(107, 72, 142, 0.15) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.why-us-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}

/* Left Content */
.why-us-content .section-subtitle {
  color: var(--clr-primary-blue);
  text-align: left;
}

.why-us-content .section-subtitle::after {
  left: 0;
  transform: none;
}

.why-us-content .section-title {
  color: var(--clr-white);
  text-align: left;
}

.why-us-content .section-description {
  color: rgba(255, 255, 255, 0.6);
  text-align: left;
  margin-bottom: var(--sp-10);
}

/* Stats Row */
.stats-row {
  display: flex;
  gap: var(--sp-10);
}

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

.stat-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-extrabold);
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: var(--sp-1);
}

.stat-label {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Right — Feature Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6);
}

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  transition: all var(--transition-smooth);
}

.feature-card:hover {
  border-color: rgba(107, 72, 142, 0.5);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.feature-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gradient-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
}

.feature-card-icon i {
  font-size: var(--fs-lg);
  color: var(--clr-white);
}

.feature-card h4 {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}

.feature-card p {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--lh-relaxed);
}

/* ==========================================================
   12. PROCESS SECTION
   ========================================================== */
.process {
  background: var(--clr-light-bg);
}

.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  max-width: 900px;
  margin-inline: auto;
}

/* Connecting line */
.process-timeline::before {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  height: 3px;
  background: var(--clr-light-gray);
  z-index: 0;
}

/* Animated gradient line */
.process-timeline::after {
  content: '';
  position: absolute;
  top: 30px;
  left: 30px;
  width: 0;
  height: 3px;
  background: var(--gradient-brand);
  z-index: 1;
  transition: width 3s ease-in-out;
}

.process-timeline.animated::after {
  width: calc(100% - 60px);
}

/* Removing the animated connecting line since it got stuck at 8 */

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 0 var(--sp-3);
  cursor: default;
}

.process-step-circle {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  border: 3px solid var(--clr-light-gray);
  background: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  transition: all var(--transition-smooth);
  position: relative;
}

.process-step-number {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--clr-gray);
  transition: color var(--transition-fast);
}

.process-step:hover .process-step-circle,
.process-step.active .process-step-circle,
.process-step.animated .process-step-circle {
  background: var(--gradient-brand);
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(107, 72, 142, 0.35);
}

.process-step:hover .process-step-number,
.process-step.active .process-step-number,
.process-step.animated .process-step-number {
  color: var(--clr-white);
}

.process-step-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-dark);
  margin-bottom: var(--sp-2);
}

.process-step-desc {
  font-size: var(--fs-sm);
  color: var(--clr-gray);
  max-width: 160px;
  line-height: var(--lh-normal);
}

/* ==========================================================
   13. CTA BANNER
   ========================================================== */
.cta-banner {
  background: var(--gradient-brand-wide);
  padding: var(--sp-20) var(--sp-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Subtle geometric overlay */
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='rgba(255,255,255,0.03)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin-inline: auto;
}

.cta-banner h2 {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}

.cta-banner p {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: var(--sp-10);
  line-height: var(--lh-relaxed);
}

.cta-banner-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ==========================================================
   14. FOOTER
   ========================================================== */
.footer {
  background: var(--clr-dark-deep);
  color: rgba(255, 255, 255, 0.65);
  padding-top: var(--sp-20);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: var(--sp-10);
  padding-bottom: var(--sp-12);
}

/* Brand Column */
.footer-logo {
  height: 80px;
  width: auto;
  margin-bottom: var(--sp-6);
}

.footer-brand p {
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.5);
  max-width: 280px;
}

/* Column Headings */
.footer-heading {
  font-family: var(--ff-heading);
  font-size: var(--fs-base);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  margin-bottom: var(--sp-6);
  position: relative;
  padding-bottom: var(--sp-3);
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2.5px;
  border-radius: var(--radius-pill);
  background: var(--gradient-brand);
}

/* Links */
.footer-links li {
  margin-bottom: var(--sp-3);
}

.footer-links a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-block;
}

.footer-links a:hover {
  color: var(--clr-primary-blue);
  padding-left: var(--sp-2);
}

/* Contact Info */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  margin-bottom: var(--sp-4);
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact li i {
  color: var(--clr-primary-blue);
  font-size: var(--fs-base);
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-contact a:hover {
  color: var(--clr-primary-blue);
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-social a:hover {
  background: var(--gradient-brand);
  color: var(--clr-white);
  transform: scale(1.12);
  border-color: transparent;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: var(--sp-6) 0;
  text-align: center;
}

.footer-bottom p {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: var(--clr-primary-blue);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--clr-primary-purple);
}

/* ==========================================================
   15. WHATSAPP FLOATING BUTTON
   ========================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--clr-whatsapp);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  animation: pulse-whatsapp 2s ease-in-out infinite;
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.55);
}

/* Instagram Floating Button */
.instagram-float {
  position: fixed;
  bottom: 100px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(214, 36, 159, 0.4);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  animation: pulse-instagram 2s ease-in-out infinite;
  animation-delay: 1s; /* Offset from WhatsApp pulse */
  cursor: pointer;
}

.instagram-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(214, 36, 159, 0.55);
}

@keyframes pulse-instagram {
  0% { box-shadow: 0 0 0 0 rgba(214, 36, 159, 0.5); }
  70% { box-shadow: 0 0 0 18px rgba(214, 36, 159, 0); }
  100% { box-shadow: 0 0 0 0 rgba(214, 36, 159, 0); }
}

/* ==========================================================
   16. BACK TO TOP BUTTON
   ========================================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 100px;
  z-index: 999;
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  background: var(--clr-primary-purple);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-white);
  font-size: var(--fs-md);
  box-shadow: 0 4px 16px rgba(107, 72, 142, 0.35);
  transition: all var(--transition-smooth);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 24px rgba(107, 72, 142, 0.45);
}

/* ==========================================================
   17. KEYFRAME ANIMATIONS
   ========================================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes pulse-whatsapp {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

/* ==========================================================
   18. SCROLL-TRIGGERED ANIMATIONS
   ========================================================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: none;
}

/* Delay variants */
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }

/* ==========================================================
   19. RESPONSIVE — 1200px
   ========================================================== */
@media (max-width: 1200px) {
  .hero-stats .container {
    gap: var(--sp-10);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: var(--sp-8);
  }
}

/* ==========================================================
   20. RESPONSIVE — 1024px
   ========================================================== */
@media (max-width: 1024px) {
  .section-padding {
    padding: var(--sp-20) 0;
  }

  /* Navigation — Mobile Menu */
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--clr-white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: var(--sp-12) var(--sp-8);
    gap: var(--sp-6);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
    transition: right var(--transition-smooth);
    z-index: var(--z-nav);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    color: var(--clr-dark);
    font-size: var(--fs-base);
  }

  .nav-cta {
    margin-left: 0;
    margin-top: var(--sp-4);
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Why Us */
  .why-us-wrapper {
    grid-template-columns: 1fr;
    gap: var(--sp-12);
  }

  .why-us-content .section-subtitle,
  .why-us-content .section-title,
  .why-us-content .section-description {
    text-align: center;
  }

  .why-us-content .section-subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .stats-row {
    justify-content: center;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10);
  }
}

/* ==========================================================
   21. RESPONSIVE — 768px
   ========================================================== */
@media (max-width: 768px) {
  .section-padding {
    padding: var(--sp-16) 0;
  }

  .section-title {
    font-size: var(--fs-2xl);
  }

  .top-bar {
    display: none; /* Hide on mobile to save space */
  }

  .navbar {
    top: 0;
    padding: var(--sp-3) 0;
  }

  .section-header {
    margin-bottom: var(--sp-10);
  }

  /* Hero */
  .hero h1 {
    font-size: clamp(2rem, 6vw, 2.8rem);
  }

  .hero-stats .container {
    flex-direction: column;
    gap: var(--sp-6);
    align-items: center;
  }

  .hero-stat {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
  }

  .hero-stat-number {
    font-size: var(--fs-xl);
  }

  .hero-buttons {
    flex-direction: column;
    gap: var(--sp-3);
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin-inline: auto;
  }

  /* Process — vertical timeline */
  .process-timeline {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-10);
    padding-left: var(--sp-10);
  }

  .process-timeline::before {
    top: 30px;
    bottom: 30px;
    left: 29px;
    right: auto;
    width: 3px;
    height: auto;
  }

  .process-timeline::after {
    top: 30px;
    bottom: auto;
    left: 29px;
    right: auto;
    width: 3px;
    height: 0;
    transition: height 3s ease-in-out;
  }

  .process-timeline.animated::after {
    width: 3px;
    height: calc(100% - 60px);
  }

  .process-step {
    flex-direction: row;
    text-align: left;
    gap: var(--sp-5);
    align-items: flex-start;
  }

  .process-step-circle {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .process-step-desc {
    max-width: 280px;
  }

  /* CTA Banner */
  .cta-banner {
    padding: var(--sp-14) var(--sp-6);
  }

  .cta-banner-buttons {
    flex-direction: column;
    gap: var(--sp-3);
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-10);
    text-align: center;
  }

  .footer-brand p {
    margin-inline: auto;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  /* Back to top re-position */
  .back-to-top {
    right: 80px;
    bottom: 24px;
    width: 40px;
    height: 40px;
  }

  .whatsapp-float {
    bottom: 24px;
    right: 24px;
    width: 54px;
    height: 54px;
    font-size: 24px;
  }

  .instagram-float {
    bottom: 88px;
    right: 24px;
    width: 54px;
    height: 54px;
    font-size: 24px;
  }
}

/* ==========================================================
   22. RESPONSIVE — 480px
   ========================================================== */
@media (max-width: 480px) {
  .container {
    padding-inline: var(--sp-4);
  }

  .section-padding {
    padding: var(--sp-14) 0;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: var(--fs-base);
  }

  .hero-badge {
    font-size: 10px;
    padding: var(--sp-1) var(--sp-3);
  }

  .hero-stats {
    padding: var(--sp-5) var(--sp-4);
  }

  .btn {
    padding: 12px 24px;
    font-size: var(--fs-sm);
  }

  .stats-row {
    flex-direction: column;
    gap: var(--sp-6);
    align-items: center;
  }

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

  .stat-number {
    font-size: var(--fs-2xl);
  }

  .process-timeline {
    padding-left: var(--sp-8);
  }

  .cta-banner h2 {
    font-size: var(--fs-xl);
  }

  .nav-menu {
    width: 100%;
  }
}

/* ==========================================================
   23. ABOUT US PAGE STYLES
   ========================================================== */

/* Page Hero */
.page-hero {
  position: relative;
  width: 100%;
  padding: 160px 0 80px;
  background-color: var(--clr-dark);
  text-align: center;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  margin: var(--sp-4) 0;
  line-height: 1.1;
}

.page-hero-subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

/* Our Story Section */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.story-content {
  color: var(--clr-gray);
  line-height: var(--lh-relaxed);
}

.story-content p {
  margin-bottom: var(--sp-4);
}

.story-highlight {
  margin: var(--sp-8) 0;
  padding: var(--sp-6);
  background: rgba(107, 72, 142, 0.05);
  border-left: 4px solid var(--clr-primary-purple);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  position: relative;
}

.story-highlight i {
  color: var(--clr-primary-blue);
  font-size: var(--fs-2xl);
  opacity: 0.2;
  position: absolute;
  top: var(--sp-4);
  right: var(--sp-6);
}

.story-highlight p {
  font-size: var(--fs-lg);
  color: var(--clr-dark);
  font-weight: var(--fw-semibold);
  font-family: var(--ff-heading);
  margin-bottom: 0;
}

/* Story Visual Timeline */
.story-visual {
  background: var(--clr-light-bg);
  padding: var(--sp-10);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
  position: relative;
}

.timeline-connector {
  position: absolute;
  left: 60px;
  top: 60px;
  bottom: 60px;
  width: 2px;
  background: var(--clr-light-gray);
  z-index: 0;
}

.story-visual-card {
  background: var(--clr-white);
  padding: var(--sp-6) var(--sp-6) var(--sp-6) 60px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
  z-index: 1;
}

.story-visual-card::before {
  content: '';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: var(--clr-light-gray);
  border: 4px solid var(--clr-light-bg);
  border-radius: var(--radius-full);
  z-index: 2;
  transition: all var(--transition-smooth);
}

.story-visual-card.active::before {
  background: var(--gradient-brand);
  box-shadow: 0 4px 12px rgba(107, 72, 142, 0.3);
}

.timeline-year {
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--clr-gray);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--sp-1);
}

.story-visual-card.active .timeline-year {
  color: var(--clr-primary-purple);
}

.timeline-title {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-dark);
  margin-bottom: var(--sp-1);
}

.timeline-desc {
  font-size: var(--fs-sm);
  color: var(--clr-gray);
}

/* Impact Stats */
.impact-stats {
  background: var(--gradient-brand-wide);
  padding: var(--sp-16) 0;
  text-align: center;
  position: relative;
}

.impact-stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
  background-size: 60px 60px;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  position: relative;
  z-index: 1;
}

.impact-stats .stat-card {
  padding: var(--sp-8);
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.impact-stats .stat-number {
  display: block;
  font-family: var(--ff-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: var(--fw-extrabold);
  color: var(--clr-white);
  line-height: 1;
  margin-bottom: var(--sp-2);
}

.impact-stats .stat-label {
  font-size: var(--fs-base);
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Core Values Grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-12);
}

.value-card {
  background: var(--clr-white);
  padding: var(--sp-10) var(--sp-8);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  text-align: center;
  transition: all var(--transition-smooth);
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.value-icon {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: rgba(107, 72, 142, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  color: var(--clr-primary-purple);
  font-size: 28px;
  transition: all var(--transition-smooth);
}

.value-card:hover .value-icon {
  background: var(--gradient-brand);
  color: var(--clr-white);
  transform: scale(1.1);
}

.value-card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-dark);
  margin-bottom: var(--sp-3);
}

.value-card p {
  color: var(--clr-gray);
  line-height: var(--lh-relaxed);
}

/* Responsive adjustments for About Page */
@media (max-width: 992px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  .impact-stats .stats-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   24. INDUSTRIES PAGE STYLES
   ========================================================== */

.industries-section {
  background-color: var(--clr-light-bg);
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}

.industry-card {
  background: var(--clr-white);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  display: flex;
  gap: var(--sp-6);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  transition: all var(--transition-smooth);
  border: 1px solid transparent;
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(107, 72, 142, 0.15);
}

.industry-icon-wrapper {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-lg);
  background: rgba(107, 72, 142, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-primary-purple);
  font-size: 28px;
  flex-shrink: 0;
  transition: all var(--transition-smooth);
}

.industry-card:hover .industry-icon-wrapper {
  background: var(--gradient-brand);
  color: var(--clr-white);
  transform: scale(1.05) rotate(5deg);
}

.industry-content h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-dark);
  margin-bottom: var(--sp-3);
}

.industry-content p {
  color: var(--clr-gray);
  line-height: var(--lh-relaxed);
  margin-bottom: var(--sp-4);
}

.industry-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.industry-list li {
  font-size: var(--fs-sm);
  color: var(--clr-dark);
  margin-bottom: var(--sp-2);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.industry-list li i {
  color: var(--clr-primary-blue);
  font-size: 12px;
}

/* Partnership Pillars */
.partner-section {
  position: relative;
  overflow: hidden;
  background-color: var(--clr-dark);
}

.partner-section .section-title {
  color: var(--clr-white);
}

.partner-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  margin-top: var(--sp-12);
}

.partner-feature {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: var(--sp-8);
  text-align: center;
  transition: all var(--transition-smooth);
}

.partner-feature:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: rgba(107, 72, 142, 0.4);
}

.partner-feature i {
  font-size: 32px;
  background: var(--gradient-brand-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: var(--sp-4);
  display: inline-block;
}

.partner-feature h4 {
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
}

.partner-feature p {
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--fs-sm);
  line-height: var(--lh-relaxed);
}

/* Responsive */
@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .partner-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .industry-card {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  .industry-list li {
    justify-content: center;
  }
  .partner-features {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   25. CONTACT PAGE STYLES
   ========================================================== */

.contact-section {
  background-color: var(--clr-light-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: var(--sp-12);
  align-items: flex-start;
}

/* Contact Info Side */
.contact-info-wrapper {
  position: sticky;
  top: 100px;
}

.contact-info-header h2 {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  color: var(--clr-dark);
  margin-bottom: var(--sp-2);
}

.contact-info-header p {
  color: var(--clr-gray);
  margin-bottom: var(--sp-8);
  font-size: var(--fs-lg);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.contact-info-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  background: var(--gradient-brand);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(107, 72, 142, 0.2);
}

.contact-text h4 {
  font-family: var(--ff-heading);
  font-size: var(--fs-lg);
  color: var(--clr-dark);
  margin-bottom: var(--sp-1);
}

.contact-text p, .contact-text a {
  color: var(--clr-gray);
  font-size: var(--fs-base);
  margin-bottom: 0;
  text-decoration: none;
  transition: color var(--transition-base);
}

.contact-text a:hover {
  color: var(--clr-primary-purple);
}

.contact-text .sub-text {
  font-size: var(--fs-sm);
  color: #888;
  margin-top: var(--sp-1);
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
  color: var(--clr-primary-blue) !important;
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm) !important;
}

.contact-link i {
  transition: transform var(--transition-base);
}

.contact-link:hover i {
  transform: translateX(5px);
}

/* Form Side */
.form-card {
  background: var(--clr-white);
  padding: var(--sp-10);
  border-radius: var(--radius-xl);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-card h3 {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  color: var(--clr-dark);
  margin-bottom: var(--sp-1);
}

.form-subtitle {
  color: var(--clr-gray);
  margin-bottom: var(--sp-6);
}

.custom-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.form-group label {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--clr-dark);
}

.custom-form input,
.custom-form textarea,
.custom-form select {
  width: 100%;
  padding: 14px 16px;
  background-color: var(--clr-light-bg);
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: var(--radius-md);
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--clr-dark);
  transition: all var(--transition-smooth);
}

.custom-form input:focus,
.custom-form textarea:focus,
.custom-form select:focus {
  outline: none;
  background-color: var(--clr-white);
  border-color: var(--clr-primary-blue);
  box-shadow: 0 0 0 4px rgba(45, 137, 229, 0.1);
}

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

/* Custom Select Dropdown */
.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}

.select-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--clr-gray);
  pointer-events: none;
}

.form-note {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: rgba(107, 72, 142, 0.05);
  border-radius: var(--radius-md);
  color: var(--clr-dark);
  font-size: var(--fs-sm);
  align-items: flex-start;
}

.form-note i {
  color: var(--clr-primary-purple);
  margin-top: 2px;
}

.form-note p {
  margin: 0;
  line-height: var(--lh-relaxed);
}

.btn-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 16px;
  font-size: var(--fs-lg);
}

/* Form Success State */
.form-success h3 {
  color: var(--clr-dark);
  margin-bottom: var(--sp-2);
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  margin-top: var(--sp-10);
}

.faq-item {
  background: var(--clr-white);
  padding: var(--sp-8);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.faq-item h4 {
  font-family: var(--ff-heading);
  color: var(--clr-dark);
  margin-bottom: var(--sp-3);
  font-size: var(--fs-lg);
}

.faq-item p {
  color: var(--clr-gray);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-info-wrapper {
    position: static;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .form-card {
    padding: var(--sp-6);
  }
}

/* ==========================================================
   26. PRODUCTS & SERVICES PAGE STYLES
   ========================================================== */

/* Sticky Sub-Nav */
.catalog-nav-wrapper {
  background: var(--clr-white);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  position: sticky;
  top: 80px; /* Accounts for main navbar */
  z-index: 90;
  box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

/* Gradient fade to indicate horizontal scrollability */
.catalog-nav-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 40px;
  background: linear-gradient(to left, var(--clr-white), transparent);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition-base);
}

@media (max-width: 768px) {
  .catalog-nav-wrapper::after {
    opacity: 1; /* Only show on mobile where scroll is likely */
  }
}

.catalog-nav {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.catalog-nav::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}

.catalog-nav li {
  flex: 0 0 auto;
}

.catalog-nav a {
  display: block;
  padding: var(--sp-4) var(--sp-6);
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  color: var(--clr-gray);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 2px solid transparent;
  transition: all var(--transition-base);
}

.catalog-nav a:hover,
.catalog-nav a.active {
  color: var(--clr-primary-purple);
  border-bottom-color: var(--clr-primary-purple);
}

/* Catalog Sections */
.catalog-section {
  scroll-margin-top: 130px; /* Accounts for main nav + sub nav */
}

/* CSS Grid Gallery */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}

.product-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  background: var(--clr-white);
  border: 1px solid rgba(0,0,0,0.03);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.product-img-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%; /* 1:1 Aspect Ratio */
  overflow: hidden;
  background: var(--clr-light-bg);
}

.product-img-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

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

.product-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: var(--sp-4) var(--sp-5);
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-base);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-smooth);
}

.product-card:hover .product-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Video Grid for Services */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: var(--sp-8);
  margin-top: var(--sp-8);
}

.video-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-smooth);
}

.video-card:hover {
  border-color: rgba(107, 72, 142, 0.5);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  background: #000;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-caption {
  padding: var(--sp-6);
}

.video-caption h3 {
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-2);
}

.video-caption p {
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--fs-base);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .catalog-nav-wrapper {
    top: 60px; /* Adjusted for mobile header */
  }
  .catalog-section {
    scroll-margin-top: 110px;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
}
/* Trending badge on each card */
.trending-badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--gradient-brand);
  color: var(--clr-white);
  font-family: var(--ff-heading);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 14px rgba(107, 72, 142, 0.35);
}
.trending-badge i { color: #FFD166; }

/* Compact strip on the homepage (fewer, smaller cards than products.html) */
.trending-strip .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}
.product-img-wrapper {
    overflow: hidden !important; /* Hides the purple scrollbars completely */
    position: relative;
    width: 100%;
    height: 100%;
}
/* 1. Make the container act as a closed viewport window */
#trending .container {
    overflow: hidden;
    position: relative;
    width: 100%;
}

/* 2. Transform the product grid into a single horizontal moving track */
#trending .product-grid {
    display: flex !important;       /* Overrides the grid to sit everything horizontally */
    flex-wrap: nowrap !important;   /* Keeps them on a single line */
    gap: 20px;                     /* Space between your product photos */
    width: max-content;            /* Lets the track expand out as wide as your images */
    
    /* This automatically scrolls your pictures horizontally */
    animation: trendScroll 20s linear infinite; 
}

/* 3. Ensure your individual product cards maintain their proper size */
#trending .product-card {
    width: 280px;                  /* Shows roughly 3-4 pictures on desktop screens */
    flex-shrink: 0 !important;     /* Stops the browser from squishing your pictures */
}

/* 4. The smooth horizontal movement animation */
@keyframes trendScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Loops halfway through so it feels infinite */
        transform: translateX(-50%); 
    }
}

/* Optional: Pause the scrolling when a customer hovers over a product */
#trending .product-grid:hover {
    animation-play-state: paused;
}