/* =========================
   MODERN ABOUT SECTION
========================= */

.section-title__tagline {
  position: relative;
  display: inline-block;
  font-size: 15px;
  line-height: 15px;
  color: var(--pitoon-gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title__tagline-box {
  position: relative;
  display: inline-block;
  margin-left: 36px;
  margin-right: 36px;
}
.modern-about {
  padding: 30px 30px;
  background: #f8fafc;
  overflow: hidden;
  position: relative;
}

/* Background Blur */

.modern-about::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(147, 163, 22, 0.08);
  border-radius: 50%;

  top: -200px;
  left: -150px;

  filter: blur(60px);
}

/* =========================
   TITLE
========================= */

.modern-about-title {
  text-align: center;
  margin-bottom: 80px;

  animation: fadeDown 1s ease;
}

/* .modern-about-title span {
  display: inline-block;

  padding: 10px 25px;
  background: #dcfce7;
  color: #f9be17;

  border-radius: 10px;

  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;

  margin-bottom: 20px;
} */

.modern-about-title h2 {
  font-size: 54px;
  line-height: 1.3;
  color: #0f172a;
  font-weight: 700;

  max-width: 850px;
  margin: auto;
}

/* =========================
   GRID
========================= */

.modern-about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 40px;
  align-items: center;
}

/* =========================
   LEFT SIDE
========================= */

.modern-about-left {
  animation: leftMove 1s ease;
}

/* Experience Card */

.experience-card {
  background: linear-gradient(135deg, #f9be17, #362b17);
  padding: 50px 30px;

  border-radius: 30px;
  position: relative;
  overflow: hidden;

  margin-bottom: 30px;

  transition: 0.5s ease;
}

.experience-card:hover {
  transform: translateY(-8px);
}

.experience-card h2 {
  font-size: 70px;
  color: #fff;
  margin-bottom: 10px;
}

.experience-card p {
  color: #e2e8f0;
  font-size: 18px;
}

.experience-glow {
  position: absolute;
  width: 180px;
  height: 180px;

  background: rgba(255, 255, 255, 0.12);
  border-radius: 50%;

  top: -50px;
  right: -50px;
}

/* Description */

.about-description {
  margin-bottom: 35px;
}

.about-description p {
  font-size: 17px;
  line-height: 1.9;
  color: #64748b;
}

/* Services */

.about-services {
  display: grid;
  gap: 18px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 15px;

  background: #fff;
  padding: 18px 22px;

  border-radius: 18px;

  transition: 0.4s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-item:hover {
  transform: translateX(10px);
  background: #f9be17;
  color: #fff;
}

.service-item i {
  width: 50px;
  height: 50px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #dcfce7;
  color: #f9be17;

  border-radius: 50%;
  font-size: 20px;
}

/* =========================
   CENTER IMAGE
========================= */

.modern-about-center {
  position: relative;
  text-align: center;

  animation: zoomIn 1s ease;
}

.image-circle {
  position: absolute;
  width: 450px;
  height: 450px;

  border: 2px dashed #f9be17;
  border-radius: 50%;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  animation: rotateCircle 15s linear infinite;
}

.modern-about-center img {
  width: 100%;
  max-width: 420px;
  height: 520px;

  object-fit: cover;
  border-radius: 40px;

  position: relative;
  z-index: 2;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Floating Review */

.floating-review {
  position: absolute;
  bottom: 40px;
  right: 0;

  background: #fff;
  padding: 20px 28px;

  border-radius: 20px;

  z-index: 3;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);

  animation: floating 3s ease-in-out infinite;
}

.floating-review h3 {
  color: #f9be17;
  font-size: 34px;
  margin-bottom: 5px;
}

.floating-review p {
  color: #64748b;
}

/* =========================
   RIGHT SIDE
========================= */

.modern-about-right {
  animation: rightMove 1s ease;
}

/* Small Image */

.small-image-box {
  margin-bottom: 30px;
}

.small-image-box img {
  width: 100%;
  border-radius: 30px;
  height: 250px;
  object-fit: cover;

  transition: 0.5s ease;
}

.small-image-box:hover img {
  transform: scale(1.03);
}

/* Content Card */

.content-card {
  background: #fff;
  padding: 40px;

  border-radius: 30px;

  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);

  transition: 0.5s ease;
}

.content-card:hover {
  transform: translateY(-8px);
}

.content-card h3 {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 20px;

  color: #0f172a;
}

.content-card p {
  color: #64748b;
  line-height: 1.9;
  margin-bottom: 30px;
}

.content-card a {
  display: inline-block;

  padding: 15px 35px;
  background: #f9be17;
  color: #fff;

  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;

  transition: 0.4s ease;
}

.content-card a:hover {
  background: #0f172a;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes rotateCircle {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes leftMove {
  from {
    opacity: 0;
    transform: translateX(-80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes rightMove {
  from {
    opacity: 0;
    transform: translateX(80px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {
  .modern-about-grid {
    grid-template-columns: 1fr;
  }

  .modern-about-center {
    order: -1;
  }
}

@media (max-width: 768px) {
  .modern-about {
    padding: 80px 0;
  }

  .modern-about-title h2 {
    font-size: 38px;
  }

  .modern-about-center img {
    height: 420px;
  }

  .image-circle {
    width: 330px;
    height: 330px;
  }
}

@media (max-width: 576px) {
  .modern-about-title h2 {
    font-size: 30px;
  }

  .experience-card h2 {
    font-size: 52px;
  }

  .content-card {
    padding: 30px;
  }

  .content-card h3 {
    font-size: 26px;
  }
}
