:root {
    --dark-navy: rgb(17, 34, 80); /* Royal Blue */
    /* --accent-gold: #E0C58F; Quicksand Gold */
    --accent-gold: #E4D3B4; /* Quicksand Gold */
    --accent-dark: #333333; /*Dark charcoal/black for text/icons */
    --primary-blue: rgb(48, 80, 112)        ; /* Sapphire */
    --light-bg: #F5F0E9; /* Swan Wing */
    --light-text: #D9CBC2; /* Shellstone subtle text */
}
body {
    font-family: 'Lato', sans-serif;
}
.title-bar {
    width: 10px;
    height: 35px;
    background-color: var(--accent-gold);
    display: inline-block;
}

/* Headings: Montserrat */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}
.whymentora {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: black;
    font-size: clamp(16px, 4vw, 20px);
    line-height: 1.6;
}

.about {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: black;
    font-size: clamp(14px, 3.5vw, 16px);
    line-height: 1.5;
}

.apply-btn {
    font-weight: 800;
    padding: 8px 20px;
    background-color: var(--accent-gold) !important;
    border-color: var(--accent-gold) !important;
    color: var(--dark-navy) !important;
    transition: 0.3s;
    /* border-radius: 20px; */
}

.apply-btn:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}
.container h5{
    color:  rgb(17, 34, 80);
}
.learn-btn{
    background-color:transparent;
    border: var(--accent-gold) 3px solid;
    color: var(--dark-navy);
    margin-left: 0rem !important;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}
.learn-btn:hover{
    background-color:var(--accent-gold);
    border: var(--accent-gold) 3px solid;
    color: var(--dark-navy);
    }
/* Testimonial Card Equal Height */
/* ================= TESTIMONIAL SWIPER EQUAL HEIGHT ================= */

/* Make swiper slides stretch */
.swiper-slide {
    display: flex;
    height: auto;
}

/* Ensure wrapper stretches children */
.swiper-wrapper {
    align-items: stretch;
}

/* Card full height */
.testimonial-card {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 25px;
    border-radius: 12px;
}

/* Center image */
.testimonial-img {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.testimonial-img img {
    object-fit: cover;
    /* border: 3px solid #E0C58F; */
}

/* Review area takes equal space */
.testimonial-content {
    flex-grow: 1;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
}

/* Review text */
.testimonial-text {
    font-size: 14px;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.6;
}

/* Footer always at bottom */
.testimonial-footer {
    margin-top: 20px;
}

/* Card polish */
.testimonialSwiper .card {
    border-radius: 10px;
}
/* ===== FORCE SAME HEIGHT TESTIMONIAL CARDS ===== */

.swiper-slide {
    display: flex;
}

.testimonial-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 25px;
    border-radius: 12px;
}

/* ⭐ FIX: lock content height */
.testimonial-content {
    min-height: 140px;   /* 👈 KEY LINE */
    display: flex;
    align-items: center;
}

/* Text styling */
.testimonial-text {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    
}

/* Footer pinned bottom */
.testimonial-footer {
    margin-top: auto;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color:var(--dark-navy);
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
