* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #05070a;
  color: #ffffff;
  line-height: 1.5;
  overflow-x: hidden;
}

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.4;
  animation: floatOrb 25s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, #2C7DA0, transparent);
  top: -200px;
  left: -200px;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, #61a5c2, transparent);
  bottom: -300px;
  right: -200px;
  animation-delay: -8s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #0A2647, transparent);
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -15s;
}

@keyframes floatOrb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.1); }
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Hero Section */
.hero {
  padding: 80px 0 60px;
  position: relative;
}

.hero-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(44, 125, 160, 0.15);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid rgba(44,125,160,0.3);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: #2C7DA0;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.highlight {
  background: linear-gradient(135deg, #2C7DA0, #61a5c2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-desc {
  font-size: 1.2rem;
  color: #9ca3af;
  margin-bottom: 36px;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.btn-primary {
  background: linear-gradient(135deg, #2C7DA0, #61a5c2);
  color: white;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(44,125,160,0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(44,125,160,0.5);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid #2C7DA0;
  color: #2C7DA0;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-outline:hover {
  background: rgba(44,125,160,0.1);
  transform: translateX(5px);
}

.trust-section {
  border-top: 1px solid rgba(44,125,160,0.2);
  padding-top: 30px;
}

.trust-text {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6b7280;
  margin-bottom: 16px;
}

.logos {
  display: flex;
  gap: 40px;
}

.logos span {
  font-weight: 600;
  color: #8b9cb0;
  cursor: pointer;
  transition: 0.3s;
}

.logos span:hover {
  color: #2C7DA0;
}

/* Hero Image with Floating Cards */
.hero-image {
  flex: 0.9;
  position: relative;
}

.image-wrapper {
  position: relative;
  z-index: 2;
}

/* MAIN CARD - FIXED POSITIONING FOR PILLS TO BE HALF IN/HALF OUT */
.ai-card {
  position: relative;
  height: 450px;
  border-radius: 32px;
  background: linear-gradient(145deg, #0b1a2b, #0f2438);
  border: 1px solid rgba(44,125,160,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.6);
  overflow: visible;
}

/* CENTER TEXT */
.ai-title {
  font-size: 2rem;
  font-weight: 600;
  color: #2C7DA0;
  text-align: center;
  z-index: 2;
  position: relative;
  padding-right: 100px;
  padding-left: 100px;
}

/* FLOATING PILLS - HALF INSIDE, HALF OUTSIDE */
.float-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 40px;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(44,125,160,0.4);
  backdrop-filter: blur(10px);
  color: #cbd5e1;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
  white-space: nowrap;
  z-index: 10;
  animation: floatUpDown 3s ease-in-out infinite;
}

.float-pill i {
  color: #2C7DA0;
}

/* Pill 1 - Top right: half outside (right edge) */
.pill-1 {
  top: 75px;
  right: -30px;
  animation-delay: 0s;
}

/* Pill 2 - Middle right: half outside */
.pill-2 {
  top: 50px;
  right: -35px;
  transform: translateY(-50%);
  animation-delay: 0.5s;
}

/* Pill 3 - Bottom left: half outside */
.pill-3 {
  bottom: 40px;
  left: -30px;
  animation-delay: 1s;
}

/* Up/Down floating animation for pills */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Fix pill 2's translateY conflict with animation */
.pill-2 {
  top: 325px;
  right: -35px;
  transform: translateY(-50%);
}

.pill-2 {
  animation: floatUpDownPill2 3s ease-in-out infinite;
}

@keyframes floatUpDownPill2 {
  0%, 100% {
    transform: translateY(-50%);
  }
  50% {
    transform: translateY(-62%);
  }
}

/* AI BOTTOM - Left/Right animation */
.ai-bottom {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: slideLeftRight 4s ease-in-out infinite;
}

.ai-bottom span {
  font-size: 0.7rem;
  letter-spacing: 2px;
  color: #2C7DA0;
}

.ai-bottom .line {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #2C7DA0, transparent);
}

/* Left/Right floating animation for ai-bottom */
@keyframes slideLeftRight {
  0%, 100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-15px);
  }
}

/* Services Section */
.services {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-badge {
  display: inline-block;
  background: rgba(44,125,160,0.15);
  color: #2C7DA0;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.section-subtitle {
  color: #9ca3af;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 28px;
  padding: 40px 28px;
  transition: all 0.4s;
  border: 1px solid rgba(44,125,160,0.2);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(44,125,160,0.5);
  box-shadow: 0 20px 40px -12px rgba(44,125,160,0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(44,125,160,0.2), rgba(97,165,194,0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid rgba(44,125,160,0.3);
}

.service-icon i {
  font-size: 1.8rem;
  color: #2C7DA0;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.service-card p {
  color: #9ca3af;
  line-height: 1.6;
}

.hover-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #2C7DA0, #61a5c2);
  transition: width 0.4s;
}

.service-card:hover .hover-line {
  width: 100%;
}

/* Stats Section */
.stats {
  padding: 60px 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.4), rgba(5,7,10,0.4));
  border-top: 1px solid rgba(44,125,160,0.1);
  border-bottom: 1px solid rgba(44,125,160,0.1);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #2C7DA0, #61a5c2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  color: #9ca3af;
  font-size: 0.9rem;
}

/* CTA Section */
.cta {
  padding: 80px 0;
}

.cta-box {
  text-align: center;
  background: linear-gradient(135deg, rgba(44,125,160,0.1), rgba(15,23,42,0.8));
  border-radius: 48px;
  padding: 60px 48px;
  border: 1px solid rgba(44,125,160,0.2);
  position: relative;
  overflow: hidden;
}

.cta-box h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.cta-box p {
  color: #9ca3af;
  margin-bottom: 32px;
  font-size: 1.1rem;
}

.btn-large {
  padding: 16px 40px;
  font-size: 1.1rem;
}

/* Language Switch Styling */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(109, 157, 178, 0.15);
  padding: 8px 16px;
  border-radius: 40px;
  border: 1px solid rgba(44, 125, 160, 0.3);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

.lang-switch:hover {
  background: rgba(44, 125, 160, 0.25);
  border-color: rgba(44, 125, 160, 0.5);
}

.lang-btn {
  background: none;
  border: none;
  color: #cbd5e1;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 4px 8px;
  border-radius: 30px;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
}

.lang-btn:hover {
  color: #2C7DA0;
  transform: scale(1.05);
}

.lang-btn.active {
  color: #2C7DA0;
  background: rgba(44, 125, 160, 0.2);
}

.lang-divider {
  color: #4a5568;
  font-size: 0.85rem;
  font-weight: 500;
}

.nav-links a {
  text-decoration: none;
  font-weight: 500;
  color: #cbd5e1;
  transition: 0.3s;
  position: relative; 
 
  
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2C7DA0, #61a5c2);
  transition: width 0.3s;
 
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover, .nav-links a.active {
  color: #2C7DA0;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    flex-direction: column;
  }
  
  .hero-content {
    text-align: center;
  }
  
  .hero-desc {
    max-width: 100%;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .logos {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cta-box h2 {
    font-size: 1.8rem;
  }
  
  .ai-title {
    font-size: 1.3rem;
    padding-right: 40px;
    padding-left: 40px;
  }
  
  .float-pill {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
  
  .pill-1 {
    top: 15px;
    right: -20px;
  }
  
  .pill-2 {
    right: -25px;
  }
  
  .pill-3 {
    left: -20px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary, .btn-outline {
    width: 100%;
    justify-content: center;
  }
}