.makeup-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

.makeup-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45); /* dark overlay for readability */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

.makeup-hero-content {
  position: relative;
  text-align: center;
  max-width: 90%;
}

.makeup-hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 1.3;
  color: var(--soft-ivory);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ---------- Responsive Design ---------- */
@media (max-width: 992px) {
  .makeup-hero {
    height: 60vh;
  }

  .makeup-hero-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .makeup-hero {
    height: 35vh;
  }

  .makeup-hero-content h1 {
    font-size: 1.6rem;
  }
}



/* ===========================================
   KM ORGATONICS  HERO SECTION 
=========================================== */
/* === HERO SECTION WRAPPER === */
.kmo-hero-banner {
  width: 100%;
  padding: 80px 0;
}

/* === HERO CONTENT === */
.kmo-hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
}

/*LEFT COLUMN */
.kmo-text-content { flex: 1; }

.kmo-image-content {
  flex: 1;
  position: relative;
  opacity: 0;
  transform: translateX(40px);
  animation: fadeIn 1.2s ease-out forwards;
}

.kmo-hero-image {
  width: 115%;
  border-radius: 30px;
  transform: scale(0.9);
  filter: drop-shadow(0 25px 50px rgba(0,0,0,0.25));
  animation: imgFloat 6s ease-in-out infinite,
             imgPulse 4s ease-in-out infinite;
}

/* New smooth floating */
@keyframes imgFloat {
  0%,100% { transform: scale(0.9) translateY(0); }
  50%     { transform: scale(0.93) translateY(-15px); }
}

/* Soft breathing glow */
@keyframes imgPulse {
  0%,100% { filter: drop-shadow(0 25px 50px rgba(0,0,0,0.25)); }
  50%     { filter: drop-shadow(0 30px 60px rgba(0,0,0,0.35)); }
}

/* Fade-in entry */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateX(40px) scale(0.9); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

/* Floating circular icons */
.kmo-floating-element {
  position: absolute;
  background: rgba(255,255,255,0.55);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: floatIcons 5s ease-in-out infinite;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.kmo-element-1 { width:70px; height:70px; top:12%; right:10%; }
.kmo-element-2 { width:55px; height:55px; bottom:18%; left:-5%; animation-delay:1s; }
.kmo-element-3 { width:65px; height:65px; bottom:10%; right:8%; animation-delay:2s; }

@keyframes floatIcons {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%     { transform: translateY(-12px) rotate(6deg); }
}


/* SCROLL FADE ANIMATION */
.kmo-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: all .8s ease;
}
.kmo-fade.visible {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px){
  .kmo-hero-content {
    flex-direction: column;
    text-align: center;
  }
}


@media (max-width: 468px){
  .kmo-hero-banner{
    padding: 20px 0;
  }
  .kmo-hero-image{
    width: 100%;
  }
}




/* ===========================================
   KM ORGATONICS CHOOSE SECTION - ENHANCED
=========================================== */

.kmo-orgatonics-choose-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: var(--soft-ivory);
}

.kmo-orgatonics-choose-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.kmo-orgatonics-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      circle at 20% 80%,
      rgba(161, 136, 127, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(139, 107, 97, 0.1) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 40% 40%,
      rgba(215, 204, 200, 0.05) 0%,
      transparent 50%
    );
  animation: kmo-orgatonics-bg-float 20s ease-in-out infinite;
}

.kmo-orgatonics-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(215, 204, 200, 0.3) 0%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(161, 136, 127, 0.2) 100%
  );
}

@keyframes kmo-orgatonics-bg-float {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.02);
  }
}

.kmo-orgatonics-choose-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 2;
}

/* Text Content Styles */
.kmo-orgatonics-text-wrapper {
  flex: 1;
  max-width: 600px;
}

.kmo-orgatonics-accent-text {
  color: var(--deep-rose);
  position: relative;
  display: inline-block;
}

.kmo-orgatonics-accent-text::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-gold), transparent);
  border-radius: 2px;
}

.kmo-orgatonics-description {
  font-size: 1.8rem;
  color: var(--charcoal);
  margin-bottom: 40px;
  line-height: 1.8;
  opacity: 0.9;
  font-family: "Syne", sans-serif;
}

/* Highlights Grid */
.kmo-orgatonics-highlights-grid {
  display: flex;
  gap: 25px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.kmo-orgatonics-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  background: var(--white);
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 200px;
}

.kmo-orgatonics-highlight-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.kmo-orgatonics-highlight-icon {
  color: var(--rose-gold);
  font-size: 1.8rem;
  transition: transform 0.3s ease;
}

.kmo-orgatonics-highlight-item:hover .kmo-orgatonics-highlight-icon {
  transform: scale(1.2);
}

.kmo-orgatonics-highlight-text {
  font-weight: 600;
  color: var(--dark-rose);
  font-size: 1.5rem;
  font-family: "Syne", sans-serif;
}

/* Action Buttons */
.kmo-orgatonics-action-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.kmo-orgatonics-primary-btn,
.kmo-orgatonics-secondary-btn {
  padding: 18px 35px;
  border: none;
  border-radius: 50px;
  font-family: "Syne", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.kmo-orgatonics-primary-btn {
  background: linear-gradient(135deg, var(--rose-gold), var(--deep-rose));
  color: var(--white);
  box-shadow: 0 12px 35px rgba(161, 136, 127, 0.3);
}

.kmo-orgatonics-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(161, 136, 127, 0.4);
}

.kmo-orgatonics-secondary-btn {
  background: transparent;
  color: var(--dark-rose);
  border: 2px solid var(--rose-gold);
}

.kmo-orgatonics-secondary-btn:hover {
  background: var(--rose-gold);
  color: var(--white);
  transform: translateY(-3px);
}

.kmo-orgatonics-btn-icon {
  font-size: 1.4rem;
}

/* Stats Grid */
.kmo-orgatonics-stats-grid {
  display: flex;
  gap: 40px;
  padding-top: 35px;
  border-top: 1px solid rgba(139, 107, 97, 0.2);
}

.kmo-orgatonics-stat-item {
  text-align: center;
  flex: 1;
}

.kmo-orgatonics-stat-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--dark-rose);
  margin-bottom: 8px;
  font-family: "Syne", sans-serif;
}

.kmo-orgatonics-stat-label {
  font-size: 1.4rem;
  color: var(--rose-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  font-family: "Syne", sans-serif;
}

/* Image Content */
.kmo-orgatonics-image-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.kmo-orgatonics-image-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.kmo-orgatonics-main-image {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 25px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
  transition: all 0.5s ease;
}

.kmo-orgatonics-main-image:hover {
  transform: scale(1.02) rotate(1deg);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* Certificate Badge */
.kmo-orgatonics-certificate-badge {
  position: absolute;
  top: 25px;
  right: -25px;
  background: linear-gradient(135deg, var(--rose-gold), var(--deep-rose));
  color: var(--white);
  padding: 15px 25px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  box-shadow: 0 15px 35px rgba(161, 136, 127, 0.3);
  z-index: 3;
  animation: kmo-orgatonics-badge-pulse 2s ease-in-out infinite;
  font-size: 1.4rem;
}

@keyframes kmo-orgatonics-badge-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.kmo-orgatonics-badge-icon {
  font-size: 1.6rem;
}

/* Student Review Card */
.kmo-orgatonics-review-card {
  position: absolute;
  bottom: 35px;
  left: -35px;
  background: var(--white);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  z-index: 3;
  max-width: 280px;
}

.kmo-orgatonics-review-content .kmo-orgatonics-review-stars {
  color: #ffd700;
  margin-bottom: 12px;
  font-size: 1.4rem;
}

.kmo-orgatonics-review-text {
  font-size: 1.5rem;
  color: var(--charcoal);
  margin-bottom: 8px;
  font-style: italic;
  line-height: 1.5;
  font-family: "Syne", sans-serif;
}

.kmo-orgatonics-review-author {
  font-size: 1.3rem;
  color: var(--rose-gold);
  font-weight: 600;
  font-family: "Syne", sans-serif;
}

/* Floating Elements */
.kmo-orgatonics-floating-element {
  position: absolute;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  animation: kmo-orgatonics-float 6s ease-in-out infinite;
  z-index: 1;
}

.kmo-orgatonics-float-1 {
  width: 85px;
  height: 85px;
  top: 12%;
  left: 8%;
  animation-delay: 0s;
}

.kmo-orgatonics-float-2 {
  width: 65px;
  height: 65px;
  top: 22%;
  right: 12%;
  animation-delay: 2s;
}

.kmo-orgatonics-float-3 {
  width: 75px;
  height: 75px;
  bottom: 32%;
  left: 10%;
  animation-delay: 4s;
}

.kmo-orgatonics-float-4 {
  width: 55px;
  height: 55px;
  bottom: 18%;
  right: 8%;
  animation-delay: 1s;
}

.kmo-orgatonics-float-icon {
  font-size: 1.8rem;
  color: var(--rose-gold);
}

@keyframes kmo-orgatonics-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-20px) rotate(5deg);
  }
  66% {
    transform: translateY(10px) rotate(-5deg);
  }
}

/* Animations */
.kmo-orgatonics-animate-on-load {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.kmo-orgatonics-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .kmo-orgatonics-choose-container {
    gap: 40px;
  }

  .kmo-orgatonics-highlights-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .kmo-orgatonics-choose-section {
    padding: 80px 0;
    min-height: auto;
  }

  .kmo-orgatonics-choose-container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .kmo-orgatonics-description {
    font-size: 1.6rem;
  }

  .kmo-orgatonics-action-buttons {
    justify-content: center;
  }

  .kmo-orgatonics-stats-grid {
    justify-content: center;
  }

  .kmo-orgatonics-review-card {
    left: 50%;
    transform: translateX(-50%);
    max-width: 300px;
  }

  .kmo-orgatonics-certificate-badge {
    right: 50%;
    transform: translateX(50%);
  }

  .kmo-orgatonics-floating-element {
    display: none;
  }

  .kmo-orgatonics-main-image {
    height: 500px;
  }
}

@media (max-width: 480px) {
  .kmo-orgatonics-description {
    font-size: 1.5rem;
  }

  .kmo-orgatonics-highlights-grid {
    flex-direction: column;
    align-items: center;
  }

  .kmo-orgatonics-action-buttons {
    flex-direction: column;
    align-items: center;
  }

  .kmo-orgatonics-primary-btn,
  .kmo-orgatonics-secondary-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .kmo-orgatonics-stats-grid {
    flex-direction: column;
    gap: 25px;
  }

  .kmo-orgatonics-main-image {
    height: 400px;
  }
  .kmo-orgatonics-review-card{
    display: none;
  }
}

/* KMO Section Title Styles */
/* Timeline styles */
.timeline-section {
  background: linear-gradient(
    to bottom,
    var(--soft-ivory),
    rgba(249, 245, 240, 0.05)
  );
  position: relative;
  overflow: hidden;
  padding: 20px !important;
}

.swiper-container-wrapper--timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.swiper-container-wrapper--timeline .swiper-slide {
  display: flex;
  background: var(--white);
  min-height: 450px;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.swiper-container-wrapper--timeline .swiper-slide:hover {
  transform: translateY(-5px);
}

.swiper-container-wrapper--timeline .swiper-slide .container {
  padding: 50px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 50px;
}

.timeline-content {
  flex: 1;
  min-width: 300px;
}

.timeline-content h3 {
  font-size: 2.4rem;
  color: var(--deep-rose);
  margin-bottom: 25px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
}

.timeline-content h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--deep-rose), var(--rose-gold));
  border-radius: 3px;
}

.timeline-content ul {
  list-style: none;
  margin-top: 20px;
}

.timeline-content li {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  padding: 12px 15px;
  border-radius: 10px;
  transition: var(--transition);
  background: rgba(161, 136, 127, 0.05);
}

.timeline-content li:hover {
  transform: translateX(8px);
  background: rgba(161, 136, 127, 0.1);
}

.timeline-content li i {
  color: var(--rose-gold);
  margin-right: 15px;
  margin-top: 4px;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.timeline-content li span {
  color: var(--charcoal);
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 500;
}

.timeline-image {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.timeline-image img {
  width: 100%;
  max-width: 450px;
  height: 350px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.timeline-image img:hover {
  transform: scale(1.03);
}

/* Progressbar and pagination */
.swiper-container-wrapper--timeline .swiper-pagination-progressbar {
  position: relative;
  margin: 80px auto 50px;
  background-color: transparent;
  height: 6px;
  border-bottom: 1px solid rgba(139, 107, 97, 0.2);
  width: 85%;
  max-width: 1000px;
  border-radius: 3px;
}

.swiper-container-wrapper--timeline .swiper-pagination-progressbar-fill {
  background: linear-gradient(90deg, var(--deep-rose), var(--rose-gold));
  height: 6px;
  top: 0;
  left: -80px;
  border-radius: 3px;
}

.swiper-container-wrapper--timeline .swiper-pagination-custom {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  line-height: 1.66;
  bottom: -70px;
  left: -90px;
  z-index: 11;
  width: 85%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

.swiper-container-wrapper--timeline
  .swiper-pagination-custom
  .swiper-pagination-switch {
  position: relative;
  width: 100%;
  height: 40px;
  line-height: 30px;
  display: block;
  text-align: center;
}

.swiper-container-wrapper--timeline
  .swiper-pagination-custom
  .swiper-pagination-switch
  .switch-title {
  position: absolute;
  font-weight: 500;
  right: 0;
  transform: translateX(50%);
  transition: 0.3s all ease-in-out;
  transition-delay: 0s;
  cursor: pointer;
  z-index: 1;
  color: var(--ash-gray);
  font-size: 1.3rem; /* Smaller font size */
  white-space: nowrap;
  background: var(--white);
  padding: 6px 12px; /* Smaller padding */
  border-radius: 20px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.swiper-container-wrapper--timeline
  .swiper-pagination-custom
  .swiper-pagination-switch
  .switch-title:after {
  position: absolute;
  top: calc(100% + 8px); /* Closer to text */
  right: 50%;
  transform: translateX(50%) translateY(-50%);
  width: 12px; /* Smaller dot */
  height: 12px; /* Smaller dot */
  background: var(--ash-gray);
  border-radius: 50%;
  content: "";
  transition: 0.3s all ease-in-out;
  transition-delay: 0s;
  z-index: 1;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px var(--ash-gray);
}

.swiper-container-wrapper--timeline
  .swiper-pagination-custom
  .swiper-pagination-switch.active
  .switch-title {
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, var(--deep-rose), var(--rose-gold));
  transition-delay: 0.4s;
  transform: translateX(50%) translateY(-8px) scale(1.05); /* Move up and scale */
}

.swiper-container-wrapper--timeline
  .swiper-pagination-custom
  .swiper-pagination-switch.active
  .switch-title:after {
  background: var(--deep-rose);
  width: 14px; /* Slightly larger when active */
  height: 14px; /* Slightly larger when active */
  transition-delay: 0.4s;
  box-shadow: 0 0 0 2px var(--deep-rose);
}

.swiper-container-wrapper--timeline
  .swiper-pagination-custom
  .swiper-pagination-switch.active
  ~ .swiper-pagination-switch
  .switch-title {
  color: var(--ash-gray);
  background: var(--white);
}

.swiper-container-wrapper--timeline
  .swiper-pagination-custom
  .swiper-pagination-switch.active
  ~ .swiper-pagination-switch
  .switch-title:after {
  background: var(--ash-gray);
  box-shadow: 0 0 0 2px var(--ash-gray);
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: var(--deep-rose);
  transition: all 0.3s ease;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: linear-gradient(135deg, var(--deep-rose), var(--rose-gold));
  color: var(--white);
  transform: scale(1.1);
}

/* Responsive styles */
@media (max-width: 1100px) {
  .swiper-container-wrapper--timeline
    .swiper-pagination-custom
    .swiper-pagination-switch
    .switch-title {
    font-size: 1.3rem;
    padding: 6px 12px;
  }
}

@media (max-width: 992px) {
  .swiper-container-wrapper--timeline .swiper-slide .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 30px;
  }

  .timeline-content,
  .timeline-image {
    width: 100%;
  }

  .timeline-content ul {
    text-align: left;
  }

  .timeline-content h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-image img {
    height: 300px;
  }

  .swiper-container-wrapper--timeline
    .swiper-pagination-custom
    .swiper-pagination-switch
    .switch-title {
    font-size: 1.1rem;
    padding: 5px 10px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .kmo-section-title h2 {
    font-size: 32px;
  }

  .timeline-content h3 {
    font-size: 2rem;
  }

  .swiper-container-wrapper--timeline .swiper-pagination-custom {
    width: 95%;
  }

  .swiper-container-wrapper--timeline .swiper-pagination-progressbar {
    width: 95%;
  }

  .swiper-container-wrapper--timeline
    .swiper-pagination-custom
    .swiper-pagination-switch
    .switch-title {
    font-size: 1rem;
    padding: 4px 8px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

@media (max-width: 576px) {
  .section {
    padding: 60px 0;
  }
  .kmo-section-title h2 {
    font-size: 25px;
  }
  .section-text{
    text-align: justify;
  }
  .swiper-container-wrapper--timeline .swiper-slide .container {
    padding: 30px 20px;
  }

  .timeline-content h3 {
    font-size: 1.8rem;
  }

  .timeline-content li span {
    font-size: 1.4rem;
  }

  .timeline-image img {
    height: 250px;
  }

  .swiper-container-wrapper--timeline
    .swiper-pagination-custom
    .swiper-pagination-switch
    .switch-title {
    font-size: 0.9rem;
    padding: 3px 6px;
  }
}

@media (max-width: 480px) {
  .swiper-container-wrapper--timeline
    .swiper-pagination-custom
    .swiper-pagination-switch
    .switch-title {
    font-size: 0.8rem;
    padding: 2.9px 5.6px;
  }
  .swiper-container-wrapper--timeline
  .swiper-pagination-custom
  .swiper-pagination-switch.active
  .switch-title {
  transform: translateX(50%) translateY(-28px) scale(1.05); /* Move up and scale */
}
.swiper-container-wrapper--timeline .swiper-pagination-custom {
left: -20px;
}
.swiper-container-wrapper--timeline .swiper-pagination-progressbar-fill {
left: -20px;
}
.kmo-sub-title{
  font-size: 1rem !important;
}
  .kmo-section-title h2 {
    font-size: 2.5rem !important;
  }

  .timeline-content h3 {
    font-size: 1.6rem;
  }
}






.course-highlights-row {
background: linear-gradient(
  to bottom,
  var(--dark-rose) 2px,  /* sirf 2px thick line */
  var(--white) 2px
);
  padding: 50px 20px;
  animation: fadeIn 0.6s ease;
}


/* ROW LAYOUTS */
.highlights-row {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 40px;
}

/* ROW 1 = 3 items */
.highlights-row.row-1 .highlight-box {
  width: 28%;
}

/* ROW 2 = 2 items */
.highlights-row.row-2 .highlight-box {
  width: 30%;
}

/* EACH HIGHLIGHT BLOCK */
.highlight-box {
  text-align: center;
  animation: slideUp 0.8s ease forwards;
  opacity: 0;
  transform-origin: bottom;
}

/* ICON STYLE */
.highlight-box i {
  font-size: 48px;
  color: #7a6b5e;
  margin-bottom: 12px;
  transition: transform 0.35s ease, color 0.35s ease;
}

.highlight-box:hover i {
  transform: scale(1.18);
  color: #5d5248;
}

/* TEXT STYLING */
.highlight-box h4 {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #111;
}

.highlight-box p {
  font-size: 1.5rem;
  color: #444;
  line-height: 1.55;
  max-width: 300px;
  margin: 0 auto;
}

/* Responsive Layout */
@media (max-width: 900px) {
  .highlights-row {
    flex-wrap: wrap;
    gap: 30px;
  }
  .highlight-box {
    width: 45% !important;
  }
}

@media (max-width: 600px) {
  .highlight-box {
    width: 100% !important;
  }
  .highlight-box h4 {
    font-size: 1.3rem;
  }
  .highlight-box p {
    font-size: 1rem;
  }
  .course-highlights-row{
    padding-bottom: 10px;
  }
  .course-highlights-row h2 {
    font-size: 2rem !important;
  }
}

/* Animations */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}






/* -----------------------------------------------------
   Container
----------------------------------------------------- */
.who-can-enroll-container {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--soft-ivory) 100%, var(--ash-gray) 0%);
}

/* -----------------------------------------------------
   Global Heading (Your Required Block)
----------------------------------------------------- */
.kmo-heading-center {
    text-align: center;
}

.kmo-sub-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #d38748;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: inline-block;
}

/* .kmo-section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    color: #333;
    margin: 0;
}

.kmo-section-title h2 span {
    color: #d38748;
} */

/* subtle fade */
.kmo-fade {
    opacity: 0;
    animation: fadeInTitle 1.2s ease forwards;
}
@keyframes fadeInTitle {
    to { opacity: 1; }
}

/* -----------------------------------------------------
   Layout Section
----------------------------------------------------- */
.who-can-enroll-section {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    max-width: 1250px;
    margin: 0 auto;
    gap: 20px;
    padding:5px 20px;
    position: relative;
}

/* -----------------------------------------------------
  IMAGE BLOCK
----------------------------------------------------- */
.who-can-enroll-image-wrap {
    grid-column: 1 / 6;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatImg 5s ease-in-out infinite;
}

.who-can-enroll-image-wrap img {
    width: 100%;
    height: 370px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    object-fit: cover;
}

/* Float animation */
@keyframes floatImg {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

/* -----------------------------------------------------
   CONTENT BOX (Glassmorphic Panel)
----------------------------------------------------- */
.who-can-enroll-content {
    grid-column: 6 / 13;
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    padding: 30px ;
    box-shadow: 0 15px 45px rgba(0,0,0,0.1);
    animation: slideUpContent 1s ease-out forwards;
    transform: translateY(30px);
}

@keyframes slideUpContent {
    to { transform: translateY(0); opacity: 1; }
}

/* -----------------------------------------------------
   Title Inside Box 
----------------------------------------------------- */
.who-can-enroll-title {
    font-size: 2.9rem;
    font-weight: 700;
    color: #333;
    margin-top: 0;
    margin-bottom: 25px;
}

/* -----------------------------------------------------
   BIGGER Paragraph
----------------------------------------------------- */
.who-can-enroll-description {
    font-size: 1.7rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 30px;
}

/* -----------------------------------------------------
   ICON LIST
----------------------------------------------------- */
.who-can-enroll-list li {
    font-size: 1.35rem;
    color: #333;
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: 0.3s ease;
}

.who-can-enroll-list li i {
    font-size: 1.9rem;
    color: var(--charcoal);
    transition: 0.3s ease;
}

.who-can-enroll-list li:hover {
    transform: translateX(10px);
}

.who-can-enroll-list li:hover i {
    color: var(--dark-rose);
}

/* -----------------------------------------------------
   MOBILE RESPONSIVE
----------------------------------------------------- */
@media (max-width: 900px) {

    .who-can-enroll-section {
        grid-template-columns: 1fr;
    }

    .who-can-enroll-image-wrap {
        grid-column: 1 / -1;
    }

    .who-can-enroll-content {
        grid-column: 1 / -1;
        padding: 40px 25px;
    }

    .who-can-enroll-title {
        font-size: 2.2rem;
    }

    .who-can-enroll-description {
        font-size: 1.2rem;
    }

    .who-can-enroll-list li {
        font-size: 1.15rem;
    }
}

@media (max-width: 450px){
  .who-can-enroll-container{
    padding: 30px 0;
  }
}





.duration-format-container-main {
    font-family: 'Syne', sans-serif;
    color: var(--charcoal);
    padding: 40px 20px 0 20px;
}

.duration-format-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.duration-format-subtitle {
    display: inline-block;
    color: var(--deep-rose);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    padding: 4px 12px;
    border: 2px solid var(--deep-rose);
    border-radius: 30px;
    background: none;
    margin-bottom: 15px;
}


.duration-format-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.only-50{
width: 50%;
}
.duration-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 1200px !important;
}

.duration-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.duration-single-row {
    display: flex;
    flex-direction: row;
}

.duration-card {
    background: var(--white);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(139, 107, 97, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(161, 136, 127, 0.1);
    position: relative;
    overflow: hidden;
}

.duration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(161, 136, 127, 0.05), transparent);
    transition: left 0.8s ease;
}

.duration-card:hover::before {
    left: 100%;
}

.duration-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 107, 97, 0.15);
    border-color: var(--rose-gold);
}

.duration-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.duration-card-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--rose-gold), var(--deep-rose));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 18px;
    color: var(--white);
    font-size: 22px;
    transition: all 0.3s ease;
}

.duration-card:hover .duration-card-icon {
    transform: scale(1.1) rotate(5deg);
}

.duration-card-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--deep-rose);
}

.duration-card-content ul {
    list-style: none;
    padding-left: 0;
}

.duration-card-content li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    font-size: 16px;
    color: var(--charcoal);
    position: relative;
    padding-left: 24px;
    transition: all 0.3s ease;
}

.duration-card-content li:hover {
    transform: translateX(5px);
}

.duration-card-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--rose-gold);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.duration-card-content li:hover::before {
    transform: translateY(-50%) scale(1.3);
    background: var(--deep-rose);
}

.duration-highlight-text {
    color: var(--deep-rose);
    font-weight: 600;
    position: relative;
}

.duration-highlight-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--rose-gold), var(--deep-rose));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.duration-card:hover .duration-highlight-text::after {
    transform: scaleX(1);
}

.duration-animation-section {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.duration-animation-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.duration-timeline-animation {
    position: relative;
    width: 400px;
    height: 400px;
}

.duration-center-academy {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--rose-gold), var(--deep-rose));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 15px 35px rgba(139, 107, 97, 0.3);
    z-index: 10;
    padding: 20px;
    animation: duration-academy-float 4s ease-in-out infinite;
}

.duration-rotating-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    border: 2px dashed rgba(161, 136, 127, 0.3);
    border-radius: 50%;
    animation: duration-ring-rotate 20s linear infinite;
}

/* .duration-rotating-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 320px;
    height: 320px;
    border: 1px solid rgba(161, 136, 127, 0.2);
    border-radius: 50%;
} */

.duration-floating-items {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.duration-floating-item {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(139, 107, 97, 0.15);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.duration-floating-item-1 {
    top: 10%;
    left: 25%;
    animation: duration-float-1 6s ease-in-out infinite;
}

.duration-floating-item-2 {
    top: 25%;
    right: 10%;
    animation: duration-float-2 6s ease-in-out infinite 1.5s;
}

.duration-floating-item-3 {
    bottom: 25%;
    left: 10%;
    animation: duration-float-3 6s ease-in-out infinite 3s;
}

.duration-floating-item-4 {
    bottom: 10%;
    right: 25%;
    animation: duration-float-4 6s ease-in-out infinite 4.5s;
}

.duration-floating-item:hover {
    border-color: var(--rose-gold);
    transform: scale(1.1);
}

.duration-floating-item i {
    font-size: 24px;
    background: linear-gradient(135deg, var(--rose-gold), var(--deep-rose));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.duration-progress-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.duration-progress-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--deep-rose);
    border-radius: 50%;
    animation: duration-dot-pulse 3s ease-in-out infinite;
}

.duration-progress-dot:nth-child(1) { top: 15%; left: 15%; animation-delay: 0s; }
.duration-progress-dot:nth-child(2) { top: 20%; right: 20%; animation-delay: 0.5s; }
.duration-progress-dot:nth-child(3) { bottom: 20%; left: 20%; animation-delay: 1s; }
.duration-progress-dot:nth-child(4) { bottom: 15%; right: 15%; animation-delay: 1.5s; }
.duration-progress-dot:nth-child(5) { top: 45%; left: 5%; animation-delay: 0.2s; }
.duration-progress-dot:nth-child(6) { top: 45%; right: 5%; animation-delay: 0.7s; }

/* Fixed Animation Keyframes */
@keyframes duration-academy-float {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0px);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-20px);
    }
}

@keyframes duration-ring-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes duration-float-1 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-25px);
    }
}

@keyframes duration-float-2 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes duration-float-3 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes duration-float-4 {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

@keyframes duration-dot-pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(139, 107, 97, 0.4);
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 0 0 8px rgba(139, 107, 97, 0);
    }
    100% {
        transform: scale(0.8);
        opacity: 0.6;
        box-shadow: 0 0 0 0 rgba(139, 107, 97, 0.4);
    }
}

/* Responsive Design */
/* ---------------- Fully Responsive Enhancements ---------------- */

/* For large tablets and small desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .duration-format-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .duration-cards-wrapper {
    width: 100% !important;
  }

  .duration-single-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .only-50 {
    width: 100%;
  }

  .duration-animation-section {
    margin-top: 0 !important;
    height: 450px;
  }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
  .duration-cards-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .duration-card {
    padding: 30px;
  }

  .duration-card-title {
    font-size: 20px;
  }

  .duration-animation-section {
    height: 380px;
  }

  .duration-timeline-animation {
    width: 320px;
    height: 320px;
  }

  .duration-center-academy {
    width: 140px;
    height: 140px;
    font-size: 14px;
  }

  .duration-rotating-ring {
    width: 240px;
    height: 240px;
  }

  .duration-floating-item {
    width: 55px;
    height: 55px;
  }
}

/* Mobile (max-width: 768px) */
@media (max-width: 768px) {
  .duration-format-container-main {
    padding: 50px 15px;
  }

  .duration-card-header {
    flex-direction: column;
    text-align: center;
  }

  .duration-card-icon {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .duration-single-row {
    flex-direction: column;
    gap: 30px;
  }

  .duration-timeline-animation {
    width: 280px;
    height: 280px;
  }

  .duration-center-academy {
    width: 120px;
    height: 120px;
    font-size: 13px;
  }

  .duration-rotating-ring {
    width: 210px;
    height: 210px;
  }

  .duration-floating-item {
    width: 45px;
    height: 45px;
  }
}

/* Small mobile (max-width: 576px) */
@media (max-width: 576px) {
  .duration-format-container-main {
    padding: 40px 12px;
  }

  .duration-card {
    padding: 22px;
  }

  .duration-card-title {
    font-size: 18px;
  }

  .duration-card-content li {
    font-size: 15px;
  }

  .duration-animation-section {
    height: 320px;
  }

  .duration-timeline-animation {
    width: 250px;
    height: 250px;
  }

  .duration-center-academy {
    width: 110px;
    height: 110px;
    font-size: 12px;
  }

  .duration-rotating-ring {
    width: 180px;
    height: 180px;
  }

  .duration-floating-item {
    width: 40px;
    height: 40px;
  }

  .duration-cards-wrapper {
    gap: 20px;
  }

  .duration-cards-row {
    gap: 20px;
  }
}

/* Ultra-small screens (max-width: 400px) */
@media (max-width: 400px) {
  .duration-center-academy {
    width: 100px;
    height: 100px;
    font-size: 11px;
  }

  .duration-timeline-animation {
    width: 220px;
    height: 220px;
  }

  .duration-rotating-ring {
    width: 160px;
    height: 160px;
  }

  .duration-floating-item {
    width: 35px;
    height: 35px;
  }
}








.career-after-certificate-container {
    margin: 0;
    background-color: #ffffff; 
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: auto;
    padding:0 10px 30px 10px;
}

.career-after-certificate-section {
    display: grid;
    grid-template-columns: repeat(12, 1fr); 
    grid-template-rows: 1fr;
    max-width: 1200px;
    position: relative;
    /* min-height: 400px;  */
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); 
}

.career-after-certificate-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 50%; 
    height: 100%;
    background-color: rgba(215, 204, 200, 0.3);
    z-index: 1; 
    clip-path: polygon(0 0, 60% 0, 100% 100%, 0% 100%);
    transform: translate(-10px, -30px); 
}

.career-after-certificate-content {
    grid-column: 5 / 13; 
    grid-row: 1 / 2;
    background-color: #fff;
    padding: 30px 50px 0px 200px;
    z-index: 2; 
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); 
    position: relative;
}

.career-after-certificate-list li {
  list-style: none !important;
  background-image: url(images/check-mark.png) !important;
  background-repeat: no-repeat;
  background-position: 0 6px; 
  background-size: 16px 16px;
  padding-left: 25px; 
}

.career-after-certificate-image-wrapper {
    grid-column: 1 / 6; 
    grid-row: 1 / 2;
    z-index: 3; 
    position: relative;
    align-self: center; 
    transform: translateX(40px);
    margin: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1); 
}

.career-after-certificate-image-wrapper img {
    display: block;
    width: 100%;
    height: 450px; 
    object-fit: cover;
    object-position: top;
}

.career-after-certificate-list {
    line-height: 1.7;
    color: #555555;
    margin-bottom: 30px;
    font-size: 1rem;
}

@media (max-width: 900px) {
    .career-after-certificate-section {
        display: flex; 
        flex-direction: column; 
        gap: 0; 
        min-height: auto;
    }

    .career-after-certificate-section::before {
        width: 100%;
        height: 150px;
        clip-path: none;
        transform: translate(0, 0);
        z-index: 0; 
    }

    .career-after-certificate-image-wrapper {
        width: 100%;
        max-width: none;
        transform: translate(0, 0);
        order: 1; 
        height: 350px;
        margin-bottom: 40px;
    }

    .career-after-certificate-image-wrapper img {
        height: 100%;
    }

    .career-after-certificate-content {
        order: 2; 
        padding: 40px 20px;
        box-shadow: none;
        margin-top: -50px; 
    }
}



/* Hero Container */
.cta-section-am-hero {
  position: relative;
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  overflow: hidden;
}

/* Overlay */
.cta-section-am-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}

/* Content */
.cta-section-am-content {
  position: relative;
  text-align: center;
  max-width: 90%;
  display: flex;justify-content: center;align-items: center;flex-direction: column;
  gap: 20px;
}

.cta-section-am-content h1 {
  font-family: "Playfair Display", serif;
  font-size: 4rem;
  line-height: 1.3;
  color: var(--soft-ivory);
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* CTA Button */
.cta-section-am-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  background: var(--soft-ivory);
  color: #000;
  border-radius: 4px;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-section-am-btn:hover {
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .cta-section-am-hero {
    height: 65vh;
  }

  .cta-section-am-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 600px) {
  .cta-section-am-hero {
    height: 35vh;
  }

  .cta-section-am-content h1 {
    font-size: 1.6rem;
  }
  .cta-section-am-content p{
    max-width: 90% !important;
  }
}
