
.whatsapp-float {
    position: fixed;
    bottom: 125px;
    right: 20px;
    z-index: 999;
    height: 60px;
    width: 60px;
    background-color: #25d366;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
  }

.whatsapp-float img {
  height: 35px;
  width: 35px;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.service-header {
  text-align: center;
  margin-bottom: 25px;
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  color: white;
}

.service-icon.large {
  width: 100px;
  height: 100px;
  font-size: 40px;
}

.service-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  transition: background 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.2);
}

.feature-icon {
  font-size: 24px;
  margin-right: 15px;
  min-width: 40px;
}

.feature-item h6 {
  font-weight: 600;
  margin-bottom: 5px;
  color: #fff;
}

.feature-item p {
  margin: 0;
  opacity: 0.9;
  font-size: 0.9rem;
}

.compliance-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
}

/* Modern Website Styles */
body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

/* Modern Hero Section */
.modern-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 80px;
  height: 80px;
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-content {
  z-index: 1;
  color: white;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-buttons .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

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

/* Modern Sections */
.modern-section {
  padding: 100px 0;
  position: relative;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.section-description {
  font-size: 1.1rem;
  color: #6c757d;
  margin-bottom: 2rem;
}

/* Content Cards */
.content-card {
  padding: 2rem;
}

.btn-modern {
  background: linear-gradient(45deg, #667eea, #764ba2);
  border: none;
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
  color: white;
}

/* Image Container */
.image-container {
  position: relative;
  text-align: center;
}

.image-wrapper {
  position: relative;
  display: inline-block;
}

.main-image {
  width: 100%;
  max-width: 400px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.main-image:hover {
  transform: scale(1.05);
}

.image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  border-radius: 50%;
  opacity: 0.8;
  z-index: -1;
}

/* Modern Cards */
.modern-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  height: 100%;
}

.modern-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

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

.card-icon img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.modern-card .card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.modern-card .card-text {
  color: #6c757d;
  line-height: 1.6;
}

/* Modern Footer */
.modern-footer {
  position: relative;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 60px 0 0;
  overflow: hidden;
}

.footer-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

.footer-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.footer-logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.6;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
}

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

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

.footer-menu a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-menu a:hover {
  color: #667eea;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(45deg, #667eea, #764ba2);
  transform: translateY(-3px);
  color: white;
}

.contact-info {
  space-y: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  width: 20px;
  margin-right: 15px;
  color: #667eea;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 25px 0;
}

.copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.powered-by {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}

.highlight {
  color: #667eea;
  font-weight: 600;
}

/* Ultra Modern Hero Section */
.ultra-modern-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-background-enhanced {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
  z-index: -3;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.6));
  z-index: -2;
}

.particles-container {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: particleFloat 8s linear infinite;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 1s; }
.particle:nth-child(3) { left: 30%; animation-delay: 2s; }
.particle:nth-child(4) { left: 60%; animation-delay: 3s; }
.particle:nth-child(5) { left: 80%; animation-delay: 4s; }
.particle:nth-child(6) { left: 90%; animation-delay: 5s; }

@keyframes particleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.geometric-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.geo-shape {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.1);
  animation: geoFloat 12s ease-in-out infinite;
}

.geo-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: 10%;
  border-radius: 20px;
  animation-delay: 0s;
}

.geo-2 {
  width: 60px;
  height: 60px;
  top: 70%;
  left: 5%;
  transform: rotate(45deg);
  animation-delay: 2s;
}

.geo-3 {
  width: 80px;
  height: 80px;
  top: 30%;
  left: 15%;
  border-radius: 50%;
  animation-delay: 4s;
}

.geo-4 {
  width: 120px;
  height: 120px;
  bottom: 20%;
  right: 20%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  animation-delay: 6s;
}

@keyframes geoFloat {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
  50% { transform: translateY(-30px) rotate(180deg); opacity: 0.7; }
}

.grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
}

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

.hero-content-enhanced {
  position: relative;
  z-index: 2;
  color: white;
  padding: 2rem 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 25px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
}

.hero-badge i {
  margin-right: 8px;
  color: #4ade80;
}

.hero-title-enhanced {
  font-size: 3.8rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.highlight-text {
  color: #60a5fa;
}

.gradient-text {
  background: linear-gradient(45deg, #f59e0b, #ef4444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle-enhanced {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
  max-width: 90%;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: #4ade80;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 5px;
}

.hero-buttons-enhanced {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-enhanced {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.btn-enhanced.primary {
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
}

.btn-enhanced.secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.btn-enhanced:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
  color: white;
}

.hero-visual {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px;
  color: white;
  animation: cardFloat 6s ease-in-out infinite;
  min-width: 200px;
}

.card-1 {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: 5%;
  animation-delay: 2s;
}

.card-3 {
  bottom: 15%;
  left: 20%;
  animation-delay: 4s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

.floating-card .card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #4ade80, #22d3ee);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  font-size: 20px;
}

.floating-card h6 {
  font-weight: 700;
  margin-bottom: 5px;
}

.floating-card p {
  font-size: 0.9rem;
  opacity: 0.8;
  margin: 0;
}

.hero-main-visual {
  position: relative;
}

.visual-circle {
  width: 300px;
  height: 300px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rotate 20s linear infinite;
}

.inner-circle {
  width: 200px;
  height: 200px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: white;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .modern-section {
    padding: 60px 0;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .modern-footer {
    padding: 40px 0 0;
  }
  
  .social-links {
    justify-content: center;
    margin-top: 20px;
  }
  
  .hero-title-enhanced {
    font-size: 2.5rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons-enhanced {
    flex-direction: column;
  }
  
  .btn-enhanced {
    text-align: center;
    justify-content: center;
  }
  
  .floating-card {
    position: relative;
    margin-bottom: 1rem;
  }
  
  .hero-visual {
    height: auto;
    margin-top: 2rem;
  }
}

/* Modern Contact Section */
.modern-contact-section {
  position: relative;
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  padding: 100px 0;
  overflow: hidden;
}

.contact-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.contact-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.contact-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.contact-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  animation: contactFloat 10s linear infinite;
}

.contact-particle:nth-child(1) { left: 15%; animation-delay: 0s; }
.contact-particle:nth-child(2) { left: 35%; animation-delay: 2s; }
.contact-particle:nth-child(3) { left: 65%; animation-delay: 4s; }
.contact-particle:nth-child(4) { left: 85%; animation-delay: 6s; }

@keyframes contactFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.modern-contact-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.form-header {
  text-align: center;
  margin-bottom: 30px;
  color: white;
}

.form-header h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.form-header p {
  opacity: 0.8;
  margin: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.input-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.6);
  z-index: 2;
}

.input-wrapper input,
.input-wrapper textarea {
  width: 100%;
  padding: 15px 15px 15px 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-wrapper input:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.input-wrapper label {
  position: absolute;
  top: -10px;
  left: 15px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 2px 10px;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.input-wrapper input:focus + label,
.input-wrapper textarea:focus + label {
  opacity: 1;
  transform: translateY(0);
}

.btn-submit {
  width: 100%;
  padding: 15px 30px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border: none;
  border-radius: 50px;
  color: white;
  font-size: 1.1rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 20px 0;
}

.info-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: white;
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.15);
}

.info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #4ade80, #22d3ee);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.info-content h5 {
  font-weight: 700;
  margin-bottom: 5px;
}

.info-content p {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: #60a5fa;
}

.info-content span {
  font-size: 0.9rem;
  opacity: 0.7;
}

.response-card {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(16, 185, 129, 0.1));
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.response-card:hover {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.15));
  border-color: rgba(34, 197, 94, 0.5);
}

.response-card .info-icon {
  background: linear-gradient(45deg, #22c55e, #10b981);
}

.contact-visual {
  margin-top: 30px;
  text-align: center;
}

.contact-image {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .modern-contact-form {
    padding: 25px;
  }
  
  .info-card {
    flex-direction: column;
    text-align: center;
  }
  
  .modern-contact-section {
    padding: 60px 0;
  }
}

/* Enhanced About Section */
.enhanced-about-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  overflow: hidden;
}

.about-background-enhanced {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.about-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(102, 126, 234, 0.4);
  border-radius: 50%;
  animation: aboutParticleFloat 12s linear infinite;
}

.about-particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.about-particle:nth-child(2) { left: 40%; animation-delay: 3s; }
.about-particle:nth-child(3) { left: 60%; animation-delay: 6s; }
.about-particle:nth-child(4) { left: 80%; animation-delay: 9s; }

@keyframes aboutParticleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.about-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
}

.about-shape {
  position: absolute;
  background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
  border-radius: 50%;
  animation: aboutFloat 15s ease-in-out infinite;
}

.about-shape.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.about-shape.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 5s;
}

.about-shape.shape-3 {
  width: 100px;
  height: 100px;
  top: 60%;
  right: 30%;
  animation-delay: 10s;
}

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

.enhanced-image-wrapper {
  position: relative;
  text-align: center;
}

.image-frame {
  position: relative;
  display: inline-block;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.about-main-image {
  width: 100%;
  max-width: 500px;
  display: block;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-frame:hover .image-overlay {
  opacity: 1;
}

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 10px;
  display: block;
}

.floating-stats {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  animation: statFloat 4s ease-in-out infinite;
}

.stat-card:nth-child(2) {
  animation-delay: 2s;
}

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

.stat-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

.stat-number {
  font-size: 1.2rem;
  font-weight: 800;
  color: #2c3e50;
  display: block;
}

.stat-label {
  font-size: 0.8rem;
  color: #6b7280;
}

.floating-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: linear-gradient(45deg, #4ade80, #22d3ee);
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  animation: badgePulse 3s ease-in-out infinite;
}

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

.enhanced-about-content {
  padding: 2rem 0;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #6b7280;
  margin-bottom: 3rem;
}

.expertise-grid {
  display: grid;
  gap: 20px;
  margin-bottom: 3rem;
}

.expertise-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.expertise-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  flex-shrink: 0;
}

.expertise-content h6 {
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.expertise-content p {
  color: #6b7280;
  margin: 0;
  font-size: 0.95rem;
}

.about-metrics {
  display: flex;
  gap: 30px;
  margin-bottom: 3rem;
  padding: 25px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  backdrop-filter: blur(10px);
}

.metric-item {
  text-align: center;
}

.metric-number {
  font-size: 2rem;
  font-weight: 800;
  color: #667eea;
  display: block;
  line-height: 1;
}

.metric-label {
  font-size: 0.9rem;
  color: #6b7280;
  margin-top: 5px;
}

.about-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .enhanced-about-section {
    padding: 80px 0;
  }
  
  .floating-stats {
    position: relative;
    top: auto;
    right: auto;
    flex-direction: row;
    justify-content: center;
    margin-top: 20px;
  }
  
  .about-metrics {
    flex-direction: column;
    gap: 15px;
  }
  
  .about-actions {
    flex-direction: column;
  }
}

/* Enhanced ABDM Section */
.enhanced-abdm-section {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: white;
  overflow: hidden;
}

.abdm-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.abdm-particles {
  position: absolute;
  width: 100%;
  height: 100%;
}

.abdm-particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(59, 130, 246, 0.6);
  border-radius: 50%;
  animation: abdmParticleFloat 15s linear infinite;
}

.abdm-particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.abdm-particle:nth-child(2) { left: 30%; animation-delay: 3s; }
.abdm-particle:nth-child(3) { left: 50%; animation-delay: 6s; }
.abdm-particle:nth-child(4) { left: 70%; animation-delay: 9s; }
.abdm-particle:nth-child(5) { left: 90%; animation-delay: 12s; }

@keyframes abdmParticleFloat {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100px) scale(1); opacity: 0; }
}

.abdm-waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200%;
  height: 100px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
  animation: waveMove 8s ease-in-out infinite;
}

.wave-1 {
  animation-delay: 0s;
}

.wave-2 {
  animation-delay: 4s;
  opacity: 0.5;
}

@keyframes waveMove {
  0%, 100% { transform: translateX(-50%); }
  50% { transform: translateX(-25%); }
}

.enhanced-content-card {
  padding: 2rem 0;
}

.abdm-features {
  margin: 2rem 0;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.feature-highlight:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}

.feature-highlight .feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.feature-highlight h6 {
  font-weight: 700;
  margin-bottom: 5px;
  color: #60a5fa;
}

.feature-highlight p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

.abdm-stats {
  display: flex;
  gap: 30px;
  margin: 2rem 0;
}

.stat-box {
  text-align: center;
  padding: 20px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  flex: 1;
}

.stat-value {
  font-size: 2rem;
  font-weight: 800;
  color: #3b82f6;
  display: block;
  line-height: 1;
}

.stat-desc {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-top: 5px;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.enhanced-image-container {
  position: relative;
  text-align: center;
}

.image-frame-abdm {
  position: relative;
  display: inline-block;
  border-radius: 25px;
  overflow: hidden;
}

.abdm-main-image {
  width: 100%;
  max-width: 500px;
  border-radius: 25px;
  transition: transform 0.3s ease;
}

.image-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  border-radius: 35px;
  opacity: 0.3;
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.floating-info-cards {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.info-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: white;
  animation: infoCardFloat 6s ease-in-out infinite;
  min-width: 180px;
}

.info-card.card-1 {
  top: 15%;
  left: -10%;
  animation-delay: 0s;
}

.info-card.card-2 {
  top: 60%;
  right: -15%;
  animation-delay: 2s;
}

.info-card.card-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: 4s;
}

@keyframes infoCardFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
}

.info-card .card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #3b82f6, #1d4ed8);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.info-card .card-title {
  font-weight: 700;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 2px;
}

.info-card .card-desc {
  font-size: 0.8rem;
  opacity: 0.8;
}

.abdm-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(45deg, #f59e0b, #d97706);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3);
  animation: badgeGlow 3s ease-in-out infinite;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 10px 25px rgba(245, 158, 11, 0.3); }
  50% { box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5); }
}

@media (max-width: 768px) {
  .enhanced-abdm-section {
    padding: 80px 0;
  }
  
  .abdm-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .floating-info-cards {
    position: relative;
    margin-top: 30px;
  }
  
  .info-card {
    position: relative;
    margin-bottom: 15px;
  }
}

/* Modern Ecosystem Section */
.modern-ecosystem-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  overflow: hidden;
}

.ecosystem-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ecosystem-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(102, 126, 234, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  animation: gridPulse 4s ease-in-out infinite;
}

@keyframes gridPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.6; }
}

.ecosystem-header {
  text-align: center;
  padding: 2rem;
}

.ecosystem-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #dc2626;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.ecosystem-description {
  font-size: 1.1rem;
  color: #6b7280;
  margin-bottom: 2rem;
}

.central-hub {
  width: 120px;
  height: 120px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: white;
  margin: 0 auto;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  animation: hubPulse 3s ease-in-out infinite;
}

@keyframes hubPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3); }
  50% { transform: scale(1.1); box-shadow: 0 25px 50px rgba(102, 126, 234, 0.5); }
}

.ecosystem-grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  padding: 2rem;
}

.ecosystem-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ecosystem-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.card-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: transform 0.3s ease;
}

.ecosystem-card:hover .card-icon-wrapper {
  transform: rotate(10deg) scale(1.1);
}

.card-icon-wrapper img {
  width: 40px;
  height: 40px;
  filter: brightness(0) invert(1);
}

.ecosystem-card h6 {
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}

.card-connector {
  position: absolute;
  top: 50%;
  right: -12px;
  width: 24px;
  height: 2px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  opacity: 0.5;
}

/* Modern Integration Section */
.modern-integration-section {
  position: relative;
  padding: 100px 0;
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: white;
  overflow: hidden;
}

.integration-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.integration-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.integration-content {
  padding: 2rem 0;
}

.integration-description {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #d1d5db;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.integration-benefits {
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.benefit-item i {
  color: #4ade80;
  font-size: 1.5rem;
  min-width: 30px;
}

.milestones-container {
  padding: 2rem;
}

.milestone-header {
  text-align: center;
  margin-bottom: 2rem;
}

.milestone-header p {
  font-size: 1.1rem;
  color: #9ca3af;
  opacity: 0.9;
}

.milestone-timeline {
  position: relative;
}

.milestone-timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #667eea, #764ba2);
}

.milestone-item {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.milestone-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.milestone-content h6 {
  font-weight: 700;
  margin-bottom: 10px;
  color: #60a5fa;
}

.milestone-content p {
  margin: 0;
  opacity: 0.9;
  line-height: 1.6;
}

.milestone-icon {
  width: 40px;
  height: 40px;
  background: #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .modern-about-section,
  .modern-ecosystem-section,
  .modern-integration-section {
    padding: 60px 0;
  }
  
  .ecosystem-grid-container {
    grid-template-columns: 1fr;
  }
  
  .milestone-timeline::before {
    display: none;
  }
  
  .milestone-item {
    flex-direction: column;
    text-align: center;
  }
}
