
.about-hero {
    padding: 100px 0 120px;background: radial-gradient(circle at 30% 40%, rgba(37, 99, 235, 0.2) 0%, #ffffff 60%),linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, transparent 100%);position: relative;overflow: hidden;animation: heroGradient 15s ease infinite;min-height: 80vh;display: flex;align-items: center;
}


.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.1) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.08) 0%, transparent 35%),
    radial-gradient(circle at 40% 80%, rgba(249, 115, 22, 0.05) 0%, transparent 40%);
  animation: particleDrift 25s ease-in-out infinite;
  pointer-events: none;
}



/* Floating shapes */
.about-hero::after {
  content: '✦';
  position: absolute;
  font-size: 200px;
  color: rgba(37, 99, 235, 0.03);
  bottom: -50px;
  right: -30px;
  transform: rotate(15deg);
  animation: floatShape 20s ease-in-out infinite;
}

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

@keyframes particleDrift {
  0%, 100% { transform: scale(1) translate(0, 0); }
  33% { transform: scale(1.1) translate(2%, 2%); }
  66% { transform: scale(0.95) translate(-2%, -2%); }
}

@keyframes floatShape {
  0%, 100% { transform: rotate(15deg) translate(0, 0); }
  50% { transform: rotate(25deg) translate(-20px, -20px); }
}

.container {
  position: relative;
  z-index: 2;
}

.about-tag {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 4px;
  color: #2563eb;
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
  padding: 0.5rem 2rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), transparent);
  border-radius: 30px;
  animation: fadeInDown 1s ease;
}

.about-tag::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: translateX(-100%);
  animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
  100% { transform: translateX(100%); }
}

.about-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  animation: fadeInUp 1s ease 0.2s both;
}

.about-title span {
  color: #2563eb;
  position: relative;
  display: inline-block;
  animation: glowPulse 3s ease infinite;
}

.about-title span::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 15px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.3), transparent);
  filter: blur(8px);
  z-index: -1;
  animation: glowWidth 3s ease infinite;
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(37, 99, 235, 0.3); }
  50% { text-shadow: 0 0 40px rgba(37, 99, 235, 0.6); }
}

@keyframes glowWidth {
  0%, 100% { width: 100%; opacity: 0.3; }
  50% { width: 120%; opacity: 0.6; margin-left: -10%; }
}

.about-subtitle {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  color: #475569;
  line-height: 1.6;
  animation: fadeInUp 1s ease 0.3s both;
}

.about-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeInUp 1s ease 0.4s both;
}

/* Button enhancements */
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-weight: 600;
  letter-spacing: 0.5px;
  border: none;
  padding: 12px 32px !important;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, #2563eb, #1d4ed8, #2563eb);
  background-size: 200% 200%;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  animation: gradientShift 5s ease infinite;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 35px rgba(37, 99, 235, 0.4);
}

.btn-outline-dark {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(0, 0, 0, 0.1) !important;
  color: #0f172a;
}

.btn-outline-dark:hover {
  background: white;
  border-color: #2563eb !important;
  color: #2563eb;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

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

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

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

/* =========================
   SERVICES SECTION - ENHANCED
========================= */
.about-services {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafcff 100%);
  position: relative;
}

.about-services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  animation: slideInLeft 0.8s ease;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  border-radius: 2px;
  animation: titleUnderline 1s ease 0.5s both;
}

@keyframes titleUnderline {
  from { width: 0; opacity: 0; }
  to { width: 60px; opacity: 1; }
}

.section-sub {
  font-size: 1.2rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
  animation: fadeInUp 0.8s ease 0.2s both;
}

/* Service Cards */
.service-card {
  background: linear-gradient(135deg, #ffffff, #f8fbff);
  padding: 35px 30px;
  border-radius: 24px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  height: 100%;
  animation: cardFadeIn 0.8s ease;
  animation-fill-mode: both;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #2563eb, #7c3aed, #2563eb);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.1), transparent 70%);
  border-radius: 50%;
  transition: all 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 50px rgba(37, 99, 235, 0.15);
  border-color: transparent;
}

.service-card:hover::before {
  transform: translateX(0);
}

.service-card:hover::after {
  width: 150px;
  height: 150px;
  opacity: 0.8;
}

.service-card h5 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #0f172a;
  position: relative;
  display: inline-block;
  transition: all 0.3s ease;
}

.service-card:hover h5 {
  color: #2563eb;
  transform: translateX(5px);
}

.service-card h5::before {
  content: '◆';
  font-size: 1rem;
  color: #2563eb;
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  transition: all 0.3s ease;
}

.service-card:hover h5::before {
  opacity: 1;
  left: -15px;
}

.service-card p {
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-card ul {
  padding-left: 1.2rem;
  margin: 1.5rem 0;
  list-style: none;
}

.service-card li {
  margin-bottom: 0.8rem;
  color: #334155;
  position: relative;
  padding-left: 1.5rem;
  transition: all 0.3s ease;
}

.service-card li::before {
  content: '✓';
  color: #2563eb;
  position: absolute;
  left: 0;
  font-weight: bold;
  transition: all 0.3s ease;
}

.service-card:hover li {
  transform: translateX(5px);
}

.service-card:hover li::before {
  transform: scale(1.2);
  color: #7c3aed;
}

.service-stat {
  display: inline-block;
  font-weight: 700;
  color: #2563eb;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(37, 99, 235, 0.05));
  padding: 0.5rem 1.5rem;
  border-radius: 30px;
  font-size: 0.9rem;
  border: 1px solid rgba(37, 99, 235, 0.2);
  transition: all 0.3s ease;
  animation: statPulse 3s ease infinite;
}

@keyframes statPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); background: rgba(37, 99, 235, 0.15); }
}

.service-card:hover .service-stat {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: white;
  border-color: transparent;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
  animation: none;
}

/* =========================
   STATS SECTION - ENHANCED
========================= */
.about-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  position: relative;
  overflow: hidden;
}

.about-stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, rgba(37, 99, 235, 0.1) 0%, transparent 40%);
  animation: statsBg 20s ease-in-out infinite;
}

@keyframes statsBg {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.about-stats .container {
  position: relative;
  z-index: 2;
}

.about-stats .col-md-3 {
  animation: statItemFade 0.8s ease;
  animation-fill-mode: both;
  position: relative;
}

.about-stats .col-md-3:nth-child(1) { animation-delay: 0.1s; }
.about-stats .col-md-3:nth-child(2) { animation-delay: 0.2s; }
.about-stats .col-md-3:nth-child(3) { animation-delay: 0.3s; }
.about-stats .col-md-3:nth-child(4) { animation-delay: 0.4s; }

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

.about-stats h3 {
  font-size: 3.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, #ffffff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: countUp 2s ease-out;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.about-stats h3::after {
  content: '+';
  font-size: 2rem;
  position: absolute;
  top: -5px;
  right: -25px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: plusPulse 2s ease infinite;
}

.about-stats .col-md-3:last-child h3::after {
  content: '';
}

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

.about-stats p {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-top: 0.5rem;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.about-stats p::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #7c3aed);
  transition: width 0.3s ease;
}

.about-stats .col-md-3:hover p::before {
  width: 50%;
}

/* Add counter animation effect */
@keyframes counterGlow {
  0%, 100% { text-shadow: 0 0 20px rgba(37, 99, 235, 0.3); }
  50% { text-shadow: 0 0 40px rgba(37, 99, 235, 0.6); }
}

.about-stats h3 {
  animation: counterGlow 3s ease infinite;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 991px) {
  .about-hero {
    padding: 100px 0 80px;
    min-height: auto;
  }

  .about-title {
    font-size: 2.8rem;
  }

  .about-subtitle {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .about-actions {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 300px;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 25px;
  }

  .service-card h5 {
    font-size: 1.3rem;
  }

  .about-stats h3 {
    font-size: 2.5rem;
  }

  .about-stats h3::after {
    font-size: 1.5rem;
    right: -20px;
  }

  .about-stats p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 80px 0 60px;
  }

  .about-title {
    font-size: 2.2rem;
  }

  .about-tag {
    font-size: 0.9rem;
    padding: 0.3rem 1.5rem;
  }

  .about-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .section-sub {
    font-size: 1rem;
    padding: 0 15px;
  }

  .service-card {
    margin-bottom: 1rem;
  }

  .about-stats {
    padding: 60px 0;
  }

  .about-stats .col-md-3 {
    margin-bottom: 2rem;
  }

  .about-stats h3 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .about-title {
    font-size: 1.8rem;
  }

  .about-title span::after {
    height: 10px;
    bottom: 3px;
  }

  .btn {
    padding: 10px 20px !important;
    font-size: 0.9rem;
  }

  .service-card h5 {
    font-size: 1.2rem;
  }

  .service-card p,
  .service-card li {
    font-size: 0.9rem;
  }

  .service-stat {
    font-size: 0.8rem;
    padding: 0.4rem 1rem;
  }

  .about-stats h3 {
    font-size: 2rem;
  }

  .about-stats p {
    font-size: 0.9rem;
  }
}

/* =========================
   ADDITIONAL ANIMATIONS
========================= */

/* Hover effect for stat items */
.about-stats .col-md-3 {
  transition: transform 0.3s ease;
  cursor: default;
}

.about-stats .col-md-3:hover {
  transform: translateY(-5px);
}

/* Loading animation for stats (if you want to add counting effect later) */
@keyframes countNumber {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-number {
  animation: countNumber 0.5s ease-out;
}

/* Floating animation for cards */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.service-card:hover {
  animation: float 3s ease infinite;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Intersection Observer animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

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