/* ============================================================
   RANK YOU HIGHER — Premium Landing Page
   Brand: #ff7518 (Orange) | #0889dc (Blue) | #8bba44 (Green)
   Font: Poppins (Google Fonts)
   ============================================================ */

/* ── CSS Custom Properties ─────────────────────────────────── */
:root {
  --orange: #ff7518;
  --blue: #0889dc;
  --green: #8bba44;
  --orange-light: rgba(255, 117, 24, 0.12);
  --blue-light: rgba(8, 137, 220, 0.12);
  --green-light: rgba(139, 186, 68, 0.12);
  --dark: #0d1117;
  --dark-2: #161b22;
  --gray: #6b7280;
  --gray-light: #f3f4f6;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 24px 64px rgba(0,0,0,0.14);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Utility Classes ────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-tag.orange { background: var(--orange-light); color: var(--orange); }
.section-tag.blue   { background: var(--blue-light);   color: var(--blue);   }
.section-tag.green  { background: var(--green-light);  color: var(--green);  }

.section-tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s ease-in-out infinite;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 540px;
  margin-top: 12px;
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, #ff9a50 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(255,117,24,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255,117,24,0.45);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 2px solid rgba(0,0,0,0.12);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-blue {
  background: linear-gradient(135deg, var(--blue) 0%, #38b6ff 100%);
  color: #fff;
  box-shadow: 0 8px 28px rgba(8,137,220,0.35);
}
.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(8,137,220,0.45);
}

.btn-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}
.btn:hover .btn-icon { transform: translateX(4px); }

/* ── Scroll Reveal ──────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }

/* ── ======================================================== ──
   NAVBAR
   ── ======================================================== ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 32px rgba(0,0,0,0.08);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  width: 150px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 12px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--orange); }

/* ── ======================================================== ──
   HERO SECTION
   ── ======================================================== ── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #fafbff;
  padding-top: 90px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

/* Animated gradient orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: float-orb 8s ease-in-out infinite;
}
.orb-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--orange), transparent);
  top: -100px; right: -100px;
  animation-delay: 0s;
}
.orb-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--blue), transparent);
  bottom: -100px; left: -60px;
  animation-delay: -3s;
}
.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--green), transparent);
  top: 50%; left: 40%;
  animation-delay: -6s;
}

/* Floating geometric shapes */
.shape {
  position: absolute;
  border-radius: var(--radius);
  opacity: 0.08;
  animation: float-shape 6s ease-in-out infinite;
}
.shape-1 {
  width: 80px; height: 80px;
  background: var(--orange);
  top: 20%; left: 8%;
  transform: rotate(30deg);
  animation-delay: -1s;
}
.shape-2 {
  width: 50px; height: 50px;
  background: var(--blue);
  top: 60%; left: 5%;
  border-radius: 50%;
  animation-delay: -3s;
}
.shape-3 {
  width: 65px; height: 65px;
  background: var(--green);
  top: 15%; right: 35%;
  transform: rotate(15deg);
  animation-delay: -5s;
}

/* Grid dots pattern */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(0,0,0,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.hero-content {}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,117,24,0.1);
  border: 1px solid rgba(255,117,24,0.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fade-up 0.8s ease forwards;
}

.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-heading {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  animation: fade-up 0.8s ease 0.1s both;
}

.hero-heading .accent-orange { color: var(--orange); }
.hero-heading .accent-blue   { color: var(--blue); }
.hero-heading .accent-green  { color: var(--green); }

.hero-sub {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--gray);
  margin-bottom: 14px;
  animation: fade-up 0.8s ease 0.15s both;
}

.hero-desc {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 480px;
  animation: fade-up 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  animation: fade-up 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 48px;
  animation: fade-up 0.8s ease 0.4s both;
}

.hero-stat-item {}
.hero-stat-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.hero-stat-num span { color: var(--orange); }
.hero-stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 4px;
}

.hero-divider {
  width: 1px;
  background: rgba(0,0,0,0.1);
  align-self: stretch;
}

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fade-up 0.8s ease 0.2s both;
}

.hero-img-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
}

.hero-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 28px;
}

.hero-img-glow {
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--orange), var(--blue), var(--green));
  z-index: -1;
  opacity: 0.5;
  filter: blur(8px);
}

/* Floating card on hero image */
.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  animation: float-card 4s ease-in-out infinite;
}

.hero-card-1 {
  bottom: 30px;
  left: -30px;
  animation-delay: 0s;
}
.hero-card-2 {
  top: 40px;
  right: -20px;
  animation-delay: -2s;
}

.hero-card-label { font-size: 0.72rem; color: var(--gray); font-weight: 500; }
.hero-card-val {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-card-dot { width: 10px; height: 10px; border-radius: 50%; }
.dot-green { background: var(--green); }
.dot-orange { background: var(--orange); }

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  color: var(--gray);
  font-weight: 500;
  letter-spacing: 0.08em;
  animation: fade-up 1s ease 0.6s both;
}

.scroll-mouse {
  width: 24px; height: 38px;
  border: 2px solid rgba(0,0,0,0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}
.scroll-mouse-dot {
  width: 4px; height: 8px;
  background: var(--orange);
  border-radius: 2px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

/* ── ======================================================== ──
   ABOUT SECTION
   ── ======================================================== ── */
#about {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual { position: relative; }

.about-img-main {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
  height: 480px;
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--orange), #ff9a50);
  color: #fff;
  border-radius: var(--radius);
  padding: 20px 24px;
  box-shadow: 0 12px 36px rgba(255,117,24,0.3);
  text-align: center;
}
.about-img-badge .num {
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}
.about-img-badge .label { font-size: 0.78rem; opacity: 0.9; margin-top: 4px; }

.about-img-icon {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--blue), #38b6ff);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(8,137,220,0.3);
  color: #fff;
  font-size: 1.6rem;
}

.about-content {}

.pillars {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.pillar-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--gray-light);
  border-left: 4px solid transparent;
  transition: var(--transition);
}
.pillar-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}
.pillar-item.orange { border-left-color: var(--orange); }
.pillar-item.blue   { border-left-color: var(--blue); }
.pillar-item.green  { border-left-color: var(--green); }

.pillar-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.pillar-icon.orange { background: var(--orange-light); color: var(--orange); }
.pillar-icon.blue   { background: var(--blue-light); color: var(--blue); }
.pillar-icon.green  { background: var(--green-light); color: var(--green); }

.pillar-title { font-size: 0.92rem; font-weight: 700; margin-bottom: 4px; }
.pillar-text  { font-size: 0.82rem; color: var(--gray); }

/* ── ======================================================== ──
   SERVICES SECTION
   ── ======================================================== ── */
#services {
  padding: 100px 0;
  background: linear-gradient(150deg, #f0f7ff 0%, #fff8f3 50%, #f3fbf0 100%);
  position: relative;
  overflow: hidden;
}

.services-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}
.services-header .section-desc { margin: 12px auto 0; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }

.si-orange { background: var(--orange-light); color: var(--orange); }
.si-blue   { background: var(--blue-light);   color: var(--blue); }
.si-green  { background: var(--green-light);  color: var(--green); }

.service-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-text {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.65;
}

.service-arrow {
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition);
}
.service-card:hover .service-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ── ======================================================== ──
   PROCESS SECTION
   ── ======================================================== ── */
#process {
  padding: 100px 0;
  background: var(--white);
}

.process-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 70px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 38px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--green), var(--orange));
  opacity: 0.2;
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  transition: transform 0.3s;
}
.process-step:hover .process-num { transform: scale(1.1); }

.process-num.pn-1 { background: var(--orange-light); color: var(--orange); border: 2px solid var(--orange); }
.process-num.pn-2 { background: var(--blue-light);   color: var(--blue);   border: 2px solid var(--blue); }
.process-num.pn-3 { background: var(--green-light);  color: var(--green);  border: 2px solid var(--green); }
.process-num.pn-4 { background: var(--orange-light); color: var(--orange); border: 2px solid var(--orange); }

.process-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; }
.process-text  { font-size: 0.82rem; color: var(--gray); }

/* ── ======================================================== ──
   STATISTICS SECTION
   ── ======================================================== ── */
#stats {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1a2035 100%);
  position: relative;
  overflow: hidden;
}

.stats-bg-glow {
  position: absolute;
  width: 600px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,117,24,0.15), transparent 70%);
  top: -100px; right: -100px;
}
.stats-bg-glow-2 {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,137,220,0.12), transparent 70%);
  bottom: -100px; left: 10%;
}

.stats-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.stats-header .section-title { color: var(--white); }
.stats-header .section-desc  { color: rgba(255,255,255,0.6); margin: 12px auto 0; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 36px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.stat-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-6px);
  border-color: rgba(255,117,24,0.3);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 12px;
  display: block;
}

.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.stat-num .stat-suffix { color: var(--orange); }

.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 8px;
  font-weight: 500;
}

/* ── ======================================================== ──
   PORTFOLIO SECTION
   ── ======================================================== ── */
#portfolio {
  padding: 100px 0;
  background: linear-gradient(150deg, #f9fafb 0%, #f0f7ff 100%);
}

.portfolio-header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto 60px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.portfolio-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.portfolio-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.portfolio-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.portfolio-card:hover .portfolio-img { transform: scale(1.06); }

.portfolio-img-wrap {
  overflow: hidden;
  position: relative;
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8,137,220,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-overlay-text {
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  transform: translateY(10px);
  transition: transform 0.4s;
}
.portfolio-card:hover .portfolio-overlay-text { transform: translateY(0); }

.portfolio-body { padding: 20px; }
.portfolio-cat {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.portfolio-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.portfolio-desc { font-size: 0.82rem; color: var(--gray); }

/* ── ======================================================== ──
   TESTIMONIALS SECTION
   ── ======================================================== ── */
#testimonials {
  padding: 100px 0;
  background: var(--white);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 60px;
}

.testimonials-track-wrap { overflow: hidden; position: relative; }

.testimonials-track-wrap::before,
.testimonials-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}
.testimonials-track-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}
.testimonials-track-wrap::after {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

/* Hide edge fades on mobile/tablet to maximize reading space */
@media (max-width: 1024px) {
  .testimonials-track-wrap::before,
  .testimonials-track-wrap::after {
    display: none;
  }
}

.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  width: calc((100% - 48px) / 3);
  background: var(--gray-light);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
  flex-shrink: 0;
}
.testimonial-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #f59e0b;
  font-size: 0.9rem;
}

.testimonial-quote {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange-light);
}

.testimonial-avatar-placeholder {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.testimonial-name  { font-size: 0.9rem; font-weight: 700; }
.testimonial-role  { font-size: 0.78rem; color: var(--gray); }

.testimonials-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.t-nav-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.1);
  background: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.t-nav-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: scale(1.08);
}

.t-dots { display: flex; gap: 8px; }
.t-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(0,0,0,0.15);
  transition: all 0.3s;
  cursor: pointer;
}
.t-dot.active {
  width: 24px;
  background: var(--orange);
}

/* ── ======================================================== ──
   WHY CHOOSE US
   ── ======================================================== ── */
#why {
  padding: 100px 0;
  background: linear-gradient(150deg, #fff8f3 0%, #f0f7ff 100%);
  position: relative;
  overflow: hidden;
}

.why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-visual {
  position: relative;
}

.why-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 24px;
}

.why-badge {
  position: absolute;
  top: 24px;
  right: -24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.why-badge-icon {
  width: 44px; height: 44px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--green);
}
.why-badge-label { font-size: 0.72rem; color: var(--gray); }
.why-badge-val   { font-size: 1rem; font-weight: 800; color: var(--dark); }

.why-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.why-point {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.why-point:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.why-point-icon {
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  background: var(--orange-light);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.why-point-text {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.5;
}

/* ── ======================================================== ──
   CONTACT CTA BANNER
   ── ======================================================== ── */
#contact-cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #192035 100%);
  position: relative;
  overflow: hidden;
}

.contact-cta-glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,117,24,0.12), transparent 70%);
  top: -150px; left: 50%;
  transform: translateX(-50%);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.contact-content {}
.contact-content .section-title { color: var(--white); }
.contact-content .section-desc  { color: rgba(255,255,255,0.6); }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
}
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255,117,24,0.15);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.contact-item-val   { font-size: 0.88rem; color: var(--white); font-weight: 500; }

.contact-form {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 36px;
  backdrop-filter: blur(12px);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
}
.form-control {
  padding: 12px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.3s;
}
.form-control::placeholder { color: rgba(255,255,255,0.3); }
.form-control:focus { border-color: var(--orange); }

textarea.form-control { resize: vertical; min-height: 100px; }

/* ── ======================================================== ──
   FOOTER
   ── ======================================================== ── */
#footer {
  background: #080c14;
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

.footer-bg-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--green));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 48px;
  padding-bottom: 60px;
}

.footer-brand {}
.footer-logo { height: 50px; margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  cursor: pointer;
}
.social-btn:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

.footer-col-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--orange); }

.footer-newsletter {}
.footer-newsletter p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 16px;
  line-height: 1.6;
}
.newsletter-form {
  display: flex;
  gap: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.newsletter-input {
  flex: 1;
  padding: 12px 16px;
  background: rgba(255,255,255,0.05);
  border: none;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  outline: none;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.25); }
.newsletter-btn {
  padding: 12px 20px;
  background: var(--orange);
  border: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.newsletter-btn:hover { background: #e86410; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copyright {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.3s;
}
.footer-bottom-links a:hover { color: var(--orange); }

/* ── Section Dividers ───────────────────────────────────────── */
.section-wave {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

/* ── ======================================================== ──
   ANIMATIONS (Keyframes)
   ── ======================================================== ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.05); }
  66%       { transform: translate(-15px, 20px) scale(0.97); }
}

@keyframes float-shape {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(8deg); }
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

@keyframes scroll-wheel {
  0%  { transform: translateY(0); opacity: 1; }
  80% { transform: translateY(10px); opacity: 0; }
  100%{ transform: translateY(0); opacity: 0; }
}

@keyframes count-up {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ── ======================================================== ──
   RESPONSIVE
   ── ======================================================== ── */
@media (max-width: 1024px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .process-grid     { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid   { grid-template-columns: repeat(2, 1fr); }
  .footer-grid      { grid-template-columns: 1fr 1fr; }
  .hero-inner       { gap: 40px; }
  .about-inner      { gap: 48px; }
  .why-inner        { gap: 48px; }
  .contact-inner    { gap: 48px; }
  .testimonial-card { width: calc((100% - 24px) / 2); }
}

@media (max-width: 768px) {
  .nav-links        { display: none; }
  .nav-cta .btn     { display: none; }
  .hamburger        { display: flex; }

  .hero-inner       { grid-template-columns: 1fr; gap: 40px; padding: 40px 0 60px; }
  .hero-visual      { order: -1; }
  .hero-img-wrap img{ height: 320px; }
  .hero-card-1      { left: 10px; }
  .hero-card-2      { right: 10px; }
  .hero-stats       { gap: 16px; }

  .about-inner      { grid-template-columns: 1fr; }
  .about-img-main   { height: 300px; }
  .about-img-badge  { right: 0; bottom: 0; }

  .services-grid    { grid-template-columns: 1fr; }
  .process-grid     { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }

  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid   { grid-template-columns: 1fr; }
  .testimonial-card { width: 100%; min-width: unset; }

  .why-inner        { grid-template-columns: 1fr; }
  .why-img          { height: 280px; }
  .why-badge        { right: 0; }

  .contact-inner    { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom    { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 425px) {
  .container          { padding: 0 16px; }
  .hero-heading       { font-size: 2rem; }
  .hero-actions       { flex-direction: column; align-items: stretch; }
  .hero-stats         { flex-direction: column; gap: 12px; }
  .hero-divider       { display: none; }
  .stats-grid         { grid-template-columns: 1fr 1fr; gap: 16px; }
  .process-grid       { grid-template-columns: 1fr; }
}
