* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color:skyblue;
    margin:0;
    padding: 0;
    
}
.iconn img {
  width: 100px;
  height: 100px;
  object-fit: contain;

}


.circles-img{
  width: 190px;
  height: 190px;
  border-radius: 100%;
  object-fit: cover;
  border:0px solid #0fc4e9;
  display:inline;
}


.title{
  display:flex;            /* ဘေးဘေးကျအောင် */
  align-items:center;      /* ညာဘက်စာကို မျဉ်းတန်းတူညှိ */
  gap:12px;                /* logo နဲ့ စာကြားအကွာအဝေး */
}

.logo{
  width:150px;
  height:150px;
  border-radius:50%;       /* စက်ဝိုင်း */
  object-fit:cover;        /* ပုံထျပ်မကျအောင် */
}

.title-text{
  margin:0;
  line-height:1.1;
}

.title-text span{
  display:block;           /* 2 ကြောင်းအဖြစ်ပေးရန် */
}

/* optional: phone အတွက် သေးသေးလိတ်လေး */
@media (max-width:480px){
  .logo{ width:48px; height:48px; }
  .title{ gap:8px; }
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 4.5%;
    gap: 100px;
    position: relative;
    
    width: 100%;
    height: 100%;
    
}

.content {
    flex: 1;
    max-width: 1000px;
}

.content h1 {
    font-size: 2.8rem;
    font-weight: bold;
    line-height: 1.3;
    color: #222;
    display: inline;
}

.content h1 span {
    color: darkblue;
}

.content p {
    margin: 20px 0;
    font-size: 1rem;
    color: #555;
}

.btn {
    display: inline-block;
    background-color: green;
    color: #fff;
    padding: 14px 22px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s;
}

.btn:hover {
    background-color: red;
}

.right-section {
    flex: 1;
    position: relative;
}
.img-wrap {
      display: inline-block;
      margin: 5px;
    }
    .click-img {
      width: 300px;          /* သင့် UI အတွက် တိုင်းတာချက်ပြင်နိုင် */
      height: 240px;         /* သင့် UI အတွက် တိုင်းတာချက်ပြင်နိုင် */
      object-fit: cover;
        /* ညောင်းညောင်းကွေးစေချင်ရင် ဒီမှာပြင် */
      box-shadow: 0 8px 20px rgba(0,0,0,.15);
      cursor: pointer;
      transition: opacity .2s ease;
    }
    .click-img:active { opacity: .7; } /* နှိပ်တုန်းက effect လေး */
.image-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.image img {
    width: 100%;
    display: block;
    border-radius: 16px;
}



.img1 img {
        border-radius: 0px 100px 0px 100px;
        margin-bottom: 10px;
}

.img2 img {
       border-radius: 100px 0px 100px 0px;
       margin-top: 120px;
}

.contact-box {
    position: absolute;
    bottom: -20px;
    left: 20%;
    background: #fff;
    padding: 15px 25px;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.contact-box p {
    margin: 0;
    font-size: 0.9rem;
    color: #777;
}

.contact-box .phone {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff4f6d;
}

/* Decorative Shapes */
.shape {
    position: absolute;
    z-index: -1;
}


.shape-blob1 {
    width: 80px;
    height: 80px;
    background: #f66;
    border-radius: 50%;
    top: 0;
    right: 50px;
    opacity: 0.8;
}

.shape-blob2 {
    width: 70px;
    height: 50px;
    background: #a4e0d9;
    border-radius: 50%;
    top: 30px;
    right: 0;
    opacity: 0.8;
}

 





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

.boodyy {
  background: #fff;
  color: #333;
  padding: 90px;
}

.title {
  font-size: 45px;
  font-weight: 800;
  text-align: center;
  margin: 40px 0 30px;
  background: linear-gradient(90deg, #2F6DF6, #15A37A);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* initial hidden state */
  opacity: 0;
  transform: translateY(-60px);
  transition: all 3s ease;
}

/* When active (scroll into view) */
.title.active {
  opacity: 1;
  transform: translateY(0);
}

/* Keyframes for slide down */
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-60px);
  }
  60% {
    opacity: 1;
    transform: translateY(10px);  /* little bounce */
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  0%   { opacity: 0; transform: translateY(-50px); }
  100% { opacity: 1; transform: translateY(0); }
}
.section-title {
  text-align: center;
  margin-bottom: 90px;
}

.section-title span {
  color: #e66aa3;
  text-transform: uppercase;
  font-size: 25px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.section-title h2 {
  font-size: 28px;
  font-weight: 600;
}

.section-title h2 span {
  color: #26a69a;
}

.section-title p {
  color: #777;
  font-size: 14px;
  margin-top: 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  margin-bottom: 30px;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  animation: wobble .60s ease;
}

.card .icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.card h3 {
  font-size: 21px;
  margin-bottom: 15px;
}

.card p {
  font-size: 22px;
  color: white;
  margin-bottom: 20px;
}

.icon img {
  width: 60px;   
  height: 60px;  
  object-fit: contain;
}
.circle-img {
  width: 150px;     
  height: 150px;     
  border-radius: 50%; 
  object-fit: cover;  
  border: 3px solid #e6f7f5; 
}

/* Colors for each card */
.card1 { background: #FFB7C3; }
.card1 .icon { background: #2fe8d6; color: #037065; }
.card1 .courses { background: #02786c; }

.card2 { background:#ffbe98 ; }
.card2 .icon { background: #fbd4dd; color: #e66aa3; }
.card2 .courses { background: #e66aa3; }

.card3 { background: #D3B8EC; }
.card3 .icon { background: #d6dffe; color: #4a6cf7; }
.card3 .courses { background: #4a6cf7; }

.card4 { background: #D39BAE; }
.card4 .icon { background: #ffeebd; color: #f6b100; }
.card4 .courses { background: #f6b100; }

/* wobble animation */
@keyframes wobble {
  0%   { transform: translateY(-6px) rotate(0deg); }
  50%  { transform: translateY(-6px) rotate(-1.5deg); }
  60%  { transform: translateY(-6px) rotate(1.5deg); }
  75%  { transform: translateY(-6px) rotate(-1deg); }
  100% { transform: translateY(-6px) rotate(0deg); }
}





* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.bodys {
  background: skyblue;
  color: #333;
  line-height: 1.6;
}

.containers {
  color: #333;
  line-height: 1.6;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 20px auto;
  padding: 20px;
}

/* Left Image Section */
.images {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  position: relative;
}

.images img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
  transform: rotate(-2deg);
}

.images img:nth-child(2) {
  position: absolute;
  top: 60px;
  left: 120px;
  transform: rotate(3deg);
}

.images img:nth-child(3) {
  margin-top: 150px;
  margin-left: 40px;
  transform: rotate(-1deg);
}

/* Right Content Section */
.contents {
  flex: 1;
  padding-left: 60px;
}

.contents span {
  color: #ff4a4a;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contents h1 {
  font-size: 34px;
  font-weight: bold;
  margin: 15px 0;
  color: #fff;
}

.contents p {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #ff4a4a;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn:hover {
  background: #e63c3c;
}

/* Responsive */
@media (max-width: 900px) {
  .containers {
    flex-direction: column;
    text-align: center;
  }
  .contents {
    padding-left: 0;
    margin-top: 40px;
  }
  .images {
    justify-content: center;
  }
}
.custom-svg-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.custom-svg-list li {
  position: relative;
  padding-left: 44px;
  line-height: 1.8;
  font-family: Arial, sans-serif;
  font-size: 21px;
  cursor: pointer;
}

/* Book + Pen icon container */
.custom-svg-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform 0.3s ease;
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'>\
<rect x='8' y='12' width='28' height='40' rx='3' ry='3' fill='white' stroke='black' stroke-width='3'/>\
<line x1='14' y1='20' x2='28' y2='20' stroke='black' stroke-width='2'/>\
<line x1='14' y1='26' x2='28' y2='26' stroke='black' stroke-width='2'/>\
<line x1='14' y1='32' x2='28' y2='32' stroke='black' stroke-width='2'/>\
<g id='pen' transform='translate(0,0)'>\
<polygon points='40,10 54,24 34,44 28,38' fill='white' stroke='black' stroke-width='3'/>\
<line x1='34' y1='44' x2='30' y2='48' stroke='black' stroke-width='3'/>\
</g>\
</svg>");
}

/* Hover Effect: rotate pen only */
.custom-svg-list li:hover::before {
  animation: penRotate 0.5s ease-in-out forwards;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
  .custom-svg-list li {
    color: #fff;
  }
}

/* Keyframes for pen rotation (simulate by rotating full icon because CSS cannot target pen only in data URI) */
@keyframes penRotate {
  0% { transform: translateY(-50%) rotate(0deg); }
  50% { transform: translateY(-50%) rotate(-10deg); }
  100% { transform: translateY(-50%) rotate(0deg); }
}
.custom-svg-list li:hover::before {
  filter: invert(100%) grayscale(100%); /* icon color invert */
  transform: translateY(-50%) rotate(5deg); /* slight rotation */
}
.title-box {
      background: red;
      color: white;
      display: inline-block;
      padding: 10px 20px;
      font-size: 22px;
      font-weight: bold;
      margin: 20px 0;
      border-radius: 8px;
      animation: bounce 2s infinite; /* animation */
    }
    @keyframes bounce {
      0%, 100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-10px);
      }
    }
     
    .image-container img:hover {
      transform: scale(1.1) rotate(2deg);
      box-shadow: 0px 8px 20px rgba(0,0,0,0.3);
    }












    .bodyy {
  font-family: Arial, sans-serif;
  background: #fff;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.infographic {
  display: flex;
  align-items: center;
  gap: 150px;
}

/* Main Circle */
.main-circle {
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffe082, #ffca28); /* မူရင်း layer */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: #333;
  font-weight: bold;
  z-index: 3;
}

/* အထပ် 2 */
.main-circle::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f3977b, #f18c6d);
  z-index: -1;
}

/* အထပ် 3 */
.main-circle::after {
  content: "";
  position: absolute;
  top: 30px;
  left: 30px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f188ab, #eb6d97);
  z-index: -2;
}

.main-circle h2 {
  font-size: 50px;
  color: white;
  margin: 0;
}

.main-circle em {
  font-style: italic;
  color: white;
}

.main-circle strong {
  
  color: white;
}

.dots {
  margin-top: 15px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 4px;
}

.dot.yellow { background: #ebc668; }
.dot.orange { background: #fb9658; }
.dot.pink { background: #f66f9c; }

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.step {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

/* Circle Stack */
.circle-stack {
  position: relative;
  width: 80px;
  height: 80px;
}

.circle-stack .circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: skyblue;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 26px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
  position: relative;
  z-index: 3;
}

/* Shadow layers */
.circle-stack::before,
.circle-stack::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  z-index: 1;
}

.circle-stack::before {
  top: 8px;
  left: 8px;
  z-index: 2;
}

.circle-stack::after {
  top: 16px;
  left: 16px;
  z-index: 1;
}

/* Colors */
.yellow::before { background: #fdd835; }
.yellow::after { background: #fbc02d; }

.orange::before { background: #ff8a65; }
.orange::after { background: #ff7043; }

.pink::before { background: #f06292; }
.pink::after { background: #ec407a; }

/* Connector Lines */
.line1 {
  position: absolute;
  height: 15px;
  left: -260px;
  width: 295px;
  border-radius: 6px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.line2 {
  position: absolute;
  height: 15px;
  left: -280px;
  width:300px;
  border-radius: 6px;
  top: 50%;
  transform: translateY(-10%);
  z-index: 0;
}
.line3 {
  position: absolute;
  height: 15px;
  left: -270px;
  width: 300px;
  border-radius: 6px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
}
.yellow-line { background: #fdd835; }
.orange-line { background: #ff7043; }
.pink-line { background: #ec407a; }

/* Text */
.content h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.content p {
  margin: 5px 0 0;
  font-size: 19px;
  color: #555;
}

/* Animations */
@keyframes fadeInTop {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInBottom {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Apply animation */
.step1 { animation: fadeInTop 2s ease forwards;
         margin-top: 20px; }
.step2 { animation: fadeInLeft 2s ease forwards 0.5s;
         margin-top: 10px; }
.step3 { animation: fadeInBottom 2s ease forwards 1s;
        margin-top:30px; }
        



        




        #infographic {
  padding: 100px 0;
  text-align: center;
}





/* ===== Scroll Animation ===== */
.step1.show .circle { animation: fromTop 2s ease; }
.step2.show .circle { animation: fromLeft 1s ease; }
.step3.show .circle { animation: fromBottom 1s ease; }

/* Keyframes */
@keyframes fromTop {
  0% { transform: translateY(-120px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fromLeft {
  0% { transform: translateX(-120px); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

@keyframes fromBottom {
  0% { transform: translateY(120px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}


.promo-banner {
  display: flex;
  align-items: center;
  background: skyblue; /* warm terracotta background */
  border-radius: 12px;
  overflow: hidden;
  max-width: 900px;
  margin: 40px auto;
  color: #fff;
}

/* Left image */
.banner-image img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

/* Right text */
.banner-content {
  padding: 30px;
  flex: 1;
}

.banner-content h2 {
  font-size: 22px;
  margin-bottom: 15px;
  font-weight: bold;
}

.banner-content p {
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: #fff;
  color: #b65d4a;
  text-decoration: none;
  border-radius: 4px;
  font-size: 22px;
  transition: 0.3s;
}

.btn:hover {
  background: #f2e6e3;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-banner {
    flex-direction: column;
    text-align: center;
  }
  .banner-image img {
    width: 100%;
    height: 180px;
    border-radius: 0;
  }
}