.elementor-42 .elementor-element.elementor-element-2475d45{--display:flex;}/* Start custom CSS for html, class: .elementor-element-10e2152 *//* General Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Tajawal', sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}
.container {
  max-width: 1100px;
  margin: auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background: #1e1e2f;
  color: white;
  padding: 15px 0;
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #1e1e2f, #3b3b58);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.hero h2 {
  font-size: 2.5rem;
}
.hero p {
  margin: 15px 0;
}
.btn {
  display: inline-block;
  background: #ff4d4d;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s;
}
.btn:hover {
  background: #e63e3e;
}

/* Features Section */
.features {
  padding: 60px 0;
  background: #fff;
}
.features h3 {
  text-align: center;
  margin-bottom: 40px;
}
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.feature-item {
  background: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
}

/* Why Us Section */
.why-us {
  padding: 60px 0;
  background: #f4f4f4;
}
.why-us h3 {
  text-align: center;
  margin-bottom: 20px;
}
.why-us ul {
  max-width: 800px;
  margin: auto;
  padding-left: 20px;
}
.why-us li {
  margin-bottom: 10px;
}

/* Contact Section */
.contact {
  padding: 60px 0;
  background: #fff;
}
.contact h3 {
  text-align: center;
  margin-bottom: 20px;
}
.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* Footer */
.footer {
  background: #1e1e2f;
  color: white;
  text-align: center;
  padding: 15px 0;
}/* End custom CSS */