.elementor-71 .elementor-element.elementor-element-58eb904{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-661d4da *//* General Styles */
.business-consulting-page {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow: hidden;
}

/* Hero Section */
.hero-section {
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.hero-overlay {
  background: rgba(5, 97, 192, 0.8); /* Semi-transparent overlay */
  padding: 40px;
  border-radius: 10px;
  max-width: 800px;
  margin: 0 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #fff;
  animation: fadeInUp 1s ease-in-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #fff;
  animation: fadeInUp 1.5s ease-in-out;
}

.hero-content .cta-button {
  background: #06adf3;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s, color 0.3s;
  animation: fadeInUp 2s ease-in-out;
}

.hero-content .cta-button:hover {
  background: #fff;
  color: #0561c0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* About Section */
.about-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-content {
  max-width: 600px;
}

.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #0561c0;
}

.about-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.about-content ul {
  list-style: none;
  padding: 0;
}

.about-content ul li {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #666;
}

.about-content ul li i {
  color: #06adf3;
  margin-right: 10px;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Services Section */
.services-section {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
}

.services-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0561c0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-card i {
  font-size: 2rem;
  color: #06adf3;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #0561c0;
}

.service-card p {
  font-size: 1rem;
  color: #666;
}

/* CTA Section */
.cta-section {
  background: #0561c0;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.cta-section .cta-button {
  background: #06adf3;
  color: #fff;
}

.cta-section .cta-button:hover {
  background: #fff;
  color: #0561c0;
}/* End custom CSS */