/* BPO Page Specific Styles */
.bpo-hero {
  background: linear-gradient(
      135deg,
      rgba(10, 25, 47, 0.95),
      rgba(26, 35, 126, 0.9)
    ),
    url("https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80");
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.bpo-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
      circle at 20% 30%,
      rgba(0, 243, 255, 0.15) 0%,
      transparent 30%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(255, 64, 129, 0.15) 0%,
      transparent 30%
    );
  animation: pulse 15s infinite alternate;
}

.bpo-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

.bpo-hero h1 {
  font-family: "Orbitron", sans-serif;
  font-size: 3.5rem;
  background: linear-gradient(90deg, var(--primary), white);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.bpo-hero p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* BPO Services Grid */
.bpo-services {
  padding: 5rem 0;
  background: linear-gradient(to bottom, #0a192f, #0d1117);
  position: relative;
}

.bpo-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("https://images.unsplash.com/photo-1620712943543-bcc4688e7485?ixlib=rb-4.0.3&auto=format&fit=crop&w=765&q=80")
    no-repeat center center/cover;
  opacity: 0.03;
}

.bpo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.bpo-card {
  background: rgba(16, 22, 37, 0.7);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid rgba(0, 243, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.bpo-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.bpo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  border-color: rgba(0, 243, 255, 0.3);
}

.bpo-card h3 {
  font-family: "Orbitron", sans-serif;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
}

.bpo-card h3 i {
  margin-right: 1rem;
  font-size: 1.8rem;
  color: var(--primary);
}

.bpo-card p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.bpo-features {
  margin-top: 2rem;
}

.bpo-feature {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.bpo-feature i {
  color: var(--primary);
  margin-right: 1rem;
  margin-top: 0.2rem;
}

/* BPO Process Section */
.bpo-process {
  padding: 5rem 0;
  background: #0a192f;
  position: relative;
}

.process-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  flex: 1;
  min-width: 250px;
  max-width: 300px;
  background: rgba(16, 22, 37, 0.8);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  position: relative;
  border: 1px solid rgba(0, 243, 255, 0.1);
  transition: all 0.4s ease;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 243, 255, 0.1);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-weight: bold;
  font-size: 1.2rem;
}

.process-step h3 {
  color: white;
  margin-bottom: 1rem;
}

.process-step p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* BPO CTA Section */
.bpo-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bpo-cta::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

.bpo-cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.bpo-cta h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.bpo-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-btn {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  color: var(--primary);
  background: #f1f1f1;
}

/* Animations */
@keyframes pulse {
  0% { opacity: 0.5; }
  50% { opacity: 1; }
  100% { opacity: 0.5; }
}

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

@media (max-width: 768px) {
  .bpo-hero h1 { font-size: 2.5rem; }
  .bpo-grid { grid-template-columns: 1fr; }
  .process-step { min-width: 100%; }
}
