/* =========================================================
   OUTDO SYSTEM — about.css  (LIGHT THEME)
   ========================================================= */

:root {
  --red: #e31e24;
  --red-dark: #b01519;
  --red-light: rgba(227, 30, 36, 0.08);
  --red-glow: rgba(227, 30, 36, 0.18);
  --text: #1a1a1a;
  --text-muted: #666;
  --text-light: #999;
  --bg: #ffffff;
  --bg2: #f8f8f8;
  --bg3: #f2f2f2;
  --dark: #111111;
  --dark2: #1e1e1e;
  --border: rgba(0, 0, 0, 0.09);
  --shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 16px 60px rgba(0, 0, 0, 0.11);
  --shadow-red: 0 8px 32px rgba(227, 30, 36, 0.28);
  --radius: 12px;
  --radius-lg: 20px;
  --trans: 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  /* font-family: "Poppins", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ---- Utility ---- */
.section-pad {
  padding: 100px 0;
}
.z-1 {
  position: relative;
  z-index: 1;
}
.rounded-xl {
  border-radius: var(--radius-lg);
}
.shadow-lg {
  box-shadow: var(--shadow-md);
}
.shadow-md {
  box-shadow: var(--shadow);
}
.text-red {
  color: var(--red);
}
.text-red-light {
  color: #ff6b6f;
}
.mb-5 {
  margin-bottom: 3rem !important;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--red);
}
.section-label.mx-auto {
  justify-content: center;
}
.section-label.light {
  color: rgba(255, 255, 255, 0.75);
}
.section-label.light::before {
  background: rgba(255, 255, 255, 0.5);
}

.section-title {
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  color: var(--text);
}
.section-title.white {
  color: #fff;
}
.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}
.section-body {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ---- Buttons ---- */
.btn-red {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--trans);
  box-shadow: var(--shadow-red);
}
.btn-red:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(227, 30, 36, 0.45);
}
.btn-outline-dark-custom {
  background: white;
  color: var(--text);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--trans);
}
.btn-outline-dark-custom:hover {
  background: white;
  color: var(--red);
  border-color: var(--text);
  box-shadow: 0 14px 40px rgba(227, 30, 36, 0.45);
}
.btn-white-red {
  background: #fff;
  color: var(--red);
  border: none;
  border-radius: var(--radius);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--trans);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.btn-white-red:hover {
  transform: translateY(-2px);
  color: var(--red-dark);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
}
.btn-outline-cta {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius);
  padding: 14px 32px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--trans);
}
.btn-outline-cta:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* =========================================================
   PRELOADER
   ========================================================= */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
#preloader.hide {
  opacity: 0;
  visibility: hidden;
}
.pre-inner {
  text-align: center;
}
.pre-logo {
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 4px;
  color: var(--text);
  margin-bottom: 24px;
}
.pre-logo span {
  color: var(--red) !important;
}
.pre-bar {
  width: 350px;
  height: 3px;
  background: var(--bg3);
  border-radius: 99px;
  overflow: hidden;
}
.pre-fill {
  height: 100%;
  width: 0;
  background: var(--red);
  border-radius: 99px;
  animation: preLoad 1.5s ease forwards;
}
@keyframes preLoad {
  to {
    width: 100%;
  }
}

/* =========================================================
   NAVBAR
   ========================================================= */
#mainNav {
  padding: 18px 0;
  transition: all 0.35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}
#mainNav.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}
.nav-logo {
  height: 46px;
  width: auto;
}
#mainNav.scrolled .nav-logo {
  filter: none;
}
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.9) !important;
  /* font-size: 0.85rem; */
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 14px !important;
  position: relative;
  transition: color 0.2s;
}

.navbar-nav .nav-link-2 {
  color: rgba(11, 11, 11, 0.9) !important;
  /* font-size: 0.85rem; */
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 6px 14px !important;
  position: relative;
  transition: color 0.2s;
}
#mainNav.scrolled .navbar-nav .nav-link {
  color: var(--text-muted) !important;
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
     bottom: 18px;
    left: 80px;
  width: 0 !important;
  height: 2px;
  background: none;
  transition: width 0.3s;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active,
#mainNav.scrolled .navbar-nav .nav-link:hover {
  color: var(--red) !important;
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: calc(100% - 28px);
}
.toggler-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
}
.toggler-icon span {
  display: block;
  width: 24px;
  height: 2px;
  background: #ffffff;
  transition: var(--trans);
  border-radius: 2px;
}
#mainNav.scrolled .toggler-icon span {
  background: var(--text);
}
.navbar-toggler {
  border: none;
  box-shadow: none;
  background: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}
@media (max-width: 991px) {
  .navbar-collapse {
    background: #212529;
    backdrop-filter: blur(20px);
    padding: 20px;
    margin-top: 10px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .navbar-nav .nav-link {
    color: white !important;
    padding: 10px 16px !important;
  }
  .ms-lg-3 {
    margin-top: 12px;
  }
  .btn-red {
    display: block;
    text-align: center;
    width: 100%;
  }

  .btn-outline-dark-custom {
    width: 100%;
  }
}



/* =========================================================
   HERO SECTION
   ========================================================= */
.about-hero {
  min-height: 109vh;
  background: var(--dark2);
  position: relative;
  display: flex;
  align-items: center;
  /* overflow: hidden; */
  padding-top: 90px;
}
.ah-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.ah-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.ahs {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.ahs-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.2), transparent 70%);
  top: -150px;
  right: -150px;
  animation: floatS 8s ease-in-out infinite;
}
.ahs-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.08), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: floatS 12s ease-in-out infinite reverse;
}
.ahs-3 {
  width: 200px;
  height: 200px;
  background: rgba(227, 30, 36, 0.06);
  top: 40%;
  left: 25%;
  animation: floatS 10s ease-in-out infinite;
}
@keyframes floatS {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}
.hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}
.hero-breadcrumb a:hover {
  color: var(--red);
}
.hero-breadcrumb .active {
  color: var(--red);
  font-weight: 600;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(227, 30, 36, 0.12);
  border: 1px solid rgba(227, 30, 36, 0.35);
  color: #ff6b6f;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.bdot {
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(227, 30, 36, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(227, 30, 36, 0);
  }
}

.hero-h1 {
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 62px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -1px;
  color: #fff;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 520px;
  margin-bottom: 24px;
  line-height: 1.8;
}
.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}
.hero-chips span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.hero-chips .bi-check-circle-fill {
  color: var(--red);
}

/* Hero Image */
.hero-img-wrap {
  position: relative;
}
.hero-img-main {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  object-fit: cover;
  height: 480px;
}
.hero-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(20px);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  animation: floatBadge 4s ease-in-out infinite;
}
.hero-float i {
  font-size: 1.3rem;
  color: var(--red);
}
.hero-float strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
}
.hero-float span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
}
.hf-1 {
  bottom: 100px;
  left: -20px;
  animation-delay: 0s;
}
.hf-2 {
  top: 40px;
  right: -20px;
  animation-delay: 1.5s;
}
@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.hero-img-badge {
  position: absolute;
  bottom: -20px;
  right: 30px;
  background: var(--red);
  border-radius: var(--radius);
  padding: 14px 20px;
  text-align: center;
  box-shadow: var(--shadow-red);
}
.hero-img-badge span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}
.hero-img-badge strong {
  display: block;
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.hero-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
}
.hero-wave svg {
  width: 100%;
  height: 80px;
}

/* =========================================================
   OUR STORY
   ========================================================= */
.story-img-wrap {
  position: relative;
  padding-bottom: 80px;
}
.story-img-main {
  width: 100%;
  object-fit: cover;
  height: 400px;
}
.story-img-secondary {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 55%;
  height: 200px;
  object-fit: cover;
  border: 4px solid #fff;
}
.story-glow {
  position: absolute;
  bottom: 60px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--red-glow);
  filter: blur(60px);
  z-index: -1;
}

/* Mini Timeline */
.mini-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-left: 2px solid var(--border);
  padding-left: 24px;
}
.mt-item {
  position: relative;
  padding: 12px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.mt-item::before {
  content: "";
  position: absolute;
  left: -31px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--bg);
  border: 3px solid var(--red);
}
.mti-year {
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--red);
  min-width: 45px;
}
.mti-dot {
  display: none;
}
.mti-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* =========================================================
   FOUNDER SECTION
   ========================================================= */
.founder-section {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.founder-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 70% 50%,
    rgba(227, 30, 36, 0.12),
    transparent 60%
  );
}
.founder-img-wrap {
  position: relative;
  display: inline-block;
}
.founder-img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(227, 30, 36, 0.5);
  box-shadow: 0 0 60px rgba(227, 30, 36, 0.2);
}
.founder-ring {
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 2px dashed rgba(227, 30, 36, 0.3);
  animation: spinSlow 30s linear infinite;
}
@keyframes spinSlow {
  to {
    transform: rotate(360deg);
  }
}
.founder-badge-role {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: var(--shadow-red);
}
.founder-quote {
  position: relative;
  margin-bottom: 28px;
}
.founder-qi {
  font-size: 5rem;
  color: rgba(227, 30, 36, 0.15);
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
  pointer-events: none;
}
.founder-quote p {
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.85;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.founder-sig {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
}
.sig-line {
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 1px;
}
.sig-role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

/* =========================================================
   STATS
   ========================================================= */
.stats-section {
  background: var(--bg2);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  box-shadow: var(--shadow);
}
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
}
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(227, 30, 36, 0.12);
  border-color: rgba(227, 30, 36, 0.3);
}
.stat-card.featured {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-color: var(--red);
}
.stat-card.featured .sc-icon,
.stat-card.featured .sc-num,
.stat-card.featured .sc-label {
  color: #fff;
}
.stat-card.featured .sc-sub {
  color: rgba(255, 255, 255, 0.7);
}
.stat-card.featured::before {
  background: rgba(255, 255, 255, 0.3);
}
.sc-icon {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 12px;
}
.sc-num {
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.sc-label {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.sc-sub {
  font-size: 0.75rem;
  color: var(--text-light);
}
@media (max-width: 767px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MISSION & VISION
   ========================================================= */
.mv-section {
  background: var(--bg);
}
.mv-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 20px 30px 20px;
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  box-shadow: var(--shadow);
}
.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.mv-card.mission {
  border-top: 3px solid var(--red);
}
.mv-card.vision {
  border-top: 3px solid var(--dark);
}
.mvc-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.mvc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--red-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--red);
  transition: var(--trans);
}
.mv-card:hover .mvc-icon {
  background: var(--red);
  color: #fff;
}
.mvc-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
}
.mv-card h3 {
  /* font-family: "Barlow Condensed", sans-serif; */
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.2;
}
.mv-card > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}
.mvc-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mvc-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.mvc-list li .bi-check2-circle {
  color: var(--red);
  font-size: 1rem;
  min-width: 18px;
  margin-top: 2px;
}
.mvc-glow {
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--red-light);
  filter: blur(50px);
  pointer-events: none;
}

/* =========================================================
   CORE VALUES
   ========================================================= */
.values-section {
  position: relative;
  overflow: hidden;
}
.values-bg {
  position: absolute;
  inset: 0;
  background: var(--bg2);
  z-index: 0;
}
.value-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--trans);
  cursor: default;
  box-shadow: var(--shadow);
  height: 100%;
}
.value-card:hover {
  border-color: rgba(227, 30, 36, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(227, 30, 36, 0.1);
}
.vc-num {
  position: absolute;
  top: 12px;
  right: 20px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  /* font-family: "Barlow Condensed", sans-serif; */
  font-size: 4rem;
  font-weight: 900;
  color: rgba(227, 30, 36, 0.06);
  line-height: 1;
  pointer-events: none;
}
.vc-icon {
  width: 56px;
  height: 56px;
  background: var(--red-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: 18px;
  transition: var(--trans);
}
.value-card:hover .vc-icon {
  background: var(--red);
  color: #fff;
}
.value-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}
.value-card p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-section {
  background: var(--bg);
}
.why-img-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.why-img {
  width: 100%;
  /* height: 280px; */
  object-fit: cover;
}
.why-img-badge {
  position: absolute;
  bottom: -32px;
  right: 16px;
  background: var(--red);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-red);
}
.why-img-badge i {
  font-size: 1.4rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.why-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 20px;
  transition: var(--trans);
  cursor: default;
}
.why-item:hover {
  background: #fff;
  border-color: rgba(227, 30, 36, 0.3);
  box-shadow: 0 12px 40px rgba(227, 30, 36, 0.1);
  transform: translateY(-4px);
}
.wi-icon {
  font-size: 1.8rem;
  color: var(--red);
  margin-bottom: 12px;
}
.why-item h5 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--text);
}
.why-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 575px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   TEAM SECTION
   ========================================================= */
.team-section {
  background: var(--bg2);
  position: relative;
  overflow: hidden;
}
.team-bg-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}
.team-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
  cursor: default;
  box-shadow: var(--shadow);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(227, 30, 36, 0.12);
  border-color: rgba(227, 30, 36, 0.3);
}
.team-card.featured-team {
  border-top: 3px solid var(--red);
}
.tc-img-wrap {
  position: relative;
  overflow: hidden;
}
.tc-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: var(--trans);
}
.team-card:hover .tc-img {
  transform: scale(1.06);
}
.tc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--trans);
}
.team-card:hover .tc-overlay {
  opacity: 1;
}
.tc-socials {
  display: flex;
  gap: 10px;
}
.tc-socials a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  transition: var(--trans);
}
.tc-socials a:hover {
  background: var(--red);
  border-color: var(--red);
  transform: scale(1.1);
}
.tc-info {
  padding: 22px;
}
.tc-info h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}
.tc-role {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--red);
}
.tc-bio {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 8px 0 0;
  line-height: 1.6;
}

/* =========================================================
   EXPERTISE
   ========================================================= */
.expertise-section {
  background: var(--bg);
}
.expertise-img {
  width: 100%;
  /* height: 260px; */
  object-fit: cover;
}
.skills-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.si-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.si-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}
.si-name i {
  color: var(--red);
}
.si-pct {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--red);
}
.si-bar {
  height: 6px;
  background: var(--bg3);
  border-radius: 99px;
  overflow: hidden;
}
.si-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  border-radius: 99px;
  transition: width 1.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.si-fill.animated {
  width: var(--pct);
}

/* =========================================================
   JOURNEY TIMELINE
   ========================================================= */
.journey-section {
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}
.journey-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(227, 30, 36, 0.1),
    transparent 70%
  );
}
.journey-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.jt-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(227, 30, 36, 0.5),
    transparent
  );
  transform: translateX(-50%);
}
.jt-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}
.jt-item.left {
  flex-direction: row;
  padding-right: calc(50% + 40px);
}
.jt-item.right {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
}
.jt-dot {
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--red);
  border: 3px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 16px rgba(227, 30, 36, 0.5);
  z-index: 2;
}
.jt-card {
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: var(--radius-lg);
  padding: 24px !important;
  flex: 1 !important;
  backdrop-filter: blur(10px);
  transition: var(--trans);
}
.jt-item:hover .jt-card {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(227, 30, 36, 0.3);
}
.jt-year {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  /* font-family: "Barlow Condensed", sans-serif; */
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 8px;
}
.jt-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.jt-card p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 14px;
}
.jt-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.jt-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  background: rgba(227, 30, 36, 0.15);
  border: 1px solid rgba(227, 30, 36, 0.3);
  color: #ff6b6f;
  padding: 3px 10px;
  border-radius: 99px;
}

@media (max-width: 767px) {
  .jt-line {
    left: 20px;
  }
  .jt-item.left,
  .jt-item.right {
    flex-direction: row;
    padding-left: 52px;
    padding-right: 0;
  }
  .jt-dot {
    left: 20px;
  }
}

/* =========================================================
   AWARDS
   ========================================================= */
.awards-section {
  background: var(--bg);
}
.award-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--trans);
  height: 100%;
  box-shadow: var(--shadow);
  cursor: default;
}
.award-card:hover {
  transform: translateY(-6px);
  border-color: rgba(227, 30, 36, 0.3);
  box-shadow: 0 20px 50px rgba(227, 30, 36, 0.1);
}
.awc-icon {
  font-size: 2.5rem;
  color: var(--red);
  margin-bottom: 14px;
}
.award-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.awc-year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--red);
  background: var(--red-light);
  padding: 3px 12px;
  border-radius: 99px;
  margin-bottom: 12px;
}
.award-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* =========================================================
   INDUSTRIES
   ========================================================= */
.industries-section {
  position: relative;
  overflow: hidden;
}
.industries-bg {
  position: absolute;
  inset: 0;
  background: var(--bg2);
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 14px;
}
.ind-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 12px;
  text-align: center;
  transition: var(--trans);
  cursor: default;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}
.ind-item:hover {
  background: var(--red-light);
  border-color: rgba(227, 30, 36, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(227, 30, 36, 0.1);
}
.ind-icon {
  font-size: 1.9rem;
  color: var(--red);
  margin-bottom: 8px;
  transition: var(--trans);
}
.ind-item:hover .ind-icon {
  transform: scale(1.15);
}
.ind-item span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}
.ind-item:hover span {
  color: var(--red);
}
@media (max-width: 1199px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 767px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
   CULTURE
   ========================================================= */
.culture-section {
  background: var(--bg);
}
.culture-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
}
.cg-main,
.cg-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.cg-main img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: var(--trans);
}
.cg-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cg-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: var(--trans);
}
.cg-main:hover img,
.cg-item:hover img {
  transform: scale(1.04);
}
.cg-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
}
.culture-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cv-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: var(--trans);
}
.cv-item:hover {
  background: #fff;
  border-color: rgba(227, 30, 36, 0.25);
  box-shadow: 0 8px 30px rgba(227, 30, 36, 0.08);
}
.cv-item i {
  font-size: 2rem;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
}
.cv-item h5 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.cv-item p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .culture-grid {
    grid-template-columns: 1fr;
  }
  .cg-main img {
    height: 300px;
  }
  .culture-values {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 575px) {
  .culture-values {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testi-section {
  position: relative;
  overflow: hidden;
}
.testi-bg {
  position: absolute;
  inset: 0;
  background: var(--bg2);
}
.testi-bg::before {
  content: '"';
  position: absolute;
  font-size: 20rem;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  /* font-family: serif;  */
  color: rgba(227, 30, 36, 0.04);
  top: -40px;
  left: 40px;
  line-height: 1;
  pointer-events: none;
}
.testiSwiper {
  padding-bottom: 60px !important;
}
.t-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.t-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--red);
}
.t-card:hover {
  box-shadow: 0 16px 50px rgba(227, 30, 36, 0.1);
  border-color: rgba(227, 30, 36, 0.2);
}
.t-stars {
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.t-card > p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.t-client {
  display: flex;
  align-items: center;
  gap: 14px;
}
.t-avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: #fff;
}
.t-client strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
}
.t-client span {
  font-size: 0.78rem;
  color: var(--text-light);
}
.swiper-button-prev,
.swiper-button-next {
  color: var(--red) !important;
  background: #fff;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: var(--trans);
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 0.9rem !important;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--red);
  color: #fff !important;
  border-color: var(--red);
}
.swiper-pagination-bullet {
  background: #ccc !important;
}
.swiper-pagination-bullet-active {
  background: var(--red) !important;
}

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #c8181e, #8b0000, #4a0000);
  position: relative;
  overflow: hidden;
}
.cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ctas {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  filter: blur(60px);
}
.ctas-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  right: -100px;
}
.ctas-2 {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -50px;
}
.cta-h2 {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  /* font-family: "Barlow Condensed", sans-serif;  */
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  margin: 16px 0;
  line-height: 1.05;
  letter-spacing: -1px;
}
.cta-h2 span {
  color: rgba(255, 255, 255, 0.6);
}
.cta-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}
.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.cta-trust span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
  display: flex;
  align-items: center;
  gap: 6px;
}
.cta-trust .bi-check-circle-fill {
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
  /* background: #050505; */
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background-image: url(../img/footer-bg.jpg);
}
.footer-top {
  padding: 70px 0 50px;
}
.footer-logo {
  height: 44px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border: 1.5px solid #ff1e1e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.footer-socials a:hover {
  background: #ff1e1e;
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 0 20px rgba(255, 30, 30, 0.4);
}
.footer-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--red);
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.996);
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before {
  /* content: "→"; */
  font-size: 0.7rem;
  color: var(--red);
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--trans);
}
.footer-links a:hover {
  color: #c81920;
}
.footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
}
.footer-contact li i {
  color: var(--red);
  min-width: 16px;
  margin-top: 2px;
}
.footer-contact li a {
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.2s;
}
.footer-contact li a:hover {
  color: var(--red);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  border-top: 1px solid rgb(197 14 14);
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgb(255, 255, 255);
  margin: 0;
}
.text-red {
  color: var(--red);
}

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.1rem;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: var(--trans);
  box-shadow: var(--shadow-red);
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(227, 30, 36, 0.5);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 767px) {
  .section-pad {
    padding: 70px 0;
  }
  .hero-h1 {
    font-size: 2.4rem;
  }
  .hero-ctas,
  .cta-btns {
    flex-direction: column;
    align-items: center;
  }
  .hero-img-main {
    height: 320px;
  }
  .hf-1,
  .hf-2 {
    display: none;
  }
  .story-img-secondary {
    display: none;
  }
  .story-img-wrap {
    padding-bottom: 0;
  }
  .founder-img {
    width: 220px;
    height: 220px;
  }
  .back-to-top {
    bottom: 20px;
    right: 20px;
  }
}
[data-aos] {
  pointer-events: none;
}
[data-aos].aos-animate {
  pointer-events: auto;
}

.nav-logo {
  height: 62px;
  transition: all 0.3s ease;
}

.logo-sticky {
  display: none;
}

/* Sticky Navbar */
.navbar.scrolled .logo-default {
  display: none;
}

.navbar.scrolled .logo-sticky {
  display: block;
}

/* =========================================================
   SERVICE PAGE SPECIFIC STYLES (Extensions to about.css)
   ========================================================= */

/* Service Hero Section */
.service-hero {
  min-height: 90vh;
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg) 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}

.service-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 20%,
    rgba(227, 30, 36, 0.05) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.service-hero-content {
  position: relative;
  z-index: 1;
}

.service-hero h1 {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 20px;
}

.service-hero h1 span {
  color: var(--red);
}

.service-hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.service-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-hero-image {
  position: relative;
  margin-top: 40px;
}

.service-hero-image img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  max-height: 400px;
  object-fit: cover;
  width: 100%;
}

/* About Service Section */
.about-service {
  background: var(--bg);
  padding: 100px 0;
}

.about-service-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  overflow: hidden;
  height: 100%;
  /* min-height: 400px; */
}

.about-service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-service-content h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-service-content h2 span {
  color: var(--red);
}

.about-service-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg2);
  border-radius: var(--radius);
  border-left: 4px solid var(--red);
  transition: var(--trans);
}

.highlight-item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
}

.highlight-item i {
  color: var(--red);
  font-size: 1.3rem;
  min-width: 24px;
  margin-top: 2px;
}

.highlight-item span {
  font-weight: 600;
  color: var(--text);
}

/* Features Section */
.features-section {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg) 100%);
  padding: 100px 0;
}

.feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--trans);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(227, 30, 36, 0.15);
  border-color: var(--red);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  color: white;
  margin: 0 auto 20px;
  transition: var(--trans);
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex-grow: 1;
}

/* Benefits Section */
.benefits-section {
  background: var(--bg);
  padding: 100px 0;
}

.benefit-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--trans);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.benefit-item:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.6rem;
  flex-shrink: 0;
}

.benefit-content h5 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.benefit-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Process Section */
.process-section {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg) 100%);
  padding: 100px 0;
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(199px, 1fr));
  gap: 20px;
  margin-top: 60px;
  position: relative;
}
.process-timeline-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(254px, 1fr));
  gap: 20px;
  margin-top: 60px;
  position: relative;
}

.process-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--trans);
  position: relative;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 9px;
  right: 0;
  height: 4px;
  /* width: 80px       ; */
  background: linear-gradient(90deg, var(--red), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.process-step:hover::before {
  transform: scaleX(1);
}

.process-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 36px rgba(227, 30, 36, 0.1);
  border-color: var(--red);
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  color: white;
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 16px;
  transition: var(--trans);
}

.process-step:hover .process-number {
  transform: scale(1.1);
}

.process-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}

/* Why Choose Section */
.why-choose-service {
  background: var(--bg);
  padding: 100px 0;
}

.why-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--trans);
  text-align: center;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(227, 30, 36, 0.03), transparent);
}

.why-icon {
  width: 60px;
  height: 60px;
  background: var(--red-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--red);
  margin: 0 auto 16px;
  transition: var(--trans);
}

.why-card:hover .why-icon {
  background: var(--red);
  color: white;
  transform: scale(1.15);
}

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

.why-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Gallery Section */
.gallery-section {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg) 100%);
  padding: 100px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 60px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  transition: var(--trans);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--trans);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.7);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(227, 30, 36, 0.9),
    rgba(176, 21, 25, 0.9)
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
  padding: 20px;
  text-align: center;
  color: white;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.gallery-overlay p {
  font-size: 0.85rem;
  opacity: 0.9;
}

/* FAQ Section */
.faq-section {
  background: var(--bg);
  padding: 100px 0;
}

.faq-container {
  max-width: 750px;
  margin: 0 auto;
  margin-top: 60px;
}

.faq-item {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--trans);
}

.faq-item.active {
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(227, 30, 36, 0.15);
}

.faq-question {
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  color: var(--dark);
  user-select: none;
  transition: var(--trans);
}

.faq-item.active .faq-question {
  color: var(--red);
  background: var(--red-light);
}

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

.faq-arrow {
  font-size: 1.2rem;
  color: var(--red);
  transition: transform var(--trans);
  min-width: 20px;
}

.faq-item.active .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--trans);
  background: var(--bg);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 400px;
  padding: 20px;
  border-top: 1px solid var(--border);
}

/* Related Services Section */
.related-section {
  background: linear-gradient(135deg, var(--bg2) 0%, var(--bg) 100%);
  padding: 100px 0;
}

.related-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: var(--trans);
  height: 100%;
}

.related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
  border-color: var(--red);
}

.related-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  color: var(--red) !important;
}

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

.related-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.related-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--trans);
}

.related-link:hover {
  gap: 10px;
  color: var(--red-dark);
}

/* Contact Section */
.contact-section {
  background: var(--bg);
  padding: 100px 0;
}

.contact-form {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 100%;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--bg);
  transition: var(--trans);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(193px, 1fr));
  gap: 24px;
  margin-bottom: 60px;
}

.info-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  transition: var(--trans);
}

.info-box:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
}

.info-icon {
  width: 50px;
  height: 50px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--red);
  margin: 0 auto 12px;
}

.info-box h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 6px;
}

.info-box p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.info-box a {
  color: var(--text-muted);
  transition: color var(--trans);
}

.info-box a:hover {
  color: var(--red);
}

/* Responsive Service Page */
@media (max-width: 768px) {
  .service-hero {
    padding-top: 80px;
    padding-bottom: 40px;
  }

  .service-hero h1 {
    font-size: 2rem;
  }

  .service-hero-subtitle {
    font-size: 1rem;
  }

  .service-hero-buttons {
    flex-direction: column;
  }

  .service-hero-buttons .btn-red,
  .service-hero-buttons .btn-outline-dark-custom {
    width: 100%;
  }

  .process-timeline {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .contact-form {
    padding: 24px;
  }

  .about-service-img {
    min-height: 100%;
    margin-bottom: 30px;
  }

  .mb-60 {
    margin-bottom: 40px !important;
  }
}

@media (max-width: 480px) {
  .service-hero h1 {
    font-size: 1.5rem;
  }

  .service-hero-subtitle {
    font-size: 0.95rem;
  }

  .feature-card,
  .benefit-item,
  .why-card {
    padding: 20px;
  }

  .process-timeline {
    grid-template-columns: 1fr;
  }

  .contact-form {
            padding: 10px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .hero-section {
    width: 100%;
  }
  .hero-content {
    width: 100%;
    max-width: 600px;
  }
}

.navbar .nav-link.active {
  color: #ca2e34 !important;
  font-weight: 600;
}

/* ================================== */

/* ---- Hero: light gradient override ---- */

.gallery-item-1 img{
  object-fit: fill !important;
}


.sw-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f8f9fc 0%, #ffffff 50%, #fff5f5 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: 60px;
}
.sw-hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.sw-circle-1 {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.06), transparent 70%);
  top: -200px;
  right: -200px;
  animation: floatS 10s ease-in-out infinite;
}
.sw-circle-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.04), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: floatS 14s ease-in-out infinite reverse;
}
.sw-dots-grid {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    circle,
    rgba(0, 0, 0, 0.06) 1px,
    transparent 1px
  );
  background-size: 32px 32px;
  opacity: 0.5;
}

/* Hero text dark (light theme) */
.sw-hero .hero-h1 {
  color: var(--text);
}
.sw-hero .hero-sub {
  color: var(--text-muted);
}
.sw-hero .hero-breadcrumb a {
  color: var(--text-muted);
}
.sw-hero .hero-breadcrumb {
  color: var(--text-light);
}
.sw-hero .hero-chips span {
  color: var(--text-muted);
}
.sw-hero .hero-badge {
  background: rgba(227, 30, 36, 0.08);
  border-color: rgba(227, 30, 36, 0.25);
  color: var(--red);
}

/* Hero image light shadow */
.sw-hero .hero-img-main {
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.14);
}
.sw-hero .hero-float {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--border);
  color: var(--text);
  box-shadow: var(--shadow-md);
}
.sw-hero .hero-float span {
  color: var(--text-muted);
}

/* ---- Overview section ---- */
.sw-overview {
  background: #fff;
}
.sw-overview-img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

/* highlight list */
.sw-highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.sw-highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--text-muted);
}
.sw-highlight-list li:last-child {
  border-bottom: none;
}
.sw-highlight-list li i {
  color: var(--red);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ---- Process Timeline ---- */
.sw-process {
  background: var(--bg2);
}
.sw-timeline {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}
.sw-timeline::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--red), rgba(227, 30, 36, 0.1));
}
.sw-tl-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 20px 0;
}
.sw-tl-num {
  flex-shrink: 0;
  width: 76px;
  height: 76px;
  background: #fff;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
  transition: var(--trans);
}
.sw-tl-item:hover .sw-tl-num {
  border-color: var(--red);
  background: var(--red);
}
.sw-tl-num i {
  font-size: 1.4rem;
  color: var(--red);
  transition: var(--trans);
}
.sw-tl-item:hover .sw-tl-num i {
  color: #fff;
}
.sw-tl-body {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  flex: 1;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.sw-tl-item:hover .sw-tl-body {
  border-color: rgba(227, 30, 36, 0.3);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}
.sw-tl-body h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.sw-tl-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}
.sw-tl-step {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 2px;
}

/* ---- Solutions Cards ---- */
.sw-solutions {
  background: #fff;
}
.sw-sol-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  transition: var(--trans);
  position: relative;
  overflow: hidden;
}
.sw-sol-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-dark));
  transform: scaleX(0);
  transition: var(--trans);
}
.sw-sol-card:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: rgba(227, 30, 36, 0.2);
}
.sw-sol-card:hover::before {
  transform: scaleX(1);
}
.sw-sol-icon {
  width: 56px;
  height: 56px;
  background: var(--red-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--red);
  margin-bottom: 20px;
  transition: var(--trans);
}
.sw-sol-card:hover .sw-sol-icon {
  background: var(--red);
  color: #fff;
}
.sw-sol-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.sw-sol-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ---- Tech Stack ---- */
.sw-tech {
  background: var(--bg2);
}
.sw-tech-category {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  height: 100%;
  transition: var(--trans);
}
.sw-tech-category:hover {
  box-shadow: var(--shadow);
  border-color: rgba(227, 30, 36, 0.2);
}
.sw-tech-cat-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.sw-tech-cat-title i {
  font-size: 1rem;
}
.sw-badge-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sw-tech-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 5px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--trans);
}
.sw-tech-badge:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-light);
}

/* ---- Why Choose — Alternating ---- */
.sw-why {
  background: #fff;
}
.sw-why-block {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}
.sw-why-block:last-child {
  border-bottom: none;
}
.sw-why-icon-wrap {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  background: var(--red-light);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--red);
  transition: var(--trans);
}
.sw-why-block:hover .sw-why-icon-wrap {
  background: var(--red);
  color: #fff;
  transform: scale(1.05);
}
.sw-why-content h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}
.sw-why-content p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.8;
}
@media (max-width: 576px) {
  .sw-why-block {
    flex-direction: column;
    gap: 20px;
  }
  .sw-why-icon-wrap {
    width: 72px;
    height: 72px;
    font-size: 1.8rem;
    border-radius: 18px;
  }
}

/* ---- Zigzag Workflow ---- */
.sw-workflow {
  background: var(--bg2);
}
.sw-zz-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 60px;
}
.sw-zz-item:last-child {
  margin-bottom: 0;
}
.sw-zz-item.reverse .sw-zz-img {
  order: 2;
}
.sw-zz-item.reverse .sw-zz-text {
  order: 1;
}
.sw-zz-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.sw-zz-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red-light);
  border: 1px solid rgba(227, 30, 36, 0.2);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.sw-zz-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.sw-zz-text p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 0;
}
@media (max-width: 768px) {
  .sw-zz-item {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sw-zz-item.reverse .sw-zz-img,
  .sw-zz-item.reverse .sw-zz-text {
    order: unset;
  }
}

/* ---- Industries ---- */
.sw-industries {
  background: #fff;
}
.sw-ind-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  height: 100%;
  transition: var(--trans);
  cursor: default;
}
.sw-ind-card:hover {
  background: #fff;
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}
.sw-ind-icon {
  font-size: 2.2rem;
  color: var(--red);
  margin-bottom: 12px;
  display: block;
  transition: var(--trans);
}
.sw-ind-card:hover .sw-ind-icon {
  transform: scale(1.15);
}
.sw-ind-card h5 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.sw-ind-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ---- Stats ---- */
.sw-stats {
  background: var(--bg2);
}

/* ---- FAQ ---- */
.sw-faq-section {
  background: #fff;
}

/* ---- CTA ---- */
.sw-cta {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a0a0a 50%, #1a0505 100%);
  position: relative;
  overflow: hidden;
}
.sw-cta-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.sw-cta-glow-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.25), transparent 70%);
  top: -200px;
  right: -100px;
  animation: floatS 8s ease-in-out infinite;
}
.sw-cta-glow-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.12), transparent 70%);
  bottom: -100px;
  left: -100px;
  animation: floatS 12s ease-in-out infinite reverse;
}
.sw-cta-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Back to top */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 46px;
  height: 46px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-red);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--trans);
  z-index: 999;
  text-decoration: none;
}
#backToTop.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover {
  transform: translateY(-3px);
}

.form-r {
  border: 0 10px 10px 0 !important;
}

.blog-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
}

.blog-card{
  height: 442px !important;
}

.blog-form{
background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); color: #fff; border-radius: var(--radius); font-size: 0.9rem;
}

.blog-form::placeholder {
    color: #2e2c2c !important; /* apna color */
    opacity: 1;
}
 .blog-about{
  background: var(--red); color: #fff; border-radius: 99px; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; box-shadow: var(--shadow-red);
 }

 .blog-featured{
  background: var(--red-light); color: var(--red); border-radius: 99px; font-size: 0.75rem; width: fit-content; text-transform: uppercase; letter-spacing: 1px; border: 1px solid rgba(227,30,36,0.18);
 }

 .dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #e30613;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.dropdown-menu {
    max-height: 350px;
    overflow-y: auto;
    border: none;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,.1);
    padding: 0;
}

/* Line between items */
.dropdown-menu .dropdown-item {
    padding: 10px 15px;
    border-bottom: 1px solid #e9ecef;
    transition: all .3s ease;
}

/* Last item line remove */
.dropdown-menu li:last-child .dropdown-item {
    border-bottom: none;
}

/* Hover */
.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
    background-color: #e30613;
    color: #fff;
}

