:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-3ec1ef1 */.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-533bf39 *//* SECTION FIX */
.contact-modern {
  padding: 60px 20px;
  background: #ffffff;
}

/* CONTAINER FIX */
.contact-modern .container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* LEFT SIDE */
.contact-modern .left {
  flex: 1;
  min-width: 280px;
}

.contact-modern .left h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

.contact-modern .line {
  width: 50px;
  height: 3px;
  background: #0d54fa;
  margin: 10px 0 20px;
}

.contact-modern .left p {
  color: #555;
  line-height: 1.7;
}

/* RIGHT SIDE */
.contact-modern .right {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* CARD FIX */
.contact-modern .card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 18px;
  background: #f5f8ff;
  border-radius: 10px;
  border-left: 3px solid #0d54fa;
  transition: 0.3s;
}

.contact-modern .card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

/* ICON */
.contact-modern .icon {
  width: 45px;
  height: 45px;
  background: #0d54fa;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

/* TEXT */
.contact-modern .card h4 {
  margin: 0;
  font-size: 15px;
  color: #0d54fa;
}

.contact-modern .card p {
  margin: 2px 0 0;
  color: #444;
  font-size: 14px;
}

/* MOBILE SAFE */
@media (max-width:768px){
  .contact-modern .container {
    flex-direction: column;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-f950fee */.ttm-banner {
  position: relative;
  width: 100%;
  height: 380px;
  background: url('YOUR-IMAGE.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Dark overlay for premium look */
.ttm-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    rgba(13,84,250,0.6),
    rgba(0,0,0,0.6)
  );
  top: 0;
  left: 0;
}

/* Glass Box */
.ttm-content {
  position: relative;
  max-width: 800px;
  padding: 40px;
  text-align: center;
  backdrop-filter: blur(12px);
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Heading */
.ttm-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.4;
}

/* Button */
.ttm-btn {
  display: inline-block;
  background: #0d54fa;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.ttm-btn:hover {
  background: #083dc0;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .ttm-content {
    padding: 25px;
  }

  .ttm-content h2 {
    font-size: 22px;
  }
}/* End custom CSS */