.elementor-503 .elementor-element.elementor-element-542667b{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-848830a *//* General Layout */
.locksmith-homepage {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f5f7f9;
  color: #2a2d34;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
  box-sizing: border-box;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(to right, #14585b, #207272);
  color: #ffffff;
  text-align: center;
  padding: 50px 20px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
}

.hero-section h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-section p {
  font-size: 1.1rem;
  line-height: 1.6;
}

/* About Section */
.about-box {
  background: #ffffff;
  border-left: 6px solid #14585b;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.about-box h2 {
  color: #14585b;
  margin-bottom: 10px;
}

.about-box p {
  line-height: 1.7;
  font-size: 1rem;
}

/* Services Section */
.services-section {
  margin-bottom: 50px;
}

.services-section h2 {
  text-align: center;
  color: #14585b;
  font-size: 2rem;
  margin-bottom: 30px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background-color: #e6f0f0;
  border-left: 5px solid #207272;
  padding: 20px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(20, 88, 91, 0.15);
}

.service-card h3 {
  margin-top: 0;
  color: #14585b;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose-us {
  background: #ffffff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  margin-bottom: 50px;
}

.why-choose-us h2 {
  color: #14585b;
  margin-bottom: 20px;
  text-align: center;
}

.why-choose-us ul {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.why-choose-us li {
  background-color: #f0f7f6;
  border-left: 4px solid #14585b;
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 0.95rem;
}

/* Testimonials */
.testimonials-section {
  margin-top: 40px;
}

.testimonials-section h2 {
  text-align: center;
  color: #14585b;
  font-size: 2rem;
  margin-bottom: 30px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background-color: #ffffff;
  border-radius: 10px;
  padding: 20px;
  border-left: 5px solid #207272;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06);
  font-style: italic;
}

.testimonial-card strong {
  display: block;
  margin-top: 12px;
  color: #14585b;
  font-size: 0.95rem;
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-section p,
  .about-box p,
  .service-card p,
  .testimonial-card p {
    font-size: 0.95rem;
  }

  .services-section h2,
  .why-choose-us h2,
  .testimonials-section h2 {
    font-size: 1.5rem;
  }

  .about-box,
  .why-choose-us,
  .testimonial-card,
  .service-card {
    padding: 20px;
  }
}/* End custom CSS */