/* =========================================
   Reset & CSS Custom Properties
   ========================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Color Palette */
  --bg-dark: #08090d;
  --bg-light-blue: #edf3f8;
  --bg-white: #ffffff;

  --card-dark-bg: #11141e;
  --card-dark-alt: #0f131c;
  --card-white-bg: #ffffff;

  --primary-accent: #E83A25;
  --primary-accent-hover: #ff6e58;
  --icon-bg: rgba(234, 88, 67, 0.08);
  --icon-border: rgba(234, 88, 67, 0.22);

  --text-white: #ffffff;
  --text-dark-heading: #1e293b;
  --text-muted: #A3A396;
  --text-body: #8e96a7;
  --text-gray-dark: #4b5563;
  --text-gray-light: #cbd5e1;

  --font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --container-max-width: 1240px;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-family: var(--font-family);
  font-size: 14.5px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* Background Atmosphere Glow */
.bsd-glow-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(circle 800px at 50% 10%, rgba(55, 30, 80, 0.18), transparent 70%),
    radial-gradient(circle 600px at 90% 40%, rgba(234, 88, 67, 0.04), transparent 60%),
    radial-gradient(circle 800px at 10% 80%, rgba(30, 40, 90, 0.12), transparent 70%);
}

.bsd-container {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.bsd-hilight {
  color: var(--primary-accent);
  display: block;
}

/* =========================================
   Top Banner / Hero Slider Section
   ========================================= */
.bsd-hero-banner {
  position: relative;
  width: 100%;
  min-height: 520px;
  height: clamp(520px, 65vh, 650px);
  background-color: #08090d;
  overflow: hidden;
  z-index: 1;
}

.bsd-hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.bsd-hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.8s ease;
  display: flex;
  align-items: center;
  z-index: 1;
}

.bsd-hero-slide.bsd-active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.bsd-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      rgba(8, 9, 13, 0.98) 0%,
      rgba(8, 9, 13, 0.92) 38%,
      rgba(8, 9, 13, 0.48) 65%,
      rgba(8, 9, 13, 0.12) 100%);
  pointer-events: none;
  z-index: 1;
}

.bsd-hero-slide .bsd-container {
  position: relative;
  width: 100%;
  z-index: 2;
}

.bsd-hero-content {
  max-width: 620px;
}

.bsd-hero-title {
  color: #ffffff;
  font-size: clamp(2.3rem, 4.3vw, 3.6rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.bsd-hero-subtitle {
  color: #e2e8f0;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 34px;
  max-width: 520px;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.bsd-hero-action {
  display: flex;
  align-items: center;
}

.bsd-btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-accent);
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 600;
  padding: 13px 34px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(232, 58, 37, 0.38);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bsd-btn-hero:hover {
  background-color: var(--primary-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(232, 58, 37, 0.5);
  color: #ffffff;
}

/* Bottom Indicator Bars */
.bsd-hero-indicators-wrap {
  position: absolute;
  bottom: 36px;
  left: 0;
  width: 100%;
  z-index: 10;
}

.bsd-hero-indicators {
  display: flex;
  align-items: center;
  gap: 12px;
}

.bsd-hero-indicator-bar {
  position: relative;
  width: clamp(70px, 8vw, 110px);
  height: 4px;
  background-color: rgba(255, 255, 255, 0.28);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 0;
  outline: none;
  overflow: hidden;
  transition: background-color 0.3s ease;
}

.bsd-hero-indicator-bar:hover {
  background-color: rgba(255, 255, 255, 0.5);
}

.bsd-indicator-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background-color: var(--primary-accent);
  border-radius: 4px;
  transition: width 0.3s ease;
}

.bsd-hero-indicator-bar.bsd-active .bsd-indicator-progress {
  width: 100%;
}

/* ===================================================
   REUSABLE GLOBAL COMPONENT CLASSES
   (One time defined, multiple times used)
   =================================================== */

/* 1. Reusable Section Top/Bottom Padding */
.bsd-section-padding {
  padding-top: 80px;
  padding-bottom: 95px;
  position: relative;
  z-index: 1;
}

/* Background Themes */
.bsd-bg-dark {
  background-color: transparent;
}

.bsd-bg-light-blue {
  background-color: var(--bg-light-blue);
}

.bsd-bg-white {
  background-color: var(--bg-white);
}

/* 2. Reusable Section Header & Title */
.bsd-section-header {
  margin-bottom: 48px;
}

.bsd-section-header.bsd-text-center {
  text-align: center;
}

.bsd-section-title {
  color: var(--text-white);
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 20px;
}

.bsd-section-title.bsd-maximize-online-presence {
  font-size: 40px;
}


.bsd-section-title.bsd-text-dark {
  color: var(--text-dark-heading);
}

.bsd-section-title.bsd-center-max {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

/* 3. Reusable Paragraph / Descriptions */
.bsd-section-desc {
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  max-width: 100%;
  color: #8A8F98;
}

.bsd-card-desc {
  font-size: 16px;
  line-height: 1.68;
  font-weight: 400;
}

.bsd-card-desc.bsd-text-muted {
  color: var(--text-body);
  margin-bottom: 28px;
  flex-grow: 1;
}

.bsd-card-desc.bsd-text-dark {
  color: var(--text-gray-dark);
}

.bsd-card-desc.bsd-text-light {
  color: var(--text-gray-light);
}

/* 4. Reusable Card Titles */
.bsd-card-title {
  color: var(--text-white);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.bsd-card-title.bsd-accent-title {
  color: var(--primary-accent);
  font-size: 20px;
  margin-bottom: 12px;
}

/* =========================================
   Section 1: Services Grid
   ========================================= */
.bsd-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bsd-service-card {
  background-color: var(--card-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.bsd-service-card:hover {
  transform: translateY(-4px);
  background-color: #141824;
  border-color: rgba(234, 88, 67, 0.3);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.45), 0 0 20px rgba(234, 88, 67, 0.08);
}

.bsd-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: var(--icon-bg);
  border: 1px solid var(--icon-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--primary-accent);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.bsd-service-card:hover .bsd-icon-wrapper {
  border-color: rgba(234, 88, 67, 0.5);
  background-color: rgba(234, 88, 67, 0.15);
  color: var(--primary-accent-hover);
}

.bsd-service-icon {
  width: 22px;
  height: 22px;
}

.bsd-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-accent);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
  width: fit-content;
  margin-top: auto;
}

.bsd-arrow-icon {
  width: 14px;
  height: 14px;
  stroke-width: 3;
  transition: transform 0.2s ease;
}

.bsd-read-more:hover {
  color: var(--primary-accent-hover);
  gap: 9px;
}

.bsd-read-more:hover .bsd-arrow-icon {
  transform: translateX(2px);
}

/* =========================================
   Section 2: How We Work Grid
   ========================================= */
.bsd-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.bsd-process-card {
  background-color: var(--card-white-bg);
  border-radius: 12px;
  border-top: 4px solid var(--primary-accent);
  padding: 26px 22px 30px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bsd-process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.09);
}

/* =========================================
   Section 3: Why Choose Grid
   ========================================= */
.bsd-why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.bsd-why-choose-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.bsd-why-card {
  background-color: var(--card-dark-alt);
  border-radius: 16px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  border: 1px solid rgba(255, 255, 255, 0.04);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bsd-why-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.bsd-why-choose-media {
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.bsd-feature-image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  transition: transform 0.4s ease;
}

.bsd-why-choose-media:hover .bsd-feature-image {
  transform: scale(1.02);
}

/* =========================================
   Section 4: Maximize Online Presence Grid
   ========================================= */
.bsd-section-subtitle-accent {
  color: var(--primary-accent);
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  font-weight: 700;
  margin-top: -8px;
  letter-spacing: -0.01em;
}

.bsd-media-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.bsd-media-card {
  background-color: var(--card-dark-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.bsd-media-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
}

.bsd-media-card-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background-color: #1a1e2b;
}

.bsd-media-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.bsd-media-card:hover .bsd-media-card-img {
  transform: scale(1.03);
}

.bsd-media-card-body {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bsd-media-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.bsd-media-card-header .bsd-card-title {
  margin-bottom: 0;
  font-size: 22px;
  line-height: 1.35;
}

.bsd-badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bsd-badge-icon svg {
  width: 18px;
  height: 18px;
}

.bsd-badge-green {
  background-color: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #10b981;
}

.bsd-badge-orange {
  background-color: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #f59e0b;
}

/* =========================================
   Section 5: Split Feature / Best Solutions
   ========================================= */
.bsd-section-badge {
  color: var(--primary-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
}

.bsd-section-desc.bsd-text-dark-body {
  color: #4B5563;
  line-height: 1.78;
}

.bsd-split-grid {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  gap: 60px;
  align-items: center;
}

.bsd-split-media-col {
  position: relative;
}

.bsd-split-image-card {
  position: relative;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.bsd-split-img {
  width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Floating Active ROI Stat Card */
.bsd-floating-stat-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: #ffffff;
  padding: 18px 24px 20px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  min-width: 180px;
  max-width: 220px;
  animation: floatSubtle 4s ease-in-out infinite alternate;
}

@keyframes floatSubtle {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-6px);
  }
}

.bsd-stat-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.bsd-stat-icon-wrap {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: rgba(234, 88, 67, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-accent);
}

.bsd-stat-icon-wrap svg {
  width: 13px;
  height: 13px;
}

.bsd-stat-tag {
  color: var(--primary-accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.bsd-stat-value {
  color: #0f172a;
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 4px;
}

.bsd-stat-desc {
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.35;
  font-weight: 500;
}

/* Content & Primary Button */
.bsd-split-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bsd-btn-wrap {
  margin-top: 32px;
}

.bsd-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-accent);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 34px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(234, 88, 67, 0.35);
  transition: all 0.25s ease;
}

.bsd-btn-arrow {
  width: 16px;
  height: 16px;
  transition: transform 0.25s ease;
}

.bsd-btn-primary:hover {
  background-color: var(--primary-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(234, 88, 67, 0.45);
}

.bsd-btn-primary:hover .bsd-btn-arrow {
  transform: translate(2px, -2px);
}

/* =========================================
   Section 7: Why People Choose Us Banner
   ========================================= */
.bsd-features-banner-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.bsd-features-banner-title-wrap {
  flex: 1;
  max-width: 50%;
}

.bsd-banner-heading {
  margin-bottom: 0;
  font-size: clamp(1.85rem, 2.7vw, 2.4rem);
  line-height: 1.25;
}

.bsd-features-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(180px, 1fr));
  gap: 32px 56px;
  flex: 1.2;
}

.bsd-feature-point {
  display: flex;
  align-items: center;
  gap: 16px;
}

.bsd-circle-badge {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.bsd-feature-point:hover .bsd-circle-badge {
  transform: scale(1.08);
}

.bsd-circle-badge svg {
  width: 20px;
  height: 20px;
}

.bsd-badge-mint {
  background-color: rgba(16, 185, 129, 0.12);
  color: #10b981;
}

.bsd-badge-amber {
  background-color: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

.bsd-badge-rose {
  background-color: rgba(244, 63, 94, 0.12);
  color: #f43f5e;
}

.bsd-badge-sky {
  background-color: rgba(14, 165, 233, 0.12);
  color: #0ea5e9;
}

.bsd-feature-point-label {
  color: #0f172a;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

/* =========================================
   Section 8: Creative Team Banner
   ========================================= */
.bsd-cta-team-section {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
}

.bsd-cta-team-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center right;
  z-index: 0;
}

.bsd-cta-team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(8, 9, 13, 0.96) 0%, rgba(8, 9, 13, 0.88) 42%, rgba(8, 9, 13, 0.35) 75%, rgba(8, 9, 13, 0.15) 100%);
}

.bsd-cta-team-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.bsd-cta-team-content {
  max-width: 58%;
}

.bsd-cta-team-title {
  line-height: 1.2;
  margin-bottom: 18px;
  color: #ffffff;
}

.bsd-cta-team-highlight {
  color: #ffffff;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 14px;
}

.bsd-cta-team-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #F0EFEA;
}

/* =========================================
   Section: Business Problems CTA Banner
   ========================================= */
.bsd-business-problems-banner {
  position: relative;
  background-color: #E83A25;
  background-image: url('assets/images/home/background.png');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 90px 24px;
  color: #ffffff;
  overflow: hidden;
}

.bsd-business-problems-content {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.bsd-business-problems-title {
  color: #ffffff;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 16px 0;
}

.bsd-business-problems-subtitle {
  color: #ffffff;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  line-height: 1.55;
  margin: 0 0 32px 0;
  opacity: 0.95;
}

.bsd-business-problems-action {
  display: flex;
  justify-content: center;
}

.bsd-btn-phone-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #ffffff;
  color: #E83A25;
  font-size: 16px;
  font-weight: 700;
  padding: 13px 34px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bsd-btn-phone-white .bsd-btn-arrow {
  width: 16px;
  height: 16px;
  stroke: #E83A25;
  transition: transform 0.25s ease;
}

.bsd-btn-phone-white:hover {
  background-color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  color: #d12e1a;
}

.bsd-btn-phone-white:hover .bsd-btn-arrow {
  transform: translate(3px, -3px);
  stroke: #d12e1a;
}

/* =========================================
   Section 9: Testimonials / Real Stories
   ========================================= */
.bsd-testimonials-slider-wrap {
  width: 100%;
}

.bsd-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.bsd-testimonial-card {
  background-color: #f0f6fc;
  border-radius: 24px;
  padding: 42px 36px 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(226, 232, 240, 0.85);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.bsd-testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.07);
}

.bsd-testimonial-headline {
  color: #0f172a;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.bsd-testimonial-text {
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.72;
  margin-bottom: 34px;
  flex-grow: 1;
}

.bsd-testimonial-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: auto;
}

.bsd-client-avatar-wrap {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.bsd-client-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bsd-client-info-wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.bsd-quote-icon {
  width: 22px;
  height: 22px;
  color: #1e293b;
  margin-bottom: 6px;
}

.bsd-client-role {
  color: #0f172a;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
}

.bsd-client-company {
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 3px;
}

.bsd-slider-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}

.bsd-pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #cbd5e1;
  transition: all 0.3s ease;
  cursor: pointer;
}

.bsd-pagination-dot.bsd-active {
  width: 28px;
  border-radius: 10px;
  background-color: #1e3a4b;
}

/* =========================================
   Section 10: Our Valuable Clients
   ========================================= */
.bsd-clients-strip-wrap {
  width: 100%;
}

.bsd-clients-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.bsd-client-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0 12px;
  position: relative;
}

.bsd-client-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.bsd-client-badge {
  height: 48px;
  width: 100%;
  min-width: 100px;
  max-width: 125px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  user-select: none;
}

.bsd-client-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.4);
}

.bsd-client-logo-svg {
  width: 90%;
  height: 28px;
}

/* Specific Badge Brand Styles */
.bsd-badge-decathlon {
  background-color: #1a569d;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 4px;
}

.bsd-decathlon-icon {
  font-size: 0.8rem;
}

.bsd-client-brand-name {
  font-family: var(--font-family);
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.5px;
}

.bsd-badge-toyota {
  background-color: #d90429;
}

.bsd-badge-mercedes {
  background-color: #050505;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bsd-badge-wipro {
  background-color: #361952;
  color: #ffffff;
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bsd-wipro-name {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.95rem;
}

.bsd-wipro-dots {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px dashed rgba(255, 255, 255, 0.8);
  display: inline-block;
}

.bsd-badge-puravankara {
  background-color: #174e92;
  color: #ffffff;
}

.bsd-puravankara-text {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 0.68rem;
  letter-spacing: 0.8px;
}

.bsd-badge-sobha {
  background-color: #f7df99;
}

.bsd-badge-42estates {
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: #142d54;
}

.bsd-estates-num {
  font-weight: 900;
  font-size: 0.95rem;
  letter-spacing: -0.5px;
}

.bsd-estates-sub {
  font-weight: 800;
  font-size: 0.45rem;
  letter-spacing: 1.5px;
}

.bsd-badge-bhive {
  background-color: #080808;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 6px;
}

.bsd-bhive-icon {
  color: #f59e0b;
  font-size: 0.9rem;
}

.bsd-bhive-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.bsd-bhive-main {
  font-weight: 800;
  font-size: 0.65rem;
  letter-spacing: 0.8px;
}

.bsd-bhive-sub {
  font-size: 0.42rem;
  font-weight: 700;
  color: #cbd5e1;
  letter-spacing: 1px;
}

/* =========================================
   Section 11: Contact Us Section
   ========================================= */
.bsd-contact-main-title {
  line-height: 1.25;
  margin-bottom: 45px;
}

.bsd-contact-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

.bsd-contact-form-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 38px 34px;
  border: 1px solid #eef2f6;
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.05);
}

.bsd-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}

.bsd-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 18px;
}

.bsd-form-label {
  color: #1e293b;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: block;
}

.bsd-required-star {
  color: var(--primary-accent);
}

.bsd-form-input,
.bsd-form-textarea {
  width: 100%;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 12px 14px;
  font-family: var(--font-family);
  font-size: 0.885rem;
  color: #1e293b;
  background-color: #ffffff;
  transition: all 0.2s ease;
  outline: none;
}

.bsd-form-input::placeholder,
.bsd-form-textarea::placeholder {
  color: #94a3b8;
}

.bsd-form-input:focus,
.bsd-form-textarea:focus {
  border-color: var(--primary-accent);
  box-shadow: 0 0 0 3px rgba(234, 88, 67, 0.12);
}

.bsd-form-textarea {
  resize: vertical;
  min-height: 110px;
}

.bsd-btn-submit {
  width: 100%;
  background-color: var(--primary-accent);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  padding: 15px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: var(--font-family);
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(234, 88, 67, 0.3);
  margin-top: 10px;
}

.bsd-btn-submit:hover {
  background-color: var(--primary-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(234, 88, 67, 0.4);
}

/* Contact Info Column */
.bsd-contact-info-col {
  padding-top: 12px;
}

.bsd-contact-info-title {
  color: #0f172a;
  font-size: 1.65rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.bsd-contact-info-subtitle {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 34px;
}

.bsd-contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.bsd-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.bsd-contact-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f0f6fc;
  color: var(--primary-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bsd-contact-icon-circle svg {
  width: 20px;
  height: 20px;
}

.bsd-contact-detail {
  display: flex;
  flex-direction: column;
}

.bsd-contact-detail-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #8a96a6;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.bsd-contact-detail-text {
  color: #1e293b;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
}

.bsd-contact-detail-link {
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
}

.bsd-contact-detail-link.bsd-accent-link {
  color: var(--primary-accent);
}

.bsd-contact-detail-link.bsd-accent-link:hover {
  color: var(--primary-accent-hover);
}

.bsd-contact-detail-link.bsd-dark-link:hover {
  color: var(--primary-accent);
}

/* =========================================
   Section 12: Frequently Asked Questions
   ========================================= */
.bsd-faq-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 64px;
  align-items: flex-start;
}

.bsd-faq-sidebar {
  position: sticky;
  top: 40px;
}

.bsd-faq-main-title {
  line-height: 1.15;
  margin-bottom: 16px;
}

.bsd-faq-sidebar-desc {
  max-width: 320px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.bsd-faq-cta-box {
  margin-top: 48px;
}

.bsd-faq-cta-text {
  color: #1e293b;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 14px;
}

.bsd-btn-primary.bsd-btn-sm {
  padding: 12px 26px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.bsd-faq-accordion-list {
  display: flex;
  flex-direction: column;
}

.bsd-faq-item {
  border-bottom: 1px solid rgba(203, 213, 225, 0.7);
  padding: 4px 0;
  transition: all 0.2s ease;
}

.bsd-faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  user-select: none;
  gap: 16px;
}

.bsd-faq-summary::-webkit-details-marker {
  display: none;
}

.bsd-faq-question {
  color: #1e293b;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.bsd-faq-summary:hover .bsd-faq-question {
  color: var(--primary-accent);
}

.bsd-faq-chevron {
  width: 18px;
  height: 18px;
  color: #64748b;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), color 0.2s ease;
  flex-shrink: 0;
}

.bsd-faq-item[open] .bsd-faq-chevron {
  transform: rotate(180deg);
  color: var(--primary-accent);
}

.bsd-faq-item[open] .bsd-faq-question {
  color: var(--primary-accent);
}

.bsd-faq-answer {
  padding-bottom: 20px;
  color: #475569;
  font-size: 0.92rem;
  line-height: 1.7;
  animation: faqFadeIn 0.3s ease-in-out;
}

.bsd-faq-answer p {
  margin-bottom: 12px;
}

.bsd-faq-answer p:last-child {
  margin-bottom: 0;
}

.bsd-faq-answer strong,
.bsd-faq-answer b {
  color: var(--primary-dark);
  font-weight: 600;
}

.bsd-faq-answer ul,
.bsd-faq-answer ol {
  margin: 10px 0 14px 20px;
  padding-left: 6px;
}

.bsd-faq-answer li {
  margin-bottom: 6px;
  line-height: 1.6;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================
   Responsive Breakpoints & Mobile Optimization
   ========================================= */

/* Large Tablets & Small Laptops (<= 1200px) */
@media (max-width: 1200px) {
  .bsd-features-banner-layout {
    gap: 36px;
  }

  .bsd-features-banner-grid {
    gap: 20px 24px;
  }
}

/* Tablets (<= 1024px) */
@media (max-width: 1024px) {
  .bsd-section-padding {
    padding-top: 65px;
    padding-bottom: 75px;
  }

  .bsd-container {
    padding: 0 24px;
  }

  .bsd-section-header {
    margin-bottom: 40px;
  }

  /* Section 1 & 6: Services & Dominate Grids (3-col to 2-col) */
  .bsd-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  /* Section 2: Process Grid (4-col to 2-col) */
  .bsd-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Section 3: Why Choose Grid */
  .bsd-why-choose-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .bsd-why-choose-media {
    order: -1;
    max-height: 400px;
    margin-bottom: 8px;
  }

  .bsd-why-choose-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .bsd-feature-image {
    min-height: auto;
    max-height: 400px;
    width: 100%;
  }

  /* Section 5: Solutions Split Grid */
  .bsd-split-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bsd-floating-stat-card {
    position: static;
    margin-top: 20px;
    max-width: 100%;
    animation: none;
  }

  /* Section 7: Features Banner */
  .bsd-features-banner-layout {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  .bsd-features-banner-title-wrap {
    max-width: 100%;
  }

  .bsd-features-banner-grid {
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 24px;
  }

  /* Section 10: Testimonials */
  .bsd-testimonials-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  /* Section 11: Clients Logo Strip */
  .bsd-clients-strip {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }

  .bsd-client-item {
    flex: 0 0 calc(25% - 16px);
    padding: 0;
  }

  .bsd-client-item::after {
    display: none;
  }

  /* Section 12: Contact Section */
  .bsd-contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Section 13: FAQ Section */
  .bsd-faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .bsd-faq-sidebar {
    position: static;
  }

  .bsd-faq-sidebar-desc {
    max-width: 100%;
  }

  .bsd-faq-cta-box {
    margin-top: 24px;
  }
}

/* Tablet Portrait & Large Mobile (<= 768px) */
@media (max-width: 768px) {

  /* Hero Banner Mobile */
  .bsd-hero-banner {
    min-height: 480px;
    height: auto;
  }

  .bsd-hero-slide {
    position: relative;
    min-height: 480px;
    padding-top: 60px;
    padding-bottom: 75px;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .bsd-hero-slide.bsd-active {
    display: flex;
  }

  .bsd-hero-overlay {
    background: linear-gradient(180deg,
        rgba(8, 9, 13, 0.94) 0%,
        rgba(8, 9, 13, 0.88) 55%,
        rgba(8, 9, 13, 0.94) 100%);
  }

  .bsd-hero-content,
  .bsd-cta-team-content {
    max-width: 100%;
  }

  .bsd-hero-title {
    font-size: clamp(1.85rem, 5.5vw, 2.5rem);
    margin-bottom: 16px;
  }

  .bsd-hero-subtitle,
  .bsd-cta-team-highlight {
    font-size: 1.02rem;
    margin-bottom: 26px;
  }

  .bsd-hero-indicators-wrap {
    bottom: 22px;
  }

  .bsd-hero-indicator-bar {
    width: 65px;
    height: 3.5px;
  }

  .bsd-section-padding {
    padding-top: 55px;
    padding-bottom: 60px;
  }

  .bsd-container {
    padding: 0 20px;
  }

  .bsd-section-header {
    margin-bottom: 32px;
  }

  .bsd-section-title,
  .bsd-section-title.bsd-maximize-online-presence {
    font-size: clamp(1.75rem, 4.8vw, 2.25rem);
  }



  .bsd-section-desc {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* Grids to 1 column */
  .bsd-services-grid,
  .bsd-why-choose-col,
  .bsd-media-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .bsd-why-choose-media {
    max-height: 320px;
  }

  .bsd-feature-image {
    max-height: 320px;
  }

  .bsd-media-card-img-wrap {
    height: 200px;
  }

  .bsd-features-banner-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* CTA Team Section */
  .bsd-cta-team-section {
    padding-top: 55px;
    padding-bottom: 55px;
    min-height: auto;
  }

  .bsd-cta-team-overlay {
    background: rgba(8, 9, 13, 0.88);
  }

  .bsd-cta-team-title {
    font-size: clamp(1.75rem, 5vw, 2.2rem);
  }

  /* Business Problems Banner */
  .bsd-business-problems-banner {
    padding: 55px 20px;
  }

  .bsd-business-problems-title {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
  }

  .bsd-business-problems-subtitle {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }

  .bsd-btn-phone-white {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  /* Contact Form */
  .bsd-form-row {
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }

  .bsd-form-input,
  .bsd-form-textarea {
    font-size: 16px;
    /* Prevents auto-zoom in iOS Safari */
    padding: 13px 14px;
  }

  .bsd-btn-submit {
    width: 100%;
  }

  .bsd-btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* Mobile Devices (<= 640px) */
@media (max-width: 640px) {
  .bsd-section-padding {
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .bsd-container {
    padding: 0 16px;
  }

  .bsd-section-header {
    margin-bottom: 28px;
  }

  .bsd-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bsd-service-card,
  .bsd-why-card,
  .bsd-process-card,
  .bsd-contact-form-card {
    padding: 24px 18px;
  }

  .bsd-media-card-body {
    padding: 20px 18px 22px;
  }

  .bsd-media-card-img-wrap {
    height: 185px;
  }

  .bsd-testimonial-card {
    padding: 26px 20px 24px;
  }

  .bsd-testimonial-headline {
    font-size: 1.05rem;
    line-height: 1.45;
  }

  .bsd-client-item {
    flex: 0 0 calc(50% - 12px);
    height: 52px;
  }

  .bsd-split-grid,
  .bsd-contact-grid,
  .bsd-faq-layout {
    gap: 32px;
  }

  .bsd-feature-image {
    max-height: 260px;
  }

  .bsd-faq-summary {
    padding: 14px 0;
  }

  .bsd-faq-question {
    font-size: 0.95rem;
  }

  .bsd-faq-answer {
    font-size: 0.9rem;
    line-height: 1.65;
  }
}

/* Small Mobile (<= 420px) */
@media (max-width: 420px) {
  .bsd-container {
    padding: 0 14px;
  }

  .bsd-service-card,
  .bsd-why-card,
  .bsd-process-card,
  .bsd-contact-form-card,
  .bsd-testimonial-card {
    padding: 20px 15px;
  }

  .bsd-card-title {
    font-size: 1.15rem;
  }

  .bsd-card-desc {
    font-size: 0.88rem;
  }

  .bsd-btn-phone-white {
    padding: 12px 20px;
    font-size: 15px;
  }

  .bsd-business-problems-banner {
    padding: 45px 14px;
  }

  .bsd-contact-info-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .bsd-client-item {
    max-width: 100%;
    margin: 0 auto;
  }
}

/* ---------- Header ---------- */
.bsd-header{ position: sticky; top:0; z-index:1000; }

.bsd-header-top{ background:#b3b3b3; padding:10px 0; }
.bsd-header-top-inner{ display:flex; align-items:center; justify-content:space-between; font-size:14px; }
.bsd-header-phone{ color:#1a1a1a; text-decoration:none; font-weight:500; }
.bsd-header-phone:hover{ color:#000; }
.bsd-header-socials{ display:flex; gap:16px; }
.bsd-header-socials a{ color:#1a1a1a; opacity:.85; }
.bsd-header-socials a:hover{ opacity:1; }
.bsd-header-socials svg{ width:16px; height:16px; fill:currentColor; display:block; }

.bsd-header-main{ background:#da2026; padding:16px 0; border-bottom:none; transition:box-shadow .2s ease; }
.bsd-header.bsd-scrolled .bsd-header-main{ box-shadow:0 4px 20px rgba(0,0,0,.25); }
.bsd-header-main-inner{ display:flex; align-items:center; justify-content:space-between; gap:20px; }
.bsd-header-logo{ text-decoration:none; }
.bsd-logo-mark{ font-size:26px; font-weight:800; letter-spacing:-0.02em; color:#fff; }
.bsd-logo-mark sup{ font-size:11px; }

.bsd-main-nav > ul{ list-style:none; display:flex; gap:28px; margin:0; padding:0; }
.bsd-main-nav a{ color:#fff; text-decoration:none; font-size:15px; font-weight:600; }
.bsd-main-nav > ul > li > a:hover{ color:#1a1a1a; }

.bsd-has-dropdown{ position:relative; }
.bsd-dropdown{ display:none; position:absolute; top:100%; left:0; background:#fff; min-width:230px; padding:10px 0; border-radius:8px; box-shadow:0 10px 30px rgba(0,0,0,.25); list-style:none; margin-top:14px; flex-direction:column; }
.bsd-has-dropdown:hover .bsd-dropdown{ display:flex; }
.bsd-dropdown li a{ display:block; padding:8px 18px; font-size:14px; color:#1a1a1a; font-weight:500; }
.bsd-dropdown li a:hover{ background:#f5f5f5; color:#da2026; }

.bsd-header-cta{ padding:10px 22px !important; font-size:14px !important; background:#1a1a1a !important; color:#fff !important; box-shadow:none !important; }
.bsd-header-cta:hover{ background:#000 !important; }

.bsd-nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:0; cursor:pointer; padding:6px; }
.bsd-nav-toggle span{ width:24px; height:2px; background:#fff; display:block; transition:.25s; }
.bsd-nav-toggle.bsd-active span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.bsd-nav-toggle.bsd-active span:nth-child(2){ opacity:0; }
.bsd-nav-toggle.bsd-active span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

@media (max-width:960px){
  .bsd-header-cta{ display:none; }
  .bsd-nav-toggle{ display:flex; }
  .bsd-main-nav{ position:fixed; top:0; right:-100%; width:280px; height:100vh; background:#fff; padding:80px 24px 24px; transition:right .3s ease; overflow-y:auto; box-shadow:-4px 0 24px rgba(0,0,0,.2); }
  .bsd-main-nav.bsd-nav-open{ right:0; }
  .bsd-main-nav > ul{ flex-direction:column; gap:0; }
  .bsd-main-nav > ul > li{ border-bottom:1px solid #eee; }
  .bsd-main-nav > ul > li > a{ display:block; padding:14px 0; color:#1a1a1a; }
  .bsd-dropdown{ position:static; display:none; box-shadow:none; margin:0 0 10px; background:transparent; padding-left:10px; }
  .bsd-has-dropdown:hover .bsd-dropdown{ display:none; }
  .bsd-has-dropdown.bsd-open .bsd-dropdown{ display:flex; }
  .bsd-header-top-inner{ font-size:12px; }
}

/* ---------- Scam Alert Marquee ---------- */
.bsd-scam-alert{
  background:#fff;
  border-bottom:1px solid #eee;
  display:flex;
  align-items:center;
  gap:16px;
  padding:8px 24px;
  overflow:hidden;
  white-space:nowrap;
}
.bsd-scam-label{
  color:#da2026;
  font-weight:700;
  font-size:13px;
  flex-shrink:0;
}
.bsd-scam-marquee{
  flex:1;
  overflow:hidden;
  position:relative;
}
.bsd-scam-marquee p{
  display:inline-block;
  color:#da2026;
  font-size:13px;
  font-weight:500;
  padding-left:100%;
  animation:bsdScamScroll 18s linear infinite;
  margin:0;
}
@keyframes bsdScamScroll{
  0%{ transform:translateX(0); }
  100%{ transform:translateX(-100%); }
}

/* ---------- Footer ---------- */
.bsd-footer{ background:#0c0c0c; border-top:1px solid rgba(255,255,255,.08); padding:60px 0 0; }
.bsd-footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:40px; padding-bottom:40px; }
.bsd-footer-logo{ display:block; margin-bottom:16px; }
.bsd-footer-title{ color:#fff; font-size:16px; font-weight:700; margin-bottom:18px; }
.bsd-footer-links{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:10px; }
.bsd-footer-links a, .bsd-footer-contact a{ color:#9a9a97; text-decoration:none; font-size:14px; }
.bsd-footer-links a:hover, .bsd-footer-contact a:hover{ color:#635bff; }
.bsd-footer-contact{ list-style:none; margin:14px 0; padding:0; display:flex; flex-direction:column; gap:8px; }
.bsd-footer-socials{ display:flex; gap:14px; margin-top:10px; }
.bsd-footer-socials a{ color:#fff; opacity:.8; }
.bsd-footer-socials svg{ width:18px; height:18px; fill:currentColor; }
.bsd-footer-bottom{ border-top:1px solid rgba(255,255,255,.08); padding:18px 0; text-align:center; }
.bsd-footer-bottom p{ color:#9a9a97; font-size:13px; margin:0; }
.bsd-footer-bottom a{ color:#fff; text-decoration:none; }

@media (max-width:860px){
  .bsd-footer-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width:520px){
  .bsd-footer-grid{ grid-template-columns:1fr; }
}