/* Premium Services Page Styles */
:root {
  --primary-color: #4154f1;
  --secondary-color: #012970;
  --accent-color: #ff0055;
  --text-dark: #444444;
  --text-light: #ffffff;
  --bg-light: #f6f9ff;
}

/* Hero Section */
.services-hero {
  padding: 160px 0 100px;
  background: url("../img/hero-bg.png") top center no-repeat;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.services-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.services-hero .highlight {
  color: var(--primary-color);
}

.services-hero p {
  font-size: 1.25rem;
  color: #555;
  margin-bottom: 40px;
  line-height: 1.6;
}

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

.hero-img-container img {
  animation: float 6s ease-in-out infinite;
  max-width: 100%;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* Section Common */
.section-header {
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 36px;
  color: var(--secondary-color);
  font-weight: 700;
  margin: 0;
}

/* Services Grid */
.services-grid {
  padding: 80px 0;
  background-color: #fff;
}

.service-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px 30px;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(65, 84, 241, 0.15);
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon-box {
  width: 70px;
  height: 70px;
  background: #f0f2ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  font-size: 32px;
  color: var(--primary-color);
  transition: 0.3s;
}

.service-card:hover .service-icon-box {
  background: var(--primary-color);
  color: #fff;
}

.service-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--secondary-color);
}

.service-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  flex-grow: 1;
}

/* Technology Stack */
.tech-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.tech-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.tech-card {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  width: 140px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
}

.tech-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tech-card img {
  max-width: 60px;
  max-height: 60px;
  margin-bottom: 15px;
  transition: 0.3s;
}

.tech-card span {
  font-weight: 600;
  color: var(--secondary-color);
  font-size: 0.9rem;
}


/* Process Section */
.process-section {
  padding: 100px 0;
  background: #fff;
}

.process-steps {
  position: relative;
  margin-top: 50px;
}

.accordion-custom .accordion-item {
  border: none;
  margin-bottom: 20px;
  border-radius: 12px !important;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.accordion-custom .accordion-button {
  font-weight: 700;
  color: var(--secondary-color);
  background: #fff;
  padding: 25px;
  font-size: 1.2rem;
  box-shadow: none;
}

.accordion-custom .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background: #f9faff;
}

.accordion-custom .accordion-button::after {
  background-size: 1.5rem;
}

.accordion-custom .accordion-body {
  padding: 0 25px 30px;
  color: #555;
  line-height: 1.8;
  background: #f9faff;
}

.process-img-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.process-img-container img {
  width: 100%;
  height: auto;
  transition: 0.5s;
}

.process-img-container:hover img {
  transform: scale(1.05);
}