:root {
    /* --primary-blue: #1a3a8f; */
    --primary-blue: #1a3a8f;
    --secondary-purple: #6a4c9c;
    --accent-gold: #d4af37;
    --light-blue: #e6f0ff;
    --light-purple: #f2eef7;
    --dark-text: #333;
    --light-text: #f8f9fa;
    --gray-bg: #f8f9fa;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

/* Bannière d'information urgente */
.info-banner {
    background: linear-gradient(
        90deg,
        var(--primary-blue),
        var(--secondary-purple)
    );
    color: white;
    padding: 12px 0;
    text-align: center;
    position: sticky;
    top: 0;
    z-index: 1030;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.info-banner .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    position: relative;
}

.info-banner p {
    margin: 0;
    font-weight: 500;
    font-size: 1.1rem;
    white-space: nowrap;
    animation: marquee 15s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

.info-banner .btn {
    margin-left: 20px;
    background-color: var(--accent-gold);
    border: none;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s;
    z-index: 2;
    position: relative;
}

.info-banner .btn:hover {
    background-color: #c19b2d;
    transform: translateY(-2px);
}

.info-banner .close-banner {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    margin-left: 15px;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
    z-index: 2;
    position: relative;
}

.info-banner .close-banner:hover {
    opacity: 1;
}

/* Navbar */

.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    padding: 15px 0;
    position: sticky;
    top: 50px;
    z-index: 1020;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.navbar-brand img {
    height: 40px;
    margin-right: 6px;
}


.nav-link {
    font-weight: 500;
    margin: 0 10px;
    color: var(--dark-text);
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 10px 0;
}

.btn-inscription {
    background-color: var(--accent-gold);
    color: white;
    border-radius: 30px;
    padding: 10px 25px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
}

.btn-inscription:hover {
    background-color: #c19b2d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

/* Hero Carousel avec Typewriter Effect */
.hero-carousel {
    height: 80vh;
    position: relative;
    overflow: hidden;
}

.carousel-item {
    height: 80vh;
    background-size: cover;
    background-position: center;
}

.carousel-caption {
    bottom: 30%;
    text-align: left;
    max-width: 700px;
    margin-left: 10%;
}

.typewriter-text {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background-color: var(--primary-blue);
    padding: 4px;
    color: white;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
    position: relative;
    display: inline-block;
}

.typewriter-text::after {
    content: "|";
    position: absolute;
    right: -10px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%,
    50% {
        opacity: 1;
    }
    51%,
    100% {
        opacity: 0;
    }
}

.carousel-caption p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.7s;
}

.carousel-caption .btn {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.9s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background-color: var(--primary-blue);
    border: none;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #152c6e;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Sections générales */
section {
    padding: 14px 0;
}


.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.section-title p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    color: #666;
}

.section-title::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(
        to right,
        var(--primary-blue),
        var(--secondary-purple)
    );
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

/* Section À propos */
.about-section {
    background-color: var(--light-blue); 
}

.about-section,.why-choose-section{
      padding: 50px;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 50px auto;
}

.timeline::after {
    content: "";
    position: absolute;
    width: 6px;
    background-color: var(--primary-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-content {
    padding: 20px 30px;
    background-color: white;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-item:nth-child(odd) .timeline-content::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: white;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.timeline-item:nth-child(even) .timeline-content::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    left: -10px;
    background-color: white;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.timeline-item::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--accent-gold);
    border: 4px solid white;
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(odd)::after {
    right: -10px;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

/* Section Statistiques */
.stats-section {
    background: linear-gradient(
        135deg,
        var(--primary-blue),
        var(--secondary-purple)
    );
    color: white;
}

.stat-item {
    text-align: center;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s, transform 0.8s;
}

.stat-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
}

.stat-text {
    font-size: 1.2rem;
    opacity: 0.9;
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--accent-gold);
}

/* Section Facultés */
/* .faculty-carousel .carousel-item {
    height: auto;
    padding: 50px 0;
}

.faculty-carousel button{
    background-color: var(--primary-blue);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s;
    cursor: pointer;
}

.faculty-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    margin: 15px;
    height: 100%;
}

.faculty-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.faculty-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.faculty-content {
    padding: 25px;
}

.faculty-content h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
} */

/* Section Services */
.services-section {
    background-color: var(--light-purple);
}

.service-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

/* Section Programmes */
.program-filter {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: none;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    padding: 10px 25px;
    margin: 0 10px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: var(--primary-blue);
    color: white;
}

.program-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-img {
    height: 240px;
    background-size: cover;
    background-position: center;
}

.program-content {
    padding: 25px;
}

.program-content h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.program-duration {
    display: inline-block;
    background-color: var(--light-blue);
    color: var(--primary-blue);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Section Pourquoi nous choisir */
.why-choose-section {
    background-color: var(--light-blue);
}

.reason-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    margin-bottom: 30px;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    font-size: 3rem;
    color: var(--accent-gold);
    margin-bottom: 20px;
}

/* Section FAQ */
.faq-section {
    background-color: var(--light-purple);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accordion-button {
    background-color: white;
    color: var(--primary-blue);
    font-weight: 600;
    padding: 20px;
    border: none;
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: var(--light-blue);
    color: var(--primary-blue);
}

.accordion-body {
    padding: 20px;
    background-color: white;
}

/* Section Galerie */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    height: 250px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 58, 143, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    color: white;
    font-size: 2rem;
}

/* Section Vidéos */
.video-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.video-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(212, 175, 55, 0.8);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.video-play-btn:hover {
    background-color: var(--accent-gold);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Section Actualités */
.news-carousel .carousel-item {
    height: auto;
    padding: 50px 0;
}

.news-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    margin: 15px;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
}

.news-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 10px;
}

.news-content h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Section Médias */
.media-section {
    background-color: var(--light-blue);
}

.media-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    margin-bottom: 30px;
}

.media-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.media-logo {
    height: 60px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-logo img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.media-content h4 {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.media-date {
    color: var(--accent-gold);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Section Carte */
.map-section {
    padding: 0;
    height: 500px;
}

#map {
    height: 100%;
    width: 100%;
}

/* Section Contact */
.contact-section {
    background-color: var(--light-blue);
}

.contact-info {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 15px;
    margin-top: 5px;
}

.contact-details h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.social-icons {
    display: flex;
    margin-top: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--accent-gold);
    transform: translateY(-5px);
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(26, 58, 143, 0.25);
}

/* Footer */
footer {
    background-color: #1a1a2e;
    color: white;
    padding: 80px 0 0;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.footer-about {
    margin-bottom: 30px;
}

.footer-links h4 {
    color: white;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-links h4::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--accent-gold);
    bottom: -10px;
    left: 0;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent-gold);
}

.footer-bottom {
    background-color: #0f0f1a;
    padding: 20px 0;
    margin-top: 50px;
    text-align: center;
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--accent-gold);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.scroll-to-top:hover {
    background-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Pop-up d'inscription */
.inscription-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: white;
    border-radius: 15px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    z-index: 10;
}

.popup-close:hover {
    color: var(--primary-blue);
}

.popup-body {
    display: flex;
    flex-wrap: wrap;
}

.popup-left {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background-color: var(--light-blue);
    border-radius: 15px 0 0 15px;
}

.popup-right {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.popup-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.popup-gallery-item {
    flex: 1;
    min-width: 120px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.popup-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.popup-gallery-item:hover img {
    transform: scale(1.1);
}

.popup-video {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #000;
}

.popup-video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.popup-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    gap: 15px;
}

.popup-buttons .btn {
    flex: 1;
}

/* Bannière de consentement aux cookies */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 58, 143, 0.95);
    color: white;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
    margin-right: 20px;
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons .btn {
    white-space: nowrap;
}

/* Responsive */
@media (max-width: 991px) {


.dropdown-menu li a.dropdown-item {
    white-space: normal; /* C'est la ligne clé pour le saut de ligne */
    word-wrap: break-word; /* Assure que les mots longs sont coupés si nécessaire */
    padding-right: 6px;
}

/* Assurez-vous que l'élément parent a de la place */
.dropdown-menu li {
    max-width: 300px; /* Ajustez cette valeur si nécessaire, pour éviter que le menu soit trop large */
}

.hero-carousel {
    height: 40vh;
    position: relative;
    overflow: hidden;
}

    .carousel-item {
    height: 40vh;
    background-size: cover;
    background-position: center;
}
   .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-item:nth-child(odd)::after,
    .timeline-item:nth-child(even)::after {
        left: 21px;
    }

    .timeline-item:nth-child(odd) .timeline-content::after,
    .timeline-item:nth-child(even) .timeline-content::after {
        left: -10px;
        right: auto;
    }

    .carousel-caption {
        margin-left: 5%;
        margin-right: 5%;
    }

    .typewriter-text {
        font-size: 2.5rem;
    }

    .popup-body {
        flex-direction: column;
    }

    .popup-left {
        border-radius: 15px 15px 0 0;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-text {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {


 .hero-carousel {
    height: 46vh;
    position: relative;
    overflow: hidden;
}   


.dropdown-menu li a.dropdown-item {
    white-space: normal; /* C'est la ligne clé pour le saut de ligne */
    word-wrap: break-word; /* Assure que les mots longs sont coupés si nécessaire */
    padding-right: 6px;
}

/* Assurez-vous que l'élément parent a de la place */
.dropdown-menu li {
    max-width: 300px; /* Ajustez cette valeur si nécessaire, pour éviter que le menu soit trop large */
}
    section {
        padding: 14px 0;
    }

   .carousel-item {
    height: 46vh;
    background-size: cover;
    background-position: center;
}
.carousel-item p{
    display: none;
}

    .section-title h2 {
        font-size: 2rem;
    }

    .typewriter-text {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }

    .info-banner .container {
        flex-direction: column;
        gap: 10px;
    }

    .info-banner .btn {
        margin-left: 0;
    }

    .info-banner p {
        animation: none;
        white-space: normal;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.lightbox-img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 5px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
