/* ==============================
   HERO BANNER
================================ */
.hero-banner {
  padding: 120px 0 100px;
  position: relative;
  background: linear-gradient(135deg, #f8f3fc 0%, #ffffff 60%);
  overflow: hidden;
}

/* LEFT CONTENT */
.hero-badge {
  display: inline-block;
  background: rgba(138, 74, 161, 0.12);
  color: var(--primary-color);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 18px;
}

.hero-banner h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 18px;
}

.hero-banner p {
  max-width: 550px;
  font-size: 17px;
  margin-bottom: 28px;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 14px;
}

.btn-primary-custom {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 26px;
  border-radius: 12px;
  font-weight: 500;
}

.btn-primary-custom:hover {
  background: var(--secondary-color);
  color: #fff;
}

.btn-outline-custom {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 500;
}

.btn-outline-custom:hover {
  background: var(--primary-color);
  color: #fff;
}

/* ==============================
   HERO VISUAL
================================ */
.hero-visual {
  position: relative;
  width: 420px;
  height: 420px;
  margin-left: auto;
}

/* ROTATING CIRCLE */
.rotating-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed var(--secondary-color);
  animation: rotateCircle 18s linear infinite;
}

/* Sir Image */
.sir-image {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.sir-image img {
  width: 350px;
  max-width: 100%;
  animation: floatSir 4.5s ease-in-out infinite;
  filter: drop-shadow(0 25px 40px rgba(0, 0, 0, 0.25));
}

/* ==============================
   ANIMATIONS
================================ */
@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatSir {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 991px) {
  .hero-banner {
    padding: 0;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    margin: 50px auto 0;
    width: 320px;
    height: 320px;
  }

  .sir-image img {
    width: 220px;
  }
}

/* ==============================
   CLASS DIVIDER (IMAGE ONLY)
================================ */
.class-divider-wrapper {
  top: 800px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 6;
}

/* Laptop */
@media (max-width: 1440px) {
  .class-divider-wrapper {
    top: 810px;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  .class-divider-wrapper {
    top: 950px;
  }
}

/* Phone */
@media (max-width: 576px) {
  .class-divider-wrapper {
    top: 970px;
  }
}

.class-divider {
  background: #f4d6bb;
  border-radius: 999px;
  padding: 18px 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;

  outline: 2px solid var(--secondary-color);
  border-radius: 999px;
}

/* TRACK */
.divider-track {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* IMAGE AS PILL */
.divider-img {
  height: 78px;
  width: auto;
  display: block;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Hover */
.divider-img:hover {
  transform: translateY(-3px);
}

/* ==============================
   ARROWS
================================ */
.divider-arrow {
  position: absolute;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.divider-arrow:hover {
  background: var(--primary-color);
  color: #fff;
}

.divider-arrow.left {
  left: -22px;
}

.divider-arrow.right {
  right: -22px;
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .class-divider {
    padding: 14px 20px;
    overflow-x: auto;
  }

  .divider-arrow {
    display: none;
  }

  .divider-pill img {
    height: 38px;
  }
}
/* ==============================
   WHO WE ARE SECTION
================================ */
.who-we-are {
  /* top: -55px; */
  background: #f3ecf6;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}

.who-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 120px; /* 🔥 more spacing like 2nd SS */
  align-items: center;
}

/* ==============================
   LEFT IMAGES
================================ */
.who-images {
  position: relative;
}

.img-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
  transition: transform 0.4s ease;
}

.img-card img {
  width: 100%;
  display: block;
}

.img-back {
  width: 100%;
  border: 10px solid #fff;
}

.img-front {
  position: absolute;
  right: -40px;
  bottom: -90px;
  width: 70%;
  border: 10px solid #fff;
}

/* subtle hover */
.img-card:hover {
  transform: translateY(-8px);
}

/* Badge */
.stat-badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
}

.stat-badge strong {
  display: block;
  font-size: 22px;
  color: var(--primary-color);
}

.stat-badge small {
  font-size: 13px;
  color: var(--text-light);
}

/* ==============================
   CONTENT
================================ */
.section-label {
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 12px;
  display: inline-block;
}

.who-content h2 {
  font-size: 44px;
  margin-bottom: 22px;
}

.highlight {
  position: relative;
}

.who-content p {
  max-width: 520px;
  margin-bottom: 32px;
}

/* ==============================
   FEATURES
================================ */
.who-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 36px;
  margin-bottom: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  transition: transform 0.3s ease;
}

.feature i {
  font-size: 18px;
  color: var(--primary-color);
  background: rgba(138, 74, 161, 0.15);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature:hover {
  transform: translateX(6px);
}

/* ==============================
   ACTIONS
================================ */
.who-actions {
  display: flex;
  align-items: center;
  gap: 36px;
}

.call-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.call-icon {
  width: 52px;
  height: 52px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(138, 74, 161, 0.35);
}

.call-box small {
  color: var(--text-light);
  font-size: 13px;
}

/* ==============================
   CALL ICON HOVER EFFECT
================================ */
.call-icon {
  position: relative;
  transition: all 0.35s ease;
}

/* hover lift + glow */
.call-box:hover .call-icon {
  transform: scale(1.08);
  box-shadow: 0 16px 40px rgba(138, 74, 161, 0.45);
}

/* ripple ring */
.call-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(138, 74, 161, 0.4);
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.35s ease;
}

.call-box:hover .call-icon::after {
  opacity: 1;
  transform: scale(1);
}
.call-box:hover .call-icon i {
  animation: phoneShake 0.6s ease-in-out;
}

@keyframes phoneShake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(10deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(6deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .who-grid {
    grid-template-columns: 1fr;
    gap: 80px;
  }

  .img-front {
    position: relative;
    right: 0;
    bottom: 0;
    width: 85%;
    margin-top: 40px;
  }

  .who-content {
    text-align: center;
  }

  .who-features {
    grid-template-columns: 1fr;
  }

  .who-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* ==============================
   STATS / COUNTER SECTION
================================ */
.stats-section {
  background: var(--primary-color);
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  text-align: center;
  gap: 20px;
}

/* STAT ITEM */
.stat-item {
  padding: 20px 10px;
  transition: transform 0.35s ease;
}

.stat-item i {
  font-size: 34px;
  opacity: 0.95;
}

.stat-item h3 {
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 6px;
  color: #fff;
  gap: 12px;
}

.stat-item p {
  font-size: 15px;
  opacity: 0.9;
  margin: 0;
  color: #f3ecf6;
}

/* Hover effect */
.stat-item:hover {
  transform: translateY(-6px);
}

/* Divider */
.stat-divider {
  width: 1px;
  height: 70px;
  background: rgba(255, 255, 255, 0.35);
  justify-self: center;
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .stat-divider {
    display: none;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item h3 {
    font-size: 34px;
  }
}

/* ==============================
   TOP COURSES
================================ */
.top-courses {
  background: #f3ecf6;
  padding: 140px 0;
  position: relative;
}

.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  font-size: 42px;
}

.course-slider {
  padding-bottom: 40px;
}

/* ==============================
   COURSE CARD
================================ */
.course-card {
  width: 100%;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease;
}

.course-card:hover {
  transform: translateY(-10px);
}

.course-img {
  position: relative;
  border-bottom: 2px var(--secondary-color) solid;
}

.course-img img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.price {
  position: absolute;
  left: 16px;
  bottom: 16px;
  background: var(--primary-color);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
}

/* BODY */
.course-body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.course-body h4 {
  font-size: 19px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 18px;
  color: var(--text-dark);
}

.course-meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 20px;
}

.course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f6f1fa;
  padding: 6px 12px;
  border-radius: 999px;
}

.course-meta i {
  color: var(--primary-color);
  font-size: 14px;
}

/* FOOTER */
.course-footer {
  padding-top: 16px;
  border-top: 1px dashed #e6e0ef;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
}

.author img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.rating {
  display: flex;
  gap: 3px;
  font-size: 30px;
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, #ffcc33, #ffb703, #ffa500);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 2px 6px rgba(255, 183, 3, 0.35);
  transition: transform 0.3s ease;
}

/* subtle hover polish */
.course-card:hover .rating {
  transform: scale(1.05);
}

.course-slider {
  overflow: hidden;
}

.swiper-wrapper {
  align-items: stretch;
}

.swiper-slide {
  height: auto;
  display: flex;
}

@media (max-width: 576px) {
  .course-body {
    padding: 22px;
  }

  .course-body h4 {
    font-size: 17px;
  }

  .course-meta {
    flex-wrap: wrap;
  }
}
/* ==============================
   FAQ SECTION
================================ */
.faq-section {
  background: #fff4df;
  padding: 120px 0;
  overflow: hidden;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 90px;
  align-items: center;
}

/* ==============================
   LEFT CONTENT
================================ */
.faq-content h2 {
  font-size: 42px;
  margin-bottom: 36px;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ITEM */
.faq-item {
  background: #f8eef3;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.35s ease;
}

.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.06);
}

.faq-item.active {
  background: #fdf7fb;
  border-color: rgba(138, 74, 161, 0.25);
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
}

/* ICON */
.faq-question .icon {
  width: 34px;
  height: 34px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 10px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

.faq-item.active .icon {
  transform: rotate(180deg);
  background: #ff8a4c;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
  transition: all 0.35s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 16px 22px 24px;
}

/* ==============================
   RIGHT VISUAL
================================ */
.faq-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ROTATING RING IMAGE */
.faq-ring-img {
  top: 200px;
  position: absolute;
  width: 500px;
  height: 500px;
  object-fit: contain;
  z-index: 1;
  animation: rotateRing 26s linear infinite;
}

/* STUDENT IMAGE */
.faq-visual img:last-child {
  bottom: -120px;
  position: relative;
  width: 150%;
  z-index: 2;
  animation: floatImage 10s ease-in-out infinite;
}

/* ==============================
   ANIMATIONS
================================ */
@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatImage {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-14px);
  }
  100% {
    transform: translateX(0);
  }
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0px;
    text-align: center;
  }

  .faq-ring-img {
    width: 300px;
    height: 300px;
  }

  .faq-visual img:last-child {
    width: 260px;
    animation: none;
  }
}

@media (max-width: 576px) {
  .faq-question {
    font-size: 15px;
  }
}

/* ==============================
   TESTIMONIAL SECTION
================================ */
.testimonial-section {
  background: #f3ecf6;
  padding: 140px 0;
}

/* CARD */
.testimonial-card {
  border: 2px var(--primary-color) solid;
  background: #f6eef9;
  border-radius: 28px;
  padding: 40px;
}

/* GRID */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

/* LEFT IMAGE */
.testimonial-media {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
}

.testimonial-media img {
  width: 100%;
  display: block;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  background: #fff;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.play-btn:hover {
  transform: scale(1.08);
}

/* RIGHT CONTENT */
.testimonial-content h3 {
  font-size: 34px;
  margin-bottom: 18px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 28px;
}

.testimonial-user strong {
  font-size: 17px;
  display: block;
}

.testimonial-user span {
  font-size: 14px;
  color: var(--text-light);
}

/* RATING */
.testimonial-rating {
  margin-top: 14px;
  font-size: 20px;
  letter-spacing: 2px;
  color: #ffb703;
}

/* PAGINATION */
.testimonial-pagination {
  margin-top: 30px;
  text-align: right;
}

.testimonial-pagination .swiper-pagination-bullet {
  background: var(--primary-color);
  opacity: 0.4;
}

.testimonial-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .testimonial-pagination {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .testimonial-content h3 {
    font-size: 28px;
  }

  .testimonial-card {
    padding: 26px;
  }
}

/* ==============================
   INSTRUCTOR SECTION
================================ */
.instructor-section {
  background: #fff4df;
  overflow: hidden;
}

.instructor-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

/* ==============================
   CONTENT
================================ */
.instructor-content h2 {
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 22px;
}

.instructor-content p {
  font-size: 16px;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 26px;
  color: #444;
}

/* POINTS */
.instructor-points {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
}

.instructor-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  margin-bottom: 12px;
}

.instructor-points i {
  color: var(--primary-color);
  font-size: 18px;
}

/* ACTIONS */
.instructor-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 42px;
  height: 42px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 18px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-3px);
}

/* ==============================
   VISUAL
================================ */
.instructor-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.instructor-visual img {
  bottom: -40px;
  width: 400px;
  position: relative;
  z-index: 2;
  animation: floatInstructor 6s ease-in-out infinite;
}

/* Decorative circle */
.instructor-bg-circle {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(255, 138, 76, 0.35),
    rgba(255, 138, 76, 0.05)
  );
  animation: rotateSlow 22s linear infinite;
}

/* ==============================
   ANIMATIONS
================================ */
@keyframes floatInstructor {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .instructor-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 70px;
  }

  .instructor-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .instructor-actions {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .instructor-content h2 {
    font-size: 34px;
  }

  .instructor-visual img {
    width: 240px;
  }

  .instructor-bg-circle {
    width: 300px;
    height: 300px;
  }
}

/* ==============================
   PROMO DIVIDER SECTION
================================ */
.promo-divider {
  background: var(--primary-color);
  overflow: hidden;
  position: relative;
}

/* GRID */
.promo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

/* ==============================
   CONTENT
================================ */
.promo-content {
  color: #fff;
}

.promo-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.promo-content h2 {
  color: #fff;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 18px;
}

.promo-content h2 span {
  color: var(--secondary-color);
}

.promo-content p {
  color: #e6e0ef;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 32px;
}

/* BUTTON */
.promo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #8c4fa3;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.promo-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* ==============================
   VISUAL
================================ */
.promo-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-visual img {
  bottom: -15px;
  width: 500px;
  position: relative;
  z-index: 2;
  animation: floatPromo 7s ease-in-out infinite;
}

/* DECORATIVE CIRCLES */
.promo-circle {
  position: absolute;
  border-radius: 50%;
  opacity: 0.9;
}

.promo-circle.yellow {
  width: 280px;
  height: 280px;
  background: #ffd166;
  bottom: -40px;
  left: -40px;
}

.promo-circle.orange {
  width: 180px;
  height: 180px;
  background: #ff8a4c;
  top: -30px;
  right: -30px;
}

/* ==============================
   ANIMATION
================================ */
@keyframes floatPromo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
  100% {
    transform: translateY(0);
  }
}

/* ==============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .promo-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .promo-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .promo-visual img {
    width: 280px;
  }
}

@media (max-width: 576px) {
  .promo-content h2 {
    font-size: 34px;
  }

  .promo-divider {
    padding: 70px 0;
  }

  .promo-circle.yellow {
    width: 220px;
    height: 220px;
  }

  .promo-circle.orange {
    width: 140px;
    height: 140px;
  }
}

/* ==============================
   BLOG SECTION
================================ */
.blog-section {
  background: #fff4df;
  padding: 120px 0;
}

/* CARD */
.blog-card {
  border: 0.5px var(--primary-color) solid;
  background: #fff7eb;
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.35s ease;
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.blog-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

/* DATE */
.blog-date {
  position: absolute;
  right: 16px;
  bottom: 16px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 12px;
  padding: 8px 12px;
  text-align: center;
}

/* BODY */
.blog-body {
  padding: 22px;
}

.blog-meta {
  display: flex;
  gap: 18px;
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}

.blog-body h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.blog-body p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}

/* READ MORE */
.read-more {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  display: inline-flex;
  gap: 6px;
}

.read-more:hover {
  gap: 10px;
}

/* ==============================
   BLOG SLIDER
================================ */
.blog-slider {
  padding-bottom: 50px;
}

.blog-slider .swiper-wrapper {
  align-items: stretch;
}

.blog-slider .swiper-slide {
  height: auto;
  display: flex;
}

/* Pagination */
.blog-pagination {
  margin-top: 30px;
  text-align: center;
}

.blog-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #c7a6dd;
  opacity: 1;
}

.blog-pagination .swiper-pagination-bullet-active {
  background: var(--primary-color);
}
