﻿/* ───────────── HERO SERVICE PAGE ───────────── */

.hero.hero-services {
  --page-hero-image: url('/img/service/hero.webp');
}

/* ───────────── SERVICE HEADER ───────────── */
.services-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-top: 3rem;
}

.services-header .small-title {
  color: #471396;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.services-header .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #111;
}

.services-header .section-subtitle {
  font-size: 1.05rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ SERVICE CARDS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.services {
  background-color: #fff;
  color: #222;
  padding: 3rem 1rem 5rem;
}

.service-cards {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}


/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ Individual Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.service-card {
  position: relative;
  flex: 1 1 300px;
  max-width: 400px;
  height: 450px;
  border-radius: 10px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 20px rgba(105, 0, 153, 0.15);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(105, 0, 153, 0.3);
}

.card-content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #fff;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.service-card:hover .card-content {
  transform: translateY(-10px);
  opacity: 1;
}


.card-1 {
  background-image: url('/img/service/h2.PNG');
}

.card-2 {
  background-image: url('/img/service/h3.PNG');
}

.card-3 {
  background-image: url('/img/service/h4.PNG');
}

.card-4 {
  background-image: url('/img/service/h5.PNG');
}

.card-content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  color: #fff;
  z-index: 2;
  border-radius: 8px;
  overflow: hidden;
  padding: 1rem;
}

.card-content .card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.card-content h3,
.card-content p {
  position: relative;
  z-index: 2;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */



/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ PRICE SECTION (à¸­à¹ˆà¸²à¸™à¸‡à¹ˆà¸²à¸¢) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pricing-section {
  background-color: #faf9ff;      /* à¸žà¸·à¹‰à¸™à¸‚à¸²à¸§à¸­à¸¡à¸¡à¹ˆà¸§à¸‡à¸­à¹ˆà¸­à¸™ */
  color: #222;                    /* à¸•à¸±à¸§à¸«à¸™à¸±à¸‡à¸ªà¸·à¸­à¹€à¸‚à¹‰à¸¡ */
  padding: 5rem 1rem;
  text-align: center;
}

.pricing-section .section-title {
  color: #4c1d95;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pricing-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pricing-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: #fff;
  border: 1px solid #e5d9ff;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  box-shadow: 0 8px 18px rgba(76, 29, 149, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(76, 29, 149, 0.15);
}

.pricing-card h3 {
  color: #4c1d95;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.pricing-card .desc {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.pricing-card .price {
  color: #6e07f3;
  font-size: 1.2rem;
  font-weight: 700;
}

/* â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ Extra Services â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pricing-extra {
  margin-top: 4rem;
  background: #fff;
  border: 1px solid #e5d9ff;
  border-radius: 12px;
  padding: 2.5rem 1.5rem;
  box-shadow: 0 8px 20px rgba(76, 29, 149, 0.06);
  max-width: 800px;
}

.pricing-extra h3 {
  font-size: 1.5rem;
  color: #4c1d95;
  margin-bottom: 1rem;
}

.pricing-extra ul {
  list-style: none;
  text-align: left;
  margin: 0 auto 1.5rem;
  padding: 0;
}

.pricing-extra li {
  border-bottom: 1px solid #eee;
  padding: 0.6rem 0;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
}

.pricing-extra span {
  color: #6e07f3;
  font-weight: 600;
}

.pricing-extra .note {
  color: #555;
  font-size: 0.9rem;
  margin-top: 1rem;
  line-height: 1.6;
}

.price-btn {
  display: inline-block;
  background: #6e07f3;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 1.5rem;
  transition: background 0.3s ease, transform 0.3s ease;
}

.price-btn:hover {
  background: #4c1d95;
  transform: translateY(-3px);
}

#website-pricing .price-list{list-style:none;text-align:left;margin:1rem auto 0;max-width:700px;padding:0;}
#website-pricing .price-list li{padding:.45rem 0;border-bottom:1px solid #eee;font-size:.95rem;color:#333;}



.breadcrumb-nav {
  background: #f3e8ff;
  border-bottom: 1px solid #e0d7ff;
  color: #4c1d95;
  padding: 0.6rem 0;
}

.breadcrumb-nav .container {
  display: flex;
  align-items: center;
}

.breadcrumb-list {
  list-style: none;
  display: flex;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: #4c1d95;
}

.breadcrumb-list li + li::before {
  content: "/";
  margin-right: 0.5rem;
  color: #7c3aed;
}

.breadcrumb-list a {
  color: inherit;
  text-decoration: underline;
}

.service-summary {
  margin: 3rem auto 0;
  background: #f8f5ff;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  max-width: 1000px;
  box-shadow: 0 16px 32px rgba(76, 29, 149, 0.08);
  color: #2c1a66;
}

.service-summary h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: #341871;
}

.service-summary p {
  color: #3a2f66;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.process-steps {
  margin: 1.5rem 0;
  padding-left: 1.25rem;
  color: #3a2f66;
}

.process-steps li {
  margin-bottom: 0.75rem;
}

.process-steps strong {
  color: #2c1a66;
}

.industries-title {
  font-weight: 600;
  margin-top: 1.5rem;
}

.industry-list {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.25rem;
  color: #3a2f66;
  list-style: disc;
}

.industry-list li {
  margin-bottom: 0.5rem;
}

.service-summary .cta-line {
  margin-top: 1rem;
}

.service-summary .cta-line a {
  color: #4c1d95;
  text-decoration: underline;
}
