/*--------------------------------------------------------------
# ABOUT FOUR (MODERN PIXELINE UPGRADE - FINAL)
--------------------------------------------------------------*/

.about-four {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #fffbea 100%);
  z-index: 1;
}

/* Soft animated glow background */
.about-four::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.25), transparent 70%);
  animation: floatGlow 7s ease-in-out infinite;
  z-index: -1;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(25px);
  }
}

/* Shapes animation */
.about-four__shape-3,
.about-four__shape-1,
.about-four__shape-2 {
  position: absolute;
  opacity: 0.6;
  animation: floatSlow 7s ease-in-out infinite;
}

.about-four__shape-3 {
  top: 0;
  right: 0;
}
.about-four__shape-1 {
  bottom: 120px;
  left: -40px;
}
.about-four__shape-2 {
  bottom: -80px;
  left: -120px;
}

@keyframes floatSlow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* LEFT IMAGE */
.about-four__left {
  position: relative;
  margin-right: 50px;
}

.about-four__img {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transition: all 0.5s ease;
}

.about-four__img img {
  width: 100%;
  transition: transform 0.8s ease;
}

.about-four__img:hover img {
  transform: scale(1.08);
}

/* RIGHT CONTENT */
.about-four__right {
  animation: fadeUp 1s ease-in-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* POINTS */
.about-four__points {
  display: flex;
  gap: 35px;
  margin-top: 25px;
}

.about-four__points li {
  display: flex;
  align-items: center;
  transition: 0.3s ease;
}

.about-four__points li:hover {
  transform: translateY(-5px);
}

.about-four__points li .icon span {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd700, #ffcc00);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #111;
  box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
  transition: 0.3s ease;
}

.about-four__points li:hover .icon span {
  background: #111;
  color: #ffd700;
  transform: rotate(8deg) scale(1.1);
}

.about-four__points li .text {
  margin-left: 15px;
}

.about-four__points li .text p {
  font-size: 16px;
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}

/* TEXT */
.about-four__text {
  margin-top: 25px;
  font-size: 16px;
  color: #555;
  line-height: 1.7;
}

/* BUTTON BOX */
.about-four__btn-box {
  margin-top: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* MODERN CURVY BUTTON */
.about-four__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 38px;
  border-radius: 60px;
  background: linear-gradient(135deg, #ffd84d, #ffb703);
  color: #111;
  font-size: 15px;
  font-weight: 700;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(255, 183, 3, 0.3);
  z-index: 1;
}

/* Hover Overlay */
.about-four__btn::before {
  content: "";
  position: absolute;
  width: 0%;
  height: 100%;
  left: 0;
  top: 0;
  background: #111;
  border-radius: 60px;
  transition: all 0.4s ease;
  z-index: -1;
}

/* Hover Effect */
.about-four__btn:hover::before {
  width: 100%;
}

.about-four__btn:hover {
  color: #ffd84d;
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}
/*--------------------------------------------------------------
# MISSION / VISION / STORY (NEW MODERN SECTION)
--------------------------------------------------------------*/

.about-mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 50px;
}

.about-block {
  background: #fff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #ffd84d;
  transition: all 0.4s ease;
  animation: fadeUp 0.8s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-block:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.about-block h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111;
  position: relative;
}

.about-block h3::after {
  content: "";
  width: 45px;
  height: 3px;
  background: linear-gradient(135deg, #ffd84d, #ffb703);
  display: block;
  margin-top: 6px;
  border-radius: 10px;
}

.about-block p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}

/*--------------------------------------------------------------
# RESPONSIVE
--------------------------------------------------------------*/

@media (max-width: 992px) {
  .about-mission-grid {
    grid-template-columns: 1fr;
  }

  .about-four__points {
    flex-direction: column;
    gap: 18px;
  }

  .about-four__left {
    margin-right: 0;
    margin-bottom: 30px;
  }
}
/*--------------------------------------------------------------
# WHY CHOOSE MODERN - PIXELINE
--------------------------------------------------------------*/

.why-choose-modern {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(180deg, #fffdf6 0%, #ffffff 100%);
  overflow: hidden;
  z-index: 1;
}

/* Background Glow */
.why-choose-modern__bg {
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.18), transparent 70%);
  z-index: -1;
  animation: floatGlow 8s ease-in-out infinite;
}

/* TOP */
.why-choose-modern__top {
  margin-bottom: 60px;
}

.why-choose-modern__text {
  max-width: 750px;
  margin: 20px auto 0;
  font-size: 16px;
  line-height: 1.8;
  color: #666;
}

/* GRID */
.why-choose-modern__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.why-choose-modern__card {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 40px 30px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 215, 0, 0.15);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  height: 100%;
}

/* Top Glow */
.why-choose-modern__card::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.18), transparent 70%);
  transition: 0.4s ease;
}

/* Hover */
.why-choose-modern__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.why-choose-modern__card:hover::before {
  transform: scale(1.2);
}

/* ICON */
.why-choose-modern__icon {
  width: 85px;
  height: 85px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd84d, #ffb703);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  color: #111;
  transition: all 0.4s ease;
  box-shadow: 0 12px 30px rgba(255, 183, 3, 0.3);
}

.why-choose-modern__card:hover .why-choose-modern__icon {
  transform: rotate(8deg) scale(1.08);
  background: #111;
  color: #ffd84d;
}

/* TITLE */
.why-choose-modern__card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
}

.why-choose-modern__card h3 a {
  color: #111;
  transition: 0.3s ease;
}

.why-choose-modern__card h3 a:hover {
  color: #ffb703;
}

/* TEXT */
.why-choose-modern__card p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .why-choose-modern__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .why-choose-modern {
    padding: 80px 0;
  }

  .why-choose-modern__grid {
    grid-template-columns: 1fr;
  }

  .why-choose-modern__card {
    padding: 35px 25px;
  }

  .why-choose-modern__card h3 {
    font-size: 20px;
  }

  .why-choose-modern__icon {
    width: 75px;
    height: 75px;
    font-size: 30px;
  }
}
/*================================================
# COUNTER TWO - MODERN PIXELINE UI
================================================*/

.counter-two {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf7 0%, #ffffff 100%);
  z-index: 1;
}

/* Glow Background */
.counter-two::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.18), transparent 70%);
  z-index: -1;
  animation: floatGlow 7s ease-in-out infinite;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(25px);
  }
}

/* TOP SECTION */
.counter-two__top {
  margin-bottom: 60px;
}

.counter-two__section-text {
  max-width: 700px;
  margin: 18px auto 0;
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

/* GRID */
.counter-two__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.counter-two__single {
  position: relative;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 45px 30px;
  border-radius: 28px;
  text-align: center;
  overflow: hidden;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 215, 0, 0.18);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

/* Hover */
.counter-two__single:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(255, 193, 7, 0.16);
}

/* TOP NUMBER */
.counter-two__number {
  position: absolute;
  top: 18px;
  right: 22px;
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
  color: rgba(255, 193, 7, 0.1);
  font-family: var(--pitoon-font-two);
}

/* ICON */
.counter-two__icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffd84d, #ffb703);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(255, 183, 3, 0.28);
  transition: all 0.4s ease;
}

.counter-two__icon i {
  font-size: 34px;
  color: #111;
}

/* Hover icon */
.counter-two__single:hover .counter-two__icon {
  transform: rotate(10deg) scale(1.08);
}

/* CONTENT */
.counter-two__content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 14px;
  color: #111;
}

.counter-two__content p {
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

/* RESPONSIVE */
@media (max-width: 1199px) {
  .counter-two__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .counter-two {
    padding: 90px 0;
  }

  .counter-two__grid {
    grid-template-columns: 1fr;
  }

  .counter-two__single {
    padding: 40px 25px;
  }

  .counter-two__icon {
    width: 80px;
    height: 80px;
  }

  .counter-two__icon i {
    font-size: 30px;
  }

  .counter-two__content h3 {
    font-size: 22px;
  }

  .counter-two__number {
    font-size: 45px;
  }
}
