
body {
    font-family: 'Myanmar Text', sans-serif;
    line-height: 1.6;
}

body:lang(en),
[lang="en"] {
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

/* Banner */
.b2b-banner {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.b2b-banner img.main-img {
    width: 100%;
    height: auto;
    display: block;
}


.b2b-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #DC87506E;
    pointer-events: none; 
}


.banner-text {
    position: absolute;
    top: 13%;
    left: 6%;
    transform: none;
    color: #fff;
    max-width: 600px;
    z-index: 2; }

.banner-text p{
    font-family: Yunghkio, sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.6;
    vertical-align: bottom;
    margin: 0 0 12px 0;

}

.banner-text h3{
    font-family: Merriweather, serif;
    font-weight: 700;
    font-style: Bold;
    font-size: 24px;
    line-height: 1.3;
    margin: 0;
}

@media (max-width: 600px) {
.banner-text {
    max-width: 240px;
}
.banner-text h3{
    font-weight: 700;
    font-size: 14px;
}  
.banner-text p{
    font-weight: 400;
    font-size: 12px;
}

}

@media (min-width: 601px) and (max-width:900px) {
.banner-text {
    max-width: 600px;
}
    
.banner-text p {
    font-weight: 400;
    font-size: 16px;

}

.banner-text h3{
    font-weight: 700;
    font-size: 22px;
}

}


/* Fast & Secure Section */
.fast-section {
    background: #FFF4EC;    
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-head {
    margin: 0 auto 50px;
    max-width: 1200px;
    position: relative;
    z-index: 2;
}

.section-head h3 {
    text-align: center;
    color: #ff7a00;
    font-size: 22px;
    margin: 20px 0;
    font-weight: 700;
    line-height: 1.8;
    padding-top: 20px;
}

.section-head p {
    text-align: center;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    max-width: 90%;
    margin: 0 auto;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
    padding-top: 30px;
    padding-bottom: 50px;
    align-items: start; 
}


.card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    padding: 30px;
    text-align: center;
    justify-content: center;

}

.card:hover {
    transform: translateY(-5px);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25px;
    height: 25px;
    border-top: 3px solid #ff7a00;
    border-left: 3px solid #ff7a00;
    border-top-left-radius: 15px;
}

.user-icon {
    width: 60px;
    height: 60px;
    background-color: #FF8724;
    border-radius: 10px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.user-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.card h4 {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #333;
    line-height: 2;
}

.card p {
    font-size: 14px;
    font-weight: 300;
    padding: 0 15px;
    color: #666;
    margin-bottom: 0;
}


.card {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.card.animate {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1200px) {
    .cards .card:nth-child(2){
        top:20px;
        position: relative;
}
    
    .fast-section::after {
        content: '';
        position: absolute;
        transform: scaleX(-1);
        bottom: 0;
        right: 0;
        width: 180px;
        height: 100px;
        background-image: url('https://cloudflare.dev.truemoney.com.mm/wp/wp-content/uploads/2025/08/bottom-right.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: bottom right;
        opacity: 0.9;
        z-index: 1;
    }

    .fast-section::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 180px;
        height: 100px;
        background-image: url('https://cloudflare.dev.truemoney.com.mm/wp/wp-content/uploads/2025/08/top-left.png');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: top left;
        opacity: 0.9;
        z-index: 1;
    }
    .fast-section::before,
    .fast-section::after {
        opacity: 0;
        transform: translateY(-50px); 
        transition: all 1s ease-out;
    }

    .fast-section::after {
        transform: translateY(50px); 
    }

    .fast-section.animate::before,
    .fast-section.animate::after {
        opacity: 1;
        transform: translateY(0);
    }

}
@media (min-width: 781px) and (max-width: 1199px) {
        .cards {
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            padding: 20px;
        }
        
        .card {
            min-height: 320px;
            padding: 25px 20px;
        }
        
        .card:nth-child(3) {
            grid-column: span 2;
            min-width: 350px;
            margin: 0 auto;
        }
    }

@media (max-width: 780px) {
 
    .cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        padding: 20px 15px;
    }

    .card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        min-height: 300px;
    }
    
    .section-head h3 {
        font-size: 22px;
        line-height: 1.8;
        margin: 0;
    }
    
    .section-head p {
        font-size: 16px;
    }

}


@media (max-width: 600px) {
    .section-head {
        margin-bottom: 20px;
    }
    
    .section-head h3 {
        font-size: 18px;
        line-height: 1.8;
        padding-bottom: 20px;
    }
    
    .section-head p {
        font-size: 14px;
    }
    
    .card {
        padding: 25px 20px;
        min-height: 220px;
    }
    
    .card h4 {
        font-size: 18px;
    }
    
    .card p {
        font-size: 14px;
    }
    .fast-section .card {
        transform: translateX(50px); 
    }

    .fast-section .card:nth-child(2) {
        transform: translateX(-50px); 
    }

    .fast-section .card.animate {
        transform: translateX(0);
    }
}

/* Six Section */
.tm-container {
    padding: 50px 0px;
}
.intro {
    text-align: center;
    margin: 60px 0 40px;
    padding: 0 20px;
}

.intro h3 {
    font-size: 22px;
    color: #FF8724;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.8;
}

.intro p {
    margin: 0 auto 40px;
    max-width: 1200px;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.8;
    color: #333;
}

.card-section {
    padding: 60px 0;
}

.section-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    gap: 40px;
}

.section-white {
    background: #ffffff;
}

.section-pink {
    background: #FFF4EC; 
}

.left-image {
    flex: 0 0 45%;
    text-align: center;
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.left-image img {
    max-width: 100%;
    height: auto;
}

.section-pink .left-image {
    transform: translateX(100px); 
}
.left-image.animate {
    opacity: 1;
    transform: translateX(0);
}
.right {
    flex: 0 0 55%;
    text-align: left;
    padding: 0 20px;
}

.right h4 {
    margin: 0 0 10px;
    color: #FF8724;
    font-size: 22px;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
    line-height: 1.8;
}

.right p.lead {
    margin: 0 0 14px;
    color: #5f6368;
    font-weight: 500;
    line-height: 1.6;
    font-size: 16px;
    text-align: left;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 16px;
    text-align: left;
}

.secFeature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 8px;
}

.icon1 {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 5px;
    
}
.icon2 {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-top: 3px; 
}


.feature-title {
    font-weight: 700;
    color: #394047;
    display: block;
    font-size: 16px;
    margin-bottom: 5px;
}

.feature p, .secFeature p {
    color: #5f6368;
    line-height: 1.6;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    text-align: justify;
}

.reverse {
    flex-direction: row-reverse;
}
.feature-main-title {
    font-weight: 700;
    color: #FF8724;
    display: block;
    font-size: 18px;
    margin-bottom: 12px;
}
.b2b{
    padding-top: 40px;
}
@media (max-width: 900px) {
    .section-container {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }
    
    .reverse {
        flex-direction: column;
    }
    
    .left-image, .right {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .right {
        padding: 10px;
    }
    
}
@media (max-width:500px) {
    .feature p,.secFeature p{
		font-size:14px;
		line-height:1.6;
		font-weight:500;
        /* text-align: justify; */
	}
	.feature-title{
        font-size: 14px;
        }
    .right h4 {
        font-size: 18px;
        font-weight: 700;
    }
    .right p.lead {
        font-size: 15px;
    }
    
    .intro h3 {
        font-size: 18px;
        line-height: 1.8;
    }
    
    .intro p {
        font-size: 14px;
    }
}

/* Partners Section */
.partner-section{
    margin: 0 auto;
    max-width: 1200px;
    padding: 50px 20px;
    width: 100%;
    background: #fff;
    text-align: center;
}
.partner-head p{
    margin: 0 auto;
    font-weight: 700;
    color:#64748B;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    padding-bottom: 20px;
}

.partners {
  display: flex;
  flex-direction: column;
  gap: 20px;
  overflow: hidden;
  background: #fff;
  padding:20px;
}

.logo-container {
    overflow: hidden;
    margin-bottom: 20px;
}

.logo-row {
  display: flex;
  gap: 60px;
}

.logo-row img {
  height: 100px;
  width: 110px;
  object-fit: contain;
}

.move-left {
  animation: scroll-left 15s linear infinite;
}

.move-right {
  animation: scroll-right 15s linear infinite;
}

@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

@keyframes scroll-right {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(0); }
}


/* Sale Team */
.team-section {
  background: #FFF4EC;    
  padding: 50px 20px;
  text-align: center;
}

.team-title {
  font-size: 22px;
  color: #FF7A2B;  
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.8;
}

.team-subtitle {
  font-size: 16px;
  color: #333;
  max-width: 800px;
  margin: 0 auto 40px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
  gap: 30px;
}

.team-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  width: 100%;
  height: auto;
  position: relative;
  margin: 0 auto;
}
.team-card:hover{
    transform: translateY(-5px);
}

.team-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 21px;
    height: 25px;
    border-top: 3px solid #ff7a00;
    border-left: 3px solid #ff7a00;
    border-top-left-radius: 8px;
    transition: all 0.3s ease;
}

.team-avatar {
  width: 150px;
  height: 150px;
  margin: 0 auto 15px;
  border-radius: 50%;
  overflow: hidden;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-name {
  color: #FF7A2B;
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.team-role {
  font-size: 14px;
  color: #777;
  font-weight: 500;
  margin-top: 5px;
}

.team-card h5 {
  font-size: 16px;
  font-weight: 700;
  color: #64748B;
  margin: 5px 0;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 986px) {
  .team-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      max-width: 100%;
      margin: 0 auto;
      padding:0 10px;
  }
  
  .team-card {
      max-width: 100%;
      height: auto;
      padding: 30px 20px;
  }
  
  .team-avatar {
      width: 130px;
      height: 130px;
  }
}

@media (max-width: 500px) {
  .team-section {
      padding: 30px 15px;
  }

  .team-title {
      font-size: 20px;
      line-height: 1.6;
  }

  .team-subtitle {
      font-size: 14px;
      margin-bottom: 30px;
  }

  .team-grid {
      grid-template-columns: 1fr;
      gap: 20px;
  }

  .team-card {
      max-width: 280px;
      padding: 20px;
  }

  .team-name {
      font-size: 18px;
  }

  .team-card h5 {
      font-size: 16px;
  }
}

/* Contact B2B */

  .contact-section{
    padding:48px 20px 64px;
    display:flex;
    justify-content:center;
  }

  .wrap{
    width:min(1200px, 100%);
  }

  .heading{
    text-align:center;
    margin-bottom: 24px;
  }
  .heading h3{
    margin-bottom:18px;
    font-size:22px;
    color:#FF6A00;
    font-weight:700;
    line-height: 1.8;
  }
  .heading p{
    color:#000000;
    line-height: 1.8;
    font-size: 16px;
    font-weight: 500;
    margin:0 auto;
  }

  .contact-card{
    background:#FEEFE6;
    border:1px solid #F6D8C7;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
    margin: 0 auto;
  }

  .contact-grid{
    display:grid;
    grid-template-columns: 1fr 1.4fr;
    gap:24px;
  }

  .info{
    background:#FF8724;
    color:#fff;
    border-radius:14px;
    padding:22px 22px 10px;
    position:relative;
    overflow:hidden;
    min-height:450px;
  }
  .info h4{
    margin-bottom:10px;
    font-size:22px;
    font-weight:700;
  }
  .info p{
    margin-bottom:16px;
    opacity:.95;
    font-size:14px;
    line-height:1.5;
  }
  .info .item1{
    display:flex;
    gap:12px;
    align-items:flex-start;
    margin:16px 0;
    font-size:14px;
    line-height:1.5;
  }
    .info .item2{
    display:flex;
    gap:12px;
    align-items:center;
    margin:16px 0;
    font-size:14px;
    line-height:1.5;
  }
  
  .info .illus{
    position:absolute;
    bottom:10px;
    right:10px;
    width:180px;
    height: 200px;
    object-fit: contain;
    opacity:.95;
  }
  .iconContact {
        width: 28px;
        height: 28px;
        background-color: #ffffff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        flex-shrink: 0;
    }
.iconContact img{
    width: 16px;
    height: 16px;
    object-fit: contain;
}

  /* Form */
  form{
    width:100%;
  }

  .field{
    margin-bottom:18px;
  }
  .fieldName{
    color: #64748B;
    font-weight: 700;
    font-size: 14px;
    display: block;
    margin-bottom: 6px;
  }
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px; 
    }

.form-row .field {
    margin-bottom: 18px;
    }

  input, textarea{
    width:100%;
    box-sizing: border-box;
    border:1px solid #E6E0DA;
    background:#fff;
    border-radius:12px;
    padding:7px 10px;
    font-size:14px;
    outline:none;
    transition:border-color .15s, box-shadow .15s;
  }
  input::placeholder, textarea::placeholder{ color:#999; }
  input:focus, textarea:focus{
    border-color:#FF7A1A;
    box-shadow:0 0 0 3px rgba(255,122,26,.18);
  }
  textarea{ min-height:100px; resize:vertical; }
   @media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;

    }

}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;

    }
    
    .contact-card {
        padding: 20px;
    }
    
    form {
        padding: 0;
    }
}
@media (max-width: 1024px) {
    .info .illus {
        width: 160px;
        height: 180px;
    }
}

@media (max-width: 768px) {
    .info {
        min-height: 400px;
    }
    
    .info .illus {
        width: 160px;
        height: 180px;
        bottom: 5px;
        right: 5px;
    }
    
    .info h4 {
        font-size: 20px;
    }
    
    .info p, .info .item1, .info .item2 {
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .info {
        padding: 20px 15px;
        min-height: 380px;
    }
    
    .info .illus {
        position: relative;
        width: 100%;
        height: 160px;
        margin-top: 20px;
        bottom: 5px;
        right: 5px;
        text-align: right;
        opacity: 1;
    }
    
    .info p {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .info {
        min-height: 350px;
    }
    
    .info h4 {
        font-size: 18px;
    }
    
}



/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}


.popup-box {
  background: #fff;
  border-radius: 12px;
  width: 450px;
  max-width: 90%;
  padding: 32px;
  text-align: center;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}


.close-btn {
  position: absolute;
  top: 12px;
  right: 15px;
  width: 24px;
  height: 24px;
  font-size: 18px;
  font-weight: 500;
  color: #444;
  cursor: pointer;
  border-radius: 50%;
  background: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.popup-content h2 {
  margin: 20px 0 10px;
  font-size: 20px;
  font-weight: 700;
}

.popup-content p {
  font-size: 15px;
  color: #64748B;
  margin-bottom: 25px;
}


.check-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(180deg, #F58220 0%, #F36921 50%, #F14F22 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 28px;
  position:relative;
}

.check-icon::before {
    content: "";
    position: absolute;
    width: 14px;
    height: 24px;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(45deg);
    justify-content: center;
}


@media (max-width: 600px) {
  .popup-box {
    width: 90%;
    padding: 20px;
  }
  .popup-content h2 {
    font-size: 18px;
  }
  .popup-content p {
    font-size: 14px;
  }
  .check-icon {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  .check-icon::before{
    width: 12px;
    height: 22px;
    border-width: 3px;
  }
}
