.elementor-4 .elementor-element.elementor-element-14c9acf{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-4 .elementor-element.elementor-element-bafe72b{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-4 .elementor-element.elementor-element-eff567f{--display:flex;}.elementor-4 .elementor-element.elementor-element-3a355b1{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-4 .elementor-element.elementor-element-a2d8d6a{--display:flex;}.elementor-4 .elementor-element.elementor-element-279a097{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-4 .elementor-element.elementor-element-869b595{--display:flex;}.elementor-4 .elementor-element.elementor-element-cbbefb1{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-4 .elementor-element.elementor-element-e33eaa9{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-c13ac1c */.hero-section {
  padding: 80px 5%;
  background: linear-gradient(to right, #ffffff, #f9f9f9);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid #eb1d1d;
}

.hero-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

.hero-text {
  flex: 1 1 500px;
  padding-right: 20px;
  animation: fadeInLeft 1s ease-out forwards;
}

.hero-text h1 {
  font-size: 2.4rem;
  color: #222;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-text p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
  border-left: 4px solid #eb1d1d;
  padding-left: 12px;
}

.hero-btn {
  background-color: #eb1d1d;
  color: #fff;
  padding: 15px 25px;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  box-shadow: 0 4px 8px rgba(235, 29, 29, 0.2);
}

.hero-btn:hover {
  background-color: #fff;
  color: #eb1d1d;
  border: 2px solid #eb1d1d;
  transform: translateY(-3px);
}

.hero-img {
  flex: 1 1 400px;
  text-align: center;
  animation: fadeInRight 1.2s ease forwards;
}

.hero-img img {
  max-width: 100%;
  height: auto;
  border: 3px solid #eb1d1d;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease;
}

.hero-img img:hover {
  transform: scale(1.02);
}

/* 🎯 ANIMATIONS */
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-40px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  0% { opacity: 0; transform: translateX(40px); }
  100% { opacity: 1; transform: translateX(0); }
}

/* 📱 RESPONSIVE */
@media screen and (max-width: 768px) {
  .hero-container {
    flex-direction: column-reverse;
    text-align: center;
    gap: 20px;
  }

  .hero-text {
    padding: 0;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-text p {
    font-size: 1rem;
    padding-left: 8px;
  }

  .hero-btn {
    width: 100%;
    padding: 12px 0;
  }

  .hero-img {
    margin-bottom: 20px;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a46fd06 */.why-trust {
  padding: 80px 5%;
  background: #fefefe;
  text-align: center;
  border-bottom: 2px solid #eb1d1d;
}

.section-title {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 20px;
  border-left: 6px solid #eb1d1d;
  padding-left: 12px;
  display: inline-block;
  animation: fadeInDown 0.8s ease forwards;
}

.section-intro {
  font-size: 1.1rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto 60px auto;
  line-height: 1.6;
}

.trust-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.card {
  background: #fff;
  border: 2px solid #eb1d1d;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease forwards;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.08);
}

.card img {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.card:hover img {
  transform: scale(1.1);
}

.card h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 15px;
}

.card p {
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
}

/* 🎯 Animations */
@keyframes fadeInDown {
  0% { opacity: 0; transform: translateY(-20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-35206ea */.form-section {
  padding: 60px 20px;
  background: #f9f9f9;
  border-top: 3px solid #EB1D1D;
  font-family: 'Segoe UI', sans-serif;
}

.form-section h2 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 10px;
  color: #EB1D1D;
}

.form-section p {
  text-align: center;
  color: #666;
  margin-bottom: 30px;
}

.container {
  max-width: 700px;
  margin: auto;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

.form-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  flex: 1 1 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  transition: border 0.3s ease;
  font-size: 1em;
}

input:focus,
select:focus {
  border-color: #EB1D1D;
  outline: none;
}

button[type="submit"] {
  background: #EB1D1D;
  color: white;
  border: none;
  padding: 14px 25px;
  border-radius: 8px;
  font-size: 1.1em;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

button[type="submit"]:hover {
  background: #c51515;
}

.checkboxes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95em;
}

.code-input {
  flex: 1 1 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a601570 */.reviews-section {
  padding: 80px 20px;
  background: #f9f9f9;
}
.section-title {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 40px;
}
.review-card {
  background: white;
  padding: 20px;
  margin: 20px auto;
  max-width: 600px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s ease;
}
.review-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.review-author {
  font-weight: bold;
  margin-top: 10px;
  color: #444;
}/* End custom CSS */