* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

html {
  overflow-x: hidden;
  zoom: 0.9;
}

body {
  overflow-x: hidden;
  margin: 0;
  min-height: 100vh;

  background:
    radial-gradient(circle at 35% 25%, rgba(205, 215, 185, 0.3), transparent 60%),
    radial-gradient(circle at 65% 75%, rgba(230, 190, 210, 0.3), transparent 60%),
    linear-gradient(180deg, #faf9fc 0%, #f6f3f7 100%);

  background-size: 200% 200%;
  background-attachment: fixed;
  animation: gradientFloat 18s ease-in-out infinite alternate;
}

@keyframes gradientFloat {
  0% {
    background-position: 0% 0%;
  }

  100% {
    background-position: 100% 100%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}




/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: -20 px -60px;
  align-items: center;
  border-bottom: 1px solid var(--bg-muted);
  background: white;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-primary);
}

.logo-box {
  background: var(--primary);
  color: var(--text-on-primary);
  /* width:;
     /* height:; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-weight: bold;
}

nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}

nav a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 15px;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary);
}

.login-btn {
  padding: 8px 18px;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.login-btn:hover {
  background: var(--primary);
  color: var(--text-on-primary);
}

/* HERO */

.hero {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5vh 8vw;
  gap: 5vw;
  height: 100vh;
  background: linear-gradient(rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('img/imgtest.png') center/cover no-repeat;
}

.hero-text {
  max-width: 520px;
}

.hero-text h1 {
  font-size: 4vw;
  line-height: 1.1;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--text-primary);
}

.hero-text p {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
}

.primary-btn {
  background: #5a2a82;
  color: white;
  padding: 14px 26px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background: #4a216d;
}

.secondary-btn {
  background: transparent;
  border: 2px solid #5a2a82;
  color: #5a2a82;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background: #5a2a82;
  color: white;
}

/* IMAGE */

.hero-image {
  width: 25vw;
  height: 25vw;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

/* slider container */
.hero-slider {
  display: flex;
  width: 300%;
  height: 100%;
  animation: slideHero 12s infinite;
}

/* each slide */
.hero-slider img {
  width: 33.333%;
  height: 100%;
  object-fit: cover;
}

/* animation */
@keyframes slideHero {

  0% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(0);
  }

  33% {
    transform: translateX(-33.333%);
  }

  63% {
    transform: translateX(-33.333%);
  }

  66% {
    transform: translateX(-66.666%);
  }

  96% {
    transform: translateX(-66.666%);
  }

  100% {
    transform: translateX(0);
  }

}

/* RESPONSIVE */

@media (max-width:900px) {
  .navbar {
    padding: 20px 30px;
    flex-direction: column;
    gap: 15px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero {
    flex-direction: column;
    padding: 40px 30px;
    text-align: center;
    height: auto;
  }

  .hero-text h1 {
    font-size: 6vw;
  }

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

  .hero-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    aspect-ratio: 1;
  }
}


/* SECTION */

.change-section {
  padding: 120px 8%;
  text-align: center;

  background: none;
}

/* TITLE */

.change-title {
  font-size: 40px;
  margin-bottom: 15px;
  color: #2e3a59;
}

.change-subtitle {
  max-width: 700px;
  margin: auto;
  color: #5c6b82;
  margin-bottom: 60px;
  font-size: 18px;
}

/* GRID */

.change-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

/* CARD */

.change-card {
  background: white;
  padding: 30px 25px;
  border-radius: 12px;

  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);

  transition: 0.3s ease;
}

.change-card:hover {
  transform: translateY(-8px);
}

/* ICON */

.icon {
  font-size: 36px;
  margin-bottom: 10px;
}

/* TEXT */

.change-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.change-card p {
  color: #5c6b82;
  line-height: 1.5;
}

/* CARD COLORS */

.card-blue {
  background: #e8f3fb;
}

.card-green {
  background: #eaf6ef;
}

.card-orange {
  background: #fff0e4;
}

.card-purple {
  background: #f0e8fb;
}

/* FOOTER TEXT */

.change-footer {
  margin-top: 60px;
  color: #5c6b82;
  font-size: 16px;
}

/* RESPONSIVE */

@media(max-width:900px) {

  .change-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media(max-width:500px) {

  .change-grid {
    grid-template-columns: 1fr;
  }

}

/* CARD */

.card {
  background: white;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  transition: .3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
}






/* SECTION */

.testimonials {
  background: none;
  padding: 40px 10%;
  text-align: center;
}


/* TITLE */

.testimonials-title {
  font-size: 34px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.testimonials-subtitle {
  color: var(--text-secondary);
  margin-bottom: 60px;
}


/* GRID */

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}


/* CARD */

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--bg-muted);
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}


/* STUDENT INFO */

.student-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}


.student-info h4 {
  margin: 0;
  font-size: 16px;
  color: var(--text-primary);
}

.student-info span {
  font-size: 13px;
  color: var(--text-muted);
}


/* TESTIMONIAL TEXT */

.testimonial-text {
  color: var(--text-secondary);
  font-size: 14px;
  line-height: 1.6;
}


/* RESPONSIVE */

@media(max-width:900px) {

  .testimonial-container {
    grid-template-columns: 1fr;
  }

}


/* CTA SECTION */

.cta-section {
  padding: 40px 10%;
  text-align: center;

  background: none;
}

.cta-content h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.cta-content p {
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}


/* BUTTONS */

/* .primary-btn {
  background: var(--primary);
  color: var(--text-on-primary);
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
} */

.primary-btn:hover {
  background: var(--primary-dark);
}

/* .secondary-btn {
  background: var(--bg-card);
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background: var(--primary);
  color: var(--text-on-primary);
} */

.testimonials {
  padding: 40px 10%;
  text-align: center;

  background: none;
}




.footer {
  background: #0f0f0f;
  color: white;
  padding: 40px 10% 20px;
}


/* GRID */

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

/* FOOTER SECTION */

.footer {
  background: #4E1E70;
  color: #ffffff;
  ;
  padding: 40px 10% 20px 10%;
}


/* BRAND */

.footer-brand h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #ffffff;
}

.footer-brand p {
  color: #ffffff;
  font-size: 14px;
}

.logo-box {
  width: 40px;
  height: 40px;
  background: #4E1E70;
  color: var(--text-on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: bold;
}


/* LINKS */

.footer-column h4 {
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-column a {
  display: block;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent);
}


/* BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 14px;
}


/* SOCIAL */

.social-icons span {
  margin-left: 15px;
  color: #ffffff;
  ;
  cursor: pointer;
  transition: color 0.3s ease;
}

.social-icons span:hover {
  color: var(--accent);
}


/* MOBILE */

@media(max-width:900px) {

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

}

.logo-box {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--text-on-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: bold;
}


/* LINKS */

.footer-column h4 {
  margin-bottom: 15px;
  color: #ffffff;
  ;
}

.footer-column a {
  display: block;
  color: #ffffff;
  ;
  text-decoration: none;
  margin-bottom: 10px;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent);
}


/* BOTTOM */

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #ffffff;
  ;
  font-size: 14px;
}


/* SOCIAL */

.social-icons span {
  margin-left: 15px;
  color: var(--secondary-light);
  cursor: pointer;
  transition: color 0.3s ease;
}

.social-icons span:hover {
  color: var(--accent);
}


/* MOBILE */

@media(max-width:900px) {

  .footer-container {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
  }

}






/* 1. Strip the layout from the pinned trigger */
#parwah-scroll-section {
  width: 100%;
}

/* 2. Apply your original layout to the new inner wrapper */
.parwah-inner-wrapper {
  --text-color: purple;
  --dull-color: rgba(128, 0, 128, 0.35);
  --highlight-color: #4E1170;

  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-color);

  min-height: 100vh;
  width: 100%;

  display: grid;
  grid-template-rows: auto 1fr;

  padding: 30px 57px;
  box-sizing: border-box;
}

/* 3. The rest of your CSS stays exactly the same */
#parwah-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.parwah-container {
  width: 100%;
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
}

.row {
  display: flex;
  align-items: center;
}

.letter {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: bold;
  color: #4E1170;
  width: 70px;
  flex-shrink: 0;
  text-align: center;
  transition: color .3s ease;
}

.full-form {
  font-size: clamp(25px, 1.8vw, 20px);
  font-weight: 500;
  opacity: 0;
  transform: translateY(40px);
  margin-left: 12px;
  padding-left: 100px;
  line-height: 1.25;
  color: #4E1170;
}




.parwah-circular-section {
  padding: 80px 8%;
  background: none;
  margin: 20px 0;
  overflow: hidden;
  font-family: Arial, Helvetica, sans-serif;
}

.circular-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.circular-header h2 {
  font-size: 38px;
  color: #29375a;
  margin-bottom: 20px;
}

.circular-header p {
  color: #5c6b82;
  font-size: 17px;
  line-height: 1.6;
}

.circular-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  max-width: 1200px;
  margin: 0 auto;
}

.circular-diagram-box {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}

.circular-diagram {
  position: relative;
  width: 400px;
  height: 400px;
  flex-shrink: 0;
}

.circular-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  animation: spinTrack 80s linear infinite;
}

@keyframes spinTrack {
  100% {
    transform: rotate(360deg);
  }
}

.circular-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 170px;
  height: 170px;
  background: #5a2a82;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  box-shadow: 0 10px 25px rgba(90, 42, 130, 0.3);
  border: 6px solid #fdfcff;
  z-index: 10;
}

.circular-center h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: white;
}

.circular-center p {
  font-size: 13px;
  opacity: 0.8;
  margin: 0;
  color: white;
}

.circle-node {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 22px;
  color: #8B5BE6;
  border: 2px solid #8B5BE6;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 20;
}

.node-label {
  position: absolute;
  top: 75px;
  font-size: 14px;
  font-weight: 600;
  color: #2e3a59;
  white-space: nowrap;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.85);
  padding: 3px 10px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

.circle-node:hover {
  box-shadow: 0 8px 20px rgba(139, 91, 230, 0.4);
}

.circle-node.active {
  background: #8B5BE6;
  color: white;
  border-color: #8B5BE6;
  transform: scale(1.15);
  box-shadow: 0 10px 25px rgba(139, 91, 230, 0.4);
}

.node-1 {
  transform: rotate(-90deg) translate(200px) rotate(90deg);
}

.node-2 {
  transform: rotate(-18deg) translate(200px) rotate(18deg);
}

.node-3 {
  transform: rotate(54deg) translate(200px) rotate(-54deg);
}

.node-4 {
  transform: rotate(126deg) translate(200px) rotate(-126deg);
}

.node-5 {
  transform: rotate(198deg) translate(200px) rotate(-198deg);
}

.node-1.active {
  transform: rotate(-90deg) translate(200px) rotate(90deg) scale(1.15);
}

.node-2.active {
  transform: rotate(-18deg) translate(200px) rotate(18deg) scale(1.15);
}

.node-3.active {
  transform: rotate(54deg) translate(200px) rotate(-54deg) scale(1.15);
}

.node-4.active {
  transform: rotate(126deg) translate(200px) rotate(-126deg) scale(1.15);
}

.node-5.active {
  transform: rotate(198deg) translate(200px) rotate(-198deg) scale(1.15);
}

/* Content Box */
.circular-content-box {
  flex: 1;
  max-width: 500px;
}

.cycle-controls {
  display: flex;
  gap: 15px;
  margin-top: 25px;
  justify-content: flex-start;
}

.cycle-btn {
  background: white;
  border: 2px solid #8B5BE6;
  color: #8B5BE6;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cycle-btn:hover {
  background: #8B5BE6;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 91, 230, 0.2);
}

.cycle-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(139, 91, 230, 0.1);
  animation: fadeInCard 0.4s ease-out forwards;
}

@keyframes fadeInCard {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.card-step {
  display: inline-block;
  background: rgba(139, 91, 230, 0.1);
  color: #8B5BE6;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cycle-card h3 {
  font-size: 26px;
  color: #2e3a59;
  margin-bottom: 20px;
  line-height: 1.3;
}

.cycle-card p,
.cycle-card ul {
  color: #212a39;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cycle-card li {
  margin-bottom: 12px;
}

.cycle-card .emphasis {
  color: #4E1170;
  font-weight: 600;
  font-style: italic;
  background: rgba(78, 17, 112, 0.04);
  padding: 18px;
  border-left: 5px solid #4E1170;
  border-radius: 0 12px 12px 0;
  margin-bottom: 0;
}

/* Responsive */
@media(max-width: 950px) {
  .circular-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .circular-diagram {
    transform: scale(0.85);
  }

  .circular-content-box {
    max-width: 100%;
    width: 100%;
  }
}

@media(max-width: 500px) {
  .circular-diagram {
    transform: scale(0.65);
  }

  .circular-header h2 {
    font-size: 32px;
  }

  .circular-wrapper {
    gap: 20px;
  }

  .cycle-card {
    padding: 30px;
  }
}




#parwah-testimonials {
  background: none;
  padding: 80px 20px;
  font-family: 'Poppins', sans-serif;
}

#parwah-testimonials .testimonials-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

#parwah-testimonials .testimonial-card {
  background: #452b75;
  padding: 40px 35px;
  border-radius: 22px;
  width: 340px;
  color: #e9e4ff;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  transition: transform .3s ease, box-shadow .3s ease;
}

#parwah-testimonials .testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

#parwah-testimonials .quote-mark {
  font-size: 60px;
  color: #9f8cff;
  position: absolute;
  top: 15px;
  left: 25px;
  opacity: .5;
}

#parwah-testimonials .testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  margin-top: 20px;
  margin-bottom: 30px;
  color: #d6ccff;
}

#parwah-testimonials .user {
  display: flex;
  align-items: center;
  gap: 15px;
}

#parwah-testimonials .avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: white;
  font-size: 18px;
}

#parwah-testimonials .avatar.green {
  background: #6a8f7b;
}

#parwah-testimonials .avatar.blue {
  background: #6b8fb3;
}

#parwah-testimonials .avatar.orange {
  background: #d7774a;
}

#parwah-testimonials .name {
  font-weight: 600;
  font-size: 18px;
  color: #ffffff;
}

@media(max-width:900px) {

  #parwah-testimonials .testimonials-container {
    flex-direction: column;
    align-items: center;
  }

}