/* ===============================
   CSS VARIABLES
================================= */
:root {
  /* Colors */
  --primary-color: #0d6efd;
  --primary-dark: #0b5ed7;
  --primary-light: #2f80ff;
  --secondary-color: #3b82f6;
  --accent-color: #59b0ff;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, #1e66f5, var(--primary-light));

  /* Text Colors */
  --text-dark: #111;
  --text-medium: #555;
  --text-light: #666;
  --text-lighter: #777;

  /* Background Colors */
  --bg-white: #ffffff;
  --bg-light: #f8fbff;
  --bg-lighter: #f5f9ff;
  --bg-lightest: #eef5ff;

  /* Spacing */
  --section-padding: 120px;
  --section-padding-mobile: 90px;
  --card-padding: 40px;
  --card-padding-mobile: 32px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 18px;

  /* Shadows */
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 28px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 25px 60px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 30px 60px rgba(13, 110, 253, 0.18);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Animation Durations */
  --anim-fast: 0.3s;
  --anim-normal: 0.5s;
  --anim-slow: 0.8s;
}

/* ===============================
   GLOBAL
================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--bg-white);
  overflow-x: hidden;
  /* Content Protection */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* Page Loader */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity var(--transition-slow), visibility var(--transition-slow);
}

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

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 4px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin-loader 1s linear infinite;
}

@keyframes spin-loader {
  to {
    transform: rotate(360deg);
  }
}

/* ===============================
   ANIMATED BACKGROUND PARTICLES
================================= */
.animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float-particle 30s infinite ease-in-out;
  opacity: 0.3;
  will-change: transform;
}

.particle:nth-child(1) {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.25), transparent);
  top: 10%;
  left: 20%;
  animation-duration: 35s;
  animation-delay: 0s;
}

.particle:nth-child(2) {
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(47, 128, 255, 0.2), transparent);
  top: 60%;
  left: 70%;
  animation-duration: 40s;
  animation-delay: 5s;
}

.particle:nth-child(3) {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.28), transparent);
  top: 80%;
  left: 10%;
  animation-duration: 32s;
  animation-delay: 8s;
}

.particle:nth-child(4) {
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.18), transparent);
  top: 30%;
  left: 80%;
  animation-duration: 38s;
  animation-delay: 3s;
}

.particle:nth-child(5) {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.22), transparent);
  top: 50%;
  left: 40%;
  animation-duration: 36s;
  animation-delay: 6s;
}

@keyframes float-particle {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.25;
  }
  25% {
    transform: translate(20px, -30px) scale(1.05);
    opacity: 0.35;
  }
  50% {
    transform: translate(-15px, -60px) scale(0.95);
    opacity: 0.3;
  }
  75% {
    transform: translate(25px, -40px) scale(1.02);
    opacity: 0.32;
  }
}

/* Geometric shapes animation */
.geometric-shape {
  position: absolute;
  opacity: 0.06;
  animation: rotate-shape 60s linear infinite;
  will-change: transform;
}

.geometric-shape.circle {
  width: 200px;
  height: 200px;
  border: 2px solid var(--primary-color);
  border-radius: 50%;
  top: 15%;
  right: 10%;
}

.geometric-shape.square {
  width: 150px;
  height: 150px;
  border: 2px solid var(--primary-light);
  transform: rotate(45deg);
  bottom: 20%;
  left: 5%;
  animation-direction: reverse;
}

.geometric-shape.triangle {
  width: 0;
  height: 0;
  border-left: 80px solid transparent;
  border-right: 80px solid transparent;
  border-bottom: 140px solid rgba(13, 110, 253, 0.2);
  top: 50%;
  left: 50%;
  animation-duration: 80s;
}

@keyframes rotate-shape {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Offset for fixed navbar */
section {
  scroll-margin-top: 90px;
}

/* ===============================
   NAVBAR
================================= */
.navbar {
  height: 70px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95) !important;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link {
  font-weight: 500;
  color: #111;
  position: relative;
  transition: all 0.3s ease;
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: #0d6efd;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  width: 80%;
}

.navbar .nav-link:hover {
  color: #0d6efd;
  transform: translateY(-2px);
}

/* ===============================
   HERO SLIDER (600px EXACT)
================================= */
.hero-slider {
  position: relative;
  height: 600px;              /* ✅ FIXED HEIGHT */
  margin-top: 70px;           /* navbar offset */
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}

/* Animated gradient overlay */
.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
    rgba(13, 110, 253, 0.9) 0%,
    rgba(47, 128, 255, 0.85) 50%,
    rgba(59, 130, 246, 0.9) 100%);
  animation: gradient-shift 8s ease infinite;
  background-size: 200% 200%;
}

@keyframes gradient-shift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

/* Animated border effect */
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%);
  background-size: 200% 200%;
  animation: shine 3s ease-in-out infinite;
  pointer-events: none;
}

@keyframes shine {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.hero-slide.active {
  opacity: 1;
}

/* Content wrapper */
.hero-slide .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  color: #fff;
  animation: fade-in-up 1s ease-out;
}

@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* TEXT – Enhanced */
.hero-slide h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  animation: text-glow 2s ease-in-out infinite alternate;
}

@keyframes text-glow {
  from {
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  }
  to {
    text-shadow: 0 4px 30px rgba(255, 255, 255, 0.35),
                 0 0 35px rgba(255, 255, 255, 0.18);
  }
}

.hero-slide p {
  font-size: 18px;
  font-weight: 400;
  margin-top: 12px;
  opacity: 0.95;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Buttons - Enhanced */
.hero-buttons {
  margin-top: 28px;
  display: flex;
  gap: 16px;
  justify-content: center;
}

.hero-buttons .btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.hero-buttons .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.hero-buttons .btn:hover::before {
  width: 300px;
  height: 300px;
}

.hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.35);
  border-color: var(--bg-white);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: 30px;
}

.slider-arrow.next {
  right: 30px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition-normal);
}

.slider-dot:hover {
  background: rgba(255, 255, 255, 0.6);
  transform: scale(1.2);
}

.slider-dot.active {
  background: var(--bg-white);
  width: 32px;
  border-radius: 6px;
}

/* Responsive slider controls */
@media (max-width: 768px) {
  .slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .slider-arrow.prev {
    left: 15px;
  }

  .slider-arrow.next {
    right: 15px;
  }

  .slider-dots {
    bottom: 20px;
    gap: 8px;
  }

  .slider-dot {
    width: 10px;
    height: 10px;
  }

  .slider-dot.active {
    width: 24px;
  }
}

/* ===============================
   SECTION COMMON
================================= */
.section-padding {
  padding: 90px 0;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-desc {
  max-width: 720px;
  margin: 0 auto;
  color: #666;
  font-size: 16px;
}

/* ===============================
   ABOUT SECTION
================================= */
.about-section {
  padding: 120px 0 140px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f5f9ff 60%,
    #ffffff 100%
  );
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: move-bg 20s linear infinite;
  pointer-events: none;
}

@keyframes move-bg {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.about-header {
  max-width: 820px;
  margin: 0 auto 80px;
  text-align: center;
}

.about-header h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.about-header h2 span {
  color: #0d6efd;
}

.about-desc {
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* ===============================
   ABOUT CARDS (HOVER STYLE)
================================= */
.about-card {
  background: #fff;
  padding: 44px 38px;
  border-radius: 18px;
  height: 100%;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.1), transparent);
  transition: left 0.5s ease;
}

.about-card:hover::before {
  left: 100%;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 70px rgba(13,110,253,0.25);
  border: 1px solid rgba(13, 110, 253, 0.2);
}

/* Icon */
.about-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(13,110,253,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.3s ease;
}

.about-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #0d6efd;
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease;
}

.about-card:hover .about-icon::after {
  opacity: 1;
  transform: scale(1.3);
  animation: pulse-ring 1.5s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

.about-icon i {
  font-size: 24px;
  color: #0d6efd;
  transition: transform 0.3s ease;
}

.about-icon i {
  transition: transform 0.6s ease;
}

.about-card:hover .about-icon i {
  transform: scale(1.15) rotate(5deg);
}

/* Card Text */
.about-card h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.about-card h4 span {
  color: #0d6efd;
}

.about-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
}

/* ===============================
   SMOOTH ANIMATIONS
================================= */
.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 1s ease forwards;
}

.animate-slide-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: slideLeft 1.1s ease forwards;
  animation-delay: 0.2s;
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(40px);
  animation: slideRight 1.1s ease forwards;
  animation-delay: 0.2s;
}

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

@keyframes slideLeft {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideRight {
  to { opacity: 1; transform: translateX(0); }
}

/* ===============================
   RESPONSIVE
================================= */
@media (max-width: 768px) {
  .about-section {
    padding: 90px 0;
  }

  .about-header h2 {
    font-size: 32px;
  }

  .about-card {
    padding: 32px;
  }
}



/* ===============================
   SERVICES SECTION
================================= */
.services-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #0d6efd, #2f80ff);
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Application Icons Background - Beautiful Floating Pattern */
.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><rect x="20" y="20" width="40" height="40" rx="8" fill="rgba(255,255,255,0.06)" stroke="rgba(255,255,255,0.1)" stroke-width="2"/><circle cx="40" cy="35" r="8" fill="rgba(255,255,255,0.08)"/></svg>'),
    url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><path d="M30 10 L50 30 L30 50 L10 30 Z" fill="rgba(255,255,255,0.05)" stroke="rgba(255,255,255,0.08)" stroke-width="2"/></svg>');
  background-position: 0 0, 100px 100px;
  background-size: 120px 120px, 90px 90px;
  animation: float-app-icons 25s linear infinite;
  pointer-events: none;
  opacity: 0.7;
}

.services-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse-glow 6s ease-in-out infinite;
}

@keyframes float-app-icons {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(40px, 40px) rotate(15deg);
  }
}

@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

.services-header {
  text-align: center;
  margin-bottom: 70px;
}

.services-header h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
}

.services-header p {
  font-size: 15px;
  opacity: 0.9;
}

/* Card */
.service-card {
  background: #f4f8ff;
  color: #111;
  padding: 34px 30px;
  border-radius: 14px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent 30%, rgba(13, 110, 253, 0.1) 50%, transparent 70%);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
  top: 100%;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
  background: linear-gradient(135deg, #ffffff 0%, #f4f8ff 100%);
}

/* Icon */
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, #000 0%, #333 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
  background: var(--gradient-primary);
  box-shadow: 0 8px 25px rgba(13, 110, 253, 0.4);
  transition: all 0.8s ease;
}

.service-icon i {
  color: #fff;
  font-size: 18px;
  position: relative;
  z-index: 1;
  transition: transform 0.6s ease;
}

/* Text */
.service-card h5 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 90px 0;
  }
}


/* ===============================
   AI SOLUTIONS SECTION
================================= */
.ai-section {
  padding: 120px 0;
  background: linear-gradient(180deg, #eef5ff 0%, #f8fbff 50%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}

/* AI Neural Network Pattern Background */
.ai-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    /* Circuit board pattern */
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="3" fill="rgba(13,110,253,0.15)"/><circle cx="80" cy="20" r="3" fill="rgba(13,110,253,0.15)"/><circle cx="20" cy="80" r="3" fill="rgba(13,110,253,0.15)"/><circle cx="80" cy="80" r="3" fill="rgba(13,110,253,0.15)"/><line x1="20" y1="20" x2="80" y2="20" stroke="rgba(13,110,253,0.08)" stroke-width="1"/><line x1="20" y1="80" x2="80" y2="80" stroke="rgba(13,110,253,0.08)" stroke-width="1"/><line x1="20" y1="20" x2="20" y2="80" stroke="rgba(13,110,253,0.08)" stroke-width="1"/><line x1="80" y1="20" x2="80" y2="80" stroke="rgba(13,110,253,0.08)" stroke-width="1"/></svg>'),
    /* CPU chip pattern */
    url('data:image/svg+xml,<svg width="80" height="80" xmlns="http://www.w3.org/2000/svg"><rect x="25" y="25" width="30" height="30" rx="2" fill="rgba(13,110,253,0.06)" stroke="rgba(13,110,253,0.12)" stroke-width="2"/><rect x="32" y="32" width="16" height="16" rx="1" fill="rgba(13,110,253,0.1)"/><line x1="25" y1="32" x2="18" y2="32" stroke="rgba(13,110,253,0.1)" stroke-width="2"/><line x1="25" y1="40" x2="18" y2="40" stroke="rgba(13,110,253,0.1)" stroke-width="2"/><line x1="25" y1="48" x2="18" y2="48" stroke="rgba(13,110,253,0.1)" stroke-width="2"/><line x1="55" y1="32" x2="62" y2="32" stroke="rgba(13,110,253,0.1)" stroke-width="2"/><line x1="55" y1="40" x2="62" y2="40" stroke="rgba(13,110,253,0.1)" stroke-width="2"/><line x1="55" y1="48" x2="62" y2="48" stroke="rgba(13,110,253,0.1)" stroke-width="2"/></svg>');
  background-position: 0 0, 150px 150px;
  background-size: 200px 200px, 160px 160px;
  animation: ai-network-flow 30s linear infinite;
  pointer-events: none;
  opacity: 0.6;
}

/* Neural connections animation */
.ai-section::after {
  content: "";
  position: absolute;
  top: -10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.08) 0%, transparent 60%);
  border-radius: 50%;
  animation: neural-pulse 8s ease-in-out infinite;
}

@keyframes ai-network-flow {
  0% {
    transform: translate(0, 0);
    opacity: 0.6;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translate(50px, 50px);
    opacity: 0.6;
  }
}

@keyframes neural-pulse {
  0%, 100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.15) translate(-20px, -20px);
    opacity: 0.5;
  }
}

.ai-header h2 {
  font-size: 34px;
  font-weight: 800;
}

.ai-header span {
  color: #0d6efd;
}

.ai-header p {
  max-width: 620px;
  margin: 12px auto 0;
  font-size: 14px;
  color: #666;
}

/* AI Card */
.ai-card {
  background: #fff;
  padding: 36px 30px;
  border-radius: 14px;
  height: 100%;
  transition: all 0.35s ease;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.ai-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(13, 110, 253, 0.05), transparent);
  transition: left 0.5s ease;
}

.ai-card:hover::before {
  left: 100%;
}

.ai-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.18);
  border-color: rgba(13, 110, 253, 0.3);
  background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

/* Icon Box */
.ai-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 2px solid #0d6efd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  transition: all 0.3s ease;
  background: rgba(13, 110, 253, 0.05);
}

.ai-card:hover .ai-icon {
  background: var(--gradient-primary);
  border-color: transparent;
  transform: scale(1.08) rotate(5deg);
  box-shadow: 0 5px 20px rgba(13, 110, 253, 0.3);
  transition: all 0.6s ease;
}

.ai-icon i {
  font-size: 18px;
  color: var(--primary-color);
  transition: all 0.5s ease;
}

.ai-card:hover .ai-icon i {
  color: #fff;
  transform: scale(1.05);
}

/* Text */
.ai-card h6 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}

.ai-card p {
  font-size: 13px;
  color: #777;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .ai-section {
    padding: 90px 0;
  }
}


/* ===============================
   TESTIMONIAL SECTION
================================= */
.testimonial-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fbff 0%, #ffffff 50%, #eef5ff 100%);
  position: relative;
  overflow: hidden;
}

/* Beautiful Quote Pattern Background */
.testimonial-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    /* Elegant quote marks pattern */
    url('data:image/svg+xml,<svg width="120" height="120" xmlns="http://www.w3.org/2000/svg"><text x="20" y="60" font-size="80" fill="rgba(13,110,253,0.04)" font-family="Georgia,serif">"</text></svg>'),
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="30" fill="none" stroke="rgba(13,110,253,0.06)" stroke-width="2" stroke-dasharray="5,5"/><circle cx="50" cy="50" r="20" fill="rgba(13,110,253,0.03)"/></svg>');
  background-position: 10% 20%, 85% 70%;
  background-size: 180px 180px, 140px 140px;
  background-repeat: no-repeat;
  animation: quote-float 20s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.8;
}

/* Decorative stars/sparkles */
.testimonial-section::after {
  content: "";
  position: absolute;
  bottom: 10%;
  left: 15%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: sparkle-float 12s ease-in-out infinite alternate;
}

@keyframes quote-float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-20px) scale(1.05);
    opacity: 1;
  }
}

@keyframes sparkle-float {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  100% {
    transform: translate(30px, -30px) scale(1.15);
    opacity: 0.6;
  }
}

.testimonial-header {
  text-align: center;
  margin-bottom: 70px;
}

.testimonial-header h2 {
  font-size: 36px;
  font-weight: 800;
}

.testimonial-header span {
  color: #0d6efd;
}

.testimonial-header p {
  font-size: 14px;
  color: #666;
}

/* Slider */
.testimonial-slider {
  max-width: 820px;
  margin: auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.8s ease;
}

.testimonial-slide {
  min-width: 100%;  
}

/* Card - More attractive without heavy shadow */
.testimonial-card {
  background: linear-gradient(145deg, #ffffff 0%, #f8fbff 100%);
  border: 2px solid rgba(13,110,253,0.15);
  border-radius: 20px;
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(13,110,253,0.03) 0%, transparent 70%);
  animation: subtle-pulse 6s ease-in-out infinite;
}

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

.testimonial-card:hover {
  border-color: rgba(13,110,253,0.3);
  transform: translateY(-5px);
}

/* Quote - More prominent */
.testimonial-quote {
  font-size: 56px;
  color: rgba(13,110,253,0.2);
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

/* Text - More readable and attractive */
.testimonial-text {
  font-size: 17px;
  line-height: 1.8;
  color: #444;
  font-style: italic;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
  font-weight: 400;
}

/* Footer - More attractive */
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d6efd 0%, #0a58ca 100%);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(13,110,253,0.3);
  border: 3px solid #ffffff;
  transition: all 0.3s ease;
}

.testimonial-card:hover .avatar {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(13,110,253,0.4);
}

.client-info h6 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  color: #333;
  margin-bottom: 3px;
}

.client-info span {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.stars {
  margin-left: auto;
  display: flex;
  gap: 3px;
}

.stars i {
  color: #ffc107;
  font-size: 16px;
  filter: drop-shadow(0 1px 2px rgba(255,193,7,0.3));
}



/* ===============================
   TEAM SECTION
================================= */
.team-section {
  padding: 120px 0;
  background: radial-gradient(circle at top, #eef5ff 0%, #f7fbff 60%);
  position: relative;
  overflow: hidden;
}

.team-section::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.1), transparent 70%);
  border-radius: 50%;
  top: -200px;
  right: -200px;
  animation: float-blob 10s ease-in-out infinite;
}

.team-section::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(47, 128, 255, 0.08), transparent 70%);
  border-radius: 50%;
  bottom: -150px;
  left: -150px;
  animation: float-blob 12s ease-in-out infinite reverse;
}

@keyframes float-blob {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.team-title {
  font-size: 36px;
  font-weight: 800;
}

.team-title span {
  color: #0d6efd;
}

.team-subtitle {
  margin-top: 10px;
  color: #666;
  font-size: 16px;
}

/* Card */
.team-card {
  background: rgba(255,255,255,0.85);
  border-radius: 18px;
  padding: 40px 30px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.team-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(13, 110, 253, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.team-card:hover::before {
  opacity: 1;
}

.team-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 80px rgba(13, 110, 253, 0.2);
  border-color: rgba(13, 110, 253, 0.3);
}

/* Avatar */
.avatar-wrapper {
  width: 150px;
  height: 150px;
  margin: 0 auto 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-wrapper img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  z-index: 2;
}

/* Rotating Ring */
.rotating-ring {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px dashed rgba(13, 110, 253, 0.35);
  animation: spin 12s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Text */
.team-card h5 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 10px;
}

.team-card p {
  font-size: 14px;
  color: #777;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .team-section {
    padding: 90px 0;
  }
}

/* ===============================
   TRUSTED BY
================================= */
.trusted-section {
  padding: 80px 0;
  background: #fff;
}

.trusted-title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
}

.trusted-title span {
  color: #0d6efd;
}

/* Slider Wrapper */
.logo-slider {
  overflow: hidden;
  position: relative;
}

/* Track */
.logo-track {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: slide-left 30s linear infinite;
}

/* Pause on hover */
.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

/* Logo Card */
.logo-item {
  flex: 0 0 auto;
  width: 220px;
  height: 96px;
  background: #fff;
  border-radius: 14px;
  border: 2px solid rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.logo-item:hover {
  transform: scale(1.07);
  box-shadow: 0 20px 40px rgba(13,110,253,0.25);
  border-color: rgba(13,110,253,0.35);
}

/* Logo Image */
.logo-item img {
  max-height: 48px;
  max-width: 90%;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.logo-item:hover img {
  filter: grayscale(0);
  opacity: 1;
}

/* Animation */
@keyframes slide-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .logo-item {
    width: 180px;
    height: 80px;
  }
}


/* ===============================
   CONTACT
================================= */
.contact-section {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(13, 110, 253, 0.08), transparent 70%);
  border-radius: 50%;
  top: -100px;
  left: -100px;
  animation: float-blob 15s ease-in-out infinite;
}

.contact-section::after {
  content: "";
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(47, 128, 255, 0.06), transparent 70%);
  border-radius: 50%;
  bottom: -100px;
  right: -100px;
  animation: float-blob 18s ease-in-out infinite reverse;
}

.section-title {
  font-size: 40px;
  font-weight: 800;
}

.section-title span {
  color: #0d6efd;
}

.section-subtitle {
  color: #6c757d;
  max-width: 600px;
  margin: 10px auto 0;
}

.contact-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 35px;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,.08);
  position: relative;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.contact-card:hover {
  box-shadow: 0 20px 50px rgba(13, 110, 253, 0.15);
  border-color: rgba(13, 110, 253, 0.2);
  transform: translateY(-5px);
}

.info-card {
  background: rgba(255, 255, 255, 0.95);
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  position: relative;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
}

.info-card:hover {
  box-shadow: 0 15px 40px rgba(13, 110, 253, 0.12);
  border-color: rgba(13, 110, 253, 0.2);
  transform: translateY(-3px);
}

.info-card h6 {
  font-weight: 600;
  margin-bottom: 6px;
}

.info-card i {
  color: #0d6efd;
  margin-right: 6px;
}

.why-card {
  background: linear-gradient(135deg, #0d6efd, #3b82f6);
  color: #fff;
  padding: 30px;
  border-radius: 16px;
  height: 100%;
}

.why-card ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

.why-card li {
  margin-bottom: 8px;
}

.why-card li::before {
  content: "✓";
  margin-right: 8px;
}

/* Enhanced Form Inputs */
.contact-card .form-control {
  border: 2px solid rgba(13, 110, 253, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
  transition: all 0.3s ease;
  background: rgba(248, 251, 255, 0.5);
}

.contact-card .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 4px rgba(13, 110, 253, 0.1);
  background: #fff;
  transform: translateY(-2px);
}

.contact-card .btn-primary {
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card .btn-primary::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.contact-card .btn-primary:hover::before {
  width: 300px;
  height: 300px;
}

.contact-card .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.4);
}

/* ===============================
   FOOTER
================================= */
.ws-footer {
  background: linear-gradient(135deg, #1e66f5, #2f80ff);
  color: #ffffff;
  padding: 70px 0 30px;
  font-family: 'Inter', sans-serif;
}

.footer-brand span {
  line-height: 1.2;
  font-size: 14px;
}

.footer-text {
  max-width: 320px;
  font-size: 15px;
  opacity: 0.95;
}

.footer-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
}

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

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

.footer-links a {
  color: #ffffff;
  opacity: 0.9;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 16px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #ffffff;
  color: #1e66f5;
}

.footer-divider {
  border-color: rgba(255,255,255,0.3);
  margin: 40px 0 20px;
}

.footer-bottom {
  font-size: 14px;
  opacity: 0.9;
}


/* ================= THANK YOU PAGE ================= */
.thankyou-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Center content vertically */
.thankyou-wrapper {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
}

/* Thank You Card */
.thankyou-card {
  max-width: 600px;
  width: 100%;
  padding: 50px 40px;
  border-radius: 16px;
}

/* Scroll to Top Button */
.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #0d6efd, #2f80ff);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 5px 20px rgba(13, 110, 253, 0.3);
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(13, 110, 253, 0.5);
}

/* ================= FOOTER ================= */
.site-footer {
  background: #0d6efd;
  color: #fff;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-align: center;
}

/* ===============================
   TESTIMONIAL SLIDER CONTROLS
================================= */
.testimonial-section {
  position: relative;
}

.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 50px;
  height: 50px;
  background: rgba(13, 110, 253, 0.1);
  border: 2px solid rgba(13, 110, 253, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 20px;
  cursor: pointer;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}

.testimonial-arrow:hover {
  background: var(--primary-color);
  color: var(--bg-white);
  border-color: var(--primary-color);
  transform: translateY(-50%) scale(1.1);
}

.testimonial-arrow.prev {
  left: 20px;
}

.testimonial-arrow.next {
  right: 20px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(13, 110, 253, 0.2);
  border: 2px solid rgba(13, 110, 253, 0.4);
  cursor: pointer;
  transition: var(--transition-normal);
}

.testimonial-dot:hover {
  background: rgba(13, 110, 253, 0.4);
  transform: scale(1.2);
}

.testimonial-dot.active {
  background: var(--primary-color);
  width: 32px;
  border-radius: 6px;
  border-color: var(--primary-color);
}

/* ===============================
   SECURITY & CONTENT PROTECTION
================================= */

/* Disable Text Selection on All Elements */
* {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

/* Allow selection in form inputs only */
input,
textarea,
[contenteditable="true"] {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
}

/* Disable Image Dragging */
img {
  pointer-events: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

/* Re-enable pointer events for clickable images */
a img,
button img {
  pointer-events: auto;
}

/* Prevent Screenshot Highlighting */
::selection {
  background: transparent;
  color: inherit;
}

::-moz-selection {
  background: transparent;
  color: inherit;
}

/* Additional Image Protection */
img::before {
  content: " ";
  display: block;
}

/* Watermark Layer Protection */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999997;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 200px,
    rgba(13, 110, 253, 0.01) 200px,
    rgba(13, 110, 253, 0.01) 400px
  );
}

/* ===============================
   ACCESSIBILITY - WCAG COMPLIANCE
================================= */

/* Skip to main content link for screen readers */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100000;
  border-radius: 0 0 4px 0;
  font-weight: 600;
  transition: var(--transition-fast);
}

.skip-link:focus {
  top: 0;
  outline: 3px solid #ffbf47;
  outline-offset: 0;
}

/* Focus visible styles for keyboard navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--primary-color);
  outline-offset: 2px;
}

/* ===============================
   BLOG SECTION STYLES
================================= */

/* Blog Hero Section */
.blog-hero {
  background: linear-gradient(135deg, #0d6efd, #2f80ff);
  padding: 140px 0 80px;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  background-size: 60px 60px;
  animation: move-dots 15s linear infinite;
  pointer-events: none;
}

.blog-hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.blog-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.blog-hero h1 span {
  background: linear-gradient(90deg, #ffffff 0%, #e0f0ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.blog-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Listing Section */
.blog-section {
  padding: var(--section-padding) 0;
  background: #ffffff;
}

/* Blog Card - Reusable Component */
.blog-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.blog-image {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(13, 110, 253, 0.95);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  backdrop-filter: blur(10px);
}

.blog-content {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.blog-meta span {
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  color: var(--primary-color);
  font-size: 14px;
}

.blog-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.4;
}

.blog-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.7;
  margin-bottom: 20px;
  flex: 1;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-fast);
}

.blog-link:hover {
  gap: 12px;
  color: var(--primary-dark);
}

.blog-link i {
  transition: var(--transition-fast);
}

/* Blog Detail Section */
.blog-detail-section {
  padding: 140px 0 80px;
  background: #f8f9fa;
}

/* Back Button - Reusable Component */
.back-button-wrapper {
  margin-bottom: 40px;
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  background: white;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.back-button:hover {
  background: var(--primary-color);
  color: white;
  transform: translateX(-5px);
  box-shadow: var(--shadow-md);
}

.back-button i {
  font-size: 18px;
  transition: var(--transition-fast);
}

.back-button:hover i {
  transform: translateX(-3px);
}

/* Blog Detail Article */
.blog-detail-article {
  background: white;
  border-radius: 16px;
  padding: 60px;
  box-shadow: var(--shadow-sm);
  max-width: 900px;
  margin: 0 auto;
}

.blog-detail-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-category-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.blog-detail-header h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 24px;
}

.blog-detail-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: #666;
  font-size: 14px;
}

.blog-detail-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog-detail-meta i {
  color: var(--primary-color);
  font-size: 16px;
}

.blog-detail-image {
  margin: 40px auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Blog Content Typography - Reusable Styles */
.blog-detail-content {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.blog-detail-content .lead {
  font-size: 20px;
  font-weight: 500;
  color: #555;
  line-height: 1.7;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 2px solid #eee;
}

.blog-detail-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 48px;
  margin-bottom: 20px;
  line-height: 1.3;
}

.blog-detail-content h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 32px;
  margin-bottom: 16px;
}

.blog-detail-content p {
  margin-bottom: 20px;
}

.blog-detail-content ul,
.blog-detail-content ol {
  margin: 20px 0;
  padding-left: 28px;
}

.blog-detail-content li {
  margin-bottom: 12px;
  line-height: 1.7;
}

.blog-detail-content a {
  color: var(--primary-color);
  text-decoration: underline;
  font-weight: 600;
  transition: var(--transition-fast);
}

.blog-detail-content a:hover {
  color: var(--primary-dark);
}

.blog-detail-content strong {
  font-weight: 700;
  color: var(--text-dark);
}

/* Blog Quote - Reusable Component */
.blog-quote {
  background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
  border-left: 4px solid var(--primary-color);
  padding: 28px 32px;
  margin: 32px 0;
  border-radius: 8px;
  font-size: 18px;
  font-style: italic;
  color: #444;
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
}

.blog-quote footer {
  font-style: normal;
  font-size: 15px;
  color: #666;
  margin-top: 12px;
  font-weight: 600;
}

.blog-quote footer::before {
  content: "— ";
}

/* Blog Preview Section on Homepage */
.blog-preview-section {
  padding: var(--section-padding) 0;
  background: #ffffff;
}

.blog-preview-section .btn-primary {
  padding: 14px 32px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-normal);
}

.blog-preview-section .btn-primary:hover {
  gap: 14px;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.3);
}

.blog-preview-section .btn-primary i {
  transition: var(--transition-fast);
}
