.elementor-2480 .elementor-element.elementor-element-2a2066e{--display:flex;}/* Start custom CSS for text-editor, class: .elementor-element-3546dcb *//* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #fff;
  color: #111;
  line-height: 1.6;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Hero Section */
.hero {
  background: #000;
  color: #fff;
  padding: 100px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Section Headings */
h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  text-align: center;
}

.subtitle {
  margin-bottom: 40px;
  font-size: 1.1rem;
  color: #444;
}

/* Services Section */
.services {
  padding: 80px 20px;
  background: #f9f9f9;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.service-box i {
  font-size: 40px;
  margin-bottom: 20px;
  color: #007BFF;
}

.service-box:hover {
  transform: translateY(-10px);
  border-color: #007BFF;
  box-shadow: 0px 8px 20px rgba(0, 123, 255, 0.2);
}

.service-box h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

/* About Section */
.about {
  padding: 80px 20px;
  background: #fff;
}

.about p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  color: #333;
}

/* Process Section */
.process {
  padding: 80px 20px;
  background: #f9f9f9;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.step {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px;
  border-radius: 10px;
  transition: all 0.3s ease-in-out;
}

.step i {
  font-size: 35px;
  color: #007BFF;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-10px);
  border-color: #007BFF;
  box-shadow: 0px 8px 20px rgba(0, 123, 255, 0.2);
}

/* Contact Section */
.contact {
  padding: 80px 20px;
  background: #000;
  color: #fff;
}

.contact p {
  margin-bottom: 20px;
}

.btn {
  background: #007BFF;
  color: #fff;
  padding: 12px 30px;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn:hover {
  background: #0056b3;
}/* End custom CSS */