/* Hero Section */
.hero-premium {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--deep-plum);
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: url('../images/school-building.jpeg') center center/cover no-repeat;
    z-index: 1;
    filter: brightness(0.8);
}

.hero-particles {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(76, 28, 34, 0.466) 60%, rgb(234, 197, 122, 0.466) 100%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    color: var(--text-light);
    text-align: center;
    max-width: 1300px;
    padding: 2.5rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s ease forwards 0.6s;
}

.hero-title {
    font-family: 'Merriweather', serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.05em;
}

.typing-text {
    display: inline-block;
    border-right: 4px solid var(--warm-brown);
    animation: blinkCursor 0.8s step-end infinite;
}

@keyframes blinkCursor {
    50% { border-color: transparent; }
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

.hero-desc {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-light);
    opacity: 0.95;
    font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 1.5rem;
  margin-top: 2.2rem;
      justify-content: center;

      
}
.hero-btn-apply {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  background: rgba(234,197,122,0.14);
  color: #eac57a;
  font-family: 'Inter', sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  padding: 1rem 2.7rem 1rem 2.2rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 3px 18px rgba(234,197,122,0.09);
  letter-spacing: 0.03em;
  overflow: hidden;
  position: relative;
  transition: 
    background 0.25s cubic-bezier(.4,0,.2,1),
    color 0.22s cubic-bezier(.4,0,.2,1),
    box-shadow 0.22s cubic-bezier(.4,0,.2,1),
    transform 0.13s;
}

.hero-btn-apply span {
  position: relative;
  z-index: 2;
  font-family: 'Poppins', 'Inter', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
}

.hero-btn-apply .arrow-circle {
  display: flex;
  align-items: center;
  transition: transform 0.28s cubic-bezier(.4,0,.2,1);
}

.hero-btn-apply svg {
  display: block;
  transition: stroke 0.2s, transform 0.28s cubic-bezier(.4,0,.2,1);
}

.hero-btn-apply:hover,
.hero-btn-apply:focus {
  background: #eac57a;
  color: #481f24;
  box-shadow: 0 8px 32px rgba(234,197,122,0.19);
  transform: translateY(-2px) scale(1.045);
}

.hero-btn-apply:hover .arrow-circle,
.hero-btn-apply:focus .arrow-circle {
  transform: translateX(7px) scale(1.08);
}

.hero-btn-apply:hover svg circle,
.hero-btn-apply:focus svg circle,
.hero-btn-apply:hover svg path,
.hero-btn-apply:focus svg path {
  stroke: #481f24;
}

.hero-btn-apply:active {
  transform: scale(0.98);
  box-shadow: 0 2px 8px rgba(234,197,122,0.08);
}

@media (max-width: 600px) {
  .hero-btn-apply {
    font-size: 1rem;
    padding: 0.7rem 1.5rem 0.7rem 1.2rem;
  }
  .hero-btn-apply .arrow-circle {
    margin-left: 0.5rem;
  }
  .hero-btn-apply svg {
    width: 18px;
    height: 18px;
  }
}


@media (max-width: 900px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-desc {
        font-size: 1.15rem;
    }
    .hero-btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        min-width: 140px;
    }
}

@media (max-width: 600px) {
    .hero-premium {
        min-height: 80vh;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-desc {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    .hero-btns {
        gap: 1.5rem;
    }
    .hero-btn {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
        min-width: 120px;
    }
    .hero-particles {
        display: none; /* Disable particles on small screens for performance */
    }
}

@media (max-width: 380px) {
    .hero-title {
        font-size: 1.8rem;
    }
    .hero-btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
        min-width: 100px;
    }
}

 /* hero css ends */


/* ====== Principal's Desk Section (Modern Design) ====== */
.principal-desk {
    background: linear-gradient(135deg, var(--background) 0%, #f0f4f8 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.principal-desk__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    padding: 2rem;
}

.principal-desk__content {
    background: var(--section-bg);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(72, 31, 36, 0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-right: 4px solid var(--modern-green);
}

.principal-desk__content:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(72, 31, 36, 0.2);
}

.principal-desk__title {
    font-family: "Merriweather", serif;
    font-size: 2.4rem;
    color: var(--deep-plum);
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 1rem;
    background: linear-gradient(to right, var(--deep-plum), var(--forest-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.principal-desk__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--golden-yellow), var(--modern-green));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline 1s ease forwards 0.5s;
}

.principal-desk__name {
    font-size: 1.35rem;
    color: var(--forest-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

.principal-desk__text {
    font-size: 1.15rem;
    color: var(--deep-plum);
    line-height: 1.9;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.principal-desk__cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, var(--golden-yellow), #f4d38e);
    color: var(--deep-plum);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(234, 197, 122, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

.principal-desk__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--modern-green);
    transition: left 0.4s ease;
    z-index: 0;
}

.principal-desk__cta:hover::before {
    left: 0;
}

.principal-desk__cta:hover {
    color: var(--text-light);
    box-shadow: 0 8px 20px rgba(234, 197, 122, 0.6);
    transform: translateY(-5px);
}

.principal-desk__cta span {
    position: relative;
    z-index: 1;
}

.principal-desk__photo {
    position: relative;
    z-index: 1;
    width: 543px;
    height: 341px;
    max-width: 100%;
    box-sizing: border-box;
}

.principal-desk__photo img {
    width: 543px;
    height: 341px;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid var(--golden-yellow);
    box-shadow: 0 8px 24px rgba(72, 31, 36, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: scale(0.95);
    animation: imagePop 0.8s ease forwards 0.3s;
    max-width: 100%;
    box-sizing: border-box;
}

.principal-desk__photo img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(72, 31, 36, 0.2);
}

/* ====== Responsive Design for Principal's Desk ====== */
@media (max-width: 1200px) {
    .principal-desk__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
        justify-items: center;
    }

    .principal-desk__photo {
        width: 543px;
        height: 341px;
    }

    .principal-desk__content {
        padding: 2rem;
        max-width: 600px;
    }

    .principal-desk__title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .principal-desk {
        padding: 3rem 0;
    }

    .principal-desk__photo {
        width: 434px;
        height: 273px;
    }

    .principal-desk__photo img {
        width: 434px;
        height: 273px;
    }

    .principal-desk__title {
        font-size: 1.8rem;
    }

    .principal-desk__name {
        font-size: 1.2rem;
    }

    .principal-desk__text {
        font-size: 1rem;
    }

    .principal-desk__cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .principal-desk {
        padding: 2rem 0;
    }

    .principal-desk__container {
        padding: 1rem;
    }

    .principal-desk__content {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .principal-desk__photo {
        width: 326px;
        height: 205px;
    }

    .principal-desk__photo img {
        width: 326px;
        height: 205px;
        border-radius: 12px;
    }

    .principal-desk__title {
        font-size: 1.5rem;
    }

    .principal-desk__name {
        font-size: 1.1rem;
    }

    .principal-desk__text {
        font-size: 0.95rem;
    }

    .principal-desk__cta {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .principal-desk__photo {
        width: 245px;
        height: 154px;
    }

    .principal-desk__photo img {
        width: 245px;
        height: 154px;
        border-radius: 12px;
    }

    .principal-desk__content {
        padding: 1.2rem;
    }

    .principal-desk__title {
        font-size: 1.5rem;
    }

    .principal-desk__name {
        font-size: 1rem;
    }

    .principal-desk__text {
        font-size: 0.9rem;
    }

    .principal-desk__cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* ====== Vice Principal's Desk Section (Modern Design) ====== */
.vice-principal-desk {
    background: linear-gradient(135deg, var(--section-bg) 0%, #e8f0f5 100%);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.vice-principal-desk__container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
    padding: 2rem;
}

.vice-principal-desk__content {
    background: var(--background);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 8px 24px rgba(72, 31, 36, 0.15);
    position: relative;
    z-index: 2;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border-left: 4px solid var(--modern-green);
}

.vice-principal-desk__content:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(72, 31, 36, 0.2);
}

.vice-principal-desk__title {
    font-family: "Merriweather", serif;
    font-size: 2.4rem;
    color: var(--deep-plum);
    margin-bottom: 1rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 1rem;
    background: linear-gradient(to right, var(--deep-plum), var(--forest-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.vice-principal-desk__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(to right, var(--golden-yellow), var(--modern-green));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underline 1s ease forwards 0.5s;
}

.vice-principal-desk__name {
    font-size: 1.35rem;
    color: var(--forest-green);
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.7s;
}

.vice-principal-desk__text {
    font-size: 1.15rem;
    color: var(--deep-plum);
    line-height: 1.9;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 0.9s;
}

.vice-principal-desk__cta {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(45deg, var(--golden-yellow), #f4d38e);
    color: var(--deep-plum);
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(234, 197, 122, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards 1.1s;
}

.vice-principal-desk__cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--modern-green);
    transition: left 0.4s ease;
    z-index: 0;
}

.vice-principal-desk__cta:hover::before {
    left: 0;
}

.vice-principal-desk__cta:hover {
    color: var(--text-light);
    box-shadow: 0 8px 20px rgba(234, 197, 122, 0.6);
    transform: translateY(-5px);
}

.vice-principal-desk__cta span {
    position: relative;
    z-index: 1;
}

.vice-principal-desk__photo {
    position: relative;
    z-index: 1;
    width: 543px;
    height: 341px;
    max-width: 100%;
    box-sizing: border-box;
}

.vice-principal-desk__photo img {
    width: 543px;
    height: 341px;
    object-fit: cover;
    border-radius: 16px;
    border: 4px solid var(--golden-yellow);
    box-shadow: 0 8px 24px rgba(72, 31, 36, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    opacity: 0;
    transform: scale(0.95);
    animation: imagePop 0.8s ease forwards 0.3s;
    max-width: 100%;
    box-sizing: border-box;
}

.vice-principal-desk__photo img:hover {
    transform: scale(1.03);
    box-shadow: 0 12px 32px rgba(72, 31, 36, 0.2);
}

/* ====== Responsive Design for Vice Principal's Desk ====== */
@media (max-width: 1200px) {
    .vice-principal-desk__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
        justify-items: center;
    }

    .vice-principal-desk__photo {
        width: 543px;
        height: 341px;
    }

    .vice-principal-desk__content {
        padding: 2rem;
        max-width: 600px;
    }

    .vice-principal-desk__title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .vice-principal-desk {
        padding: 3rem 0;
    }

    .vice-principal-desk__photo {
        width: 434px;
        height: 273px;
    }

    .vice-principal-desk__photo img {
        width: 434px;
        height: 273px;
    }

    .vice-principal-desk__title {
        font-size: 1.8rem;
    }

    .vice-principal-desk__name {
        font-size: 1.2rem;
    }

    .vice-principal-desk__text {
        font-size: 1rem;
    }

    .vice-principal-desk__cta {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .vice-principal-desk {
        padding: 2rem 0;
    }

    .vice-principal-desk__container {
        padding: 1rem;
    }

    .vice-principal-desk__content {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .vice-principal-desk__photo {
        width: 326px;
        height: 205px;
    }

    .vice-principal-desk__photo img {
        width: 326px;
        height: 205px;
        border-radius: 12px;
    }

    .vice-principal-desk__title {
        font-size: 1.5rem;
    }

    .vice-principal-desk__name {
        font-size: 1.1rem;
    }

    .vice-principal-desk__text {
        font-size: 0.95rem;
    }

    .vice-principal-desk__cta {
        padding: 0.7rem 1.8rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .vice-principal-desk__photo {
        width: 245px;
        height: 154px;
    }

    .vice-principal-desk__photo img {
        width: 245px;
        height: 154px;
        border-radius: 12px;
    }

    .vice-principal-desk__content {
        padding: 1.2rem;
    }

    .vice-principal-desk__title {
        font-size: 1.5rem;
    }

    .vice-principal-desk__name {
        font-size: 1rem;
    }

    .vice-principal-desk__text {
        font-size: 0.9rem;
    }

    .vice-principal-desk__cta {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
}


/* ====== Highlights Section ====== */
.highlights {
    background: var(--section-bg);
    padding: 3rem 0;
}

.highlights-flex {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.highlight-box {
    flex: 1 1 250px;
    background: var(--background);
    color: var(--deep-plum);
    border-left: 5px solid var(--modern-green);
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(72, 31, 36, 0.05);
    padding: 2rem 1.5rem;
    margin: 1rem 0;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}

.highlight-box:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 6px 24px rgba(72, 31, 36, 0.10);
}

.highlight-box h2 {
    color: var(--forest-green);
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
}

.next-steps {
    background: var(--section-bg, #f6f6f6);
    padding: 3rem 0 2rem 0;
    text-align: center;
}

.next-steps h2 {
    font-size: 2rem;
    color: var(--deep-plum, #481f24);
    margin-bottom: 2rem;
}

.next-steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

/* ====== Fast Facts ====== */
.fast-facts {
    background: var(--background, #fff);
    padding: 2rem 0 1.5rem 0;
    text-align: center;
}

.facts-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.fact {
    background: var(--section-bg, #f6f6f6);
    border-radius: 12px;
    padding: 1.2rem 2rem;
    min-width: 120px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 8px rgba(72,31,36,0.07);
}

.fact-number {
    font-size: 2rem;
    color: var(--modern-green, #3ec381);
    font-weight: 800;
    display: block;
}

.fact-label {
    font-size: 1rem;
    color: var(--deep-plum, #481f24);
    font-weight: 500;
    margin-top: 0.2rem;
}

@media (max-width: 700px) {
    .facts-grid {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ====== Testimonials ====== */
.testimonials {
    background: var(--section-bg);
    padding: 3rem 0;
    text-align: center;
}

.testimonials h2 {
    font-size: 2rem;
    color: var(--deep-plum);
    margin-bottom: 2rem;
}

.testimonials-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    padding: 0 2rem;
}

.testimonials-track {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 0 1rem;
}

.testimonials-slider {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    user-select: none;
    touch-action: pan-y pinch-zoom;
}

.testimonial-item {
    background: var(--background);
    border-radius: 1.5rem;
    box-shadow: 0 6px 32px -4px rgba(76,28,34,0.11), 0 1.5px 7px rgba(62,195,129,0.04);
    padding: 2rem 1.5rem;
    flex: 0 0 calc(90% - 1.5rem);
    max-width: calc(90% - 1.5rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 200px;
    overflow: hidden;
}

.testimonial-item p {
    font-size: 1.1rem;
    color: var(--deep-plum);
    margin-bottom: 1rem;
    line-height: 1.4;
    overflow-wrap: break-word;
}

.testimonial-item footer {
    font-size: 0.9rem;
    color: var(--forest-green);
    font-weight: 600;
    line-height: 1.3;
}

@media (max-width: 600px) {
    .testimonial-item {
        flex: 0 0 calc(95% - 1rem);
        max-width: calc(95% - 1rem);
        padding: 1.5rem 1rem;
        min-height: auto;
    }

    .testimonial-item p {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }

    .testimonial-item footer {
        font-size: 0.85rem;
    }

    .testimonials-carousel {
        padding: 0 1.5rem;
    }

    .testimonials-track {
        padding: 0 0.5rem;
    }

    .testimonials-slider {
        gap: 1rem;
    }
}

@media (min-width: 600px) {
    .testimonial-item {
        flex: 0 0 calc(50% - 1.5rem);
        max-width: calc(50% - 1.5rem);
    }
}

@media (min-width: 900px) {
    .testimonial-item {
        flex: 0 0 calc(33.33% - 1.5rem);
        max-width: calc(33.33% - 1.5rem);
    }
    .testimonials-slider {
        gap: 2rem;
    }
}

@media (min-width: 1200px) {
    .testimonial-item {
        flex: 0 0 calc(25% - 1.5rem);
        max-width: calc(25% - 1.5rem);
    }
}

.testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 40px -4px rgba(76,28,34,0.15);
}

.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--modern-green);
    color: var(--text-light);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(72,31,36,0.07);
}

.testimonial-prev {
    left: 0.5rem;
}

.testimonial-next {
    right: 0.5rem;
}

@media (max-width: 600px) {
    .testimonial-nav {
        width: 32px;
        height: 32px;
        font-size: 1.2rem;
    }

    .testimonial-prev {
        left: 0.2rem;
    }

    .testimonial-next {
        right: 0.2rem;
    }
}

.testimonial-nav:hover,
.testimonial-nav:focus {
    background: var(--golden-yellow);
    color: var(--deep-plum);
}

.testimonial-nav svg {
    display: block;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    background: var(--gray);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.testimonial-dot.active {
    background: var(--modern-green);
    transform: scale(1.3);
}

@media (max-width: 600px) {
    .testimonial-dots {
        margin-top: 1rem;
        gap: 0.5rem;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
    }
}
