/* Datacraft Software - Modern Design Revamp CSS */

/* ===== CSS Variables & Design System ===== */
:root {
  /* Primary Colors - Modern Blue Palette */
  --dc-primary: #2563eb;
  --dc-primary-dark: #1d4ed8;
  --dc-primary-light: #3b82f6;
  
  /* Secondary Colors - Vibrant Teal */
  --dc-secondary: #0d9488;
  --dc-secondary-dark: #0f766e;
  --dc-secondary-light: #14b8a6;
  
  /* Accent Colors */
  --dc-accent: #8b5cf6;
  --dc-accent-dark: #7c3aed;
  
  /* Gradients */
  --dc-gradient-primary: linear-gradient(135deg, #2563eb 0%, #8b5cf6 100%);
  --dc-gradient-secondary: linear-gradient(135deg, #0d9488 0%, #14b8a6 100%);
  --dc-gradient-hero: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
  --dc-gradient-card: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  
  /* Neutral Colors */
  --dc-dark: #0f172a;
  --dc-dark-secondary: #1e293b;
  --dc-gray: #64748b;
  --dc-gray-light: #94a3b8;
  --dc-light: #f1f5f9;
  --dc-white: #ffffff;
  
  /* Semantic Colors */
  --dc-success: #10b981;
  --dc-warning: #f59e0b;
  --dc-error: #ef4444;
  
  /* Shadows */
  --dc-shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --dc-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --dc-shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --dc-shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --dc-shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --dc-shadow-glow: 0 0 40px rgba(37, 99, 235, 0.15);
  
  /* Typography */
  --dc-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --dc-font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Spacing */
  --dc-section-padding: 100px 0;
  --dc-container-max: 1280px;
  
  /* Transitions */
  --dc-transition-fast: 150ms ease;
  --dc-transition-base: 300ms ease;
  --dc-transition-slow: 500ms ease;
  
  /* Border Radius */
  --dc-radius-sm: 8px;
  --dc-radius: 12px;
  --dc-radius-lg: 16px;
  --dc-radius-xl: 24px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--dc-font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dc-dark);
  background-color: var(--dc-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--dc-font-display);
  font-weight: 700;
  line-height: 1.3;
  color: var(--dc-dark);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--dc-transition-base);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Preloader ===== */
.bd-preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dc-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.bd-preloader__center span {
  display: block;
  animation: pulse 1.5s infinite;
}

.bd-preloader__center img {
  width: 120px;
  height: auto;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

/* ===== Back to Top ===== */
.progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--dc-gradient-primary);
  box-shadow: var(--dc-shadow-lg);
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--dc-transition-base);
}

.progress-wrap.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap:hover {
  transform: translateY(-5px);
  box-shadow: var(--dc-shadow-xl);
}

.progress-wrap svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: white;
  stroke-width: 2;
}

/* ===== Header Styles ===== */
.bd-header__section {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transition: all var(--dc-transition-base);
}

.bd-header__transparent {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bd-header__main {
  background: transparent;
  transition: all var(--dc-transition-base);
}

.bd-header__main#header-sticky {
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: var(--dc-shadow-lg);
}

.logo a {
  display: block;
  padding: 10px 0;
}

.logo img {
  height: 50px;
  width: auto;
}

/* Text-based logo */
.logo-text {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
}

.logo-data {
  color: var(--dc-white);
}

.logo-craft {
  color: var(--dc-primary-light);
}
.main-menu nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-menu nav ul li a {
  display: block;
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--dc-radius);
  transition: all var(--dc-transition-base);
  position: relative;
  white-space: nowrap;
}

.main-menu nav ul li a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--dc-gradient-primary);
  transition: all var(--dc-transition-base);
  transform: translateX(-50%);
}

.main-menu nav ul li a:hover {
  color: var(--dc-white);
}

.main-menu nav ul li a:hover::after {
  width: 30px;
}

/* Hamburger Button */
.bd-header__hamburger .hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}

@media (min-width: 992px) {
  .bd-header__hamburger {
    display: none !important;
  }
}

@media (max-width: 991px) {
  .main-menu {
    display: none !important;
  }
  
  .bd-header__hamburger {
    display: block !important;
  }
}

.bd-header__hamburger .hamburger-btn span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--dc-white);
  border-radius: 2px;
  transition: all var(--dc-transition-base);
}

.bd-header__hamburger .hamburger-btn:hover span:nth-child(1) {
  width: 24px;
}

.bd-header__hamburger .hamburger-btn:hover span:nth-child(3) {
  width: 20px;
}

/* ===== Offcanvas Menu ===== */
.offcanvas__area {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(10px);
  z-index: 9999;
  transition: right var(--dc-transition-slow);
  opacity: 0;
  visibility: hidden;
}

.offcanvas__area.active {
  right: 0;
  opacity: 1;
  visibility: visible;
}

.offcanvas__wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
}

.offcanvas__content {
  width: 100%;
  max-width: 400px;
  height: 100%;
  background: var(--dc-dark);
  padding: 40px;
  overflow-y: auto;
}

.offcanvas__close-btn {
  background: transparent;
  border: none;
  color: var(--dc-white);
  font-size: 24px;
  cursor: pointer;
  transition: transform var(--dc-transition-base);
}

.offcanvas__close-btn:hover {
  transform: rotate(90deg);
}

.offcanvas__contact h4 {
  color: var(--dc-white);
  margin-bottom: 20px;
}

/* Mobile menu links */
.mobile-menu ul li a {
  color: var(--dc-white) !important;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu ul li a:hover {
  color: var(--dc-primary-light) !important;
}

.offcanvas__contact ul li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.offcanvas__contact-text a {
  color: rgba(255, 255, 255, 0.9) !important;
}

.offcanvas__contact ul li i {
  font-size: 20px;
  color: var(--dc-primary-light);
}

.offcanvas__social ul {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.offcanvas__social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--dc-radius);
  color: var(--dc-white);
  transition: all var(--dc-transition-base);
}

.offcanvas__social ul li a:hover {
  background: var(--dc-gradient-primary);
  transform: translateY(-3px);
}

/* ===== Hero Section ===== */
.bd-slider__section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bd-slider__item {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
}

.bd-slider__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('assets/img/slider/slider-1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bd-slider__bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dc-gradient-hero);
  opacity: 0.92;
}

.bd-slider__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.bd-slider__content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.bd-slider__subtitle {
  display: inline-block;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  color: var(--dc-primary-light);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.bd-slider__title {
  font-size: 56px;
  font-weight: 800;
  color: var(--dc-white);
  line-height: 1.15;
  margin-bottom: 32px;
  position: relative;
}

.bd-slider__title span {
  background: var(--dc-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Buttons ===== */
.bd-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: var(--dc-gradient-primary);
  color: var(--dc-white);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--dc-radius);
  cursor: pointer;
  transition: all var(--dc-transition-base);
  box-shadow: var(--dc-shadow-md);
  overflow: hidden;
  position: relative;
}

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

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

.bd-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--dc-shadow-xl), var(--dc-shadow-glow);
}

.bd-btn i {
  transition: transform var(--dc-transition-base);
}

.bd-btn:hover i {
  transform: translateX(5px);
}

.bd-btn-white {
  background: var(--dc-white);
  color: var(--dc-dark);
}

.bd-btn-white:hover {
  background: var(--dc-light);
  color: var(--dc-primary);
  transform: translateY(-3px);
}

/* ===== Section Styles ===== */
.bd-section__title-wrapper {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.bd-section__subtitle {
  display: inline-block;
  padding: 8px 20px;
  background: var(--dc-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.bd-section__title {
  font-size: 42px;
  font-weight: 800;
  color: var(--dc-dark);
  margin-bottom: 0;
  position: relative;
}

.bd-section__title::after {
  display: none;
}

.bd-challenge__section {
   background: linear-gradient(180deg, var(--dc-light) 0%, var(--dc-white) 100%);
   position: relative;
   overflow: hidden;
}

.bd-challenge__section .bd-section__title-wrapper {
   text-align: left;
   margin-left: 0;
   max-width: none;
}

.bd-challenge__section .bd-section__title {
   font-size: 38px;
}

.bd-challenge__section::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 1px;
   background: linear-gradient(90deg, transparent, var(--dc-primary-light), transparent);
   opacity: 0.3;
}

.bd-challenge__visual {
   position: relative;
}

.bd-challenge__card {
   background: linear-gradient(135deg, var(--dc-white), var(--dc-light));
   border: 1px solid rgba(37, 99, 235, 0.15);
   border-radius: var(--dc-radius-lg);
   padding: 2.5rem;
   box-shadow: var(--dc-shadow-xl);
   position: relative;
   overflow: hidden;
}

.bd-challenge__card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 3px;
   background: var(--dc-gradient-primary);
}

.bd-challenge__icon-grid {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   gap: 1rem;
}

.bd-challenge__icon-item {
   aspect-ratio: 1;
   background: rgba(37, 99, 235, 0.05);
   border: 1px solid rgba(37, 99, 235, 0.1);
   border-radius: var(--dc-radius);
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   padding: 1rem;
   transition: all var(--dc-transition-base);
}

.bd-challenge__icon-item:hover {
   background: rgba(37, 99, 235, 0.1);
   border-color: var(--dc-primary);
   transform: translateY(-4px);
}

.bd-challenge__icon-item svg {
   width: 28px;
   height: 28px;
   color: var(--dc-primary);
}

.bd-challenge__icon-item span {
   font-size: 0.7rem;
   color: var(--dc-gray);
   text-align: center;
   font-weight: 500;
}

.bd-challenge__icon-item--connected {
   border-color: rgba(37, 99, 235, 0.4);
   background: rgba(37, 99, 235, 0.12);
}

.bd-challenge__icon-item--connected svg {
   color: var(--dc-primary-dark);
}

.bd-challenge__text p {
   font-size: 1.05rem;
   line-height: 1.8;
   color: var(--dc-gray);
}

.bd-challenge__text p strong {
   color: var(--dc-dark);
   font-weight: 600;
}

@media (max-width: 991px) {
   .bd-challenge__visual {
      order: -1;
      margin-bottom: 40px;
   }
   
   .bd-challenge__card {
      padding: 2rem;
   }
}

@media (max-width: 575px) {
   .bd-challenge__icon-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem;
   }
   
   .bd-challenge__icon-item {
      padding: 0.75rem;
   }
   
   .bd-challenge__icon-item svg {
      width: 24px;
      height: 24px;
   }
   
   .bd-challenge__icon-item span {
      font-size: 0.65rem;
   }
   
   .bd-challenge__card {
      padding: 1.5rem;
   }
}

/* ===== About Section ===== */
.bd-about__section {
  padding: var(--dc-section-padding);
  background: var(--dc-light);
}

.bd-about__img {
  position: relative;
  border-radius: var(--dc-radius-lg);
  overflow: hidden;
  box-shadow: var(--dc-shadow-xl);
}

.bd-about__img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dc-gradient-primary);
  opacity: 0;
  transition: opacity var(--dc-transition-base);
  z-index: 1;
}

.bd-about__img:hover::before {
  opacity: 0.3;
}

.bd-about__img img {
  width: 100%;
  transition: transform var(--dc-transition-slow);
}

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

/* Built with you visual card (replaces image) */
.bd-about__visual-card {
  background: linear-gradient(135deg, var(--dc-white) 0%, var(--dc-light) 100%);
  border-radius: var(--dc-radius-lg);
  padding: 3rem;
  box-shadow: var(--dc-shadow-xl);
  border: 1px solid rgba(37, 99, 235, 0.1);
  position: relative;
  overflow: hidden;
  margin-right: 70px;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all var(--dc-transition-base);
}

.bd-about__visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(37, 99, 235, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37, 99, 235, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.5;
}

.bd-about__visual-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--dc-shadow-2xl);
}

.bd-about__visual-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dc-primary);
  position: relative;
  z-index: 1;
}

.bd-about__visual-line {
  width: 40px;
  height: 2px;
  background: var(--dc-gradient-primary);
}

.bd-about__visual-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dc-dark);
  margin-bottom: 1.25rem;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.bd-about__visual-title .text-gradient {
  background: var(--dc-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bd-about__visual-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--dc-gray);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

/* Process steps with icons */
.bd-about__process {
  margin-bottom: 30px;
}

.bd-about__process-item {
  padding: 15px 0;
  border-bottom: 1px solid rgba(37, 99, 235, 0.1);
  transition: all var(--dc-transition-base);
}

.bd-about__process-item:last-child {
  border-bottom: none;
}

.bd-about__process-item:hover {
  padding-left: 10px;
}

.bd-about__process-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 12px;
  flex-shrink: 0;
  color: var(--dc-primary);
  transition: all var(--dc-transition-base);
}

.bd-about__process-item:hover .bd-about__process-icon {
  background: var(--dc-gradient-primary);
  color: var(--dc-white);
  border-color: var(--dc-primary);
  transform: scale(1.05);
}

.bd-about__process-icon svg {
  width: 22px;
  height: 22px;
}

.bd-about__process-text h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dc-dark);
  margin-bottom: 4px;
}

.bd-about__process-text p {
  font-size: 0.95rem;
  color: var(--dc-gray);
  margin: 0;
  line-height: 1.5;
}

.bd-section__title-wrapper.bd-about__title {
  text-align: left;
  margin: 0 0 30px;
}

.bd-section__title-wrapper.bd-about__title .bd-section__title::after {
  display: block;
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--dc-gradient-primary);
  border-radius: 2px;
}

.bd-about__content p {
  color: var(--dc-gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

/* Legacy features styles (kept for compatibility) */
.bd-about__features-item {
  padding: 20px;
  background: var(--dc-white);
  border-radius: var(--dc-radius);
  box-shadow: var(--dc-shadow);
  margin-bottom: 15px;
  transition: all var(--dc-transition-base);
}

.bd-about__features-item:hover {
  transform: translateX(10px);
  box-shadow: var(--dc-shadow-md);
}

.bd-about__features-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dc-gradient-primary);
  border-radius: var(--dc-radius);
  flex-shrink: 0;
}

.bd-about__features-icon i {
  color: var(--dc-white);
  font-size: 20px;
}

.bd-about__features-text p {
  margin: 0;
  font-weight: 600;
  color: var(--dc-dark);
}

@media (max-width: 991px) {
  .bd-about__visual-card {
    margin-right: 0;
    min-height: auto;
    padding: 2rem;
  }
  
  .bd-about__visual-title {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .bd-about__visual-title {
    font-size: 1.75rem;
  }
  
  .bd-about__visual-card {
    padding: 1.5rem;
  }
}

/* ===== Services Section ===== */
.bd-services__area {
  padding: var(--dc-section-padding);
  background: var(--dc-white);
}

.bd-services__item {
  background: var(--dc-gradient-card);
  padding: 40px 30px;
  border-radius: var(--dc-radius-lg);
  box-shadow: var(--dc-shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all var(--dc-transition-base);
  position: relative;
  overflow: hidden;
}

.bd-services__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--dc-gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dc-transition-base);
}

.bd-services__item:hover::before {
  transform: scaleX(1);
}

.bd-services__item:hover {
  transform: translateY(-10px);
  box-shadow: var(--dc-shadow-xl);
}

.bd-services__icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dc-light);
  border-radius: var(--dc-radius);
  margin-bottom: 24px;
  transition: all var(--dc-transition-base);
}

.bd-services__icon i {
  font-size: 36px;
  background: var(--dc-gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bd-services__item:hover .bd-services__icon {
  background: var(--dc-gradient-primary);
  transform: scale(1.1) rotate(5deg);
}

.bd-services__item:hover .bd-services__icon i {
  color: var(--dc-white);
  -webkit-text-fill-color: var(--dc-white);
}

.bd-services__title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
}

.bd-services__title a {
  color: var(--dc-dark);
  transition: color var(--dc-transition-base);
}

.bd-services__title a:hover {
  color: var(--dc-primary);
}

.bd-services__content p {
  color: var(--dc-gray);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.bd-services__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--dc-primary);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--dc-transition-base);
}

.bd-services__link:hover {
  gap: 15px;
  color: var(--dc-primary-dark);
}

/* ===== Services V2 / What We Build Section ===== */
.bd-services-v2 {
   background: var(--dc-white);
   position: relative;
}

.bd-services-v2::before {
   content: '';
   position: absolute;
   top: 0;
   left: 50%;
   transform: translateX(-50%);
   width: 1px;
   height: 80px;
   background: linear-gradient(to bottom, transparent, var(--dc-primary-light));
   opacity: 0.5;
}

.bd-services-v2__header {
   max-width: 700px;
   margin: 0 auto;
}

.bd-services-v2__desc {
   font-size: 1.1rem;
   color: var(--dc-gray);
   line-height: 1.7;
}

.bd-services-v2__card {
   background: linear-gradient(180deg, rgba(37, 99, 235, 0.03) 0%, transparent 100%);
   border: 1px solid rgba(37, 99, 235, 0.1);
   border-radius: var(--dc-radius-lg);
   padding: 2.5rem 2rem;
   position: relative;
   overflow: hidden;
   transition: all var(--dc-transition-base);
   height: 100%;
}

.bd-services-v2__card::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   height: 2px;
   background: var(--dc-gradient-primary);
   opacity: 0;
   transition: opacity var(--dc-transition-base);
}

.bd-services-v2__card:hover {
   border-color: rgba(37, 99, 235, 0.2);
   transform: translateY(-6px);
   background: linear-gradient(180deg, rgba(37, 99, 235, 0.06) 0%, rgba(37, 99, 235, 0.02) 100%);
   box-shadow: var(--dc-shadow-xl);
}

.bd-services-v2__card:hover::before {
   opacity: 1;
}

.bd-services-v2__icon {
   width: 56px;
   height: 56px;
   background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(37, 99, 235, 0.05));
   border: 1px solid rgba(37, 99, 235, 0.2);
   border-radius: 14px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 1.5rem;
   color: var(--dc-primary);
   transition: all var(--dc-transition-base);
}

.bd-services-v2__card:hover .bd-services-v2__icon {
   background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(37, 99, 235, 0.1));
   transform: scale(1.05);
}

.bd-services-v2__icon svg {
   width: 26px;
   height: 26px;
}

.bd-services-v2__number {
   font-size: 0.75rem;
   font-weight: 600;
   color: rgba(100, 116, 139, 0.4);
   margin-bottom: 0.75rem;
   display: block;
}

.bd-services-v2__title {
   font-size: 1.25rem;
   font-weight: 700;
   margin-bottom: 0.875rem;
   color: var(--dc-dark);
}

.bd-services-v2__text {
   font-size: 0.95rem;
   line-height: 1.7;
   color: var(--dc-gray);
   margin: 0;
}

@media (max-width: 767px) {
   .bd-services-v2__card {
      padding: 2rem 1.5rem;
   }
   
   .bd-services-v2__icon {
      width: 50px;
      height: 50px;
   }
   
   .bd-services-v2__icon svg {
      width: 22px;
      height: 22px;
   }
}

/* ===== Why DataCraft Section ===== */
.bd-why__section {
   background: var(--dc-dark);
   position: relative;
   overflow: hidden;
}

.bd-why__bg {
   position: absolute;
   inset: 0;
   z-index: 0;
   overflow: hidden;
}

.bd-why__bg-gradient {
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, rgba(37, 99, 235, 0.12) 0%, rgba(139, 92, 246, 0.08) 50%, rgba(13, 148, 136, 0.06) 100%);
}

.bd-why__bg-grid {
   position: absolute;
   inset: 0;
   background-image:
       linear-gradient(rgba(37, 99, 235, 0.08) 1px, transparent 1px),
       linear-gradient(90deg, rgba(37, 99, 235, 0.08) 1px, transparent 1px);
   background-size: 60px 60px;
   mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
   -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent);
}

.bd-why__orb {
   position: absolute;
   border-radius: 50%;
   filter: blur(80px);
}

.bd-why__orb-1 {
   width: 400px;
   height: 400px;
   background: rgba(37, 99, 235, 0.15);
   top: -20%;
   right: -10%;
}

.bd-why__orb-2 {
   width: 300px;
   height: 300px;
   background: rgba(139, 92, 246, 0.1);
   bottom: 0%;
   left: -5%;
}

.bd-why__section .bd-section__title-wrapper .bd-section__subtitle {
   color: var(--dc-primary-light);
}

.bd-why__section .bd-section__title-wrapper .bd-section__title {
   color: var(--dc-white);
}

.bd-why__desc {
   font-size: 1.1rem;
   color: rgba(255, 255, 255, 0.7);
   max-width: 600px;
   margin: 0 auto;
   line-height: 1.7;
}

.bd-why__item {
   background: rgba(255, 255, 255, 0.03);
   border: 1px solid rgba(255, 255, 255, 0.1);
   border-radius: var(--dc-radius-lg);
   padding: 1.75rem;
   text-align: left;
   transition: all var(--dc-transition-base);
   position: relative;
   z-index: 1;
   height: 100%;
   margin-bottom: 20px;
}

.bd-why__item:hover {
   transform: translateY(-4px);
   background: rgba(255, 255, 255, 0.06);
   border-color: rgba(255, 255, 255, 0.2);
   box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.bd-why__icon {
   width: 52px;
   height: 52px;
   background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(37, 99, 235, 0.1));
   border: 1px solid rgba(37, 99, 235, 0.3);
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   margin-bottom: 1.25rem;
   color: var(--dc-primary-light);
   transition: all var(--dc-transition-base);
}

.bd-why__item:hover .bd-why__icon {
   background: var(--dc-gradient-primary);
   color: var(--dc-white);
   transform: scale(1.05) rotate(3deg);
   box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
   border-color: var(--dc-primary);
}

.bd-why__icon svg {
   width: 24px;
   height: 24px;
}

.bd-why__title {
   font-size: 1.15rem;
   font-weight: 700;
   margin-bottom: 0.75rem;
   color: var(--dc-white);
}

.bd-why__text {
   font-size: 0.95rem;
   line-height: 1.65;
   color: rgba(255, 255, 255, 0.6);
   margin: 0;
}

@media (max-width: 767px) {
   .bd-why__item {
      padding: 1.5rem;
   }
   
   .bd-why__icon {
      width: 48px;
      height: 48px;
   }
   
   .bd-why__icon svg {
      width: 22px;
      height: 22px;
   }
}

/* ===== Solutions/Portfolio Section ===== */
.bd-portfolio__section {
  padding: var(--dc-section-padding);
  background: var(--dc-light);
}

.bd-portfolio__img {
  position: relative;
  border-radius: var(--dc-radius-lg);
  overflow: hidden;
  box-shadow: var(--dc-shadow-xl);
}

.bd-portfolio__img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dc-gradient-primary);
  opacity: 0;
  transition: opacity var(--dc-transition-base);
  z-index: 1;
}

.bd-portfolio__img:hover::before {
  opacity: 0.2;
}

.bd-portfolio__img img {
  width: 100%;
  transition: transform var(--dc-transition-slow);
}

.bd-portfolio__img:hover img {
  transform: scale(1.08);
}

.bd-portfolio__meta {
  margin-bottom: 15px;
}

.bd-portfolio__meta span {
  display: inline-block;
  padding: 8px 20px;
  background: var(--dc-gradient-secondary);
  color: var(--dc-white);
  font-size: 13px;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bd-portfolio__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--dc-dark);
  margin-bottom: 20px;
}

.bd-portfolio__content p {
  color: var(--dc-gray);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.bd-portfolio__list ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}

.bd-portfolio__list ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: var(--dc-dark);
  font-weight: 500;
}

.bd-portfolio__list ul li i {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dc-gradient-secondary);
  color: var(--dc-white);
  border-radius: 50%;
  font-size: 12px;
}

/* ===== CTA Section ===== */
.bd-cta__section {
  padding: 80px 0;
  background: var(--dc-gradient-primary);
  position: relative;
  overflow: hidden;
}

.bd-cta__section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='%23ffffff' stroke-opacity='0.05' stroke-width='2'/%3E%3C/svg%3E");
  background-size: 100px 100px;
}

.bd-cta__content {
  position: relative;
  z-index: 1;
}

.bd-cta__title {
  font-size: 32px;
  font-weight: 800;
  color: var(--dc-white);
  margin: 0;
}

.bd-cta__btn {
  position: relative;
  z-index: 1;
  text-align: right;
}

/* ===== Contact Section ===== */
.bd-contact__area {
  padding: var(--dc-section-padding);
  background: var(--dc-white);
}

.bd-contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: var(--dc-light);
  border-radius: var(--dc-radius);
  transition: all var(--dc-transition-base);
}

.bd-contact__info-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--dc-shadow-md);
}

.bd-contact__info-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dc-gradient-primary);
  border-radius: var(--dc-radius);
  flex-shrink: 0;
}

.bd-contact__info-icon i {
  font-size: 24px;
  color: var(--dc-white);
}

.bd-contact__info-content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dc-dark);
}

.bd-contact__info-content p {
  color: var(--dc-gray);
  margin: 0;
}

.bd-contact__info-content a {
  color: var(--dc-primary);
  transition: color var(--dc-transition-base);
}

.bd-contact__info-content a:hover {
  color: var(--dc-primary-dark);
}

/* Contact Form */
.bd-contact__form {
  background: var(--dc-light);
  padding: 40px;
  border-radius: var(--dc-radius-lg);
  box-shadow: var(--dc-shadow);
}

.bd-contact__input {
  position: relative;
}

.bd-contact__input input,
.bd-contact__input textarea {
  width: 100%;
  padding: 18px 24px;
  background: var(--dc-white);
  border: 2px solid transparent;
  border-radius: var(--dc-radius);
  font-size: 15px;
  font-family: inherit;
  color: var(--dc-dark);
  transition: all var(--dc-transition-base);
}

.bd-contact__input input:focus,
.bd-contact__input textarea:focus {
  outline: none;
  border-color: var(--dc-primary);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.bd-contact__input input::placeholder,
.bd-contact__input textarea::placeholder {
  color: var(--dc-gray-light);
}

.bd-contact__input textarea {
  min-height: 150px;
  resize: vertical;
}

.bd-contact__btn .bd-btn {
  width: 100%;
  justify-content: center;
}

.honeypot-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* ===== Contact Form Success/Error States ===== */
.ajax-response {
  padding: 15px 20px;
  border-radius: var(--dc-radius);
  margin-bottom: 20px;
  font-weight: 500;
  display: none;
}

.ajax-response.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
  display: block;
}

.ajax-response.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #22c55e;
  display: block;
}

/* Form disabled state */
.form-disabled {
  opacity: 0.6;
}

.form-disabled input,
.form-disabled textarea,
.form-disabled button {
  cursor: not-allowed;
}

.form-disabled-message {
  padding: 30px;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.03) 100%);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: var(--dc-radius);
  text-align: center;
  color: var(--dc-dark);
}

.form-disabled-message h4 {
  color: #ef4444;
  margin-bottom: 15px;
  font-size: 18px;
}

.form-disabled-message p {
  margin-bottom: 12px;
  line-height: 1.6;
}

.contact-email-link {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 24px;
  background: var(--dc-gradient-primary);
  color: var(--dc-white);
  border-radius: var(--dc-radius);
  font-weight: 600;
  text-decoration: none;
  transition: all var(--dc-transition-base);
}

.contact-email-link:hover {
  transform: translateY(-3px);
  box-shadow: var(--dc-shadow-md);
  color: var(--dc-white);
}

/* Success message styling */
.contact-success-message {
  animation: fadeInUp 0.5s ease;
}

.success-content {
  padding: 50px 30px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.08) 0%, rgba(34, 197, 94, 0.03) 100%);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: var(--dc-radius);
  text-align: center;
}

.success-icon {
  font-size: 60px;
  color: #22c55e;
  margin-bottom: 20px;
}

.success-content h3 {
  color: var(--dc-dark);
  font-size: 24px;
  margin-bottom: 15px;
}

.success-content p {
  color: var(--dc-gray);
  margin-bottom: 10px;
}

.success-note {
  font-size: 14px;
  color: var(--dc-gray);
  font-style: italic;
}

.countdown-timer {
  display: inline-block;
  margin-top: 20px;
  padding: 15px 30px;
  background: var(--dc-dark);
  color: var(--dc-white);
  font-size: 32px;
  font-weight: 700;
  font-family: 'Courier New', monospace;
  border-radius: var(--dc-radius);
  letter-spacing: 2px;
}

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

.bd-footer__section {
  background: var(--dc-dark);
  padding-top: 80px;
  color: rgba(255, 255, 255, 0.8);
}

.bd-footer-widget__title h4 {
  font-size: 20px;
  font-weight: 700;
  color: var(--dc-white);
  margin-bottom: 25px;
  position: relative;
}

.bd-footer-widget__title h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--dc-gradient-primary);
  border-radius: 2px;
}

.bd-footer-widget__content p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.7);
}

.bd-footer__social ul {
  display: flex;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.bd-footer__social ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--dc-radius);
  color: var(--dc-white);
  transition: all var(--dc-transition-base);
}

.bd-footer__social ul li a:hover {
  background: var(--dc-gradient-primary);
  transform: translateY(-5px);
}

.bd-footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bd-footer-links ul li {
  margin-bottom: 12px;
}

.bd-footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  transition: all var(--dc-transition-base);
  display: flex;
  align-items: center;
  gap: 10px;
}

.bd-footer-links ul li a::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--dc-primary-light);
  border-radius: 50%;
  opacity: 0;
  transition: opacity var(--dc-transition-base);
}

.bd-footer-links ul li a:hover {
  color: var(--dc-white);
  padding-left: 10px;
}

.bd-footer-links ul li a:hover::before {
  opacity: 1;
}

.bd-footer__bottom {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 60px;
}

.bd-footer__bottom p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* ===== Animation Classes ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Hero Section ===== */
.bd-hero__section {
   position: relative;
   min-height: 100vh;
   display: flex;
   align-items: center;
   overflow: hidden;
   padding-top: 100px;
}

.bd-hero__bg {
   display: none;
}

/* Animated Hero Background */
.hero-animated-bg {
   position: absolute;
   inset: 0;
   z-index: 0;
   overflow: hidden;
   background: var(--dc-dark);
}

.hero-bg-gradient {
   position: absolute;
   inset: 0;
   background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(139, 92, 246, 0.1) 50%, rgba(13, 148, 136, 0.08) 100%);
}

.hero-grid {
   position: absolute;
   inset: 0;
   background-image:
       linear-gradient(rgba(37, 99, 235, 0.06) 1px, transparent 1px),
       linear-gradient(90deg, rgba(37, 99, 235, 0.06) 1px, transparent 1px);
   background-size: 80px 80px;
   mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
   -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black, transparent);
   animation: gridFloat 25s linear infinite;
}

@keyframes gridFloat {
   0% { transform: translate(0, 0); }
   100% { transform: translate(80px, 80px); }
}

/* Floating orbs */
.hero-orb {
   position: absolute;
   border-radius: 50%;
   filter: blur(80px);
   animation: orbFloat 10s ease-in-out infinite;
}

.hero-orb-1 {
   width: 450px;
   height: 450px;
   background: rgba(37, 99, 235, 0.12);
   top: -10%;
   right: -5%;
}

.hero-orb-2 {
   width: 350px;
   height: 350px;
   background: rgba(139, 92, 246, 0.1);
   bottom: 5%;
   left: -5%;
   animation-delay: -5s;
}

.hero-orb-3 {
   width: 250px;
   height: 250px;
   background: rgba(13, 148, 136, 0.08);
   top: 35%;
   right: 15%;
   animation-delay: -2.5s;
}

@keyframes orbFloat {
   0%, 100% { transform: translate(0, 0) scale(1); }
   33% { transform: translate(30px, -25px) scale(1.05); }
   66% { transform: translate(-25px, 20px) scale(0.95); }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
   .hero-grid,
   .hero-orb {
       animation: none;
   }
}

.bd-hero__overlay {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: linear-gradient(135deg, rgba(15, 23, 42, 0.95) 0%, rgba(30, 41, 59, 0.85) 50%, rgba(51, 65, 85, 0.75) 100%);
}

.bd-hero__particles {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
   opacity: 0.8;
}

.bd-hero__content {
   position: relative;
   z-index: 2;
   max-width: 900px;
   margin: 0 auto;
   padding: 40px 20px;
}

.bd-hero__badge {
   display: inline-flex;
   align-items: center;
   gap: 10px;
   padding: 12px 24px;
   background: rgba(255, 255, 255, 0.1);
   backdrop-filter: blur(10px);
   border: 1px solid rgba(255, 255, 255, 0.2);
   border-radius: 50px;
   color: var(--dc-white);
   font-size: 14px;
   font-weight: 600;
}

.bd-hero__badge-icon {
   width: 32px;
   height: 32px;
   display: flex;
   align-items: center;
   justify-content: center;
   background: var(--dc-gradient-primary);
   border-radius: 50%;
   color: var(--dc-white);
   font-size: 14px;
   animation: rocketPulse 2s infinite;
}

@keyframes rocketPulse {
   0%, 100% { transform: scale(1); }
   50% { transform: scale(1.1); }
}

.bd-hero__title {
   font-size: 56px;
   font-weight: 800;
   color: var(--dc-white);
   line-height: 1.15;
   margin-bottom: 24px;
}

.bd-hero__highlight {
   background: var(--dc-gradient-primary);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
   position: relative;
}

.bd-hero__highlight::after {
   content: '';
   position: absolute;
   bottom: 5px;
   left: 0;
   width: 100%;
   height: 8px;
   background: var(--dc-gradient-primary);
   opacity: 0.3;
   z-index: -1;
   border-radius: 4px;
}

.bd-hero__subtitle {
   font-size: 18px;
   color: rgba(255, 255, 255, 0.8);
   line-height: 1.8;
   max-width: 700px;
   margin: 0 auto;
}

.bd-hero__buttons {
   gap: 20px;
   flex-wrap: wrap;
   justify-content: center;
}

.bd-btn-outline {
   background: transparent !important;
   border: 2px solid rgba(255, 255, 255, 0.3);
   color: var(--dc-white);
}

.bd-btn-outline:hover {
   border-color: var(--dc-white);
   background: var(--dc-white) !important;
   color: var(--dc-dark);
}

.bd-hero__stats {
   display: flex;
   justify-content: center;
   gap: 60px;
   margin-top: 60px;
   padding-top: 40px;
   border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.bd-hero__stats-item {
   text-align: center;
}

.bd-hero__stats-number {
   display: block;
   font-size: 42px;
   font-weight: 800;
   color: var(--dc-white);
   margin-bottom: 8px;
   background: var(--dc-gradient-primary);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   background-clip: text;
}

.bd-hero__stats-label {
   font-size: 14px;
   color: rgba(255, 255, 255, 0.6);
   text-transform: uppercase;
   letter-spacing: 1px;
}

.bd-hero__scroll {
   position: absolute;
   bottom: 40px;
   left: 50%;
   transform: translateX(-50%);
   z-index: 2;
}

.bd-hero__scroll-btn {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
   color: rgba(255, 255, 255, 0.6);
   font-size: 13px;
   font-weight: 500;
   transition: all var(--dc-transition-base);
   animation: bounce 2s infinite;
}

.bd-hero__scroll-btn:hover {
   color: var(--dc-white);
}

.bd-hero__scroll-btn i {
   font-size: 20px;
}

@keyframes bounce {
   0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
   40% { transform: translateY(-10px); }
   60% { transform: translateY(-5px); }
}

/* Responsive Hero */
@media (max-width: 991px) {
   .bd-hero__title {
      font-size: 42px;
   }
   
   .bd-hero__subtitle {
      font-size: 16px;
   }
   
   .bd-hero__stats {
      gap: 30px;
   }
   
   .bd-hero__stats-number {
      font-size: 32px;
   }
}

@media (max-width: 767px) {
   .bd-hero__title {
      font-size: 32px;
   }
   
   .bd-hero__content {
      padding: 30px 15px;
   }
   
   .bd-hero__badge {
      padding: 10px 18px;
      font-size: 13px;
   }
   
   .bd-hero__stats {
      flex-direction: column;
      gap: 25px;
   }
   
   .bd-hero__scroll {
      display: none;
   }
}

@media (max-width: 575px) {
   .bd-hero__title {
      font-size: 26px;
   }
   
   .bd-hero__buttons {
      flex-direction: column;
      align-items: center;
   }
   
   .bd-hero__buttons .bd-btn {
      width: 100%;
      max-width: 280px;
      justify-content: center;
   }
}

/* ===== Responsive Design ===== */
@media (max-width: 1199px) {
  .bd-slider__title {
    font-size: 48px;
  }
  
  .bd-section__title {
    font-size: 36px;
  }
  
  .bd-portfolio__title {
    font-size: 28px;
  }
}

@media (max-width: 991px) {
  :root {
    --dc-section-padding: 80px 0;
  }
  
  .bd-slider__title {
    font-size: 40px;
  }
  
  .bd-section__title {
    font-size: 32px;
  }
  
  .bd-slider__content {
    text-align: center;
  }
  
  .bd-slider__title::before {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .bd-about__img {
    margin-bottom: 40px;
  }
  
  .bd-cta__title {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .bd-cta__btn {
    text-align: center;
  }
}

@media (max-width: 767px) {
  :root {
    --dc-section-padding: 60px 0;
  }
  
  .bd-slider__title {
    font-size: 32px;
  }
  
  .bd-section__title {
    font-size: 28px;
  }
  
  .bd-services__item {
    padding: 30px 25px;
  }
  
  .bd-portfolio__title {
    font-size: 24px;
  }
  
  .bd-cta__title {
    font-size: 24px;
  }
  
  .bd-contact__form {
    padding: 30px 20px;
  }
}

@media (max-width: 575px) {
  .bd-slider__title {
    font-size: 26px;
  }
  
  .bd-btn {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .bd-contact__info-item {
    flex-direction: column;
    text-align: center;
  }
  
  .bd-footer-widget {
    text-align: center;
  }
  
  .bd-footer-widget__title h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .bd-footer__social ul {
    justify-content: center;
  }
}

/* ===== Utility Classes ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-10 { margin-bottom: 10px; }
.mb-15 { margin-bottom: 15px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.mb-35 { margin-bottom: 35px; }
.mb-40 { margin-bottom: 40px; }
.mb-45 { margin-bottom: 45px; }
.mb-50 { margin-bottom: 50px; }
.mb-60 { margin-bottom: 60px; }
.mb-65 { margin-bottom: 65px; }
.mb-70 { margin-bottom: 70px; }
.mb-80 { margin-bottom: 80px; }
.mb-90 { margin-bottom: 90px; }

.mt-0 { margin-top: 0; }
.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }

.pl-30 { padding-left: 30px; }
.pl-50 { padding-left: 50px; }

.pt-60 { padding-top: 60px; }
.pt-80 { padding-top: 80px; }
.pt-100 { padding-top: 100px; }
.pt-120 { padding-top: 120px; }

.pb-30 { padding-bottom: 30px; }
.pb-60 { padding-bottom: 60px; }
.pb-90 { padding-bottom: 90px; }
.pb-120 { padding-bottom: 120px; }
