/*service setion cards start here */
.services-section {
  margin-top: 5vw;
  width: 100% !important;
  max-width: 100%;
  background: linear-gradient(to bottom right, #f8fafc, #ffffff, #e0f2fe);
  overflow: hidden;
}

.container {
  position: relative;
  max-width: 1380px;
  margin: 0 auto;
  z-index: 10;
}

.section-header {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-top: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.accent-text {
  background: linear-gradient(to right, #f97316, #ef4444, #1d4ed8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.service-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}

.card-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 4rem;
  height: 4rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.card-content {
  padding: 1.2rem;
}

.card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.card-subtitle {
  font-size: 0.875rem;
  color: var(--color-gray-600);
  margin-bottom: 1rem;
}

.card-description {
  color: var(--text-medium);
  margin-bottom: 1.5rem;
}

.features-title {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: var(--text-medium);
}

.feature-bullet {
  width: 0.5rem;
  height: 0.5rem;
  background-color: var(--color-blue-500);
  border-radius: 50%;
  margin-right: 0.5rem;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1.2rem;
}

.service-btn {
  padding: 0.75rem 1.5rem;
  background: var(--color-blue-500);
  color: white;
  font-weight: 600;
  border-radius: 0.75rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}

.service-btn:hover {
  background: var(--color-blue-700);
  transform: scale(1.05);
  box-shadow: var(--shadow-sm);
}

.process-section {
  margin-bottom: 2rem;
}

.process-header {
  text-align: center;
  margin-bottom: 3rem;
}

.process-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.process-subtitle {
  font-size: 1.125rem;
  color: var(--text-medium);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.process-card {
  text-align: center;
}

.process-number {
  width: 5rem;
  height: 5rem;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
}

.process-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.process-card-desc {
  color: var(--text-medium);
}

.cta-section {
  background: var(--gradient-accent);
  border-radius: 0.3rem;
  padding: 5rem 2rem;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-btn-primary {
  padding: 1rem 2rem;
  background: white;
  color: var(--color-blue-700);
  font-weight: 700;
  border-radius: 0.75rem;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.cta-btn-secondary {
  padding: 1rem 2rem;
  background: transparent;
  color: white;
  font-weight: 700;
  border: 2px solid white;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: var(--transition);
}

.cta-btn-secondary:hover {
  background: white;
  color: var(--color-blue-700);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
/* Mobile adjustments for services section */
@media (max-width: 768px) {
  /* Remove container restriction */
  .services-section .container {
    max-width: 100% !important;
    width: 100% !important;
    padding: 0 1rem !important;
  }

  /* Stack cards */
  .services-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    width: 100% !important;
  }

  /* Card adjustments */
  .service-card {
    width: 100% !important;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
  }

  /* Card image */
  .card-image {
    height: 160px !important;
    width: 100% !important;
  }

  /* Card content spacing */
  .card-content {
    padding: 1rem !important;
  }

  /* Font size adjustments */
  .card-title {
    font-size: 1.25rem !important;
  }
  body {
    width: 100%;
  }
  .card-subtitle {
    font-size: 0.8rem !important;
  }

  .card-description {
    font-size: 0.85rem !important;
    margin-bottom: 1rem !important;
  }

  /* Features grid single column */
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 0.25rem !important;
  }

  /* Buttons */
  .service-btn {
    padding: 0.6rem 1.2rem !important;
    font-size: 0.9rem !important;
  }

  /* Titles */
  .section-title {
    font-size: 1.75rem !important;
    margin-bottom: 1rem !important;
  }

  .section-subtitle {
    font-size: 1rem !important;
    padding: 0 0.5rem !important;
  }
}

/* Services Hero Section */
.services-hero-pages {
  background: linear-gradient(135deg, #1a2a6c, #b21f1f, #2575fc);
  color: white;
  margin-top: 5rem;
  text-align: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.services-hero-pages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,288L48,272C96,256,192,224,288,197.3C384,171,480,149,576,165.3C672,181,768,235,864,250.7C960,267,1056,245,1152,224C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
  background-size: cover;
  background-position: center;
}

.services-hero-content-page {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.services-hero-pages h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.services-hero-pages p {
  font-size: 1.3rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta2-button {
  display: inline-block;
  background: #ff6b6b;
  color: white;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 20px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta2-button:hover {
  background: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

/*belwo service here*/

#grow-service-newsletter {
  width: 100%;
  background: white;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.newsletter-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.zap-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff7e00, #ff9e43);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  animation: pulse 2s infinite;
}

.zap-icon i {
  font-size: 36px;
  color: white;
}

.heading {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.3;
  margin-bottom: 20px;
}

.gradient-text {
  background: linear-gradient(90deg, #ff7e00, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin: 15px 0;
}

.subtext {
  font-size: 1.1rem;
  color: #64748b;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, #ff7e00, #ff9e43);
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(255, 126, 0, 0.3);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(255, 126, 0, 0.4);
}

.cta-button:active {
  transform: translateY(0);
}

.cta-button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.5),
    transparent
  );
  transform: translateX(-100%);
  transition: 0.5s;
}

.cta-button:hover::after {
  transform: translateX(100%);
}

.stats-container {
  display: flex;
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  background: #f1f5f9;
  padding: 20px 30px;
  border-radius: 15px;
  min-width: 200px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(90deg, #ff7e00, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.decoration {
  position: absolute;
  z-index: 1;
  opacity: 0.05;
}

.decoration.circle {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  border: 15px solid #3b82f6;
  top: -80px;
  right: -80px;
}

.decoration.triangle {
  width: 0;
  height: 0;
  border-left: 100px solid transparent;
  border-right: 100px solid transparent;
  border-bottom: 170px solid #ff7e00;
  bottom: -70px;
  left: -70px;
  transform: rotate(30deg);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 126, 0, 0.4);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 126, 0, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 126, 0, 0);
    transform: scale(1);
  }
}

@media (max-width: 480px) {
  .heading {
    font-size: 1.8rem;
  }

  .cta-button {
    padding: 16px 30px;
    font-size: 1rem;
  }

  .stats-container {
    gap: 15px;
  }

  .stat-item {
    min-width: 120px;
    padding: 12px 15px;
  }

  .stat-number {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .heading {
    font-size: 2rem;
  }

  .subtext {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 10px;
  }

  .stats-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .stat-item {
    min-width: 80%;
    padding: 15px 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .decoration {
    display: none; /* hide background shapes on tablet/mobile */
  }
}

@media (max-width: 480px) {
  .heading {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .cta-button {
    padding: 14px 25px;
    font-size: 0.95rem;
  }

  .subtext {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .stats-container {
    gap: 15px;
  }

  .stat-item {
    min-width: 100%;
    padding: 12px 15px;
  }

  .stat-number {
    font-size: 1.4rem;
  }
}
