﻿* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #3b82f6;
  --secondary-blue: #60a5fa;
  --light-blue: #dbeafe;
  --dark-blue: #1e40af;
  --navy: #1e293b;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --gray: #64748b;
  --gradient: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  --section-bg: #eff6ff;
  --black: #000000;
}

/* Global Responsive Fixes matching index.html robustness */
html {
  overflow-x: hidden;
  width: 100%;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  padding-top: 162px;
  /* For desktop with fixed header + breadcrumb */
}

/* Adjust body padding when breadcrumb is hidden on mobile */
@media (max-width: 968px) {
  body {
    padding-top: 70px;
    /* Only account for mobile header */
  }
}

@media (max-width: 640px) {
  body {
    padding-top: 65px;
    /* Smaller padding for small mobile screens */
  }
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

/* Global Section Standardization */
section {
  padding: 80px 0;
  margin-bottom: 0px;
}

/* Override for sections that should have no bottom margin */
section:last-of-type,
.footer {
  margin-bottom: 0;
}

/* Header Styles - Modern Redesign */
.header {
  background: var(--white);
  /* Match page background */
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  /* removed explicit height to match index.html padding logic */
  z-index: 1000;
  padding: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

.header.scrolled {
  padding: 0;
  box-shadow: 0 6px 40px rgba(0, 0, 0, 0.12);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 0.3s;
}

.logo img {
  height: 80px;
  width: auto;
  transition: all 0.3s;
}

@media (max-width: 968px) {
  .logo img {
    height: 60px;
    /* Slightly smaller on tablets/mobile */
  }
}

@media (max-width: 640px) {
  .logo img {
    height: 55px;
    /* Even smaller on small mobile screens */
  }
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 45px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: var(--black);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
  font-size: 15px;
  padding: 8px 0;
  display: block;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-menu a:hover {
  color: #3b82f6;
  /* Blue hover */
}

.nav-menu a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-icon-btn {
  background: #dbeafe;
  border: none;
  color: #3b82f6;
  font-size: 18px;
  cursor: pointer;
  padding: 12px;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  width: 45px;
  height: 45px;
}

.search-icon-btn:hover {
  background: #3b82f6;
  color: var(--white);
  transform: scale(1.1);
}

.btn-contact {
  background: linear-gradient(135deg, #3b82f6 0%, #60a5fa 100%);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.btn-contact:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.btn-contact i {
  font-size: 16px;
}

.contact-text {
  display: inline;
}

/* Hero Button Updates */
.btn-rose-solid {
  background: #3b82f6;
  color: white;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
  font-size: 15px;
}

.btn-rose-solid:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.4);
  background: #2563eb;
  color: white;
}

.btn-rose-outline {
  background: transparent;
  color: #3b82f6;
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 2px solid #3b82f6;
  transition: all 0.3s ease;
  font-size: 15px;
}

.btn-rose-outline:hover {
  background: #3b82f6;
  color: white;
  transform: translateY(-3px);
}

/* Service Link Breadcrumb Styles */
.service-link {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  position: relative;
}

.service-link:hover {
  background-color: rgba(59, 130, 246, 0.08) !important;
  color: #3b82f6 !important;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
  text-decoration: none !important;
  font-weight: 700 !important;
}

.service-link.active {
  background: transparent !important;
  color: #3b82f6 !important;
  border-bottom: 2px solid #3b82f6 !important;
}



/* Hide text on smaller screens, show only icon */
@media (max-width: 640px) {
  .btn-contact {
    padding: 12px;
    width: 45px;
    height: 45px;
    justify-content: center;
    gap: 0;
  }

  .contact-text {
    display: none;
  }

  .btn-contact i {
    font-size: 18px;
    margin: 0;
  }
}

/* ============================================
   MOBILE HAMBURGER MENU
   ============================================ */

.hamburger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  background: transparent;
  border: none;
}

.hamburger-menu span {
  width: 28px;
  height: 3px;
  background: var(--navy);
  margin: 4px 0;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.hamburger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100vh;
  background: rgba(30, 41, 59, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  padding: 100px 30px 50px;
}

.mobile-menu-overlay.active {
  left: 0;
}

.mobile-menu-content {
  max-width: 500px;
  margin: 0 auto;
}

.mobile-menu-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu-list li {
  margin-bottom: 10px;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.3s ease;
}

.mobile-menu-overlay.active .mobile-menu-list li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-overlay.active .mobile-menu-list li:nth-child(1) {
  transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-menu-list li:nth-child(2) {
  transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-menu-list li:nth-child(3) {
  transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-menu-list li:nth-child(4) {
  transition-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-menu-list li:nth-child(5) {
  transition-delay: 0.5s;
}

.mobile-menu-list a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 28px;
  font-weight: 700;
  padding: 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mobile-menu-list a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--gradient);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-menu-list a:hover::before {
  transform: scaleY(1);
}

.mobile-menu-list a:hover {
  background: rgba(59, 130, 246, 0.15);
  padding-left: 30px;
}

.mobile-menu-contact {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.3s ease 0.6s;
}

.mobile-menu-overlay.active .mobile-menu-contact {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-contact .btn-contact {
  width: 100%;
  justify-content: center;
  padding: 18px 32px;
  font-size: 18px;
}

.mobile-menu-contact .contact-text {
  display: inline !important;
}

/* Show hamburger menu on mobile */
@media (max-width: 968px) {
  .hamburger-menu {
    display: flex;
  }

  .nav-menu {
    display: none !important;
  }

  /* Keep desktop contact button on mobile, hide it in favor of menu */
  .nav-actions .btn-contact {
    display: none;
  }

  .nav-actions {
    gap: 15px;
  }
}

/* Search Modal */
.search-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  animation: fadeIn 0.3s ease;
}

.search-modal.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}

.search-modal-content {
  background: var(--white);
  width: 90%;
  max-width: 900px;
  border-radius: 20px;
  padding: 40px;
  max-height: 80vh;
  overflow-y: auto;
  animation: slideDown 0.3s ease;
}

.search-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.search-modal-header h2 {
  font-size: 28px;
  color: var(--navy);
}

.close-search-modal {
  background: none;
  border: none;
  font-size: 32px;
  color: var(--gray);
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s;
}

.close-search-modal:hover {
  color: var(--primary-blue);
}

.modal-search-bar {
  position: relative;
  margin-bottom: 40px;
}

.modal-search-bar input {
  width: 100%;
  padding: 18px 60px 18px 25px;
  border: 2px solid var(--light-blue);
  border-radius: 50px;
  font-size: 18px;
  transition: border-color 0.3s;
}

.modal-search-bar input:focus {
  outline: none;
  border-color: #3b82f6;
}

.modal-search-bar button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: #3b82f6;
  color: var(--white);
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.modal-search-bar button:hover {
  background: #3b82f6;
}

.search-categories {
  margin-top: 30px;
}

.search-categories h3 {
  color: var(--black);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.category-item {
  background: var(--light-gray);
  padding: 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.category-item:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.2);
}

.category-item:focus {
  outline: 3px solid var(--primary-blue);
  outline-offset: 2px;
}

.category-item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.category-item:active::after {
  width: 300px;
  height: 300px;
}

.category-item:hover {
  background: var(--light-blue);
  border-color: var(--primary-blue);
  transform: translateY(-2px);
}

.category-item.hidden {
  display: none;
}

.category-item h4 {
  color: var(--black);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.category-item p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.5;
}

.no-results {
  text-align: center;
  padding: 40px;
  color: var(--gray);
  display: none;
}

.no-results.show {
  display: block;
}

.no-results i {
  font-size: 48px;
  margin-bottom: 15px;
  opacity: 0.5;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Breadcrumb */
.breadcrumb {
  background: #faf5ff;
  background: var(--section-bg);
  padding: 24px 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  margin-top: 0;
  position: fixed;
  top: 90px;
  /* Position it below the header */
  left: 0;
  right: 0;
  width: 100%;
  z-index: 999;
  /* Just below the header */
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

/* Hide breadcrumb on mobile/tablet (when hamburger menu is visible) */
@media (max-width: 968px) {
  .breadcrumb {
    display: none;
  }
}

.breadcrumb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.breadcrumb-list {
  display: flex;
  list-style: none;
  gap: 10px;
  align-items: center;
}

.breadcrumb-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.breadcrumb-list a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.3s;
  font-size: 14px;
}

.breadcrumb-list a:hover {
  color: #3b82f6;
}

.breadcrumb-list .separator {
  color: var(--gray);
}

.breadcrumb-list .current {
  color: #3b82f6;
  font-weight: 600;
}

/* Service Hero Section */
.service-hero {
  background: var(--section-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: black;
  margin-bottom: 0px;
  margin-top: 0;
}

.service-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(255, 255, 255, 0.1) 0%,
      transparent 70%);
  border-radius: 50%;
}

.service-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.service-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-hero-text h1 {
  font-size: 48px;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 800;
}

.service-category {
  display: inline-block;
  background: var(--primary-blue);
  color: var(--white);
  padding: 10px 28px;
  /* Increased padding */
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  /* Bolder */
  margin-bottom: 30px;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-hero-description {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.95);
  line-height: 1.8;
  margin-bottom: 30px;
}

.service-hero-features {
  list-style: none;
  margin-bottom: 30px;
}

.service-hero-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--black);
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 500;
}

.service-hero-features li i {
  color: var(--primary-blue);
  font-size: 18px;
}

.service-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 16px 35px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn-primary {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(147, 51, 234, 0.4);
  background: var(--dark-blue);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--primary-blue);
}

.service-hero-visual {
  position: relative;
}

.service-image-wrapper {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
}

.service-image-wrapper:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}

.service-image-large {
  width: 100%;
  height: auto;
  min-height: 400px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-image-wrapper:hover .service-image-large {
  transform: scale(1.05);
}

/* Add decorative overlay gradient */
.service-image-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(147, 51, 234, 0.1) 0%,
      rgba(168, 85, 247, 0.1) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.service-image-wrapper:hover::after {
  opacity: 0;
}

/* Responsive adjustments for service image */
@media (max-width: 968px) {
  .service-image-wrapper {
    max-width: 400px;
    margin-top: 30px;
  }

  .service-image-large {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .service-image-wrapper {
    max-width: 100%;
    border-radius: 20px;
  }

  .service-image-large {
    min-height: 250px;
  }
}

/* Service Details Section */
.service-details {
  padding: 0;
  background: var(--white);
  margin-bottom: 0px;
}

.service-details-container {
  margin: 0 auto;
  padding: 0px;
}

.section-title {
  font-size: 38px;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.section-subtitle {
  font-size: 18px;
  color: var(--black);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.8;
}

/* Two Column Layout */
.two-column-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;

  max-width: 1200px;
  margin: 0 auto 80px;
}


.detail-card {
  background: var(--light-gray);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s;
  overflow: hidden;
}

.detail-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
}

.detail-card-icon {
  width: 55px;
  height: 55px;
  background: var(--gradient);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.detail-card-icon i {
  font-size: 26px;
  color: var(--white);
}

.detail-card h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 700;
}

.detail-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

@media (max-width: 1024px) {
  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .service-details-container {
    padding: 0;
  }

  .section-title {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .section-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }

  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 60px;
  }

  .detail-card {
    padding: 30px;
    border-radius: 15px;
  }

  .detail-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }

  .detail-card-icon i {
    font-size: 28px;
  }

  .detail-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .detail-card p {
    font-size: 14px;
  }
}

/* Key Benefits Section */
.key-benefits {
  background: var(--light-blue);
  border-radius: 30px;
  padding: 60px;
  margin-bottom: 80px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}

.benefit-item {
  text-align: center;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.15);
}

.benefit-icon i {
  font-size: 36px;
  color: var(--primary-blue);
}

.benefit-item h4 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
}

.benefit-item p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* Process Section */
.process-section {
  padding: 80px 0;
  margin-bottom: 80px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  background: var(--white);
  border: 2px solid var(--light-blue);
  border-radius: 20px;
  padding: 35px 25px;
  text-align: center;
  transition: all 0.3s;
  position: relative;
}

.process-step:hover {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 24px;
  color: var(--white);
  font-weight: 800;
}

.process-step h4 {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 12px;
  font-weight: 700;
}

.process-step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}

/* Pricing Section */
.service-pricing {
  background: var(--light-gray);
  border-radius: 30px;
  padding: 60px;
  margin-bottom: 80px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.pricing-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s;
  border: 2px solid transparent;
}

.pricing-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.2);
}

.pricing-card.featured {
  background: var(--gradient);
  color: var(--white);
  transform: scale(1.05);
}

.pricing-header h3 {
  font-size: 24px;
  margin-bottom: 10px;
  font-weight: 700;
}

.price {
  font-size: 42px;
  font-weight: 800;
  margin: 20px 0;
}

.price span {
  font-size: 16px;
  font-weight: 500;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 25px 0;
}

.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.pricing-features i {
  color: var(--primary-blue);
}

.pricing-card.featured .pricing-features i {
  color: var(--white);
}

.pricing-button {
  width: 100%;
  padding: 14px;
  border-radius: 50px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 15px;
}

.pricing-card:not(.featured) .pricing-button {
  background: var(--primary-blue);
  color: var(--white);
}

.pricing-card.featured .pricing-button {
  background: var(--white);
  color: var(--primary-blue);
}

/* FAQ Section */
.service-faq {
  padding: 80px 0;
  margin-bottom: 80px;
}

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  margin-top: 40px;
}

.faq-item {
  background: var(--white);
  border: 2px solid var(--light-blue);
  border-radius: 15px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  border-color: var(--primary-blue);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--black);
  font-size: 16px;
}

.faq-question i {
  color: var(--primary-blue);
  transition: transform 0.3s;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 30px 25px;
  color: var(--gray);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* CTA Section */
.service-cta {
  background: var(--gradient);
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  color: var(--white);
}

.service-cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
  font-weight: 800;
}

.service-cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Breadcrumb */
.breadcrumb {
  background: rgba(255, 255, 255, 0.95);
  padding: 24px 0;
  border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

/* Benefits Section */
.benefits-section {
  background: #f5f3ff;
  padding: 80px 0 40px 0;
  position: relative;
  margin-bottom: 0px;
  overflow: visible;
}

.benefits-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2%;
  position: relative;
}

.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-header h2 {
  font-size: 36px;
  color: var(--black);
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.2;
}

.benefits-header p {
  font-size: 16px;
  color: var(--black);
  line-height: 1.7;
  margin-bottom: 35px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #2d3748;
  font-weight: 600;
}

.benefits-list li i {
  color: var(--primary-blue);
  /* Blue checkmark */
  font-size: 18px;
}

.benefits-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  position: relative;
}

/* Decorative Dots Pattern */
.benefits-cards::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#3b82f6 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.2;
  z-index: -1;
}

.benefits-cards::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(#3b82f6 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.2;
  z-index: -1;
}

.benefit-card {
  background: var(--white);
  border-radius: 12px;
  padding: 35px 25px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(0, 0, 0, 0.02);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.benefit-card:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.benefit-card-icon {
  width: 60px;
  height: 60px;
  background: #edf2f7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #3b82f6;
  margin-bottom: 20px;
}

.benefit-card h4 {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 12px;
  font-weight: 700;
}

.benefit-card p {
  font-size: 14px;
  color: #718096;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1100px) {
  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .benefits-header {
    max-width: 800px;
    margin: 0 auto;
  }

  .benefits-list {
    justify-content: center;
    margin-bottom: 40px;
  }

  .benefits-list li {
    justify-content: center;
  }

  .benefits-cards {
    grid-template-columns: 1fr;
    /* Stack cards earlier to prevent overlap */
    gap: 30px;
    max-width: 600px;
    margin: 0 auto;
  }

  .benefit-card:nth-child(n) {
    transform: none !important;
    /* Kill staggered effect on stack */
  }
}

@media (max-width: 768px) {
  .benefits-header h2 {
    font-size: 32px;
  }

  .benefits-list li {
    font-size: 14px;
    padding-left: 0;
    /* Reset for better center alignment */
  }

  .benefit-card {
    padding: 25px;
  }

  .benefit-card h4 {
    font-size: 18px;
  }
}

/* Decorative Dots Pattern */
.benefits-cards::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -40px;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--primary-blue) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.2;
  z-index: 0;
}

.benefits-cards::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 120px;
  height: 120px;
  background-image: radial-gradient(var(--primary-blue) 2px, transparent 2px);
  background-size: 15px 15px;
  opacity: 0.2;
  z-index: 0;
}

/* Benefit Card Animation */
@keyframes cardSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.benefit-card {
  background: var(--white);
  border-radius: 12px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  padding: 30px 25px;
  display: flex;
  flex-direction: column;
  border: none;
}

/* Staggered Grid Effect - Right column shifted UP */
.benefit-card:nth-child(odd) {
  transform: translateY(20px);
}

.benefit-card:nth-child(even) {
  transform: translateY(-20px);
}

.benefit-card:hover {
  transform: translateY(10px) scale(1.02) !important;
  box-shadow: 0 20px 50px rgba(59, 130, 246, 0.12);
}

.benefit-card:nth-child(even):hover {
  transform: translateY(-20px) scale(1.02) !important;
}

/* Stagger animations for each card */
.benefit-card:nth-child(1) {
  animation-delay: 0.15s;
}

.benefit-card:nth-child(2) {
  animation-delay: 0.3s;
}

.benefit-card:nth-child(3) {
  animation-delay: 0.45s;
}

.benefit-card:nth-child(4) {
  animation-delay: 0.6s;
}

/* Colored header section */
.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--primary-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}



.benefit-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  background: var(--light-blue);
  color: var(--primary-blue);
  transition: all 0.3s;
}

.benefit-card h4 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.benefit-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

.benefit-card:hover .benefit-card-icon {
  background: var(--primary-blue);
  color: white;
}

.benefit-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .benefits-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .benefits-header h2 {
    font-size: 28px;
  }

  .benefits-list li {
    font-size: 14px;
    padding-left: 30px;
  }

  .benefit-card {
    padding: 25px;
  }

  .benefit-card h4 {
    font-size: 18px;
  }
}

/* Benefit Plain Text Layout (Who can benefit section) */
.benefit-plain-text {
  max-width: 900px;
  margin: 50px auto 0;
  text-align: left;
}

.benefit-text-item {
  margin-bottom: 40px;
  position: relative;
}

.benefit-text-item h3 {
  color: var(--navy);
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 700;
  position: relative;
  padding-left: 0;
}

.benefit-text-item p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .benefit-plain-text {
    padding: 0 15px;
  }
}

/* Software Plan Grid Styles */
.software-plan-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}

.plan-item {
  display: flex;
  align-items: stretch;
  min-height: 100px;
  position: relative;
}

.plan-item.left {
  flex-direction: row;
}

.plan-item.right {
  flex-direction: row-reverse;
}

.plan-text {
  background: var(--white);
  flex: 1;
  padding: 20px 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  border-radius: 4px;
  border: 1px solid #cbd5e1;
}

.plan-text h4 {
  margin: 0 0 5px 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.plan-text p {
  margin: 0;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.plan-icon-box {
  width: 100px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.plan-icon-box img {
  max-width: 85px;
  max-height: 65px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
  transition: transform 0.3s ease;
}

.plan-item:hover .plan-icon-box img {
  transform: scale(1.1);
}

.plan-item.left .plan-icon-box {
  background: var(--primary-blue);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
  margin-left: -20px;
}

.plan-item.right .plan-icon-box {
  background: var(--primary-blue);
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
  margin-right: -20px;
}

@media (max-width: 768px) {
  .software-plan-container {
    grid-template-columns: 1fr;
  }

  .plan-item.right {
    flex-direction: row;
  }

  .plan-item.right .plan-icon-box {
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
    margin-left: -20px;
    margin-right: 0;
  }
}

/* Experts Section */
.experts-section {
  background: var(--section-bg);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  margin-bottom: 0px;
}

/* Decorative background elements */
.experts-section::before {
  content: "";
  position: absolute;
  top: 0;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.experts-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite reverse;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(30px);
  }
}

.experts-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.experts-header {
  text-align: center;
  margin-bottom: 50px;
}

.experts-header h2 {
  font-size: 48px;
  color: var(--black);
  margin-bottom: 0;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.expert-image {
  text-align: center;
  margin-bottom: 50px;
}

.expert-image img {
  max-width: 1120px;
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.experts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.expert-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(147, 51, 234, 0.08);
  border: 1px solid rgba(147, 51, 234, 0.1);
  transition: all 0.4s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.expert-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(147, 51, 234, 0.15);
  border-color: #9333ea;
  background: var(--white);
}

.expert-card-icon {
  width: 80px;
  height: 80px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--primary-blue);
  margin-bottom: 25px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.expert-card:hover .expert-card-icon {
  background: var(--primary-blue);
  color: white;
  transform: rotateY(180deg);
}

.expert-card h4 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 15px;
  font-weight: 800;
}

.expert-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

@media (max-width: 968px) {
  .experts-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .experts-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .experts-header h2 {
    font-size: 28px;
  }

  .expert-card {
    padding: 30px 20px;
  }
}


/* Responsive */
@media (max-width: 768px) {
  .experts-section {
    padding: 60px 0;
    margin-bottom: 60px;
  }

  .experts-header {
    padding: 0 20px;
    margin-bottom: 50px;
  }

  .experts-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .experts-content {
    gap: 25px;
    padding: 0 15px;
  }

  .expert-paragraph {
    padding: 40px 25px;
    font-size: 15px;
    line-height: 1.7;
    border-radius: 15px;
  }

  .expert-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    top: 15px;
    right: 15px;
  }
}

@media (max-width: 480px) {
  .experts-header h2 {
    font-size: 26px;
  }

  .experts-content {
    gap: 20px;
    padding: 0 12px;
  }

  .expert-paragraph {
    padding: 30px 20px;
    font-size: 14px;
  }
}

/* Tasks Section */
.tasks-section {
  background: #ede9fe;
  padding: 80px 0;
  position: relative;
  margin-bottom: 0px;
}

.tasks-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tasks-header {
  text-align: center;
  margin-bottom: 60px;
}

.tasks-header h2 {
  font-size: 42px;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.tasks-header p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.tasks-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* Task Card Animation */
@keyframes taskSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.task-card {
  background: var(--white);
  border-radius: 15px;
  padding: 25px 30px;
  display: flex;
  flex-direction: row;
  /* Horizontal on desktop */
  align-items: flex-start;
  gap: 20px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  border: 1px solid #f3e8ff;
  animation: taskSlideUp 0.6s ease-out backwards;
  text-align: left;
}

.task-icon {
  flex-shrink: 0;
  width: 55px;
  height: 55px;
  background: var(--light-blue);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--primary-blue);
  transition: all 0.3s;
}

.task-card:hover .task-icon {
  background: var(--primary-blue);
  color: white;
  transform: scale(1.1);
}

.task-info {
  flex: 1;
  min-width: 0;
  /* Critical fix for squashing */
}

.task-card h4 {
  font-size: 18px;
  color: var(--black);
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.3;
}

.task-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 640px) {
  .task-card {
    flex-direction: column;
    /* Stack on mobile */
    align-items: center;
    text-align: center;
    padding: 30px 20px;
  }

  .task-icon {
    margin-bottom: 10px;
  }
}

@media (max-width: 968px) {
  .tasks-grid {
    grid-template-columns: 1fr;
  }
}

/* Result Section */
.result-section {
  background: var(--white);
  padding: 80px 0;
  margin-bottom: 0px;
}

.result-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.result-header {
  text-align: center;
  margin-bottom: 60px;
}

.result-header h2 {
  font-size: 42px;
  color: var(--black);
  margin-bottom: 20px;
  font-weight: 800;
  line-height: 1.3;
}

.result-header p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.result-card {
  background: var(--white);
  border-radius: 15px;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  border: 1px solid #f3e8ff;
  animation: resultSlideUp 0.6s ease-out backwards;
}

@keyframes resultSlideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.12);
  border-color: var(--primary-blue);
  background: var(--white);
}

.result-icon {
  flex-shrink: 0;
  font-size: 24px;
  color: var(--primary-blue);
  transition: all 0.4s ease;
}

.result-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .result-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .result-header h2 {
    font-size: 32px;
  }
}

/* Final CTA Section */
.final-cta-section {
  padding: 80px 0;
  background: #f3e8ff;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0px;
}

.parallax-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 140%;
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" width="1000" height="500" viewBox="0 0 1000 500"%3E%3Cpath fill="%233b82f6" fill-opacity="0.08" d="M165 140c-3 1-6 2-7 5-2 3-1 7 1 10 2 3 5 4 8 5s6 3 7 6l3 6c1 3 2 6 5 7 3 2 7 2 11 2s8 0 12-1l7-2c3-1 5-4 4-7-1-3-4-5-7-6-3 0-6 1-9 1-3 0-5-1-6-3-2-2-2-5-1-8 2-3 4-5 7-6 3 0 6 1 9 2s6 2 9 0c3-2 3-5 3-9 0-3-1-6-2-9-1-3-1-6-1-10 0-3 1-7-1-9-2-3-5-4-8-3-4 1-7 4-9 8-2 3-2 7-4 11l-3 6c-2 3-5 5-9 5zm113 41c-2 2-3 5-4 8-1 3-1 6 0 9s3 6 5 8c3 2 6 3 9 4 3 1 7 0 11-1 4-1 7-3 11-5s7-4 10-6c3-1 7-2 10-1s6 2 8 5c2 2 4 5 5 8 2 3 3 6 5 9 1 3 3 5 6 7 3 2 7 2 11 1 3-1 7-2 11-2s8 1 12 3c3 2 5 6 5 10s-1 8-3 11c-2 3-4 6-5 9-1 3-1 7-1 11s1 8 0 12c-1 3-3 6-6 7-3 1-7 2-11 2s8-1 12-2c3-1 7-2 11-3 3-1 6-2 9-2s6 1 8 3c3 2 4 6 5 10 1 3 2 7 2 11s1 8 3 11c2 3 5 5 9 6h1z"/%3E%3C/svg%3E');

  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
  opacity: 0.6;
  transform: translateY(0);
  transition: transform 0.1s ease-out;
  pointer-events: none;
}

@media (max-width: 768px) {
  .tasks-header h2 {
    font-size: 32px;
  }

  .final-cta-section h2 {
    font-size: 28px !important;
  }

  .final-cta-section {
    padding: 60px 0;
  }
}

/* CTA Section */
.service-cta {
  background: var(--section-bg);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}

.service-cta-content {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  /* Matches result-card shadow */
  border: 1px solid #f3e8ff;
  position: relative;
  z-index: 1;
}

.service-cta h2 {
  font-size: 38px;
  color: var(--navy);
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 1.3;
}

.service-cta p {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-block;
  background: #9333ea;
  color: var(--white);
  padding: 16px 45px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.4);
  background: #7e22ce;
}

@media (max-width: 768px) {
  .service-cta {
    padding: 60px 20px;
  }

  .service-cta-content {
    padding: 40px 25px;
    border-radius: 15px;
  }

  .service-cta h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  .service-cta p {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .cta-button {
    padding: 14px 30px;
    font-size: 15px;
    width: 100%;
    max-width: 300px;
  }
}

/* Sales Support Section */
.sales-support-section {
  background: var(--gradient);
  padding: 60px 0;
  position: relative;
  margin-bottom: 60px;
}

.sales-support-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.sales-support-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px;
  color: white;
}

.sales-support-text h2 {
  font-size: 40px;
  text-transform: uppercase;
  color: white;
  margin-bottom: 25px;
  font-weight: 800;
  position: relative;
}

.sales-support-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.sales-support-text p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 20px;
}

.sales-support-visual {
  background: var(--light-blue);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.sales-support-visual::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 150px;
  height: 150px;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 50%;
}

.support-feature {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}

.support-feature:hover {
  transform: translateX(10px);
}

.support-feature i {
  font-size: 24px;
  color: var(--primary-blue);
}

.support-feature span {
  font-weight: 600;
  color: var(--navy);
}

@media (max-width: 968px) {
  .sales-support-content {
    grid-template-columns: 1fr;
    padding: 40px 25px;
    gap: 40px;
  }

  .sales-support-text h2 {
    font-size: 28px;
  }

  .sales-support-visual {
    padding: 30px 20px;
  }
}

/* Services We Provide Section */
.services-provide-section {
  padding: 100px 0;
  background: var(--white);
}

.services-provide-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.services-provide-header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services-provide-header h2 {
  font-size: 36px;
  color: var(--navy);
  margin-bottom: 25px;
  font-weight: 800;
}

.services-provide-header p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
}

.services-provide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

/* Handle the last row centering if needed, but grid usually handles it well. 
     If 5 items, the last 2 will be left-aligned by default. 
     To center the last row of 2 items in a 3-column grid is tricky without flexbox or specific nth-child rules.
     Let's stick to standard grid flow or use flex for the container if centering is crucial. 
     The user image shows 3 on top, 2 on bottom. Grid is fine, let's make the last two span nicely or just center the grid items.
     Actually, standard grid is safer. Let's add centered alignment for the grid items if we want them centered.
  */

.service-provide-card {
  background: #1e3a8a;
  /* Dark blue matching the image */
  border-radius: 15px;
  padding: 50px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 220px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.15);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-provide-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(30, 58, 138, 0.3);
  background: #172554;
}

.service-provide-card h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 1;
  margin: 0;
  position: relative;
}

/* Subtle glow effect on hover */
.service-provide-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.service-provide-card:hover::before {
  opacity: 1;
}

/* Make the 4th and 5th items centered in the bottom row on large screens 
     by making the grid content centered or using specific grid placement.
     Simplest way to center the last row of a grid of 5 items in 3 columns:
     We can just leave them as is (left aligned) or try to center them. 
     Let's leave standard grid behavior for robustness, it looks good.
  */

@media (max-width: 968px) {
  .services-provide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .services-provide-section {
    padding: 60px 0;
  }

  .services-provide-header h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .services-provide-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-provide-card {
    min-height: 160px;
    padding: 30px 20px;
  }

  .service-provide-card h3 {
    font-size: 18px;
    transform: scale(1.02);
  }
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.service-list-item {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-left: 5px solid var(--primary-blue);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-list-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-list-item h4 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}

.service-list-item h4 i {
  color: var(--primary-blue);
  font-size: 20px;
}

.service-list-item p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
  padding-left: 30px;
}

.services-bottom-image {
  margin-top: 60px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  position: relative;
}

.services-bottom-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s;
}

.services-bottom-image:hover img {
  transform: scale(1.03);
}

@media (max-width: 968px) {
  .services-intro-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-list-grid {
    grid-template-columns: 1fr;
  }

  .services-offered-header h2 {
    font-size: 28px;
  }
}

/* Detail Card Update */
.detail-card {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12) !important;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 20px;
  background: #fff;
}

/* Result Card Update */
.result-card {
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #f1f5f9;
  background: #fff;
}

.result-card:hover {
  box-shadow: 0 15px 40px rgba(59, 130, 246, 0.15);
  transform: translateY(-5px);
}

/* Split Layout for Sales Services */
.services-split-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 50px;
}

.services-split-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.services-split-row img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.services-list-subset {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media (max-width: 968px) {
  .services-split-row {
    grid-template-columns: 1fr;
  }

  .services-split-row.reverse {
    display: flex;
    flex-direction: column-reverse;
  }
}

/* Footer */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto 60px;
  padding: 0 20px;
}

.footer-about h3 {
  font-size: 28px;
  margin-bottom: 20px;
  color: var(--primary-blue);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-section h4 {
  font-size: 18px;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--primary-blue);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  max-width: 1200px;
  margin: 0 auto;
}

.logo-footer {
  display: flex;
  justify-content: left;
  margin-left: -15px;
  padding-bottom: 20px;
  width: 100%;
  height: 100px;
}

/* Responsive Design */
@media (max-width: 968px) {
  .nav-menu {
    display: none;
  }

  .service-hero-content,
  .two-column-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .service-hero {
    text-align: center;
  }

  .service-hero-text {
    text-align: center;
  }

  .service-category {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }

  .service-hero-text h1 {
    font-size: 36px;
    text-align: center;
  }

  .service-hero-description {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .service-cta-buttons {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    justify-content: center;
    padding: 16px 30px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .benefits-grid,
  .pricing-cards {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .process-steps {
    grid-template-columns: 1fr;
  }

  .service-hero {
    padding: 40px 0;
    text-align: center;
  }

  .section-title {
    font-size: 24px !important;
    text-align: center;
    padding: 0 15px;
  }

  .service-hero-text h1 {
    text-align: center;
    font-size: 26px !important;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    font-size: 14px;
    padding: 12px 20px;
  }
}

/* Final CTA Responsive Override */
@media (max-width: 768px) {
  .final-cta-section {
    padding: 50px 0 !important;
  }

  .final-cta-section h2 {
    font-size: 24px !important;
    padding: 0 15px;
  }

  .final-cta-section p {
    font-size: 15px !important;
    padding: 0 15px;
  }
}



/* CRITICAL RESPONSIVE FIXES 2 */


.result-grid,
.tasks-grid,
.services-provide-grid,
.experts-grid {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.result-card,
.task-card,
.expert-card {
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
}

.result-card p,
.task-card p,
.expert-card p {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
}

@media (max-width: 968px) {

  .result-grid,
  .tasks-grid,
  .services-provide-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {

  .result-grid,
  .tasks-grid,
  .services-provide-grid,
  .experts-grid {
    grid-template-columns: 1fr !important;
  }

  .result-header h2,
  .tasks-header h2,
  .experts-header h2,
  .section-title {
    font-size: 26px !important;
  }
}

@media (max-width: 480px) {

  .result-header h2,
  .tasks-header h2,
  .experts-header h2 {
    font-size: 22px !important;
    word-wrap: break-word;
    padding: 0 10px;
  }

  .result-card,
  .task-card {
    padding: 20px !important;
  }

  .result-icon {
    font-size: 18px !important;
  }
}

/* Scroll Reveal Animation */
.reveal-on-scroll {
  opacity: 0 !important;
  transform: translateY(30px) !important;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) !important;
}

.reveal-on-scroll.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Benefit Modern Stepped Layout */
.benefit-modern-layout {
  max-width: 1100px;
  margin: 60px auto 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 20px;
}

.benefit-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 40px;
  background: var(--white);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 20px rgba(59, 130, 246, 0.05);
}

.benefit-step::before {
  content: attr(data-number);
  font-size: 80px;
  font-weight: 800;
  color: #3b82f6;
  opacity: 0.1;
  position: absolute;
  top: 10px;
  right: 30px;
  line-height: 1;
  transition: all 0.4s ease;
}

.benefit-step:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 40px rgba(59, 130, 246, 0.1);
}

.benefit-step:hover::before {
  opacity: 0.2;
  transform: scale(1.1);
}

.benefit-step-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.benefit-step-content h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.benefit-step-content h3::before {
  content: "";
  display: block;
  width: 4px;
  height: 24px;
  background: #3b82f6;
  border-radius: 10px;
}

.benefit-step-content p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--gray);
  max-width: 850px;
}

@media (max-width: 768px) {
  .benefit-step {
    padding: 30px;
    gap: 20px;
  }

  .benefit-step::before {
    font-size: 60px;
    top: 5px;
    right: 15px;
  }

  .benefit-step-content h3 {
    font-size: 20px;
  }

  .benefit-step-content p {
    font-size: 15px;
  }
}