/* ERP Hero Section */
@media(max-width:768px){
  .highlight-badge{
    margin-top: auto;
    width: 100%;
  }
  section.erp-hero{
    padding-top: 150px;
    height: auto;
    background: linear-gradient(135deg, #007bff, #d9f5ff);
  }
  section.erp-hero .hero-text h1{
    font-size: 40px;
  }
  .hero-image img{
    height: auto;
    width: 100%;
    border-radius: 10px;
  }
  .hero-content.hero-image{
    height: 350px;
  }
}
@media(max-width:1200px){
  .highlight-badge{
    margin-top: auto;
    width: 100%;
  }
  section.erp-hero{
    padding-top: 150px;
    height: auto;
    background: linear-gradient(135deg, #007bff, #d9f5ff);
  }
  section.erp-hero .hero-text h1{
    font-size: 40px;
  }
}
.btn-primary{
    background: white;
    color: #007bff;
}
.section-cta{
  padding:80px 0px 0px 0px ;
}
.erp-ai p{
  color:white;
}
.erp-hero {
  background: linear-gradient(135deg, #007bff, #d9f5ff);
  color: white;
  height: auto;
  padding-top: 150px;
  padding-bottom: 40px;
}


.erp-hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.erp-hero-text h1 {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.subtitle{
  color:white
}
.erp-hero-text .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.erp-hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.erp-hero-cta {
  display: flex;
  gap: 1rem;
}

.btn-secondary {
  background-color: white;
  color: #004e68;
  border: 1px solid #004e68;
  padding: 8px;
  border-radius: 20px;
}

.btn-secondary:hover {
  background-color: #004e68;
  color:white;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
/* ERP Benefits Section */
.erp-benefits {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.benefit-icon {
  font-size: 2rem;
  color: #62cff4;
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #555;
  line-height: 1.6;
}

.benefit-card.highlighted {
  border: 2px solid #62cff4;
}



/* ERP Services Section */
.erp-services {
  padding: 5rem 0;
}

.services-tabs {
  display: flex;
  gap: 1rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.service-tab {
  padding: 0.8rem 1.5rem;
  background: #f1f1f1;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-tab.active {
  background: #006d77;
  color: white;
}

.service-tab:hover:not(.active) {
  background: #ddd;
}

.services-content {
  display: none;
}

.services-content.active {
  display: block;
}

.service-details {
  display: flex;
  gap: 3rem;
  align-items: center;
}

.service-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: auto;
  display: block;
}

.service-info {
  flex: 1;
}

.service-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  color: #006d77;
}

.service-info p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.service-features {
  margin-bottom: 2rem;
}

.service-features li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-features i {
  color: #006d77;
}

/* ERP Platforms Section */
.erp-platforms {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.platform-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}
.platform-card.highlighted{
  border: 2px solid #62cff4;
  padding-bottom: 50px;
}
.platform-card:hover {
  transform: translateY(-5px);
}

.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.3rem;
  margin-bottom: 1rem;
}

.platform-card p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.platform-cta {
  margin-top: 1.5rem;
}

.popular-badge {
  position: absolute;
  /*top: -10px;
  right: 100px;*/
  background: #ff9e00;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* AI-Powered ERP Matching Section */
.erp-ai {
  padding: 5rem 0;
  background: linear-gradient(135deg, #006d77 0%, #83c5be 100%);
  color: white;
}

.ai-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.ai-text {
  flex: 1;
}

.ai-text h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.ai-text h2 span {
  color: #ffddd2;
}

.ai-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.ai-features {
  margin-bottom: 2.5rem;
}

.ai-feature {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ai-feature i {
  font-size: 1.5rem;
  color: #ffddd2;
  margin-top: 0.3rem;
}

.ai-feature h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.ai-feature p {
  margin-bottom: 0;
  opacity: 0.8;
}
.ai-image {
  max-width: 500px;   /* control image size */
}

.ai-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;

}
/* Industry Specialization Section */
.erp-industries {
  padding: 5rem 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.industry-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-5px);
}

.industry-icon {
  font-size: 2.5rem;
  color: #006d77;
  margin-bottom: 1.5rem;
}

.industry-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.industry-card p {
  color: #555;
  line-height: 1.5;
}

/* Testimonials Section */
.erp-testimonials {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.quote-icon {
  font-size: 2rem;
  color: #006d77;
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.client-info img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.2rem;
}

.client-info p {
  font-style: normal;
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 0;
}

/* CTA Section */
.erp-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, #006d77 0%, #83c5be 100%);
  color: white;
  text-align: center;
}

.erp-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.erp-cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

/* FAQ Section */
.erp-faq {
  padding: 5rem 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 1rem;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  text-align: left;
  background: white;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

.faq-answer p {
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .erp-hero-content,
  .service-details,
  .ai-content {
    flex-direction: column;
  }
  
  .erp-hero-text,
  .service-image,
  .service-info,
  .ai-text{
    width: 100%;
  }
  
  .erp-hero-text {
    order: 1;
  }
  
}

@media (max-width: 768px) {
  .erp-hero-text h1 {
    font-size: 2.2rem;
  }
  
  .erp-hero-cta,
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

/* ERP Hero Section */
.erp-hero .hero-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.erp-hero .hero-text h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.erp-hero .hero-text h1 span {
  color: #004085;
}

.erp-hero .hero-text .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.erp-hero .hero-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.erp-hero .feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}

.erp-hero .feature-item i {
  color: #007bff;
  font-size: 1.2rem;
}

.erp-hero .hero-cta {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}


/* Steps Section */
.steps-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.step-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  text-align: center;
}

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

.step-number {
  width: 50px;
  height: 50px;
  background: #62cff4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem;
}

.step-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.step-card p {
  color: #555;
  line-height: 1.6;
}

.step-card.highlighted {
  border: 2px solid #62cff4;
  transform: translateY(-10px);
}
/* Benefits Section */
.benefits-section {
  padding: 5rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2rem;
  color: #62cff4;
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.benefit-card p {
  color: #555;
  line-height: 1.6;
}

.benefit-card.highlighted {
  border: 2px solid #62cff4;
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: #ff9e00;
  color: white;
  padding: 0.3rem 1.5rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* ERP Platforms Section */
.erp-platforms {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.platform-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}

.platform-card:hover {
  transform: translateY(-5px);
}

.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.3rem;
  margin-bottom: 1rem;
}

.platform-card p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.platform-features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
  padding: 0 1rem;
}

.platform-features span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
}

.platform-features i {
  color: #006d77;
}

.popular-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: #ff9e00;
  color: white;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: bold;
}

/* Compliance Section */
.compliance-section {
  padding: 5rem 0;
}

.compliance-content {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.compliance-text {
  flex: 1;
}

.compliance-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.compliance-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.compliance-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.compliance-features .feature {
  display: flex;
  gap: 1rem;
}

.compliance-features i {
  font-size: 1.5rem;
  color: #62cff4;
  margin-top: 0.3rem;
}

.compliance-features h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
}

.compliance-features p {
  margin-bottom: 0;
  font-size: 1rem;
}

.compliance-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 600px;
}
.compliance-image img{
  height: 100%;
  width: 100%;
}

/* Consultant Section */
.consultant-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
}

.consultant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.consultant-card {
  background: white;
  border-radius: 10px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  position: relative;
}
.consultant-card.highlighted{
    border: 2px solid #62cff4;
    padding-bottom: 50px;
}
.consultant-card:hover {
  transform: translateY(-5px);
}

.consultant-icon {
  font-size: 2.5rem;
  color: #006d77;
  margin-bottom: 1.5rem;
}

.consultant-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.consultant-card p {
  color: #555;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.consultant-card ul {
  text-align: left;
  margin-top: 1.5rem;
}

.consultant-card li {
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.consultant-card i {
  color: #62cff4;
}

/* Resources Box */
.resources-box {
  background: white;
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.resources-box h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #006d77;
}

.resources-box ul {
  list-style: none;
}

.resources-box li {
  margin-bottom: 0.8rem;
}

.resources-box a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #333;
  transition: color 0.3s ease;
}

.resources-box a:hover {
  color: #006d77;
}

.resources-box i {
  color: #006d77;
}

/* FOOTER BASE */
.footer {
  background: linear-gradient(180deg, #0b1628 0%, #0a1222 100%);
  color: #cfd6e4;
  padding: 70px 0 25px;
  font-size: 14px;
}

/* CONTAINER */
.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 50px;
}

/* LOGO + ABOUT */
.footer-about {
  margin-top: 18px;
  line-height: 1.6;
  color: #aeb7c6;
}

/* HEADINGS */
.footer h3 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

/* LISTS */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #8fa3c8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer ul li a:hover {
  color: #4da3ff;
}

/* NEWSLETTER */
.newsletter {
  margin-top: 25px;
}

.newsletter-form {
  display: flex;
  margin-top: 10px;
  margin-right: 10px;
}
.footer-email {
  flex: 1;
  padding: 8px 10px;
  border-radius:0;
  border: none;
  outline: none;
  font-size: 15px;
  height: 30px;
}

.footer-button {
  background: #ffffff;
  border: none;
  padding: 0 12px;
  cursor: pointer;
  border-radius:0;
  height: 30px;
}

.footer-button i {
  color: #0b1628;
}

/* SOCIAL ICONS */
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-links a {
  width: 34px;
  height: 34px;
  background: #007bff;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  background: #4aa84a;
}

/* DIVIDER */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #8fa3c8;
}

/* BOTTOM LINKS */
.footer-links a {
  color: #8fa3c8;
  margin-left: 15px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}

@media (max-width: 768px) {


  .erp-hero .hero-content {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .erp-hero .hero-text h1 {
    line-height: 1.25;
    margin-bottom: 1rem;
  }

  .erp-hero .hero-text p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 768px) {
  .hero-features li {
    margin-bottom: 0.75rem;
    line-height: 1.5;
  }
}
@media (max-width: 768px) {
  .erp-hero .hero-cta {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .erp-hero .hero-cta a,
  .erp-hero .hero-cta button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .compliance-image{
    display: none;
  }
  .erp-ai .btn-primary{
    margin-left: 60px;
  }
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-links a {
    margin-left: 0;
    margin-right: 10px;
  }
}