.elementor-69 .elementor-element.elementor-element-23304b7{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-5d60dd2 *//* General Styles */
.cloud-services-page {
  font-family: 'Arial', sans-serif;
  color: #333;
  line-height: 1.6;
  overflow: hidden;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 100px 20px;
  background: linear-gradient(135deg, #06adf3, #0561c0);
  color: #fff;
}

.hero-content {
  max-width: 600px;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease-in-out;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1.5s ease-in-out;
}

.hero-content .cta-button {
  background: #fff;
  color: #0561c0;
  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: #0561c0;
  color: #fff;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Services Section */
.services-section {
  padding: 80px 20px;
  text-align: center;
}

.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;
}

.service-card {
  background: #f9f9f9;
  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;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
}

.benefits-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0561c0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.benefit-card {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card i {
  font-size: 2rem;
  color: #06adf3;
  margin-bottom: 15px;
}

.benefit-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #0561c0;
}

.benefit-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 */