.elementor-67 .elementor-element.elementor-element-51d4a7b{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-c357b4a *//* General Styles */
.mobile-app-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;
}

/* Portfolio Section */
.portfolio-section {
  padding: 80px 20px;
  text-align: center;
}

.portfolio-section h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0561c0;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
}

.portfolio-item .overlay {
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  background: rgba(5, 97, 192, 0.9);
  color: #fff;
  padding: 20px;
  transition: bottom 0.3s;
}

.portfolio-item:hover .overlay {
  bottom: 0;
}

.overlay h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.overlay p {
  font-size: 1rem;
}

/* 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 */