.elementor-2658 .elementor-element.elementor-element-413d6d8{--display:flex;}.elementor-2658 .elementor-element.elementor-element-413d6d8:not(.elementor-motion-effects-element-type-background), .elementor-2658 .elementor-element.elementor-element-413d6d8 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#181414;}.elementor-2658 .elementor-element.elementor-element-ddc8cc7{--display:flex;}.elementor-2658 .elementor-element.elementor-element-ddc8cc7:not(.elementor-motion-effects-element-type-background), .elementor-2658 .elementor-element.elementor-element-ddc8cc7 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#E9E9E9;}.elementor-2658 .elementor-element.elementor-element-8f91cee{--display:flex;}.elementor-2658 .elementor-element.elementor-element-4a976f0{--display:flex;}.elementor-2658 .elementor-element.elementor-element-51c263d{--display:flex;}.elementor-2658 .elementor-element.elementor-element-a69a778{--display:flex;}.elementor-2658 .elementor-element.elementor-element-c1ad454{--display:flex;}.elementor-2658 .elementor-element.elementor-element-9146af5{--display:flex;}.elementor-2658 .elementor-element.elementor-element-a6ad3f9{--display:flex;}.elementor-2658 .elementor-element.elementor-element-9a741d1{--display:flex;}.elementor-2658 .elementor-element.elementor-element-08cb595{--display:flex;}.elementor-2658 .elementor-element.elementor-element-d6563ed{--display:flex;}.elementor-2658 .elementor-element.elementor-element-07d2826{--display:flex;}/* Start custom CSS for html, class: .elementor-element-b436b76 *//* HERO SECTION STYLES */
.hero-section {
  position: relative;
  color: #fff;
  padding: 80px 20px 100px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: auto;
}

.hero-section h1 {
  font-size: 38px;
  margin-bottom: 15px;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-section p {
  font-size: 18px;
  color: #f2f2f2;
  margin-bottom: 25px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn.primary {
  background: #0078d7;
  color: #fff;
}

.btn.whatsapp {
  background: #25D366;
  color: #fff;
}

.btn.submit {
  background: #ff6600;
  color: #fff;
  width: 100%;
}

.btn:hover {
  opacity: 0.9;
}

/* Quote Form */
.quote-form {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(5px);
  max-width: 420px;
  margin: 0 auto;
}

.quote-form h3 {
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
}

.quote-form input,
.quote-form select {
  width: 100%;
  padding: 10px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: none;
  font-size: 15px;
}

.quote-form input::placeholder {
  color: #666;
}

.quote-form button {
  border: none;
  cursor: pointer;
  font-size: 16px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-section {
    padding: 60px 20px;
  }

  .hero-section h1 {
    font-size: 26px;
  }

  .hero-section p {
    font-size: 16px;
  }

  .quote-form {
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-37d6537 */.services-section {
  padding: 80px 20px;
  background: #E9E9E9;
  font-family: 'Segoe UI', sans-serif;
}

.section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #333;
  margin-bottom: 50px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.image-box {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover img {
  transform: scale(1.05);
}

.price {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: #ff6600;
  color: #fff;
  padding: 8px 14px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
}

.service-content {
  padding: 20px;
  text-align: center;
}

.service-content h3 {
  font-size: 20px;
  color: #;
  margin-bottom: 10px;
}

.service-content p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  background: #8BED14;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #218838;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-75e0ce7 */.project-gallery {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.project-gallery h2 {
  font-size: 2rem;
  color: #111827;
  margin-bottom: 10px;
  font-weight: 700;
}

.project-gallery p {
  color: #6b7280;
  margin-bottom: 30px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.filter-btn {
  border: 1px solid #2563eb;
  background: transparent;
  color: #2563eb;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.filter-btn.active,
.filter-btn:hover {
  background: #2563eb;
  color: #fff;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  justify-content: center;
}

.gallery-item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: 0.3s;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #facc15;
  color: #111;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
}

.info {
  padding: 15px;
  text-align: left;
}

.info h3 {
  font-size: 1rem;
  color: #111;
  margin-bottom: 6px;
}

.info p {
  color: #6b7280;
  font-size: 0.9rem;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a6d0d26 */.service-areas {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.service-areas .container {
  max-width: 1200px;
  margin: auto;
}

.service-areas h2 {
  font-size: 36px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.service-areas .subtitle {
  font-size: 18px;
  color: #777;
  margin-bottom: 40px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.area-item {
  background: #f9f9f9;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.area-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.area-item h3 {
  font-size: 18px;
  color: #111;
  margin-bottom: 12px;
  font-weight: 600;
}

.quote-btn {
  display: inline-block;
  background: #060270;
  color: #fff !important;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #750D92;
}

/* ✅ Mobile View: 2 Columns */
@media (max-width: 768px) {
  .service-areas h2 {
    font-size: 28px;
  }
  .service-areas .subtitle {
    font-size: 16px;
  }

  .area-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .area-item {
    padding: 15px;
  }

  .area-item h3 {
    font-size: 15px;
  }

  .quote-btn {
    padding: 6px 10px;
    font-size: 13px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-b0df974 */.articles-section{padding:36px 20px;background:#fff;color:#222;font-family:Inter,system-ui,Segoe UI,Arial,sans-serif}
.articles-section .container{max-width:1100px;margin:0 auto}
.articles-section h2{font-size:28px;margin:0 0 8px}
.articles-section .lead{color:#555;margin-bottom:18px}
.articles-controls{display:flex;gap:12px;margin-bottom:18px;flex-wrap:wrap}
.articles-controls input[type="search"], .articles-controls select{padding:10px 12px;border:1px solid #ddd;border-radius:6px;min-width:220px}
.articles-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
@media (max-width:980px){.articles-grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){.articles-grid{grid-template-columns:1fr}.articles-controls{flex-direction:column}}
.post-card{background:#fafafa;border-radius:10px;overflow:hidden;box-shadow:0 6px 18px rgba(12,12,12,0.04);display:block}
.post-image img{width:100%;height:180px;object-fit:cover;display:block}
.post-content{padding:14px 16px}
.post-title{font-size:18px;margin:0 0 8px}
.post-title a{color:#111;text-decoration:none}
.post-meta{font-size:13px;color:#777;margin-bottom:8px}
.post-excerpt{color:#444;margin:0 0 10px;min-height:44px}
.post-tags{font-size:13px;color:#666;margin-bottom:10px}
.post-tags span{background:#eef2f7;padding:4px 8px;border-radius:6px;margin-right:6px;font-size:12px}
.read-more{display:inline-block;padding:8px 12px;border-radius:8px;border:1px solid #e6e6e6;text-decoration:none;font-weight:600}
.articles-footer{margin-top:18px;text-align:center}
.articles-footer .show-all{color:#0a58ca;text-decoration:none;font-weight:600}/* End custom CSS */