:root {
  /* Modern Brand Colors - Dark Theme */
  --primary-green: #10B981;
  --secondary-green: #059669;
  --accent-yellow: #FCD34D;
  --dark: #0a0e1a;
  --dark-secondary: #1a1f2e;
  --dark-tertiary: #242938;
  --white: #ffffff;
  --grey-light: #1a1f2e;
  --grey-medium: #2a2f3e;
  --text-primary: #e8eaed;
  --text-secondary: #b8bcc4;
  --text-medium: #d1d5db;
  --text-light: #9CA3AF;
}

/* Base */
* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

.scroll-trigger {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-trigger--offscreen {
  opacity: 0;
  transform: translateY(40px);
  /* થોડું નીચે થી slide */
}

html,
body {
  height: 100%;
  margin: 0
}

body {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  color: var(--text-primary);
  background-color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography */
.h2 {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: var(--text-primary);
  line-height: 1.2;
}

.muted {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.0);
  padding: 8px 20px;
  transition: all .3s ease;
}

.site-header.scrolled {
  background: rgba(10, 14, 26, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  padding: 6px 20px;
  border-bottom: 1px solid rgba(42, 47, 62, 0.5);
}

.site-header.scrolled .nav-item {
  color: var(--text-primary);
}

.site-header.scrolled .nav-item.active {
  color: var(--primary-green);
}


/* nav wrapper */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  gap: 32px;
}

/* desktop nav */
.nav-main {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-left: auto;
}

/* nav links (desktop) */
.nav-item {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.nav-item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-item.active {
  color: var(--primary-green);
  background: rgba(34, 197, 94, 0.1);
}

.site-header.scrolled .nav-item:hover {
  background: rgba(34, 197, 94, 0.1);
}

.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.logo:hover {
  opacity: 0.9;
}

.logo-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
  border-radius: 12px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

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

.logo-tagline {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  line-height: 1.3;
  max-width: 180px;
  transition: color 0.2s ease;
}

.site-header.scrolled .logo-tagline {
  color: var(--text-primary);
}

/* Navigation CTA Button */
.btn-nav {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  margin-left: 12px;
  border-radius: 10px;
  background: var(--primary-green);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
}

.btn-nav:hover {
  background: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3), 0 0 0 2px var(--accent-yellow);
}

.site-header.scrolled .btn-nav {
  padding: 8px 18px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  margin-left: 8px;
}

.hamburger {
  display: inline-block;
  width: 28px;
  height: 20px;
  position: relative;
}

.hamburger span {
  display: block;
  height: 3px;
  background: #fff;
  border-radius: 3px;
  position: absolute;
  left: 0;
  right: 0;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

/* mobile nav panel (hidden on desktop) */
.mobile-nav {
  display: none;
  position: fixed;
  top: 80px;
  left: 16px;
  right: 16px;
  background: rgba(26, 31, 46, 0.98);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  padding: 16px;
  z-index: 110;
  transform-origin: top center;
  opacity: 0;
  pointer-events: none;
  transform: scale(.95) translateY(-10px);
  transition: all .25s ease;
  border: 1px solid var(--grey-medium);
}

.mobile-nav.open {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1) translateY(0);
}

.mobile-link {
  display: block;
  padding: 14px 16px;
  color: var(--text-primary);
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-link:hover {
  background: var(--grey-medium);
  color: var(--primary-green);
}

.mobile-link+.mobile-link {
  margin-top: 4px;
}

.mobile-link-cta {
  background: var(--primary-green);
  color: var(--white) !important;
  text-align: center;
  margin-top: 12px;
  font-weight: 700;
}

.mobile-link-cta:hover {
  background: var(--secondary-green) !important;
  color: var(--white) !important;
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  padding-top: 100px;
  color: var(--white);
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  z-index: 1;
}

.main-hero{
  display: flex;
  min-height: 80vh;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 50%;
  padding: 32px 0;
}

.hero-content h6 {
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  color: var(--accent-yellow);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 12px;
  margin-top: 0;
}

.hero-content h1 {
  font-family: 'Barlow', sans-serif;
  font-weight: 800;
  font-size: 52px;
  margin: 0 0 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 28px;
  max-width: 60ch;
  line-height: 1.6;
}

/* CTAs */
.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 10px;
  font-family: 'Barlow', sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all .2s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--primary-green);
  color: var(--white);
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  background: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4), 0 0 0 2px var(--accent-yellow);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}


@media (max-width: 1024px) {
  .nav-item {
    font-size: 14px;
    padding: 8px 10px;
  }

  .btn-nav {
    padding: 8px 16px;
    font-size: 13px;
  }

  .logo-tagline {
    font-size: 13px;
    max-width: 160px;
  }
}

@media (max-width: 900px) {
  .logo-img {
    width: 80px;
    height: 80px;
  }

  .logo-tagline {
    font-size: 12px;
    max-width: 140px;
  }

  .hero-content h1 {
    font-size: 36px;
  }
  .hero-content{
    width: 85%;
  }
  .hero {
    min-height: 70vh;
    padding-top: 120px;
  }
}

@media (max-width: 768px) {
   .hero-content{
    width: 100%;
  }
  .nav-main {
    display: none;
  }

  .menu-toggle {
    display: block;
    color: #fff;
    border: 0;
    background: transparent;
  }

  .site-header.scrolled .hamburger span {
    background: var(--white);
  }

  .logo {
    gap: 10px;
  }

  .logo-img {
    width: 70px;
    height: 70px;
  }

  .logo-tagline {
    font-size: 11px;
    max-width: 120px;
  }

  .mobile-nav {
    left: 12px;
    right: 12px;
    top: 70px;
  }

  .hero {
    min-height: 50vh;
    padding-top: 100px;
    background-position: center 20%;
    height: 100%;
  }

  .hero-content {
    padding: 20px 0;
    text-align: start;
  }

  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .btn {
    padding: 10px 14px;
    font-size: 14px;
  }

  .btn-primary {
    padding: 11px 16px;
  }

  .btn-secondary {
    padding: 11px 16px;
  }

  .site-header {
    padding: 8px 12px;
  }

  .mobile-nav {
    padding: 10px;
    border-radius: 8px;
  }

  .mobile-link {
    padding: 10px;
    background: transparent;
    border-radius: 6px;
  }
}

@media (max-width:420px) {
  .logo {
    gap: 8px;
  }

  .logo-img {
    width: 65px;
    height: 65px;
  }

  .logo-tagline {
    font-size: 10px;
    max-width: 100px;
  }

  .hero-content h1 {
    font-size: 22px;
  }

  .hero {
    min-height: 45vh;
    padding-top: 100px;
  }
}

/* ----------END  HERO SECTION ---------- */

/* ---------- WHO WE ARE  SECTION ---------- */
.who-section {
  background: var(--dark-secondary);
  padding: 80px 0;
  border-radius: 0;
}

.who-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin: 0 auto;
  max-width: 1300px;
}

.who-left {
  width: 100%;
  display: block;
}

.who-img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  display: block;
}

.who-right {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.who-eyebrow {
  font-family: "Barlow", sans-serif;
  color: var(--primary-green);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  position: relative;
  padding-left: 16px;
}

.who-eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 16px;
  background: var(--accent-yellow);
  border-radius: 2px;
}

.who-heading {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 36px;
  margin: 0 0 16px 0;
  color: var(--text-primary);
  line-height: 1.15;
}

.who-intro {
  font-family: "Outfit", sans-serif;
  color: var(--text-secondary);
  margin: 0 0 32px 0;
  font-size: 18px;
  line-height: 1.6;
  max-width: 60ch;
  font-weight: 500;
}

.who-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(60%) sepia(94%) saturate(463%) hue-rotate(94deg) brightness(93%) contrast(88%);
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--text-primary);
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.benefit-text {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.6;
}

.who-cta-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn-primary-large {
  background: var(--primary-green);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 12px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.3);
}

.btn-primary-large:hover {
  background: var(--secondary-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.4), 0 0 0 2px var(--accent-yellow);
}

.btn-call {
  background: var(--grey-medium);
  color: var(--white);
  padding: 16px 28px;
  border-radius: 12px;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.btn-call:hover {
  background: var(--dark-tertiary);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.5);
}

.who-bullets {
  list-style: none;
  margin: 0 0 18px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.who-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text-secondary);
  font-family: "Outfit", sans-serif;
  font-size: 15px;
}

.tick {
  display: inline-grid;
  place-items: center;
  min-width: 28px;
  height: 28px;
  background: var(--primary-green);
  color: #fff;
  font-weight: 800;
  border-radius: 8px;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  line-height: 1;
  flex-shrink: 0;
}

.who-guarantee-row {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 12px;
}

.guarantee {
  display: flex;
  gap: 12px;
  align-items: center;
  background: var(--grey-medium);
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid var(--dark-tertiary);
  box-shadow: none;
}

.guar-icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--primary-green);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  flex-shrink: 0;
}

.guar-copy strong {
  display: block;
  font-family: "Barlow", sans-serif;
  font-size: 14px;
  color: var(--text-primary);
}

.guar-copy .muted {
  color: var(--text-secondary);
  font-size: 13px;
  margin-top: 4px;
}

.btn-outline {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  border: 2px solid var(--primary-green);
  background: transparent;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  color: var(--primary-green);
  text-decoration: none;
  transition: all .2s ease;
  width: max-content;
}

.btn-outline:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

@media (max-width: 1100px) {
  .who-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .who-img {
    max-height: 480px;
  }

  .who-heading {
    font-size: 30px;
  }

  .benefit-title {
    font-size: 17px;
  }

  .benefit-text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .who-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 12px;
  }

  .who-left {
    order: 0;
  }

  .who-right {
    order: 1;
  }

  .who-img {
    max-height: 420px;
    border-radius: 12px;
  }

  .who-heading {
    font-size: 28px;
  }

  .who-intro {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .who-eyebrow {
    margin-bottom: 10px;
    letter-spacing: 2.5px;
  }

  .who-benefits {
    gap: 16px;
    margin-bottom: 24px;
  }

  .benefit-icon {
    width: 36px;
    height: 36px;
  }

  .benefit-title {
    font-size: 16px;
  }

  .benefit-text {
    font-size: 14px;
  }

  .who-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn-primary-large,
  .btn-call {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }

  .who-guarantee-row {
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .who-section {
    padding: 48px 12px;
  }

  .who-img {
    max-height: 300px;
    border-radius: 12px;
  }

  .who-heading {
    font-size: 24px;
  }

  .who-intro {
    font-size: 15px;
  }

  .benefit-item {
    gap: 12px;
  }

  .benefit-icon {
    width: 32px;
    height: 32px;
  }

  .benefit-title {
    font-size: 15px;
  }

  .benefit-text {
    font-size: 13px;
  }

  .btn-primary-large {
    font-size: 16px;
  }

  .btn-call {
    font-size: 15px;
  }

  .tick {
    min-width: 24px;
    height: 24px;
    font-size: 12px;
    border-radius: 6px;
  }

  .guar-icon {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .who-guarantee-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* ----------END WHO WE ARE  SECTION ---------- */

/* ---------- SERVICES SECTION ---------- */
.services-section {
  padding: 80px 0;
  background: var(--dark);
}

/* Section Header */
.services-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 64px;
}

.services-main-heading {
  font-family: "Barlow", sans-serif;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0 0 24px 0;
}

.heading-accent {
  color: var(--primary-green);
}

.services-subheading {
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* Hero Service Card */
.hero-service-card {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 64px;
  background: var(--dark-secondary);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  border: 3px solid var(--accent-yellow);
  margin-bottom: 48px;
  min-height: 400px;
  align-items: center;
}

.hero-card-image {
  background: var(--grey-medium);
  border-radius: 12px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
}

.image-placeholder-text {
  font-size: 48px;
  font-weight: 600;
  color: var(--text-light);
}

.hero-service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-card-content {
  display: flex;
  flex-direction: column;
}

.hero-eyebrow {
  font-family: "Barlow", sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary-green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-heading {
  font-family: "Barlow", sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0 0 16px 0;
}

.hero-description {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 24px 0;
}

.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
}

.hero-benefits li {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  padding-left: 32px;
  position: relative;
  margin-bottom: 8px;
}

.hero-benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-yellow);
  font-weight: 700;
  font-size: 20px;
}

.btn-hero-cta {
  background: var(--primary-green);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(16, 185, 129, 0.2);
}

.btn-hero-cta:hover {
  background: var(--secondary-green);
  box-shadow: 0 0 0 3px var(--accent-yellow);
  transform: translateY(-2px);
}

/* Secondary Service Cards */
.secondary-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.secondary-card {
  background: var(--dark-secondary);
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.secondary-card:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
  transform: translateY(-4px);
  border-color: var(--accent-yellow);
}

.secondary-card-image {
  background: var(--grey-medium);
  border-radius: 8px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  overflow: hidden;
}

.secondary-card-image .image-placeholder-text {
  font-size: 28px;
}

.secondary-card-image .service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.secondary-heading {
  font-family: "Barlow", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 12px 0;
}

.secondary-description {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0 0 20px 0;
}

.secondary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex-grow: 1;
}

.secondary-list li {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.8;
  padding-left: 24px;
  position: relative;
  margin-bottom: 8px;
}

.secondary-list li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--primary-green);
  font-weight: 700;
}

.secondary-cta {
  font-family: "Barlow", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-green);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin-top: auto;
}

.secondary-cta:hover {
  color: var(--secondary-green);
  text-decoration: underline;
  text-decoration-color: var(--accent-yellow);
  text-decoration-thickness: 2px;
}

/* Responsive - Tablet */
@media (max-width: 1023px) {
  .services-main-heading {
    font-size: 42px;
  }

  .services-subheading {
    font-size: 18px;
  }

  .hero-service-card {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 32px;
  }

  .hero-card-image {
    height: 300px;
  }

  .secondary-services {
    gap: 20px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }

  .services-header {
    margin-bottom: 48px;
  }

  .services-main-heading {
    font-size: 32px;
  }

  .services-subheading {
    font-size: 16px;
  }

  .hero-service-card {
    padding: 24px;
    margin-bottom: 32px;
    gap: 24px;
  }

  .hero-card-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    aspect-ratio: unset;
  }

  .hero-service-image {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero-heading {
    font-size: 28px;
  }

  .hero-description {
    font-size: 16px;
  }

  .secondary-services {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .secondary-card {
    padding: 24px;
  }
}

/* ----------END  SERVICES SECTION ---------- */



/* ----------AFTER -BEFOR  SECTION ---------- */

.custom-section {
  background: var(--dark-secondary);
  padding: 80px 0;
}

.custom-container {
  max-width: 1400px;
  margin: 0 auto;
}

.custom-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 48px;
  margin-top: 0;
  font-family: "Barlow", sans-serif;
}

.custom-slick-carousel {
  margin: 0 12px;
}
.juxtapose {
  max-width: 1400px;
  width: 100%;
  min-height: 500px;
  margin: 0 auto;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  background: var(--grey-light);
  border: 1px solid var(--grey-medium);
}

/* Juxtapose style override for same look */
/* .juxtapose {
  max-width: 730px;
  min-height: 375px;
  margin: 0 auto;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  background: #fff;
} */

.juxtapose .jx-handle {
  color: #fff !important;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 2px;
}

.juxtapose .jx-label,
.juxtapose .jx-credit {
  display: none;
}

.slick-dots {
  bottom: -35px;
}

/* .slick-arrow {
  background: #fff;
  border-radius: 50%;
  border: 1px solid #e5e5e5;
  width: 38px;
  height: 38px;
  z-index: 50;
  opacity: 0.6;
  transition: all 0.2s;
} */
.custom-section .slick-prev:before, .custom-section .slick-next:before{
 color: var(--text-primary);
 font-size: 32px;
}

.custom-section .slick-arrow {
  width: 50px;
  height: 50px;
  z-index: 100;
  background: var(--grey-medium);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.custom-section .slick-arrow:hover {
  background: var(--primary-green);
  box-shadow: 0 6px 24px rgba(34, 197, 94, 0.4);
  transform: scale(1.1);
}

.custom-section .slick-arrow:hover:before {
  color: var(--white);
}

.slick-arrow:hover {
  opacity: 1;
}

.slick-prev {
  left: -36px;
}

.slick-next {
  right: -36px;
}
.custom-section .slick-dots li{
  margin: 0;
}
div.jx-controller{
    height: 48px;
    width: 48px;
    margin-left: -24px;
    background-color: var(--primary-green);
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.4);
}
div.jx-controller::before {
  content: "↔";
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-44%, -55%);
}
div.jx-arrow.jx-left{
  display: none;
}
div.jx-arrow.jx-right {
  display: none;
}
@media (max-width: 800px) {
  .juxtapose {
    min-height: 220px;
  }

  .custom-container {
    padding: 0 5px;
  }

  .custom-title {
    font-size: 28px;
  }

  .custom-section .slick-arrow {
    width: 40px;
    height: 40px;
  }

  .custom-section .slick-prev:before, .custom-section .slick-next:before {
    font-size: 24px;
  }

  .custom-section .slick-prev {
    left: -8px;
  }

  .custom-section .slick-next {
    right: -8px;
  }
}


/* ----------END AFTER -BEFOR  SECTIONSECTION ---------- */


/* ----------REVIEW SECTION ---------- */

.reviews-section {
  padding: 80px 0;
  background: var(--dark);
}

.reviews-slick {
  margin-top: 10px;
}

.reviews-slick .slick-slide {
  margin: 0 12px;
}

.reviews-slick .slick-list {
  margin: 0 -12px;
}

.rev-card {
  background: var(--dark-secondary);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--grey-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.rev-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.7);
}

.rev-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.rev-stars {
  color: var(--accent-yellow);
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 16px;
}

.rev-gbadge {
  font-weight: 700;
  color: #ea4335;
}

.rev-text {
  font-family: "Outfit", sans-serif;
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.rev-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.rev-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grey-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--primary-green);
  font-family: "Barlow", sans-serif;
  border: 2px solid var(--dark-tertiary);
}

.rev-name {
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  font-size: 13px;
  color: var(--text-primary);
}

.rev-date {
  font-size: 12px;
  color: var(--muted);
}


.reviews-section .slick-arrow {
  background: var(--grey-medium);
  border-radius: 25px;
  color: var(--text-primary);
  height: 44px;
  width: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.reviews-section .slick-prev,
.reviews-section .slick-next {
  width: 30px !important;
  height: 30px !important;
}

.reviews-section .slick-arrow:before {
  display: none;
}

.reviews-section .slick-dots {
  display: none !important;
}

@media (max-width: 700px) {

  .reviews-section .reviews-slick .slick-slide {
    margin: 0 8px;
  }

  .reviews-section .reviews-slick .slick-list {
    margin: 0 -8px;
  }

  .reviews-section .slick-next {
    right: -13px !important;
  }

  .reviews-section .slick-prev {
    left: -13px !important;
  }
  .reviews-section{
    padding: 28px 12px;
  }
}


/* ----------END  REVIEW SECTION ---------- */

/* ---------- LOCATION SECTION ---------- */
.location-section {
  padding: 80px 0;
  background: var(--dark-secondary);
}

.location-content {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 48px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left Column */
.location-text {
  padding-right: 0;
}

.location-heading {
  font-family: "Barlow", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0 0 20px 0;
}

.location-description {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 40px 0;
}

.location-info-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.info-icon {
  font-size: 24px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(60%) sepia(94%) saturate(463%) hue-rotate(94deg) brightness(93%) contrast(88%);
}

.info-text {
  font-family: "Outfit", sans-serif;
  font-size: 18px;
  color: var(--text-medium);
}

.info-label {
  font-weight: 400;
}

.info-text strong {
  font-weight: 700;
}

/* Suburbs Section */
.suburbs-section {
  margin-top: 32px;
}

.suburbs-heading {
  font-family: "Barlow", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 0 16px 0;
}

.suburbs-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.pill {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 20px;
  background: var(--grey-medium);
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-medium);
  white-space: nowrap;
  transition: background 0.2s ease;
  cursor: default;
}

.pill:hover {
  background: var(--dark-tertiary);
}

.pill-highlight {
  background: rgba(16, 185, 129, 0.2);
  color: var(--primary-green);
  font-weight: 600;
}

.pill-highlight:hover {
  background: rgba(16, 185, 129, 0.3);
}

/* Right Column - Map */
.location-map {
  width: 100%;
  height: 500px;
}

.map-wrapper {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* Responsive - Tablet */
@media (max-width: 1023px) {
  .location-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location-heading {
    font-size: 36px;
  }

  .location-description {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .location-map {
    height: 400px;
  }

  .pill {
    font-size: 14px;
    padding: 7px 14px;
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .location-section {
    padding: 60px 0;
  }

  .location-heading {
    font-size: 32px;
  }

  .location-description {
    font-size: 16px;
  }

  .info-text {
    font-size: 16px;
  }

  .location-map {
    height: 300px;
  }

  .pill {
    font-size: 14px;
    padding: 7px 14px;
  }
}

/* ----------END  LOCATION SECTION ---------- */

/* ---------- FAQ SECTION ---------- */
.faq-section {
  padding: 80px 0;
  background: var(--dark);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--dark-secondary);
  border-radius: 12px;
  border: 1px solid var(--grey-medium);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: "Barlow", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text-primary);
  transition: all 0.3s ease;
  gap: 20px;
}

.faq-question:hover {
  color: var(--primary-green);
}

.faq-icon {
  font-size: 24px;
  color: var(--primary-green);
  font-weight: 300;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-question:hover .faq-icon {
  color: var(--accent-yellow);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px 24px;
}

.faq-answer p {
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-question {
    padding: 16px 20px;
    font-size: 16px;
  }

  .faq-item.active .faq-answer {
    padding: 0 20px 16px 20px;
  }

  .faq-answer p {
    font-size: 14px;
  }

  .faq-icon {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .faq-question {
    padding: 14px 16px;
    font-size: 15px;
  }

  .faq-item.active .faq-answer {
    padding: 0 16px 14px 16px;
  }
}

/* ----------END  FAQ SECTION ---------- */

/* ---------- TELL US WHAT YOU NEED SECTION ---------- */
.contact-section {
  padding: 80px 0;
  background: var(--dark-secondary);
}

.contact-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: stretch;
  padding: 0 0;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-left {
  flex: 1;
  max-width: 520px;
}

.contact-right {
  flex: 1;
  max-width: 550px;
  display: flex;
  align-items: center;
}

.contact-left .h2 {
  margin-bottom: 10px;
}

.contact-left .muted {
  color: var(--text-secondary);
}

.contact-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 14px;
}

.meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-family: "Outfit", sans-serif;
}

.meta-icon {
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.meta-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(60%) sepia(94%) saturate(463%) hue-rotate(94deg) brightness(93%) contrast(88%);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
  align-items: end;
}

.contact-form .input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 10px;
  border: 2px solid var(--grey-medium);
  background: var(--dark);
  color: var(--text-primary);
  font-family: "Outfit", sans-serif;
  font-size: 15px;
  transition: all 0.2s ease;
}

.contact-form .input::placeholder {
  color: var(--text-light);
}

.contact-form .input:focus {
  outline: none;
  border-color: var(--primary-green);
  background: var(--dark-tertiary);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2), 0 0 0 1px var(--accent-yellow);
}

.contact-submit {
  background: var(--primary-green);
  color: var(--white);
  border: 0;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-family: "Barlow", sans-serif;
  margin-top: 6px;
  width: fit-content;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-submit:hover {
  transform: translateY(-2px);
  background: var(--secondary-green);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.contact-image-wrap {
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--grey-medium);
  aspect-ratio: 4/5;
}

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

.contact-meta a {
  color: var(--primary-green);
  text-decoration: none;

}

@media (max-width:1100px) {
  .contact-inner {
    grid-template-columns: 1fr 420px;
    gap: 28px;
  }

  .contact-image-wrap {
    max-width: 420px;
    border-radius: 0 40px 10px 10px;
  }
}

@media (max-width:768px) {
  .contact-inner {
    display: block;
  }
  .contact-section{
   padding: 28px 12px;
  }
  .contact-left {
    width: 100%;
    padding: 0 10px;
    padding-bottom: 25px;
  }

  .contact-right {
    width: 100%;
    padding: 0 10px;
  }

  .contact-image-wrap {
    width: 100%;
    max-width: 680px;
    border-radius: 12px;
  }

  .contact-form .input {
    font-size: 15px;
    padding: 14px;
  }

  .contact-submit {
    width: 100%;
    text-align: center;
    border-radius: 8px;
  }
}

@media (max-width:420px) {
  .contact-form .input {
    padding: 12px;
    font-size: 14px;
  }

  .contact-image-wrap {
    border-radius: 10px;
  }
}

/* Form success state */
.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  border-radius: 16px;
  background: var(--dark);
  border: 2px solid var(--primary-green);
  max-width: 520px;
  animation: fadeInUp 0.5s ease;
}

.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-green);
  color: var(--white);
  font-size: 32px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(34, 197, 94, 0.4);
}

.form-success-heading {
  font-family: "Barlow", sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 12px;
}

.form-success-text {
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 40ch;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ----------END  TELL US WHAT YOU NEED SECTION  ---------- */

/* ----------FOOTER styles ---------- */

.site-footer {
  background: var(--dark);
  color: #e2e8f0;
  padding: 60px 0 24px;
  font-family: "Outfit", sans-serif;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 300px 260px;
  gap: 28px;
  align-items: start;
  padding-bottom: 14px;
}

.review-data {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 15px;
}

.footer-col {
  color: #dfe3e4;
}


.footer-logo-row {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
}

.footer-logo {
  width: 112px;
  height: auto;
  object-fit: contain;
}

.footer-company {
  font-family: "Barlow", sans-serif;
  font-weight: 800;
  font-size: 15px;
  color: #fff;
}

.footer-subtitle .footer-link {
  color: var(--primary-green);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}


.footer-desc {
  color: #c9cecf;
  font-size: 13px;
  line-height: 1.6;
  margin: 8px 0 12px 0;
  max-width: 48ch;
}

.footer-abn {
  color: #9aa0a1;
  font-size: 13px;
  margin-top: 6px;
}


.footer-head {
  font-family: "Barlow", sans-serif;
  color: var(--primary-green);
  font-weight: 800;
  font-size: 14px;
  margin: 0 0 10px 0;
  position: relative;
  padding-bottom: 8px;
}

.footer-head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-yellow);
}


.social-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #dbe3e5;
  font-size: 14px;
  text-decoration: none;
}

.social-link svg {
  opacity: 0.9;
  transform: translateY(1px);
}


.footer-divider {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin: 18px 0 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom .copyright {
  font-size: 13px;
  color: #9ea5a6;
}

.footer-credit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #9ea5a6;
}

.scale-labs-link {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
  position: relative;
}

.scale-labs-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-yellow);
  transition: width 0.2s ease;
}

.scale-labs-link:hover {
  color: var(--accent-yellow);
}

.scale-labs-link:hover::after {
  width: 100%;
}


.social-link:hover,
.footer-subtitle .footer-link:hover {
  opacity: 0.95;
  text-decoration: underline;
}


@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-logo {
    width: 96px;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom {
    padding-bottom: 18px;
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .site-footer {
    padding: 28px 0 18px;
  }
}