/* Start custom CSS for html, class: .elementor-element-fb1af53 */.ttm-testimonial {
  display: flex;
  width: 100%;
  min-height: 380px;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* LEFT SIDE */
.ttm-left {
  width: 60%;
  background: #f7f9ff;
  padding: 60px;
  position: relative;

  /* diagonal cut */
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

/* quote icons */
.ttm-quote-icon {
  font-size: 60px;
  color: #0d54fa;
  opacity: 0.2;
  margin-bottom: 10px;
}

.ttm-quote-icon.bottom {
  position: absolute;
  right: 80px;
  bottom: 30px;
}

/* text */
.ttm-text {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
  max-width: 500px;
}

.ttm-owner {
  margin-top: 20px;
  font-size: 22px;
  font-weight: 600;
  color: #0d54fa;
}

/* RIGHT SIDE */
.ttm-right {
  width: 40%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  padding: 10px;
}

/* images */
.img {
  background-size: cover;
  background-position: center;
  border-radius: 8px;
}

/* replace with your images */
.img1 {
  background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c');
}

.img2 {
  background-image: url('https://images.unsplash.com/photo-1600607687939-ce8a6c25118c');
}

.img3 {
  background-image: url('https://images.unsplash.com/photo-1600573472550-8090b5e0745e');
  grid-column: span 2;
}

/* RESPONSIVE */
@media(max-width: 768px){
  .ttm-testimonial {
    flex-direction: column;
  }

  .ttm-left {
    width: 100%;
    clip-path: none;
    padding: 30px;
  }

  .ttm-right {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .img3 {
    grid-column: span 1;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-77d9ed4 */.ttm-contact {
  padding: 80px 5%;
  background: linear-gradient(135deg, #0d54fa, #4a7bff);
}

.ttm-container {
  display: flex;
  gap: 50px;
  max-width: 1300px;
  margin: auto;
  align-items: center;
}

/* LEFT SIDE */
.ttm-left {
  flex: 1;
  color: #fff;
}

.ttm-left h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.ttm-left p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* INFO BOX */
.ttm-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.ttm-box {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255,255,255,0.1);
  padding: 15px 20px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}

.ttm-box span {
  font-size: 22px;
}

.ttm-box h4 {
  margin: 0;
  font-size: 16px;
}

.ttm-box p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

/* RIGHT FORM */
.ttm-right {
  flex: 1;
}

.ttm-right form {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.ttm-right h3 {
  margin-bottom: 20px;
  color: #0d54fa;
}

.ttm-right input,
.ttm-right textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 14px;
}

.ttm-right input:focus,
.ttm-right textarea:focus {
  outline: none;
  border-color: #0d54fa;
}

/* BUTTON */
.ttm-right button {
  width: 100%;
  padding: 14px;
  background: #0d54fa;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

.ttm-right button:hover {
  background: #083ec0;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .ttm-container {
    flex-direction: column;
  }
}/* End custom CSS */