.elementor-2905 .elementor-element.elementor-element-1c5809c{--display:flex;}/* Start custom CSS for html, class: .elementor-element-35dcca6 *//* Global */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: ##0C1321;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* Headings */
h1, h2, h3 {
  color: #FFFFFF;
  font-weight: 600;
}

/* Hero Section */
.app-hero {
  background: #0B1220;
  text-align: center;
  padding: 120px 20px;
}
.app-hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}
.app-hero p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #ddd;
}

/* Transparent Button */
.app-btn {
  background: transparent;
  color: #fff;
  padding: 12px 28px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #3B82F6; /* Blue border */
  border-radius: 6px;
  transition: 0.3s;
  font-weight: 600;
}
.app-btn:hover {
  background: #3B82F6; /* Blue hover */
  color: #fff;
}

/* Features Section */
.app-features {
  padding: 70px 20px;
  text-align: center;
}
.app-feature-list {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.app-feature {
  background: #1A2235;
  padding: 25px;
  border-radius: 8px;
  flex: 1 1 250px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  transition: transform 0.3s;
}
.app-feature:hover {
  transform: translateY(-5px);
}
.app-feature h3 {
  color: #3B82F6; /* Blue heading */
  margin-bottom: 10px;
}
.app-feature p {
  color: #eee;
}

/* About Section */
.app-about {
  padding: 70px 20px;
  text-align: center;
}
.app-about p {
  max-width: 700px;
  margin: auto;
  color: #eee;
}

/* Contact Section */
.app-contact {
  padding: 70px 20px;
  text-align: center;
}
.app-contact form {
  max-width: 500px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.app-contact input,
.app-contact textarea {
  padding: 12px;
  border: 1px solid #444;
  border-radius: 6px;
  font-size: 16px;
  background: #1A2235;
  color: #fff;
}
.app-contact input::placeholder,
.app-contact textarea::placeholder {
  color: #aaa;
}
.app-contact button {
  border: 2px solid #3B82F6;
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: 6px;
  padding: 12px 28px;
  transition: 0.3s;
}
.app-contact button:hover {
  background: #3B82F6;
  color: #fff;
}/* End custom CSS */