:root {
    --navy: #002D62;
    --yellow: #FFD700;
    --light-blue: #6A89CC;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* --- Navigation Styles --- */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--yellow);
    padding: 10px 5%;
}:root {
    --navy: #002D62;
    --yellow: #FFD700;
    --light-blue: #6A89CC;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

/* --- Navigation Styles --- */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--yellow);
    padding: 10px 5%;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.school-badge {
    height: 50px;
    width: 50px;
    border-radius: 50%; /* Makes logo circular */
    object-fit: cover;
    background: white;
}

.school-name {
    font-weight: bold;
    color: var(--navy);
    font-size: 1.2rem;
}

.utility-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-store {
    background: var(--navy);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.main-nav {
    background-color: var(--navy);
    padding: 15px 5%;
    display: flex;
    justify-content: flex-end; /* Pushes main links to the right */
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
}

/*TEMPORARY CSS*/
/* Hero Container */
.hero-session {
  position: relative;
  height: 80vh; /* Adjust height as needed */
  min-height: 500px;
  background-image: url('cover page final.jpg'); /* Replace with your image link */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-end; /* Pushes content to the right */
}

/* The Gradient Overlay */
.hero-overlay {
  width: 100%;
  height: 100%;
  /* Fades from transparent on the left to solid Navy on the right */
  background: linear-gradient(to right, rgba(0, 33, 71, 0.1) 0%, rgba(0, 33, 71, 0.8) 70%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10%;
}

/* Text Content */
.hero-content {
  max-width: 500px;
  color: #ffffff;
  text-align: left;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #e0e0e0; /* Light grey/blue for subtext */
}

/* The Yellow CTA Button */
.cta-button {
  background-color: #ffcc00; /* Your Yellow */
  color: #002147; /* Your Navy */
  padding: 15px 35px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  display: inline-block;
}

.cta-button:hover {
  transform: scale(1.05);
  background-color: #ffdb4d;
}

/* --- Responsive Adjustments --- */

/* Tablets (Portrait) */
@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-overlay {
    background: linear-gradient(to top, rgba(0, 33, 71, 0.9), rgba(0, 33, 71, 0.2));
    justify-content: center;
    text-align: center;
  }
  .hero-session {
    justify-content: center;
  }
  .hero-content {
    text-align: center;
  }
}

/* Mobile Phones */
@media (max-width: 576px) {
  .hero-session {
    height: 70vh;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
  .cta-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
}
/* Entrance Animations */
.reveal {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .blob-shape {
        transform: none;
        border-radius: 20px;
        margin-top: 50px;
    }
    .floating-image-card {
        width: 100%;
    }
}

/* Curriculum Section Styling */
.subjects-section {
    display: flex; /* Enables flexbox layout */
    flex-wrap: wrap; /* Allows cards to drop to the next line on small screens */
    justify-content: center; /* Centers the cards if there's extra space */
    gap: 20px; /* Adds consistent spacing between cards */
    width: 100%; /* Ensures it tries to take up full available width */
    max-width: 1200px; /* Match this to the max-width of your Grade section */
    margin: 0 auto; /* Centers the entire container on the page */
}

.section-title {
    color: #002147; /* School Navy */
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block; 
    width: 60px;
    height: 4px;
    background: #FFD700; /* School Gold */
    margin: 10px auto;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.subject-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-bottom: 5px solid #002147;
    flex: 1 1 300px; /* Grow to fill space, but don't get smaller than 300px */
    max-width: 100%; /* Ensures it doesn't overflow on mobile */
}

.subject-card:hover {
    transform: translateY(-10px);
    border-bottom: 5px solid #FFD700;
}

.image-wrapper {
    height: 200px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.subject-card:hover .image-wrapper img {
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
}

.card-content i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.card-content h3 {
    color: #002147;
    margin: 0;
    font-size: 1.25rem;
}


/*CLASSES STYLING*/
/* General Section Setup */
.classes-section {
    padding: 80px 10%;
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.section-title {
    text-align: center;
    color: #002147; /* Your Navy Blue */
    font-size: 2.2rem;
    margin-bottom: 50px;
    position: relative;
}

/* The Grid System */
.class-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

/* Card Styling & Animations */
.class-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 0 1 calc(33.333% - 30px); /* Desktop: 3 per row */
    display: flex;
    flex-direction: column;
}

.class-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.image-wrapper {
    height: 220px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.class-card:hover img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
    text-align: center;
    border-bottom: 5px solid #FFCC00; /* Your Yellow Accent */
}

.card-content h3 {
    color: #002147;
    margin-bottom: 12px;
}

.card-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* --- RESPONSIVENESS --- */

/* Tablets (Max 992px) */
@media (max-width: 992px) {
    .class-card {
        flex: 0 1 calc(50% - 30px); /* 2 per row */
    }
    .classes-section {
        padding: 60px 5%;
    }
}

/* Mobile Phones (Max 600px) */
@media (max-width: 600px) {
    .class-card {
        flex: 0 1 100%; /* 1 per row */
    }
    .section-title {
        font-size: 1.8rem;
    }
    .classes-section {
        padding: 40px 20px;
    }
}


/* Footer Styling */
.main-footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 60px 20px 20px 20px;
    margin-top: 50px;
    border-top: 5px solid var(--yellow);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-div h3, .footer-div h4 {
    color: var(--yellow);
    margin-bottom: 20px;
}

.footer-logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo {
    width: 50px;
    height: auto;
    background: white;
    border-radius: 50%;
    padding: 5px;
}

.footer-div p {
    line-height: 1.6;
    font-size: 0.95rem;
    color: #cbd5e0;
}

/* Quick Links Styling */
.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links ul li {
    margin-bottom: 12px;
}

.quick-links ul li a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-links ul li a:hover {
    color: var(--yellow);
    padding-left: 8px;
}

/* Social Grid Styling */
.social-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-item {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-item:hover {
    color: var(--sky-blue);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #a0aec0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo-area {
        justify-content: center;
    }
    .quick-links ul li a, .social-item {
        justify-content: center;
    }
}






/* --- Desktop Styles (Keep your existing right-alignment) --- */
.main-nav {
    background-color: #002D62;
    display: flex;
    justify-content: flex-end;
    padding: 15px 5%;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.menu-toggle {
    display: none; /* Hidden on large screens */
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    margin-right: 20px;
}

.nav-links-container {
    display: flex;
    gap: 30px;
}

/* --- Mobile Responsive Styles (Screens smaller than 768px) --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show hamburger button */
    }

    .nav-links-container {
        display: none; /* Hide links by default */
        flex-direction: column; /* Stack vertically */
        position: absolute;
        top: 100%; /* Shows right below the navy bar */
        left: 0;
        width: 100%;
        background-color: #002D62;
        gap: 0;
        z-index: 1000;
    }

    /* Vertical "Divided" Shape for each link */
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 20px;
    }

    /* When JavaScript adds the 'active' class, show the menu */
    .nav-links-container.active {
        display: flex;
        animation: fadeIn 0.3s ease-in-out;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 768px) {
  .subject-card {
    width: 48%; /* 2 columns */
  }
}

/* For Mobile (screens smaller than 480px) */
@media (max-width: 480px) {
  .subject-card {
    width: 100%; /* 1 column (full width) */
  }
}


/*----------STAFF IMAGE SLIDER----*/
/* --- Section Container --- */
.staff-section {
    padding: 40px 0;
    text-align: center;
    background-color: #ffffff;
    font-family: 'Arial', sans-serif;
}

.section-title {
    color: #003366; /* Dark Blue from your site */
    margin-bottom: 5px;
    font-weight: bold;
}

.underline {
    width: 50px;
    height: 3px;
    background-color: #ffcc00; /* Yellow from your site */
    margin: 0 auto 30px auto;
}

/* --- The Display Stage (One at a time) --- */
.slider-stage {
    width: 90%;            /* Width on Mobile */
    max-width: 1000px;     /* Maximum width on Desktop */
    margin: 0 auto;
    overflow: hidden;      /* Hides the other images */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.slider-wrapper {
    display: flex;
    width: 700%; /* 7 images total (6 + 1 clone) */
    animation: slideShow 35s cubic-bezier(0.85, 0, 0.15, 1) infinite;
}

.slide {
    width: 100%;
}

.slide img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* --- Responsive Image Heights --- */
/* Mobile: Square-ish for smaller screens */
.slide img {
    height: 350px;
}

/* Tablet: Medium height */
@media (min-width: 768px) {
    .slide img {
        height: 500px;
    }
}

/* Desktop: Large landscape view */
@media (min-width: 1024px) {
    .slide img {
        height: 600px;
    }
}

/* --- Animation Logic --- 
   Moves by 1/7th (14.28%) for each image.
   We stay at each image for a while, then move quickly.
*/
@keyframes slideShow {
    0%, 12%   { transform: translateX(0); }
    14%, 26%  { transform: translateX(-14.28%); }
    28%, 40%  { transform: translateX(-28.57%); }
    42%, 54%  { transform: translateX(-42.85%); }
    56%, 68%  { transform: translateX(-57.14%); }
    70%, 82%  { transform: translateX(-71.42%); }
    84%, 100% { transform: translateX(-85.71%); }
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 12px;
}

.school-badge {
    height: 50px;
    width: 50px;
    border-radius: 50%; /* Makes logo circular */
    object-fit: cover;
    background: white;
}

.school-name {
    font-weight: bold;
    color: var(--navy);
    font-size: 1.2rem;
}

.utility-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-store {
    background: var(--navy);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}

.main-nav {
    background-color: var(--navy);
    padding: 15px 5%;
    display: flex;
    justify-content: flex-end; /* Pushes main links to the right */
}

.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 30px;
    font-weight: 500;
}

/* --- Hero Section Styles --- */
.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.yellow-corner {
    position: absolute;
    top: 0; right: 0;
    width: 40%; height: 300px;
    background: var(--yellow);
    z-index: -3;
}

.blue-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 60%; height: 100%;
    background: var(--light-blue);
    z-index: -2;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    width: 90%;
    margin: 0 auto;
    z-index: 1;
}

.hero-text-left h1 {
    font-size: 3.5rem;
    color: var(--navy);
    margin-bottom: 20px;
}

.floating-image-card {
    position: relative;
    width: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.floating-image-card img {
    width: 100%;
    display: block;
}

.inner-overlay {
    position: absolute;
    top: 50%; left: 20px;
    transform: translateY(-50%);
    background: rgba(106, 137, 204, 0.9);
    color: white;
    padding: 20px;
    width: 200px;
    border-radius: 10px;
}

.blob-shape {
    background: var(--navy);
    color: white;
    padding: 60px;
    border-radius: 80px 0 0 150px; /* Recreates the curved blue shape */
    transform: translateX(50px);
}

.btn-yellow {
    background: var(--yellow);
    color: var(--navy);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 20px;
    cursor: pointer;
}

/* Entrance Animations */
.reveal {
    animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}


/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .blob-shape {
        transform: none;
        border-radius: 20px;
        margin-top: 50px;
    }
    .floating-image-card {
        width: 100%;
    }
}

/* Curriculum Section Styling */
.subjects-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    color: #002147; /* School Navy */
    font-size: 2.5rem;
    margin-bottom: 40px;
    position: relative;
    text-transform: uppercase;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #FFD700; /* School Gold */
    margin: 10px auto;
}

.subjects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.subject-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-bottom: 5px solid #002147;
}

.subject-card:hover {
    transform: translateY(-10px);
    border-bottom: 5px solid #FFD700;
}

.image-wrapper {
    height: 200px;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.subject-card:hover .image-wrapper img {
    transform: scale(1.1);
}

.card-content {
    padding: 20px;
}

.card-content i {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 15px;
}

.card-content h3 {
    color: #002147;
    margin: 0;
    font-size: 1.25rem;
}


/* Footer Styling */
.main-footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 60px 20px 20px 20px;
    margin-top: 50px;
    border-top: 5px solid var(--yellow);
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
}

.footer-div h3, .footer-div h4 {
    color: var(--yellow);
    margin-bottom: 20px;
}

.footer-logo-area {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-logo {
    width: 50px;
    height: auto;
    background: white;
    border-radius: 50%;
    padding: 5px;
}

.footer-div p {
    line-height: 1.6;
    font-size: 0.95rem;
    color: #cbd5e0;
}

/* Quick Links Styling */
.quick-links ul {
    list-style: none;
    padding: 0;
}

.quick-links ul li {
    margin-bottom: 12px;
}

.quick-links ul li a {
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-links ul li a:hover {
    color: var(--yellow);
    padding-left: 8px;
}

/* Social Grid Styling */
.social-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.social-item {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-item:hover {
    color: var(--sky-blue);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.8rem;
    color: #a0aec0;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo-area {
        justify-content: center;
    }
    .quick-links ul li a, .social-item {
        justify-content: center;
    }
}






/* --- Desktop Styles (Keep your existing right-alignment) --- */
.main-nav {
    background-color: #002D62;
    display: flex;
    justify-content: flex-end;
    padding: 15px 5%;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.menu-toggle {
    display: none; /* Hidden on large screens */
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    margin-right: 20px;
}

.nav-links-container {
    display: flex;
    gap: 30px;
}

/* --- Mobile Responsive Styles (Screens smaller than 768px) --- */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show hamburger button */
    }

    .nav-links-container {
        display: none; /* Hide links by default */
        flex-direction: column; /* Stack vertically */
        position: absolute;
        top: 100%; /* Shows right below the navy bar */
        left: 0;
        width: 100%;
        background-color: #002D62;
        gap: 0;
        z-index: 1000;
    }

    /* Vertical "Divided" Shape for each link */
    .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 20px;
    }

    /* When JavaScript adds the 'active' class, show the menu */
    .nav-links-container.active {
        display: flex;
        animation: fadeIn 0.3s ease-in-out;
    }
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}


@media (max-width: 768px) {
  .subject-card {
    width: 48%; /* 2 columns */
  }
}

/* For Mobile (screens smaller than 480px) */
@media (max-width: 480px) {
  .subject-card {
    width: 100%; /* 1 column (full width) */
  }

}


/*--------TESTIMONIALS----*/
/* Testimonials Section Styling */
.testimonials-section {
    padding: 80px 0;
    background-color: #f4f7f9;
    overflow: hidden; /* Important for the slider */
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    position: relative;
}

/* The Track that moves */
.testimonial-track {
    display: flex;
    width: calc(350px * 8); /* Adjust based on card width + gap */
    animation: scroll 30s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused; /* Slides stop when user hovers */
}

/* Individual Card Styling */
.testimonial-card {
    background: white;
    width: 350px;
    margin: 0 15px;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 33, 71, 0.08);
    border-top: 4px solid #FFD700; /* Gold Accent */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 33, 71, 0.15);
}

.quote-icon {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.message {
    color: #444;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #002147;
    object-fit: cover;
}

.parent-info h4 {
    color: #002147;
    margin: 0;
    font-size: 1rem;
}

.parent-info span {
    color: #666;
    font-size: 0.85rem;
}

/* Animation Keyframes */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 4)); } /* Moves by half the track length */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonial-card {
        width: 280px; /* Slightly smaller on mobile */
    }
    @keyframes scroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-280px * 4)); }
    }
}



