/* ======================== ROOT VARIABLES ======================== */
:root {
  --bs-primary: #1d3052;
  --bs-accent: #f68322;
  --bs-accent2: #5787e8;
  --bs-white: #ffffff;
  --bs-light: #f4f6f9;
  --bs-muted: #637488;
  --bs-border: #e2e8f0;
  --bs-shadow: 0 12px 40px rgba(10, 37, 64, 0.12);
  --bs-radius: 16px;
  --bs-font-head: "Tajawal", sans-serif;
  --bs-font-main: "Cairo", sans-serif;
}

/* ======================== HERO SECTION ======================== */
.bs-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 140px 6% 80px;
  background: linear-gradient(
    135deg,
    var(--bs-primary) 0%,
    var(--bs-primary) 55%,
    var(--bs-primary) 100%
  );
  position: relative;
  overflow: hidden;
}

.bs-hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(232, 160, 32, 0.12) 0%,
    transparent 70%
  );
  top: -200px;
  left: -150px;
  animation: bs-floatBg 8s ease-in-out infinite;
}
.bs-hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(0, 198, 162, 0.1) 0%,
    transparent 70%
  );
  bottom: -100px;
  right: -100px;
  animation: bs-floatBg 10s ease-in-out infinite reverse;
}

@keyframes bs-floatBg {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.05);
  }
}

.bs-hero-grid {
  position: absolute;
  inset: 0;
  /* background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); */
  background-size: 60px 60px;
}

/* ---- NEW: two-column wrapper (text on one side / image on the other) ---- */
.bs-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.bs-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  text-align: right;
}

/* ---- NEW: image side ---- */
.bs-hero-image {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(24px);
  animation: bs-fadeUp 0.9s 0.5s forwards;
}
.bs-hero-image .bs-hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 460px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}
.bs-hero-image .bs-hero-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.bs-hero-image .bs-hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 55%,
    rgba(0, 0, 0, 0.55) 100%
  );
  pointer-events: none;
}
.bs-hero-image .bs-hero-image-glow {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(234, 9, 18, 0.25) 0%,
    transparent 70%
  );
  top: -40px;
  left: -40px;
  z-index: -1;
}

.bs-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  /* background: rgba(232,160,32,0.15); */
  border: 1px solid var(--bs-accent);
  color: var(--bs-accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.88rem;
  font-weight: bold;
  margin-bottom: 28px;
  opacity: 0;
  animation: bs-fadeDown 0.7s 0.2s forwards;
}
.bs-hero-badge i {
  font-size: 0.75rem;
}

.bs-hero h1 {
  font-family: var(--bs-font-head);
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--bs-white);
  line-height: 1.2;
  margin-bottom: 28px;
  opacity: 0;
  animation: bs-fadeUp 0.8s 0.4s forwards;
}
.bs-hero h1 .bs-highlight {
  color: var(--bs-accent);
  position: relative;
}

.bs-hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  align-items: stretch;
}
.bs-hero-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 10px 22px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  font-weight: 500;
  opacity: 0;
  transform: translateX(40px);
}
.bs-hero-bullet:nth-child(1) {
  animation: bs-slideIn 0.6s 0.7s forwards;
}
.bs-hero-bullet:nth-child(2) {
  animation: bs-slideIn 0.6s 0.95s forwards;
}
.bs-hero-bullet:nth-child(3) {
  animation: bs-slideIn 0.6s 1.2s forwards;
}
.bs-hero-bullet:nth-child(4) {
  animation: bs-slideIn 0.6s 1.45s forwards;
}

.bs-hero-bullet .bs-icon {
  width: 28px;
  height: 28px;
  background: var(--bs-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--bs-primary);
  flex-shrink: 0;
}

.bs-hero-cta {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  animation: bs-fadeUp 0.7s 1.7s forwards;
  margin-top: 1rem;
}

.bs-btn-primary {
  background: var(--bs-white);
  color: var(--bs-primary);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--bs-font-main);
  box-shadow: 0 4px 24px var(--bs-border);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bs-btn-primary:hover {
  box-shadow: 0 8px 32px var(--bs-border);
  background: var(--bs-border);
}

.bs-btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--bs-white);
  padding: 13px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--bs-font-main);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--bs-accent2);
}
.bs-btn-outline:hover {
  border-color: var(--bs-white);
  background: rgba(255, 255, 255, 0.08);
}

/* ======================== SECTION COMMONS ======================== */
section {
  padding: 90px 6%;
}

.bs-section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bs-accent2);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.bs-section-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--bs-accent2);
}

.bs-section-title {
  font-family: var(--bs-font-head);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--bs-primary);
  line-height: 1.25;
  margin-bottom: 16px;
}
.bs-section-desc {
  color: var(--bs-muted);
  font-size: 1.05rem;
  max-width: 600px;
  line-height: 1.8;
}
.bs-section-head {
  margin-bottom: 56px;
}
.bs-section-head.center {
  text-align: center;
}
.bs-section-head.center .bs-section-label {
  justify-content: center;
}
.bs-section-head.center .bs-section-desc {
  margin: 0 auto;
}

/* ======================== WHY US SECTION ======================== */
.bs-why-us {
  background: var(--bs-white);
  position: relative;
  overflow: hidden;
}
.bs-why-us::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(232, 160, 32, 0.07) 0%,
    transparent 70%
  );
}

.bs-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.bs-why-card {
  background: var(--bs-light);
  border-radius: var(--bs-radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(30px);
}
.bs-why-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.bs-why-card:hover {
  border-color: var(--bs-accent);
  box-shadow: var(--bs-shadow);
  background:
    linear-gradient(135deg, rgba(232, 160, 32, 0.05), rgba(0, 198, 162, 0.04)),
    var(--bs-light);
}

.bs-why-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--bs-primary), #1a4080);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--bs-accent);
  margin-bottom: 22px;
  position: absolute;
  top: 20px;
  left: 24px;
}
.bs-why-card:hover .bs-why-card-icon {
  background: linear-gradient(135deg, #1a4080, var(--bs-primary));
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.25);
}

.bs-why-card h3 {
  font-family: var(--bs-font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--bs-primary);
  margin-bottom: 10px;
}
.bs-why-card a {
  color: var(--bs-accent);
  font-weight: bold;
}
.bs-why-card p {
  color: var(--bs-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

.bs-card-number {
  color: var(--bs-accent);
  font-family: var(--bs-font-head);
  font-size: 3.5rem;
  font-weight: 900;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* ======================== STATS SECTION ======================== */
.bs-stats-section {
  background: linear-gradient(135deg, var(--bs-primary) 0%, #000000 100%);
  padding: 70px 6%;
  position: relative;
  overflow: hidden;
}
.bs-stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); */
  background-size: 50px 50px;
}
.bs-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}
.bs-stat-item {
  text-align: center;
}
.bs-stat-item:hover .bs-stat-num {
  color: var(--bs-border);
}

.bs-stat-icon {
  font-size: 1.8rem;
  color: var(--bs-accent);
  margin-bottom: 10px;
  display: block;
}
.bs-stat-num {
  font-family: var(--bs-font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--bs-accent);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.bs-stat-label {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

/* ======================== FEATURES SECTION ======================== */
.bs-features {
  background: var(--bs-light);
  position: relative;
}
.bs-features-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.bs-features-visual {
  position: relative;
}
.bs-features-visual .bs-main-card {
  background: linear-gradient(135deg, var(--bs-primary) 0%, #000000 100%);
  border-radius: 24px;
  padding: 48px 40px;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(10, 37, 64, 0.3);
}
.bs-features-visual .bs-main-card::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  top: -60px;
  right: -60px;
}
.bs-main-card-stat {
  font-family: var(--bs-font-head);
  font-size: 4rem;
  font-weight: 900;
  color: var(--bs-accent);
  line-height: 1;
  margin-bottom: 8px;
}
.bs-main-card p {
  opacity: 0.8;
  font-size: 1rem;
}

.bs-float-badge {
  position: absolute;
  background: var(--bs-white);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: 0 8px 32px rgba(10, 37, 64, 0.15);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.bs-float-badge-1 {
  bottom: -20px;
  right: -30px;
  animation: bs-floatCard 4s ease-in-out infinite;
}
.bs-float-badge-2 {
  top: -20px;
  left: -30px;
  animation: bs-floatCard 5s ease-in-out infinite reverse;
}

@keyframes bs-floatCard {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.bs-float-badge .bs-fb-icon {
  font-size: 1.4rem;
  color: var(--bs-accent);
}
.bs-float-badge .bs-fb-info strong {
  display: block;
  font-size: 0.9rem;
  color: var(--bs-primary);
  font-weight: 700;
}
.bs-float-badge .bs-fb-info span {
  font-size: 0.78rem;
  color: var(--bs-muted);
}

.bs-features-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.bs-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 24px;
  background: var(--bs-white);
  border-radius: var(--bs-radius);
  border: 1px solid var(--bs-border);
  opacity: 0;
  transform: translateX(20px);
}
.bs-feature-item.visible {
  opacity: 1;
  transform: translateX(0);
}
.bs-feature-item:hover {
  border-color: var(--bs-accent);
  box-shadow: 0 4px 24px rgba(232, 160, 32, 0.12);
}
.bs-feature-icon {
  width: 46px;
  height: 46px;
  background: linear-gradient(135deg, var(--bs-accent2), var(--bs-accent2));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--bs-accent);
  flex-shrink: 0;
}
.bs-feature-item:hover .bs-feature-icon {
  background: linear-gradient(
    135deg,
    rgba(232, 160, 32, 0.3),
    rgba(232, 160, 32, 0.1)
  );
}
.bs-feature-text h4 {
  font-family: var(--bs-font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--bs-primary);
  margin-bottom: 4px;
}
.bs-feature-text p {
  color: var(--bs-muted);
  font-size: 0.9rem;
}

/* ======================== FAQ SECTION ======================== */
.bs-faq {
  position: relative;
  background: var(--bs-white);
  padding: 90px 6%;
}
.bs-faq::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(0, 198, 162, 0.05) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 80% 50%,
      rgba(232, 160, 32, 0.05) 0%,
      transparent 60%
    );
}

.bs-faq-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  position: relative;
}

.bs-faq-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bs-faq-illustration {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(135deg, var(--bs-primary) 0%, #000000 100%);
  border-radius: 24px;
  padding: 44px 32px;
  color: white;
  box-shadow: 0 20px 60px rgba(10, 37, 64, 0.2);
  position: sticky;
  top: 100px;
}
.bs-faq-illustration h3 {
  font-family: var(--bs-font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.bs-faq-illustration p {
  opacity: 0.75;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.bs-faq-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bs-accent);
  color: var(--bs-primary);
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: var(--bs-font-main);
}
.bs-faq-contact-btn:hover {
  background: var(--bs-accent);
  box-shadow: 0 6px 20px rgba(233, 231, 228, 0.35);
}

.bs-title-inner {
  margin-bottom: 28px;
}
.bs-title-inner .bs-sub-text {
  letter-spacing: 2px;
  color: var(--bs-accent2);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.bs-title-inner .bs-title {
  font-family: var(--bs-font-head);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1.25;
  color: var(--bs-primary);
  margin: 0;
}

.bs-accordion-item {
  border-bottom: 1px solid var(--bs-border);
  border-radius: 12px;
  margin-bottom: 8px;
  overflow: hidden;
}
.bs-accordion-item:hover {
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
}
.bs-accordion-item.active {
  background: var(--bs-light);
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
}
.bs-accordion-item.active .bs-accordion-btn {
  background: var(--bs-light);
}

.bs-accordion-btn {
  width: 100%;
  text-align: right;
  padding: 18px 20px 18px 52px;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--bs-font-main);
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  color: var(--bs-primary);
  position: relative;
}
.bs-accordion-btn:hover {
  background: rgba(10, 37, 64, 0.03);
}

.bs-accordion-btn::before {
  content: "+";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--bs-accent);
  width: 28px;
  height: 28px;
  background: var(--bs-accent2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bs-accordion-item.active .bs-accordion-btn::before {
  content: "−";
  background: var(--bs-accent);
  color: white;
}

.bs-accordion-body {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
}
.bs-accordion-item.active .bs-accordion-body {
  max-height: 500px;
  padding: 4px 20px 18px;
}
.bs-accordion-item.active .bs-accordion-body p {
  padding: 14px 18px;
  border-radius: 10px;
  border-right: 4px solid var(--bs-accent);
  background-color: var(--bs-white);
  color: var(--bs-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

/* ======================== BLOG SERVICES SECTION ======================== */
.bs-services-section {
  margin: 0;
  padding: 70px 6%;
  background: var(--bs-light);
  position: relative;
  overflow: hidden;
}
.bs-services-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: radial-gradient(
    circle,
    rgba(0, 198, 162, 0.08) 0%,
    transparent 70%
  );
}

.bs-services-section .bs-services-head {
  text-align: center;
  margin-bottom: 44px;
}
.bs-services-section .bs-services-head .bs-sub-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bs-accent2);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.bs-services-section .bs-services-head .bs-sub-label::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--bs-accent2);
}
.bs-services-section .bs-services-head h2 {
  font-family: var(--bs-font-head);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--bs-primary);
}

.bs-services-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.bs-services-links li {
  flex: 0 0 220px;
  max-width: 90vw;
}

.bs-services-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bs-white);
  color: var(--bs-primary);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--bs-font-main);
  border: 1px solid var(--bs-border);
}
.bs-services-links a:hover {
  background: var(--bs-primary);
  color: var(--bs-white);
  border-color: var(--bs-primary);
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.2);
}
.bs-services-links a:hover .bs-srv-icon {
  color: var(--bs-accent);
}
.bs-services-links a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
}
.bs-srv-icon {
  font-size: 1.2rem;
  color: var(--bs-accent);
  flex-shrink: 0;
}
/* ================= SERVICE DETAILS ================= */
.bs-service-details {
  background: var(--bs-light);
}

.bs-service-content {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 50px;
  align-items: start;
}

.bs-service-text h3 {
  font-family: var(--bs-font-head);
  color: var(--bs-primary);
  font-size: 1.2rem;
  margin-bottom: 10px;
  margin-top: 20px;
  font-weight: 800;
}

.bs-service-text p {
  color: var(--bs-muted);
  line-height: 1.9;
  font-size: 0.95rem;
}

.bs-service-list {
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.bs-service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--bs-muted);
  font-size: 0.95rem;
}
.bs-service-list li a {
  color: var(--bs-accent);
  font-weight: bold;
}

.bs-service-list i {
  color: var(--bs-accent);
}

.bs-service-box {
  background: var(--bs-white);
  border-radius: var(--bs-radius);
  padding: 30px 24px;
  box-shadow: var(--bs-shadow);
  position: sticky;
  top: 100px;
}

.bs-service-box h4 {
  font-family: var(--bs-font-head);
  margin-bottom: 20px;
  color: var(--bs-primary);
  font-size: 1.2rem;
}

.bs-box-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

.bs-box-item i {
  font-size: 1.2rem;
  color: var(--bs-accent);
}

.bs-box-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--bs-primary);
}

.bs-box-item span {
  font-size: 0.8rem;
  color: var(--bs-muted);
}

.bs-service-box .bs-btn-primary {
  margin-top: 15px;
  width: 100%;
  justify-content: center;
}

@media (max-width: 992px) {
  .bs-service-content {
    grid-template-columns: 1fr;
  }

  .bs-service-box {
    position: static;
  }
}
/* ======================== ANIMATIONS ======================== */
@keyframes bs-fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bs-fadeDown {
  from {
    opacity: 0;
    transform: translateY(-16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bs-slideIn {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 992px) {
  .bs-hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .bs-hero-content {
    text-align: center;
    margin: 0 auto;
  }
  .bs-hero-bullets {
    align-items: center;
  }
  .bs-hero-cta {
    justify-content: center;
  }
  .bs-hero-image {
    order: 0;
  }
  .bs-hero-image .bs-hero-image-frame {
    max-width: 340px;
  }
  .bs-features-layout {
    grid-template-columns: 1fr;
  }
  .bs-features-visual {
    display: none;
  }
  .bs-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .bs-faq-container {
    flex-direction: column;
    gap: 30px;
  }
  .bs-faq-illustration {
    position: static;
    max-width: 100%;
  }
  .bs-float-badge-1,
  .bs-float-badge-2 {
    display: none;
  }
}
@media (max-width: 768px) {
  section {
    padding: 70px 5%;
  }
  .bs-hero {
    padding: 110px 5% 70px;
  }
  .bs-hero-bullets {
    align-items: stretch;
  }
  .bs-hero-image .bs-hero-image-frame {
    max-width: 280px;
  }
  .bs-services-links li {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
@media (max-width: 576px) {
  .bs-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .bs-stat-num {
    font-size: 2.2rem;
  }
  .bs-accordion-btn {
    font-size: 0.9rem;
  }
}
