/* ============================================
   BHARAT ADWORKS - Premium Agency CSS
   Color Palette: #111111, #1A1A1A, #FF6B00, #F5F5F5
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Open+Sans:wght@300;400;500;600;700&display=swap");

/* ---- CSS Variables ---- */
:root {
  --primary-dark: #111111;
  --secondary-dark: #1a1a1a;
  --card-dark: #202020;
  --card-darker: #181818;
  --orange: #ff6b00;
  --orange-light: #ff8c35;
  --orange-dark: #e55a00;
  --orange-glow: rgba(255, 107, 0, 0.3);
  --white: #f5f5f5;
  --white-pure: #ffffff;
  --grey: #888888;
  --grey-light: #cccccc;
  --border: rgba(255, 107, 0, 0.2);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --font-heading: "Poppins", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --transition: all 0.3s ease;
  --shadow-orange: 0 10px 40px rgba(255, 107, 0, 0.25);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.5);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;   /* prevents AOS side-slide from causing horizontal scroll */
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-dark);
  color: var(--white);
  overflow-x: hidden;
  max-width: 100%;
  line-height: 1.7;
}

/* Every section clips its own overflow so no child can push the page wide */
section {
  overflow-x: clip;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--primary-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 10px;
}

/* ---- Selection ---- */
::selection {
  background: var(--orange);
  color: #fff;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  background: #ffffff;
  padding: 5px 0;
  transition: all 0.4s ease;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.navbar.scrolled {
  background: #ffffff;
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
  border-bottom: 2px solid rgba(255, 107, 0, 0.25);
}

.navbar-brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  letter-spacing: -0.5px;
}

.navbar-brand .brand-text {
  color: var(--white);
}
.navbar-brand .brand-accent {
  color: var(--orange);
}

.navbar-nav .nav-link {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: #333333 !important;
  padding: 8px 16px !important;
  letter-spacing: 0.3px;
  position: relative;
  transition: var(--transition);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange) !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 32px);
}

.navbar-toggler {
  border: 1.5px solid rgba(255, 107, 0, 0.5);
  padding: 6px 10px;
  background: rgba(255, 107, 0, 0.05);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.15);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 107, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.nav-cta-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(255, 107, 0, 0.35);
  margin-left: 8px;
}

.nav-cta-btn:hover {
  background: linear-gradient(135deg, var(--orange-light), var(--orange));
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.5);
  color: #fff !important;
}

.nav-cta-btn::after {
  display: none !important;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-orange {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.4);
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn-orange::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transition: left 0.5s ease;
}

.btn-orange:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 0, 0.55);
  color: #fff;
}

.btn-orange:hover::before {
  left: 100%;
}

.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 32px;
  border-radius: 50px;
  border: 2px solid var(--orange);
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-outline-orange:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 0, 0.4);
}

.btn-white {
  background: #fff;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.35s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 255, 255, 0.25);
  color: var(--orange);
}

/* ============================================
   SECTION STYLING
   ============================================ */
.section-pad {
  padding: 100px 0;
}
.section-pad-sm {
  padding: 70px 0;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.3);
  color: var(--orange);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 18px;
}

.section-tag i {
  font-size: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 600px;
  line-height: 1.8;
}

.divider-orange {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), transparent);
  border-radius: 4px;
  margin: 20px 0 30px;
}

.divider-orange.center {
  margin: 20px auto 30px;
}

/* ---- Backgrounds ---- */
.bg-dark-1 {
  background-color: var(--primary-dark);
}
.bg-dark-2 {
  background-color: var(--secondary-dark);
}
.bg-dark-3 {
  background-color: #141414;
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #141414 0%, #1e1e1e 50%, #111111 100%);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;

  /* === Rich CSS background (active when hero-bg.jpg is absent) === */
  background-color: #0a0a0a;
  background-image:
    /* Dot-grid pattern */
    radial-gradient(circle, rgba(255, 107, 0, 0.18) 1px, transparent 1px),
    /* Top-right orange glow */
    radial-gradient(
        ellipse 60% 55% at 85% 10%,
        rgba(255, 107, 0, 0.13) 0%,
        transparent 70%
      ),
    /* Bottom-left subtle glow */
    radial-gradient(
        ellipse 50% 40% at 10% 90%,
        rgba(255, 107, 0, 0.07) 0%,
        transparent 70%
      ),
    /* Centre vignette gradient */
    linear-gradient(160deg, #0f0f0f 0%, #141414 40%, #0c0c0c 100%);
  background-size:
    28px 28px,
    100% 100%,
    100% 100%,
    100% 100%;
  background-position:
    0 0,
    0 0,
    0 0,
    0 0;

  /* === When hero-bg.jpg is placed in images/ it takes over automatically === */
  /* Drop your image as images/hero-bg.jpg — the overlay below keeps text readable */
}

/* If hero-bg.jpg exists, it sits behind the dot pattern */
.hero-section.has-image {
  background-image:
    radial-gradient(circle, rgba(255, 107, 0, 0.12) 1px, transparent 1px),
    url("../images/hero-bg.jpg");
  background-size:
    28px 28px,
    cover;
  background-position:
    0 0,
    center top;
  background-repeat: repeat, no-repeat;
}

/* Dark overlay — keeps content readable over any image */
.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    rgba(5, 5, 5, 0.97) 0%,
    rgba(8, 8, 8, 0.88) 45%,
    rgba(12, 12, 12, 0.75) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Right-side orange glow accent */
.hero-section::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 680px;
  height: 680px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.14) 0%,
    rgba(255, 107, 0, 0.05) 40%,
    transparent 70%
  );
  pointer-events: none;
  z-index: 1;
}

/* Animated diagonal stripe overlay (subtle depth) */
.hero-section .hero-stripes {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 60px,
    rgba(255, 107, 0, 0.018) 60px,
    rgba(255, 107, 0, 0.018) 61px
  );
  pointer-events: none;
  z-index: 1;
}

/* Bottom fade into next section */
.hero-section .hero-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(10, 10, 10, 0.6));
  pointer-events: none;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.35);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 7px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: pulseBorder 2s infinite;
}

@keyframes pulseBorder {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
  }
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--white);
}

.hero-title .orange-text {
  background: linear-gradient(135deg, var(--orange) 0%, #ffb347 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}

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

.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.hero-stat .stat-label {
  font-size: 0.8rem;
  color: var(--grey);
  font-weight: 500;
  margin-top: 4px;
}

/* Hero Visual */
.hero-visual {
  position: relative;
  height: 520px;
  overflow: visible; /* cards intentionally hang outside — hero-section clips them */
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  width: 340px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  position: relative;
  z-index: 2;
  animation: float 4s ease-in-out infinite;
}

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

.hero-metric-card {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  position: absolute;
  box-shadow: var(--shadow-orange);
  animation: float 4s ease-in-out infinite;
}

.hero-metric-card.top-left {
  top: 40px;
  left: -60px;
  animation-delay: -1s;
  z-index: 3;
}

.hero-metric-card.bottom-right {
  bottom: 60px;
  right: -40px;
  animation-delay: -2s;
  z-index: 3;
}

.hero-metric-card .metric-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-metric-card .metric-lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 3px;
}

.hero-icon-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ffb347);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #fff;
  margin: 0 auto 20px;
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.progress-bar-custom {
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ffb347);
  border-radius: 3px;
  transition: width 2s ease;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.service-card {
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-8px);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(255, 107, 0, 0.15);
  background: #252525;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--orange);
  margin-bottom: 24px;
  transition: all 0.4s ease;
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-tag {
  font-size: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--orange);
  background: rgba(255, 107, 0, 0.1);
  border: 1px solid rgba(255, 107, 0, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.feature-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  border-radius: var(--radius);
  padding: 32px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-orange);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(255, 107, 0, 0.1);
  line-height: 1;
  position: absolute;
  top: 16px;
  right: 20px;
}

.feature-icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 18px;
  display: block;
}

.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   STATS / COUNTER SECTION
   ============================================ */
.stats-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #141414 100%);
  border-top: 1px solid rgba(255, 107, 0, 0.15);
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(
    ellipse,
    rgba(255, 107, 0, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.stat-card {
  text-align: center;
  padding: 32px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-card:last-child {
  border-right: none;
}

.counter-value {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange), #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-card p {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--grey);
  font-weight: 500;
  margin: 0;
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-step {
  text-align: center;
  position: relative;
  padding: 0 20px;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 35px;
  right: -50%;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  z-index: 0;
}

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

.step-num {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4);
}

.process-step h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.process-step p {
  font-size: 0.85rem;
  color: var(--grey);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 36px;
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card::before {
  content: "\201C";
  font-family: Georgia, serif;
  font-size: 6rem;
  color: var(--orange);
  opacity: 0.15;
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-card:hover {
  border-color: rgba(255, 107, 0, 0.25);
  transform: translateY(-5px);
  box-shadow: var(--shadow-dark);
}

.testimonial-stars {
  color: var(--orange);
  font-size: 0.9rem;
  margin-bottom: 14px;
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  display: block;
}

.author-title {
  font-size: 0.8rem;
  color: var(--grey);
}

/* ============================================
   PRICING CARDS
   ============================================ */
.pricing-card {
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
  border-color: var(--orange);
  box-shadow:
    0 0 0 1px var(--orange),
    var(--shadow-orange);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 107, 0, 0.4);
}

.pricing-card.featured:hover {
  box-shadow:
    0 0 0 1px var(--orange),
    0 25px 60px rgba(255, 107, 0, 0.3);
  transform: translateY(-10px);
}

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--orange);
  margin-bottom: 24px;
}

.pricing-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.pricing-card .price {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--orange);
  line-height: 1;
  margin: 20px 0 4px;
}

.pricing-card .price-period {
  font-size: 0.85rem;
  color: var(--grey);
  font-weight: 400;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--grey);
  margin: 16px 0 24px;
  line-height: 1.7;
}

.pricing-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 24px 0;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.88rem;
  color: var(--grey-light);
}

.pricing-feature i {
  color: var(--orange);
  font-size: 0.85rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, #1a1a1a 0%, #222222 100%);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: var(--radius-lg);
  padding: 70px 50px;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.12) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-banner::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.07) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  font-size: 1.05rem;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 36px;
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form-wrap {
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 48px 44px;
}

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

.form-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--grey-light);
  margin-bottom: 8px;
  display: block;
  letter-spacing: 0.3px;
}

.form-control,
.form-select {
  background: #f8f8f8 !important;
  border: 1px solid rgba(0, 0, 0, 0.12) !important;
  border-radius: var(--radius-sm) !important;
  color: #111 !important;
  font-family: var(--font-body);
  font-size: 0.92rem;
  padding: 13px 18px !important;
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: #aaa !important;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(255, 107, 0, 0.5) !important;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1) !important;
  background: #fff !important;
  outline: none;
}

.form-select option {
  background: #fff;
  color: #111;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

/* Contact Info Cards */
.contact-info-card {
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: rgba(255, 107, 0, 0.25);
  transform: translateX(5px);
}

.contact-info-icon {
  width: 52px;
  height: 52px;
  background: rgba(255, 107, 0, 0.12);
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--orange);
  flex-shrink: 0;
}

.contact-info-content .label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--grey);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 5px;
}

.contact-info-content .value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

.contact-info-content .value a {
  color: #111;
}
.contact-info-content .value a:hover {
  color: var(--orange);
}

/* Map Placeholder */
.map-placeholder {
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-image-wrap {
  position: relative;
}

.about-image-box {
  background: linear-gradient(135deg, var(--card-dark), var(--card-darker));
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
  position: relative;
  overflow: hidden;
}

.about-image-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.05) 0%,
    transparent 60%
  );
}

.about-badge-float {
  position: absolute;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  box-shadow: var(--shadow-orange);
  animation: float 3s ease-in-out infinite;
}

.about-badge-float.bl {
  bottom: -20px;
  left: -20px;
  animation-delay: -1.5s;
}
.about-badge-float.tr {
  top: -15px;
  right: -15px;
  animation-delay: -0.7s;
}

.about-badge-float .num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}

.about-badge-float .lbl {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

/* Timeline / Story */
.story-point {
  display: flex;
  gap: 24px;
  padding-left: 20px;
  border-left: 2px solid rgba(255, 107, 0, 0.2);
  padding-bottom: 32px;
  position: relative;
}

.story-point:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.story-point::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
}

.story-point h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 6px;
}

.story-point p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

/* Values Grid */
.value-card {
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: all 0.35s ease;
  height: 100%;
}

.value-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: var(--shadow-orange);
}

.value-card .v-icon {
  font-size: 2rem;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.value-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   SERVICES DETAILED PAGE
   ============================================ */
.service-detail-card {
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.4s ease;
  height: 100%;
}

.service-detail-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.service-detail-header {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.15) 0%,
    rgba(255, 107, 0, 0.05) 100%
  );
  padding: 36px 32px 28px;
  border-bottom: 1px solid rgba(255, 107, 0, 0.12);
}

.service-detail-icon {
  width: 72px;
  height: 72px;
  background: rgba(255, 107, 0, 0.15);
  border: 1px solid rgba(255, 107, 0, 0.3);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--orange);
  margin-bottom: 20px;
  transition: all 0.4s ease;
}

.service-detail-card:hover .service-detail-icon {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.4);
}

.service-detail-header h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}

.service-detail-header p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.7;
  margin: 0;
}

.service-detail-body {
  padding: 28px 32px;
}

.service-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.88rem;
  color: var(--grey-light);
}

.service-benefit:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-benefit i {
  color: var(--orange);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 0.85rem;
}

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  background: var(--secondary-dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.1) 0%,
    transparent 70%
  );
}

.page-hero::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(
    circle,
    rgba(255, 107, 0, 0.06) 0%,
    transparent 70%
  );
}

.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 20px;
}

.breadcrumb-wrap a {
  color: var(--grey);
  transition: var(--transition);
}
.breadcrumb-wrap a:hover {
  color: var(--orange);
}
.breadcrumb-wrap .sep {
  color: var(--orange);
}
.breadcrumb-wrap .current {
  color: var(--orange);
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.05rem;
  color: var(--grey);
  max-width: 580px;
  line-height: 1.8;
}

/* ============================================
   PRIVACY POLICY
   ============================================ */
.policy-content {
  background: var(--card-dark);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  padding: 56px 50px;
}

.policy-section {
  margin-bottom: 44px;
}

.policy-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 107, 0, 0.2);
}

.policy-section h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin: 20px 0 10px;
}

.policy-section p {
  font-size: 0.93rem;
  color: rgba(245, 245, 245, 0.75);
  line-height: 1.9;
  margin-bottom: 12px;
}

.policy-section ul {
  list-style: disc;
  padding-left: 24px;
  color: rgba(245, 245, 245, 0.75);
  font-size: 0.93rem;
  line-height: 2;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 107, 0, 0.15);
  padding-top: 80px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.7rem;
  margin-bottom: 16px;
}

.footer-brand h3 .accent {
  color: var(--orange);
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--grey);
  line-height: 1.8;
  max-width: 300px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: rgba(255, 107, 0, 0.15);
  border-color: rgba(255, 107, 0, 0.4);
  color: var(--orange);
  transform: translateY(-3px);
}

.footer-title {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

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

.footer-links li {
  margin-bottom: 10px;
}

.footer-links li a {
  font-size: 0.88rem;
  color: var(--grey);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a:hover {
  color: var(--orange);
  padding-left: 5px;
}
.footer-links li a::before {
  content: "→";
  font-size: 0.75rem;
  color: var(--orange);
  opacity: 0;
  transition: var(--transition);
}
.footer-links li a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-contact-item i {
  color: var(--orange);
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.85rem;
  color: var(--grey);
  line-height: 1.6;
}

.footer-contact-item a {
  color: var(--grey);
}
.footer-contact-item a:hover {
  color: var(--orange);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 24px 0;
  margin-top: 60px;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: var(--grey);
  margin: 0;
}

.footer-bottom a {
  color: var(--orange);
}
.footer-bottom a:hover {
  color: var(--orange-light);
}

/* ============================================
   FLOATING WIDGETS
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 24px;
  z-index: 999;
}

.whatsapp-float a {
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: waPulse 2s infinite;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.call-float {
  position: fixed;
  bottom: 148px;
  right: 24px;
  z-index: 999;
}

.call-float a {
  width: 56px;
  height: 56px;
  background: #ff6b00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 6px 25px rgba(255, 107, 0, 0.45);
  transition: all 0.3s ease;
  text-decoration: none;
}

.call-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 35px rgba(255, 107, 0, 0.65);
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border: none;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

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

.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 0, 0.55);
}

/* ============================================
   GLOWING ELEMENTS & MISC
   ============================================ */
.glow-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.3;
  margin: 0;
}

.orange-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 8px;
}

.text-orange {
  color: var(--orange) !important;
}
.text-grey {
  color: var(--grey) !important;
}
.text-light-custom {
  color: var(--white) !important;
}

/* Tag chips */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 0, 0.08);
  border: 1px solid rgba(255, 107, 0, 0.2);
  color: var(--orange);
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--orange), #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   MOBILE MENU OVERLAY
   ============================================ */
@media (max-width: 991px) {
  .navbar-collapse {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-top: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  }

  .nav-cta-btn {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    display: block;
  }
  .hero-visual {
    height: 420px;
    overflow: hidden;
    margin-top: 20px;
  }

  .hero-main-card {
    width: 300px;
    padding: 24px;
  }

  .hero-metric-card.top-left {
    left: 10px;
    top: 20px;
  }

  .hero-metric-card.bottom-right {
    right: 10px;
    bottom: 30px;
  }
  .cta-banner {
    padding: 50px 30px;
  }
  .contact-form-wrap {
    padding: 36px 28px;
  }
  .policy-content {
    padding: 36px 28px;
  }
  .about-badge-float.bl {
    bottom: 10px;
    left: 10px;
  }
  .about-badge-float.tr {
    top: 10px;
    right: 10px;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 70px 0;
  }
  .hero-stats {
    gap: 24px;
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .stat-card:last-child {
    border-bottom: none;
  }
  .process-step::after {
    display: none;
  }
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom .text-end {
    text-align: center !important;
    margin-top: 8px;
  }
}

@media (max-width: 575px) {
  /* ---------- Global overflow guard ---------- */
  *,
  *::before,
  *::after {
    max-width: 100%;
  }

  /* ---------- Hero hidden elements ---------- */
  .hero-subtitle,
  .hero-stats,
  .hero-btns {
    display: none !important;
  }

  /* ---- Hero section spacing — mobile ---- */
  .hero-section {
    padding-top: 70px;
  }

  .hero-section .row {
    --bs-gutter-y: 0.5rem;
  }

  /* ---- Hero visual — mobile ---- */
  .hero-visual {
    height: auto;
    min-height: 260px;
    overflow: hidden;
    padding: 0 8px 8px;
    margin-top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Main card — fluid width on mobile */
  .hero-main-card {
    width: 100%;
    max-width: 320px;
    padding: 24px 20px;
    animation: none;       /* stop float animation — cleaner on mobile */
  }

  /* Floating metric cards — tuck inside the card on mobile */
  .hero-metric-card.top-left {
    left: 0;
    top: 10px;
    padding: 10px 14px;
  }

  .hero-metric-card.bottom-right {
    right: 0;
    bottom: 10px;
    padding: 10px 14px;
  }

  .hero-metric-card .metric-val {
    font-size: 1.15rem;
  }

  .hero-metric-card .metric-lbl {
    font-size: 0.68rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  /* ---------- About badge floats ---------- */
  .about-badge-float.bl,
  .about-badge-float.tr {
    display: none;
  }

  /* ---------- Process connector lines ---------- */
  .process-step::after {
    display: none;
  }

  /* ---------- Prevent Bootstrap row gutter overflow ---------- */
  .row {
    --bs-gutter-x: 1rem;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .container,
  .container-fluid {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  /* ---------- CTA banner ---------- */
  .cta-banner {
    padding: 36px 20px;
  }

  /* ---------- Policy & form wrappers ---------- */
  .contact-form-wrap,
  .policy-content {
    padding: 24px 16px;
  }
  .btn-orange,
  .btn-outline-orange {
    padding: 12px 24px;
    font-size: 0.88rem;
  }
  .pricing-card {
    padding: 36px 24px;
  }
  .cta-banner {
    padding: 40px 20px;
  }
  .contact-form-wrap {
    padding: 28px 20px;
  }
  .policy-content {
    padding: 28px 20px;
  }
}

/* ============================================
   ANIMATIONS & AOS OVERRIDES
   ============================================ */
[data-aos="fade-up-custom"] {
  transform: translateY(40px);
  opacity: 0;
  transition:
    transform 0.7s ease,
    opacity 0.7s ease;
}

[data-aos="fade-up-custom"].aos-animate {
  transform: translateY(0);
  opacity: 1;
}

.animated-border {
  position: relative;
}

.animated-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    var(--orange),
    transparent,
    var(--orange)
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: borderRotate 3s linear infinite;
}

@keyframes borderRotate {
  from {
    background-position: 0% 50%;
  }
  to {
    background-position: 100% 50%;
  }
}

/* Page loading */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--primary-dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

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

.loader-inner {
  text-align: center;
}

.loader-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.loader-logo span {
  color: var(--orange);
}

.loader-bar {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar-fill {
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ffb347);
  border-radius: 3px;
  animation: loadBar 1s ease forwards;
}

@keyframes loadBar {
  to {
    width: 100%;
  }
}

/* Noise texture overlay */
.noise-overlay {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 9998;
}

/* ============================================
   NAVBAR LOGO
   ============================================ */
.navbar-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.navbar-logo-wrap:hover {
  opacity: 0.85;
}

.navbar-logo {
  height: 70px;
  width: auto;
  display: block;
}

/* ============================================
   HERO — BACKGROUND IMAGE
   ============================================ */
.hero-section {
  background-image: url("../images/hero-bg.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.hero-section::before {
  background: linear-gradient(
    135deg,
    rgba(5, 5, 5, 0.95) 0%,
    rgba(10, 10, 10, 0.8) 55%,
    rgba(20, 20, 20, 0.88) 100%
  ) !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  right: 0 !important;
  border-radius: 0 !important;
  z-index: 1;
}

.hero-section::after {
  z-index: 1;
}

/* ============================================
   WHITE / LIGHT BACKGROUND SECTIONS
   ============================================ */
.section-white {
  background: #ffffff;
}
.section-light {
  background: #f7f7f7;
}

/* ---- Section tag on light bg ---- */
.section-white .section-tag,
.section-light .section-tag {
  background: rgba(255, 107, 0, 0.08);
  border-color: rgba(255, 107, 0, 0.28);
  color: var(--orange);
}

/* ---- Headings & text on light bg ---- */
.section-white .section-title,
.section-light .section-title,
.section-white h2,
.section-white h3,
.section-white h4,
.section-white h5,
.section-light h2,
.section-light h3,
.section-light h4,
.section-light h5 {
  color: #111111;
}

.section-white .section-subtitle,
.section-light .section-subtitle,
.section-white p,
.section-light p {
  color: #555555;
}

.section-white a,
.section-light a {
  color: inherit;
}

/* Restore button colours — must not inherit section text colour */
.section-white .btn-orange,
.section-light .btn-orange {
  color: #ffffff !important;
}

.section-white .btn-orange:hover,
.section-light .btn-orange:hover {
  color: #ffffff !important;
}

.section-white .btn-outline-orange,
.section-light .btn-outline-orange {
  color: var(--orange) !important;
}

.section-white .btn-outline-orange:hover,
.section-light .btn-outline-orange:hover {
  color: #ffffff !important;
}

.section-white .btn-white,
.section-light .btn-white {
  color: var(--primary-dark) !important;
}

.section-white .nav-cta-btn,
.section-light .nav-cta-btn {
  color: #ffffff !important;
}

/* ---- Chip on light bg ---- */
.section-white .chip,
.section-light .chip {
  background: rgba(255, 107, 0, 0.07);
  border-color: rgba(255, 107, 0, 0.2);
  color: var(--orange);
}

/* ---- Service cards on light bg ---- */
.section-white .service-card,
.section-light .service-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.section-white .service-card:hover,
.section-light .service-card:hover {
  background: #ffffff;
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 14px 44px rgba(255, 107, 0, 0.14);
}

.section-white .service-card h4,
.section-light .service-card h4 {
  color: #111;
}

.section-white .service-card p,
.section-light .service-card p {
  color: #666;
}

/* ---- Feature cards on light bg ---- */
.section-white .feature-card,
.section-light .feature-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.07);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.section-white .feature-card:hover,
.section-light .feature-card:hover {
  border-color: rgba(255, 107, 0, 0.28);
  box-shadow: 0 14px 44px rgba(255, 107, 0, 0.12);
}

.section-white .feature-card h4,
.section-light .feature-card h4 {
  color: #111;
}

.section-white .feature-card p,
.section-light .feature-card p {
  color: #666;
}

.section-white .feature-num,
.section-light .feature-num {
  color: rgba(255, 107, 0, 0.08);
}

/* ---- Pricing cards on light bg ---- */
.section-white .pricing-card,
.section-light .pricing-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.09);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}

.section-white .pricing-card:hover,
.section-light .pricing-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 107, 0, 0.3);
}

.section-white .pricing-card h4,
.section-light .pricing-card h4 {
  color: #111;
}

.section-white .pricing-card .pricing-desc,
.section-light .pricing-card .pricing-desc {
  color: #666;
}

.section-white .pricing-card .pricing-feature,
.section-light .pricing-card .pricing-feature {
  color: #444;
}

.section-white .pricing-card .pricing-divider,
.section-light .pricing-card .pricing-divider {
  border-color: rgba(0, 0, 0, 0.08);
}

.section-white .pricing-card.featured,
.section-light .pricing-card.featured {
  background: linear-gradient(145deg, #fff, #fafafa);
  border-color: var(--orange);
  box-shadow:
    0 0 0 1px var(--orange),
    0 10px 40px rgba(255, 107, 0, 0.18);
}

/* ---- Process steps on light bg ---- */
.section-white .process-step h5,
.section-light .process-step h5 {
  color: #111;
}

.section-white .process-step p,
.section-light .process-step p {
  color: #666;
}

/* ---- Value cards on light bg ---- */
.section-white .value-card,
.section-light .value-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.section-white .value-card:hover,
.section-light .value-card:hover {
  border-color: rgba(255, 107, 0, 0.28);
  box-shadow: 0 14px 44px rgba(255, 107, 0, 0.12);
}

.section-white .value-card h5,
.section-light .value-card h5 {
  color: #111;
}

.section-white .value-card p,
.section-light .value-card p {
  color: #666;
}

/* ---- Story points on light bg ---- */
.section-white .story-point p,
.section-light .story-point p {
  color: #666;
}

/* ---- Testimonial cards on light bg ---- */
.section-white .testimonial-card,
.section-light .testimonial-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.section-white .testimonial-card:hover,
.section-light .testimonial-card:hover {
  border-color: rgba(255, 107, 0, 0.25);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.1);
}

.section-white .testimonial-text,
.section-light .testimonial-text {
  color: #555;
}

.section-white .author-name,
.section-light .author-name {
  color: #111;
}

.section-white .author-title,
.section-light .author-title {
  color: #888;
}

/* ---- Service detail cards on light bg ---- */
.section-white .service-detail-card,
.section-light .service-detail-card {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.section-white .service-detail-card:hover,
.section-light .service-detail-card:hover {
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 16px 48px rgba(255, 107, 0, 0.1);
}

.section-white .service-detail-header,
.section-light .service-detail-header {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 0, 0.07) 0%,
    rgba(255, 107, 0, 0.02) 100%
  );
  border-bottom-color: rgba(255, 107, 0, 0.1);
}

.section-white .service-detail-header h3,
.section-light .service-detail-header h3 {
  color: #111;
}

.section-white .service-detail-header p,
.section-light .service-detail-header p {
  color: #666;
}

.section-white .service-benefit,
.section-light .service-benefit {
  color: #444;
  border-bottom-color: rgba(0, 0, 0, 0.05);
}

/* ---- Stats on light bg ---- */
.section-white .stat-card p,
.section-light .stat-card p {
  color: #666;
}

.section-white .stat-card,
.section-light .stat-card {
  border-right-color: rgba(0, 0, 0, 0.07);
}

/* ---- FAQ on light bg ---- */
.section-white .faq-item,
.section-light .faq-item {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
}

.section-white .faq-question,
.section-light .faq-question {
  color: #111;
}

.section-white .faq-answer,
.section-light .faq-answer {
  color: #666;
}

/* ---- Contact info cards on light bg ---- */
.section-white .contact-info-card,
.section-light .contact-info-card {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.section-white .contact-info-card:hover,
.section-light .contact-info-card:hover {
  border-color: rgba(255, 107, 0, 0.25);
}

.section-white .contact-info-content .label,
.section-light .contact-info-content .label {
  color: #999;
}

.section-white .contact-info-content .value,
.section-light .contact-info-content .value {
  color: #111;
}

/* ---- Section divider on light bg ---- */
.section-white + .section-white,
.section-light + .section-light {
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ---- Policy content on light bg ---- */
.section-white .policy-content,
.section-light .policy-content {
  background: #fff;
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.section-white .policy-section p,
.section-light .policy-section p {
  color: #555;
}

.section-white .policy-section ul,
.section-light .policy-section ul {
  color: #555;
}

/* Breadcrumb on light pages */
.page-hero-light {
  background: #f7f7f7;
  border-bottom: 1px solid rgba(255, 107, 0, 0.15);
}

.page-hero-light h1 {
  color: #111;
}
.page-hero-light p {
  color: #555;
}
.page-hero-light .breadcrumb-wrap {
  color: #888;
}
.page-hero-light .breadcrumb-wrap a {
  color: #888;
}
.page-hero-light .breadcrumb-wrap a:hover {
  color: var(--orange);
}
