/* ERP Consultancy Page Specific Styles */
.erp-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.erp-hero .hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.erp-hero .hero-text {
  flex: 1;
}

.erp-hero .hero-image {
  flex: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.erp-hero .hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 0;
  background-color: #ffffff;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefit-card.highlighted {
  border-top: 3px solid #0c84c0;
}

.benefit-icon {
  font-size: 2rem;
  color: #0c84c0;
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.benefit-card p {
  color: #64748b;
  font-size: 0.95rem;
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #10b981;
  color: white;
  padding: 0.3rem 1.5rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
}

/* Services Tabs */
.services-tabs {
  margin-top: 3rem;
}

.tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
  padding: 0.8rem 1.5rem;
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-btn.active {
  color: #0c84c0;
  border-bottom-color: #0c84c0;
}

.tab-btn:hover:not(.active) {
  color: #1e293b;
}

.tabs-content {
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.tab-pane {
  display: none;
  padding: 2rem;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.service-details {
  display: flex;
  gap: 3rem;
}

.service-image {
  flex: 1;
  border-radius: 0.5rem;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-info {
  flex: 1;
}

.service-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: #1e293b;
}

.documentation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.doc-card {
  background: #f8fafc;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.doc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border-color: #0c84c0;
}

.doc-card i {
  font-size: 2rem;
  color: #0c84c0;
  margin-bottom: 1rem;
}

.doc-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.doc-card p {
  color: #64748b;
  font-size: 0.9rem;
}

/* ERP Platforms Section */
.erp-platforms {
  padding: 4rem 0;
  background: #f8fafc;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.platform-card {
  background: #ffffff;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 1px solid #e2e8f0;
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.platform-card.highlighted {
  border-top: 3px solid #0c84c0;
}

.platform-logo {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.platform-logo img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.platform-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #1e293b;
}

.platform-card p {
  color: #64748b;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #0c84c0;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
}

/* UAE Compliance Section */
.compliance-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #0c5e7a 0%, #0c84c0 100%);
  color: white;
}

.compliance-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.compliance-text {
  flex: 1;
}

.compliance-text h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.compliance-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.compliance-image {
  flex: 1;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.compliance-image img {
  width: 100%;
  height: auto;
  display: block;
}

.compliance-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature i {
  font-size: 1.2rem;
  color: #ffe600;
  margin-top: 0.2rem;
}

.feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: white;
}

.feature p {
  font-size: 0.95rem;
  opacity: 0.8;
  margin: 0;
}

/* Certification Section */
.certification-section {
  padding: 4rem 0;
  background: #ffffff;
}

.certification-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  background: #f8fafc;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid #e2e8f0;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #0c84c0;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.step p {
  color: #64748b;
  font-size: 0.9rem;
  margin: 0;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .erp-hero .hero-content,
  .service-details,
  .compliance-content {
    flex-direction: column;
  }
  
  .service-image,
  .compliance-image {
    order: -1;
    margin-bottom: 2rem;
  }
  
  .tabs-nav {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 0.5rem;
  }
}

@media (max-width: 768px) {
  .benefits-grid,
  .platforms-grid,
  .certification-steps {
    grid-template-columns: 1fr;
  }
  
  .tab-btn {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
/* SAP S/4HANA-specific styles */
    .s4hana-hero {
      background: linear-gradient(135deg, #0a2240 0%, #0070f2 100%);
      color: white;
      padding: 80px 0;
      border-radius: 15px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }
    
    .s4hana-hero:before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      height: 100%;
      background: url('/Images/s4hana-network.png') no-repeat right center;
      background-size: contain;
      opacity: 0.15;
      z-index: 1;
    }
    
    .s4hana-hero-content {
      position: relative;
      z-index: 2;
    }
    
    .s4hana-logo-container {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .s4hana-logo-container img {
      max-width: 400px;
      height: auto;
    }
    
    .s4hana-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin: 40px 0;
    }
    
    .s4hana-feature-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      border-top: 3px solid #0070f2;
    }
    
    .s4hana-feature-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 15px 30px rgba(0,112,242,0.15);
    }
    
    .s4hana-feature-icon {
      font-size: 2.8rem;
      color: #0070f2;
      margin-bottom: 20px;
    }
    
    .s4hana-modules-table {
      width: 100%;
      border-collapse: collapse;
      margin: 30px 0;
      box-shadow: 0 0 25px rgba(0,0,0,0.08);
      border-radius: 10px;
      overflow: hidden;
    }
    
    .s4hana-modules-table th {
      background-color: #0a2240;
      color: white;
      text-align: left;
      padding: 18px;
      font-weight: 600;
    }
    
    .s4hana-modules-table td {
      padding: 15px 18px;
      border-bottom: 1px solid #e0e0e0;
      vertical-align: top;
    }
    
    .s4hana-modules-table tr:last-child td {
      border-bottom: none;
    }
    
    .s4hana-modules-table tr:nth-child(even) {
      background-color: #f8fafc;
    }
    
    .s4hana-industries {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin: 25px 0;
    }
    
    .s4hana-industry-tag {
      background: #e6f0ff;
      color: #0a2240;
      padding: 10px 18px;
      border-radius: 25px;
      font-size: 0.95rem;
      font-weight: 500;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .s4hana-testimonials {
      background: #f8fafc;
      padding: 50px;
      border-radius: 15px;
      margin: 50px 0;
      border: 1px solid #e0e6ed;
    }
    
    .s4hana-testimonial-card {
      background: white;
      padding: 30px;
      border-radius: 12px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      margin-bottom: 25px;
      border-left: 4px solid #0070f2;
    }
    
    .s4hana-client-logo {
      height: 60px;
      margin-right: 25px;
      object-fit: contain;
      filter: grayscale(100%);
      opacity: 0.8;
      transition: all 0.3s ease;
    }
    
    .s4hana-testimonial-card:hover .s4hana-client-logo {
      filter: grayscale(0);
      opacity: 1;
    }
    
    .s4hana-pros-cons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 35px;
      margin: 50px 0;
    }
    
    @media (max-width: 768px) {
      .s4hana-pros-cons {
        grid-template-columns: 1fr;
      }
      
      .s4hana-hero:before {
        width: 100%;
        opacity: 0.08;
      }
      
      .s4hana-testimonials {
        padding: 30px 20px;
      }
    }
    
    .s4hana-pros-card, .s4hana-cons-card {
      padding: 30px;
      border-radius: 12px;
    }
    
    .s4hana-pros-card {
      background: #e6f7f7;
      border-left: 5px solid #00b4a0;
    }
    
    .s4hana-cons-card {
      background: #fde8e8;
      border-left: 5px solid #e74c3c;
    }
    
    .s4hana-pros-card h3, .s4hana-cons-card h3 {
      margin-top: 0;
      display: flex;
      align-items: center;
      font-size: 1.4rem;
    }
    
    .s4hana-pros-card h3 i {
      color: #00b4a0;
      margin-right: 12px;
      font-size: 1.8rem;
    }
    
    .s4hana-cons-card h3 i {
      color: #e74c3c;
      margin-right: 12px;
      font-size: 1.8rem;
    }
    
    .s4hana-rating-container {
      display: flex;
      align-items: center;
      margin: 25px 0;
    }
    
    .s4hana-rating-stars {
      color: #ffc107;
      font-size: 1.8rem;
      margin-right: 20px;
      letter-spacing: 3px;
    }
    
    .s4hana-rating-text {
      font-weight: 600;
      font-size: 1.1rem;
    }
    
    .s4hana-implementation-steps {
      counter-reset: step-counter;
      margin: 50px 0;
    }
    
    .s4hana-step {
      position: relative;
      padding-left: 100px;
      margin-bottom: 40px;
      border-left: 2px dashed #0070f2;
      padding-bottom: 20px;
      padding-top: 10px;
    }
    
    .s4hana-step:last-child {
      border-left: none;
    }
    
    .s4hana-step:before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: -25px;
      top: 0;
      width: 50px;
      height: 50px;
      background: #0070f2;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      font-weight: bold;
      border: 5px solid white;
      box-shadow: 0 0 0 2px #0070f2;
    }
    
    .s4hana-pricing-card {
      background: white;
      border-radius: 12px;
      padding: 40px;
      box-shadow: 0 10px 30px rgba(0,112,242,0.1);
      margin: 50px 0;
      border: 1px solid #e0e6ed;
      border-top: 5px solid #0070f2;
    }
    
    .s4hana-pricing-feature {
      display: flex;
      align-items: flex-start;
      margin-bottom: 15px;
    }
    
    .s4hana-pricing-feature i {
      color: #0070f2;
      margin-right: 15px;
      font-size: 1.2rem;
      margin-top: 3px;
    }
    
    .s4hana-pricing-feature span {
      flex: 1;
    }
    
    .s4hana-editions {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin: 40px 0;
    }
    
    .s4hana-edition-card {
      background: white;
      border-radius: 12px;
      padding: 30px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.05);
      border-top: 4px solid #0070f2;
      transition: transform 0.3s ease;
    }
    
    .s4hana-edition-card:hover {
      transform: translateY(-5px);
    }
    
    .s4hana-edition-card h3 {
      color: #0070f2;
      margin-top: 0;
    }
    
    .s4hana-migration-path {
      background: #f8fafc;
      padding: 30px;
      border-radius: 12px;
      margin: 40px 0;
    }
    
    .s4hana-migration-step {
      display: flex;
      margin-bottom: 30px;
      align-items: flex-start;
    }
    
    .s4hana-migration-step:last-child {
      margin-bottom: 0;
    }
    
    .s4hana-migration-number {
      background: #0070f2;
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      margin-right: 20px;
      flex-shrink: 0;
    }
    
    .s4hana-tech-specs {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 30px 0;
    }
    
    .s4hana-tech-spec-card {
      background: white;
      border-radius: 8px;
      padding: 20px;
      box-shadow: 0 2px 10px rgba(0,0,0,0.05);
      border-left: 3px solid #0070f2;
    }
    
    .s4hana-tech-spec-card h4 {
      margin-top: 0;
      color: #0a2240;
    }
    
    /* Animation for hero section */
    @keyframes float {
      0% { transform: translateY(0px); }
      50% { transform: translateY(-15px); }
      100% { transform: translateY(0px); }
    }
    
    .s4hana-hero-image {
      animation: float 6s ease-in-out infinite;
    }

  
    /* NetSuite-specific styles */
    .netsuite-hero {
      background: linear-gradient(135deg, #C72127 0%, #E03A3E 100%);
      color: white;
      padding: 60px 0;
      border-radius: 15px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }
    
    .netsuite-hero:before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      height: 100%;
      background: url('/Images/cloud-network.png') no-repeat right center;
      opacity: 0.2;
      z-index: 1;
    }
    
    .netsuite-hero-content {
      position: relative;
      z-index: 2;
    }
    
    .netsuite-logo-container {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .netsuite-logo-container img {
      max-width: 300px;
      height: auto;
    }
    
    .netsuite-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }
    
    .netsuite-feature-card {
      background: white;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }
    
    .netsuite-feature-card:hover {
      transform: translateY(-5px);
    }
    
    .netsuite-feature-icon {
      font-size: 2.5rem;
      color: #E03A3E;
      margin-bottom: 15px;
    }
    
    .netsuite-modules-table {
      width: 100%;
      border-collapse: collapse;
      margin: 30px 0;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
      border-radius: 10px;
      overflow: hidden;
    }
    
    .netsuite-modules-table th {
      background-color: #C72127;
      color: white;
      text-align: left;
      padding: 15px;
    }
    
    .netsuite-modules-table td {
      padding: 12px 15px;
      border-bottom: 1px solid #dddddd;
    }
    
    .netsuite-modules-table tr:last-child td {
      border-bottom: none;
    }
    
    .netsuite-modules-table tr:nth-child(even) {
      background-color: #f8f9fa;
    }
    
    .netsuite-industries {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 20px 0;
    }
    
    .netsuite-industry-tag {
      background: #FCE8E8;
      color: #C72127;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 500;
    }
    
    .netsuite-testimonials {
      background: #f8f9fa;
      padding: 40px;
      border-radius: 15px;
      margin: 40px 0;
    }
    
    .netsuite-testimonial-card {
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      margin-bottom: 20px;
    }
    
    .netsuite-client-logo {
      height: 50px;
      margin-right: 20px;
      object-fit: contain;
    }
    
    .netsuite-pros-cons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin: 40px 0;
    }
    
    @media (max-width: 768px) {
      .netsuite-pros-cons {
        grid-template-columns: 1fr;
      }
      
      .netsuite-hero:before {
        width: 100%;
        opacity: 0.1;
      }
    }
    
    .netsuite-pros-card, .netsuite-cons-card {
      padding: 25px;
      border-radius: 10px;
    }
    
    .netsuite-pros-card {
      background: #e6f7ee;
      border-left: 5px solid #00a86b;
    }
    
    .netsuite-cons-card {
      background: #fde8e8;
      border-left: 5px solid #e74c3c;
    }
    
    .netsuite-pros-card h3, .netsuite-cons-card h3 {
      margin-top: 0;
      display: flex;
      align-items: center;
    }
    
    .netsuite-pros-card h3 i {
      color: #00a86b;
      margin-right: 10px;
    }
    
    .netsuite-cons-card h3 i {
      color: #e74c3c;
      margin-right: 10px;
    }
    
    .netsuite-rating-container {
      display: flex;
      align-items: center;
      margin: 20px 0;
    }
    
    .netsuite-rating-stars {
      color: #ffc107;
      font-size: 1.5rem;
      margin-right: 15px;
    }
    
    .netsuite-rating-text {
      font-weight: 600;
    }
    
    .netsuite-implementation-steps {
      counter-reset: step-counter;
      margin: 40px 0;
    }
    
    .netsuite-step {
      position: relative;
      padding-left: 80px;
      margin-bottom: 30px;
    }
    
    .netsuite-step:before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: 0;
      top: 0;
      width: 50px;
      height: 50px;
      background: #C72127;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
    }
    
    .netsuite-pricing-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      margin: 40px 0;
      border-top: 5px solid #E03A3E;
    }
    
    .netsuite-pricing-feature {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .netsuite-pricing-feature i {
      color: #E03A3E;
      margin-right: 10px;
    }


    .dynamics-hero {
      background: linear-gradient(135deg, #003366 0%, #0078d4 100%);
      color: white;
      padding: 80px 0 60px;
      border-radius: 15px;
      margin-bottom: 40px;
      position: relative;
      overflow: hidden;
    }
    
    .dynamics-hero:before {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 40%;
      height: 100%;
      opacity: 0.1;
      z-index: 1;
    }
    
    .dynamics-hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }
    
    .dynamics-logo-container {
      text-align: center;
      margin-bottom: 30px;
    }
    
    .dynamics-logo-container img {
      max-width: 300px;
      height: auto;
      margin: 0 auto;
    }
    
    .dynamics-features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      margin: 40px 0;
    }
    
    .dynamics-feature-card {
      background: white;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      transition: transform 0.3s ease;
    }
    
    .dynamics-feature-card:hover {
      transform: translateY(-5px);
    }
    
    .dynamics-feature-icon {
      font-size: 2.5rem;
      color: #0078d4;
      margin-bottom: 15px;
    }
    
    .dynamics-modules-table {
      width: 100%;
      border-collapse: collapse;
      margin: 30px 0;
      box-shadow: 0 0 20px rgba(0,0,0,0.1);
      border-radius: 10px;
      overflow: hidden;
    }
    
    .dynamics-modules-table th {
      background-color: #003366;
      color: white;
      text-align: left;
      padding: 15px;
    }
    
    .dynamics-modules-table td {
      padding: 12px 15px;
      border-bottom: 1px solid #dddddd;
    }
    
    .dynamics-modules-table tr:last-child td {
      border-bottom: none;
    }
    
    .dynamics-modules-table tr:nth-child(even) {
      background-color: #f8f9fa;
    }
    
    .dynamics-industries {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 20px 0;
      justify-content: center;
    }
    
    .dynamics-industry-tag {
      background: #e6f2ff;
      color: #003366;
      padding: 8px 15px;
      border-radius: 20px;
      font-size: 0.9rem;
      font-weight: 500;
    }
    
    .dynamics-testimonials {
      background: #f8f9fa;
      padding: 40px;
      border-radius: 15px;
      margin: 40px 0;
    }
    
    .dynamics-testimonial-card {
      background: white;
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      margin-bottom: 20px;
    }
    
    .dynamics-client-logo {
      height: 50px;
      margin-right: 20px;
      object-fit: contain;
    }
    
    .dynamics-pros-cons {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin: 40px 0;
    }
    
    @media (max-width: 768px) {
      .dynamics-pros-cons {
        grid-template-columns: 1fr;
      }
      
      .dynamics-hero:before {
        width: 100%;
        opacity: 0.05;
      }
      
      .dynamics-hero {
        padding: 60px 0 40px;
      }
    }
    
    .dynamics-pros-card, .dynamics-cons-card {
      padding: 25px;
      border-radius: 10px;
    }
    
    .dynamics-pros-card {
      background: #e6f7ee;
      border-left: 5px solid #00a86b;
    }
    
    .dynamics-cons-card {
      background: #fde8e8;
      border-left: 5px solid #e74c3c;
    }
    
    .dynamics-pros-card h3, .dynamics-cons-card h3 {
      margin-top: 0;
      display: flex;
      align-items: center;
    }
    
    .dynamics-pros-card h3 i {
      color: #00a86b;
      margin-right: 10px;
    }
    
    .dynamics-cons-card h3 i {
      color: #e74c3c;
      margin-right: 10px;
    }
    
    .dynamics-rating-container {
      display: flex;
      align-items: center;
      margin: 20px 0;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .dynamics-rating-stars {
      color: #ffc107;
      font-size: 1.5rem;
      margin-right: 15px;
    }
    
    .dynamics-rating-text {
      font-weight: 600;
    }
    
    .dynamics-implementation-steps {
      counter-reset: step-counter;
      margin: 40px 0;
    }
    
    .dynamics-step {
      position: relative;
      padding-left: 80px;
      margin-bottom: 30px;
    }
    
    .dynamics-step:before {
      counter-increment: step-counter;
      content: counter(step-counter);
      position: absolute;
      left: 0;
      top: 0;
      width: 50px;
      height: 50px;
      background: #003366;
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      font-weight: bold;
    }
    
    .dynamics-pricing-card {
      background: white;
      border-radius: 10px;
      padding: 30px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      margin: 40px 0;
      border-top: 5px solid #0078d4;
    }
    
    .dynamics-pricing-feature {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
    }
    
    .dynamics-pricing-feature i {
      color: #0078d4;
      margin-right: 10px;
    }
    
    .dynamics-editions {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px;
      margin: 30px 0;
    }
    
    .dynamics-edition-card {
      background: white;
      border-radius: 10px;
      padding: 25px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      border-top: 3px solid #003366;
    }
    
    .dynamics-edition-card h3 {
      color: #003366;
      margin-top: 0;
    }
    
    /* Animation for Dynamics icon */
    @keyframes pulse {
      0% { transform: scale(1); }
      50% { transform: scale(1.05); }
      100% { transform: scale(1); }
    }
    
    .dynamics-icon {
      animation: pulse 3s ease-in-out infinite;
      color: #0078d4;
    }
    
    .partner-logos {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      align-items: center;
      margin: 40px 0;
    }
    
    .partner-logo {
      max-width: 150px;
      height: auto;
      filter: grayscale(100%);
      opacity: 0.7;
      transition: all 0.3s ease;
    }
    
    .partner-logo:hover {
      filter: grayscale(0);
      opacity: 1;
    }
    
    @media (max-width: 768px) {
      .dynamics-step {
        padding-left: 60px;
      }
      
      .dynamics-step:before {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
      }
      
      .partner-logos {
        gap: 20px;
      }
      
      .partner-logo {
        max-width: 120px;
      }
    }

    /* Improved Steps Section */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid #0078d4;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
  animation-delay: calc(var(--order) * 0.1s);
}

.step-card.highlighted {
  border-top-color: #ffb900;
  box-shadow: 0 10px 30px rgba(0,120,212,0.15);
}

.step-card:nth-child(1) { --order: 1; }
.step-card:nth-child(2) { --order: 2; }
.step-card:nth-child(3) { --order: 3; }
.step-card:nth-child(4) { --order: 4; }

.step-number {
  width: 50px;
  height: 50px;
  background: #0078d4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.step-card.highlighted .step-number {
  background: #ffb900;
}

.highlight-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background: #ffb900;
  color: #000;
  padding: 5px 20px;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Improved FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 15px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  border: 1px solid #e0e6ed;
}

.faq-question {
  width: 100%;
  padding: 20px;
  background: white;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  color: #003366;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f5f9ff;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: #f8fafc;
}

.faq-answer.active {
  max-height: 500px;
}

.faq-answer-content {
  padding: 20px;
}

.faq-answer p {
  margin-bottom: 15px;
  color: #4a5568;
}

.faq-answer ul {
  margin-bottom: 15px;
  padding-left: 20px;
}

.faq-answer li {
  margin-bottom: 8px;
  color: #4a5568;
}

.faq-answer strong {
  color: #003366;
}

/* General Spacing Improvements */
.section-header {
  margin-bottom: 50px;
}

.content-box {
  background: #f8fafc;
  padding: 25px;
  border-radius: 8px;
  margin: 30px 0;
  border-left: 4px solid #0078d4;
}

@media (max-width: 768px) {
  .steps-grid {
    grid-template-columns: 1fr;
  }
  
  .highlight-badge {
    right: -15px;
    font-size: 0.7rem;
    padding: 3px 10px;
  }
  
  .faq-question {
    padding: 15px;
    font-size: 1rem;
  }
}

/* SAP Business One Specific Styles */
.sap-hero {
  background: linear-gradient(135deg, #0c5e7a 0%, #0c84c0 100%);
  color: white;
  padding: 100px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.sap-hero:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  background: url('/Images/sap-pattern.png') no-repeat right center;
  opacity: 0.1;
  z-index: 1;
}

.sap-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.sap-logo-container {
  margin-bottom: 30px;
}

.sap-logo-container img {
  max-width: 300px;
  height: auto;
}

.sap-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
}

.sap-hero .subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.sap-rating-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 25px 0;
}

.sap-rating-stars {
  color: #ffc107;
  font-size: 1.5rem;
}

.sap-rating-text {
  font-weight: 500;
}

.sap-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin: 40px 0;
}

.sap-feature-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
  text-align: center;
}

.sap-feature-card:hover {
  transform: translateY(-5px);
}

.sap-feature-icon {
  font-size: 2.5rem;
  color: #0c84c0;
  margin-bottom: 20px;
}

.sap-feature-card h3 {
  margin-bottom: 15px;
  color: #1e293b;
}

.sap-modules-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.sap-modules-table th {
  background-color: #0c5e7a;
  color: white;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.sap-modules-table td {
  padding: 12px 15px;
  border-bottom: 1px solid #e0e6ed;
}

.sap-modules-table tr:last-child td {
  border-bottom: none;
}

.sap-modules-table tr:nth-child(even) {
  background-color: #f8fafc;
}

.sap-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 25px 0;
  justify-content: center;
}

.sap-industry-tag {
  background: #e1f0f7;
  color: #0c5e7a;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
}

.sap-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 40px 0;
}

@media (max-width: 768px) {
  .sap-pros-cons {
    grid-template-columns: 1fr;
  }
}

.sap-pros-card, .sap-cons-card {
  padding: 25px;
  border-radius: 10px;
}

.sap-pros-card {
  background: #e6f7ee;
  border-left: 5px solid #10b981;
}

.sap-cons-card {
  background: #fde8e8;
  border-left: 5px solid #f59e0b;
}

.sap-pros-card h3, .sap-cons-card h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sap-pros-card ul, .sap-cons-card ul {
  padding-left: 20px;
}

.sap-pros-card li, .sap-cons-card li {
  margin-bottom: 10px;
}

.sap-implementation-steps {
  counter-reset: step-counter;
  margin: 40px 0;
}

.sap-step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 30px;
}

.sap-step:before {
  counter-increment: step-counter;
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background: #0c84c0;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
}

.sap-pricing-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  margin: 40px 0;
  border-top: 5px solid #0c84c0;
}

.sap-pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.sap-pricing-feature i {
  color: #10b981;
}

.sap-editions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.sap-edition-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  border-top: 3px solid #0c84c0;
}

.sap-edition-card h3 {
  color: #0c5e7a;
  margin-top: 0;
}

.disclaimer-section {
  background: #f8fafc;
  padding: 40px 0;
  border-top: 1px solid #e0e6ed;
  border-bottom: 1px solid #e0e6ed;
  margin: 60px 0;
}

.disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
}

.disclaimer-content h2 {
  color: #0c5e7a;
  margin-bottom: 20px;
}

.disclaimer-content p {
  margin-bottom: 15px;
}

.disclaimer-content a {
  color: #0c84c0;
  font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .sap-hero {
    padding: 80px 0 40px;
  }
  
  .sap-hero h1 {
    font-size: 2rem;
  }
  
  .sap-hero .subtitle {
    font-size: 1rem;
  }
  
  .sap-step {
    padding-left: 60px;
  }
  
  .sap-step:before {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .sap-hero {
    padding: 60px 0 30px;
  }
  
  .sap-hero h1 {
    font-size: 1.8rem;
  }
  
  .sap-rating-container {
    flex-direction: column;
    gap: 5px;
  }
}

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(12, 132, 192, 0.7); }
  70% { box-shadow: 0 0 0 10px rgba(12, 132, 192, 0); }
  100% { box-shadow: 0 0 0 0 rgba(12, 132, 192, 0); }
}

/* NetSuite Editions Cards */
.netsuite-editions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.netsuite-edition-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 30px;
  border: 1px solid #e0e6ed;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.netsuite-edition-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.netsuite-edition-card h3 {
  color: #1a365d;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.netsuite-edition-card p {
  color: #4a5568;
  margin-bottom: 20px;
  line-height: 1.6;
}

.netsuite-edition-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.netsuite-edition-card ul li {
  margin-bottom: 10px;
  color: #4a5568;
  position: relative;
  line-height: 1.6;
}

.netsuite-edition-card ul li::before {
  content: "•";
  color: #3182ce;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.netsuite-edition-card ul li strong {
  color: #2d3748;
  font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .netsuite-editions {
    grid-template-columns: 1fr;
  }
  
  .netsuite-edition-card {
    padding: 25px;
  }
}

@media (max-width: 480px) {
  .netsuite-edition-card {
    padding: 20px;
  }
  
  .netsuite-edition-card h3 {
    font-size: 1.3rem;
  }
}