 @import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&display=swap');

        .active-link
        {
            color: #173066 !important;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        /* Fixed/Sticky Navigation Bar */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 2%;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        /* Logo */
        .logo {
            font-size: 1rem;
            font-weight: bolder;
            color: #2c3e50;
            text-decoration: none;
            letter-spacing: -1px;
            font-family: "Dancing Script", cursive;
            font-optical-sizing: auto;
            font-style: normal;
        }
        .content-logo
        {
            display: flex;
            flex-direction: column;
            vertical-align: middle;
            align-items: center;
            line-height: 0.5;
        }
        .logo span {
            color: #e74c3c;
        }

        /* Desktop Navigation Links */
        .nav-links {
            display: flex;
            flex-direction: row;
            list-style: none;
            gap: 3rem;
            align-items: center;
            margin: 0 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: #555;
            font-weight: 500;
            font-size: 1rem;
            position: relative;
            padding-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        /* Hover Underline Effect */
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 50%;
            background-color: #e74c3c;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #e74c3c;
            transform: translateY(-2px);
        }

        /* Login Button */
        .login-btn {
            background: #173066;
            color: #fa4a37;
            padding: 0.8rem 2.2rem;
            border: none;
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
        }

        .login-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
        }

        /* Mobile Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            border: 1px solid transparent;
            border-radius: 10px;
            gap: 4px;
            padding: 0.5rem;
        }

        .hamburger .fa-bars
        {
            font-size: 40px;
        }
        .hamburger span {
            width: 25px;
            height: 3px;
            background: #2c3e50;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 100px;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            transform: translateY(-100%);
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            flex-direction: column;
            padding: 2rem 5%;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            z-index: 100000;
        }

        .mobile-menu.active {
            transform: translateY(0);
            opacity: 1;
            visibility: visible;
        }

        .mobile-menu a {
            display: block;
            padding: 1rem 0;
            text-decoration: none;
            color: #555;
            font-weight: 600;
            font-size: 1.5rem;
            border-bottom: 1px solid #f0f0f0;
            position: relative;
            transition: all 0.3s ease;
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        .mobile-menu a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: #e74c3c;
            transition: width 0.3s ease;
        }

        .mobile-menu a:hover::after {
            width: 100%;
        }

        .mobile-menu a:hover {
            color: #e74c3c;
            padding-left: 1rem;
        }

        /* STATS MENU CAROUSEL MOBILE */

        .carousel-stats {
            display: none;
            position: relative;
            max-width: 350px; /* Largeur d'une seule carte */
            margin: 50px auto;
            overflow: hidden; /* Cache les cartes qui ne sont pas actives */
            border-radius: 15px;
        }

        .carousel-track {
            display: flex;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1); /* Animation "smooth" */
        }

        .stat-card {
            min-width: 100%; /* Chaque carte prend toute la largeur du conteneur */
            height: 200px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 20px;
        }

        /* Couleurs fidèles à ton image */
        .green-bright { background-color: #5cb83b; }
        .green-pale   { background-color: #ebf9e6; color: #1a1a1a; }
        .dark-blue    { background-color: #0f172a; }
        .green-forest  { background-color: #3d8c40; }

        .stat-card h3 { font-size: 2.5rem; margin: 0; font-weight: bold; }
        .stat-card p { font-size: 1.1rem; margin-top: 10px; }

        /* Boutons */
        .nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            border: none;
            color: white;
            padding: 10px;
            cursor: pointer;
            border-radius: 50%;
            z-index: 5;
        }
        .prev-stat { left: 10px; }
        .next-stat { right: 10px; }


        /* CAROUSEL SLIDE */

        .about-container {
            position: relative;
            max-width: 90%;
            margin: auto;
            overflow: hidden;
        }

        .carousel-slide img {
            display: none; /* Cache toutes les images */
            width: 100%;
            height: auto;
        }

        .carousel-slide img.active {
            display: block; /* Affiche l'image active */
        }

        /* Style des boutons */
        .prev, .next {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0,0,0,0.5);
            color: white;
            padding: 16px;
            cursor: pointer;
            border: none;
        }

        .next { right: 0; }
        .prev { left: 0; }
        /* Hero Section */
        .hero {
            height: 150vh;
            width: 100%;
            background-image: url('https://footrecrut.com/wp-content/uploads/2025/07/484027361_631888873024166_1558199253518190670_n-1.jpg');
            background: (to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5));
            background-position: center center;
            background-repeat: no-repeat;
            background-size: cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            color: white;
            padding: 0 5%;
        }

        .hero-content
        {
            width: 100%;
            display: flex;
            flex-direction: column;
            text-align: center;
            align-items: center;
        }
        .hero-content h1 {
            color: #173066;
            font-size: 4rem;
            margin-bottom: 1.5rem;
            animation: slideInUp 1s ease;
        }

        .hero-content p {
            font-size: 2.5rem;
            max-width: 700px;
            margin-bottom: 3rem;
            animation: slideInUp 1s ease 0.2s both;
        }

        .cta-btn {
            background: #173066;
            backdrop-filter: blur(10px);
            color: white;
            padding: 1.2rem 3rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: slideInUp 1s ease 0.4s both;
        }

        .cta-btn:hover {
            background: white;
            color: #2c3e50;
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        }

        /* Leroy banner */
        .leroy-banner
        {
            text-align: center;
            height: 15vh;
            margin: 0;
        }

        .leroy-title
        {
            margin: 0;
            padding: 0;
            color: #E0E0E0;
            font-size: 20px;
            font-weight: bold;
        }

        .leroy-content
        {
            color: #A0A0A0;
            margin: 10px;
            font-size: 1.5rem;
        }
        /* SECTION */
.about-section {
    padding: 60px 10%;
    background-color: #ffffff;
}

.about-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight: bold;
}

/* FLEX CONTAINER */
.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT PART (IMAGES) */
carousel-slide {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

carousel-slide img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    height: 220px;
    transition: 0.4s;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

carousel-slide img:hover {
    transform: scale(1.05);
}

/* DIVIDER */
.divider {
    width: 2px;
    height: 300px;
    background: rgba(255,255,255,0.3);
}

/* RIGHT PART (TEXT) */

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about-text p {
    line-height: 1.6;
    margin-bottom: 20px;
    color: #d1d5db;
}

/* BUTTON */
.about-btn {
    padding: 12px 25px;
    background: #22c55e;
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.about-btn:hover {
    background: #16a34a;
    transform: translateY(-2px);
}

/* HOW JOIN US */
.section-foot {
    background: #173066;
    padding: 50px 20px;
    text-align: center;
}


/* BOUTON MOBILE */
.toggle-btn {
    display: none;
    padding: 15px 25px;
    font-size: 18px;
    border: none;
    border-radius: 50px;
    background: #000;
    color: #fff;
    cursor: pointer;
    margin-bottom: 30px;
    transition: 0.3s;
}

.toggle-btn:hover {
    background: #222;
    transform: scale(1.05);
}

/* CONTAINER DES 3 BLOCS */
.container {
    display: flex;
    gap: 20px;
}

/* CHAQUE COLONNE */
.card {
    flex: 1;
    background: #ffffff;
    padding: 20px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    transition: 0.4s;
}

/* HOVER */
.card:hover {
    transform: translateY(-10px);
}

/* IMAGE */
.card img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 10px 25px rgba(0,0,0,0.2);
}

/* TEXTE */
.card p {
    text-align: justify;
    line-height: 1.6;
}


/* SECTION */
.stats-section {
   position: relative;
    z-index: 10;
    margin-bottom: -80px; /* fait remonter la section */
    padding: 0 10%;
}

/* CONTAINER */
.stats-container {
    display: flex;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    border-radius: 10px;
    overflow: hidden;
}

/* CARD */
.stat-box {
    flex: 1;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

/* COLORS */
.stat-green {
    background: #4CAF2F;
}

.stat-light {
    background: #cfdac5;
    color: #0f172a;
}

.stat-dark {
    background: #0b1a33;
}

.stat-green-dark {
    background: #3a8f3a;
}

/* TEXT STYLE */
.stat-box h2 {
    font-size: 2.5rem;
    margin: 0;
}

.stat-box p {
    margin-top: 10px;
}

/* BANNER WORLD */

.world-banner
{
    flex-direction: column;
    background-image: url("../images/worl-1a56aaff98aaa8678d1ae5025f625c7b.webp");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border: 1px solid transparent;
    border-radius: 20px;
    margin: 2rem;
    box-shadow: -4px -7px 30px 16px rgba(225,225,225,0.84);
    -webkit-box-shadow: -4px -7px 30px 16px rgba(225,225,225,0.84);
    -moz-box-shadow: -4px -7px 30px 16px rgba(225,225,225,0.84);
}

.world-banner p
{
    max-width: 800px;
    text-align: center;
}

.world-title
{
    font-size: 3rem;
    font-weight: bolder;

}

.world-content
{
    font-size: 2rem;
    font-weight: 700;
}

.world-content span
{
    color: #ff0000;
    font-family: "Dancing Script", cursive;
    font-optical-sizing: auto;
    text-rendering: optimizeLegibility;
    text-decoration: underline #173066;
}

/* Responsive Design */
@media (max-width: 1032px) {

    .nav-links
    {
        display: none;
    }

    .hamburger
    {
        display: flex;
    }
   
    .login-btn
    {
        order: -1;
    }
    .hero-content h1 {
        font-size: 3.2rem;
    }

    
}

/* DESKTOP SCREEN */
@media (min-width: 1025px) and (max-width: 1680px) {
   .leroy-banner
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0;
        padding: 2rem;
    }

    

    .leroy-title
    {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .footer .footer-first-section {
        display: flex;
        flex-direction: row !important;
    }
}

@media (max-width: 380px) {
   
    .hero-content h1
    {
        font-size: 1.5rem;
    }

    .hero-content p 
    {
        font-size: 1rem;
    }

}

@media (max-width: 768px) {
    .navbar {
        padding: 2rem 3%;
    }

    .hero
    {
        width: calc(100% + 10px);
    }

    .logo
    {
        font-size: 40px;
        text-align: center;
        align-items: center;
    }
    .icon-logo
    {
        height: 4rem;
        width: 100%;
    }
    .icon-logo img 
    {
        height: 100%;
        width: 100%;
    }

    .mobile-menu a 
    {
        font-weight: bolder;
    }
    /* Hide desktop nav, show hamburger */
    .nav-links {
        display: none;
        font-size: 1.5rem;
    }

    .hamburger {
        display: flex;
    }

    .login-btn {
        order: -1;
        font-size: 20px;
        border-radius: 30px;
        padding: 0.6rem 2rem
    }


    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 2.3rem;
    }

    .hero-content .cta-btn
    {
        
        font-size: 1.3rem;
        font-weight: bolder;

    }

    .footer-second-section .copyright
    {
        width: 100%;
        font-size: 2rem;
        font-style: normal;
        font-weight: bold;
    }

    .contact-info .contact-item
    {
        width: 100%;
        font-size: 2.8rem;
        font-style: normal;
        font-weight: bold;
    }

    .about-container {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        padding: 5% 0px;
        margin: 0px 2%;
        gap: 10px;
    }

    .divider {
        width: 10%;
        height: 2px;
    }

    .about-title
    {
        font-size: 3.8rem;
        margin-top: 50px;
    }

    .about-text h2
    {
        font-size: 3.8rem;
    }

    .about-text p 
    {
        line-height: 1.5;
        font-size: 3rem;
    }
    .about-text .about-btn
    {
        font-size: 1.8rem;
        border: 1px solid transparent;
        line-height: 35px;
        border-radius: 50px;
        margin: 0 0 3.5rem 2rem;
    }
    carousel-slide img 
    {
        height: 150vh;
    }


    .container {
        flex-direction: column;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.6s ease;
    }


    .card
    {
        flex-direction: row;
    }

    .card img 
    {
        width: 80vw;
        height: 150vh;
    }

    .card p 
    {
        font-size: 42px;
        font-weight: 700;
    }
    .container.active {
        max-height: 2000px;
        max-width: 1600px;
        opacity: 1;
    }
    
    
    .toggle-btn {
        display: inline-block;
    }

    .world-banner
    {
        height: 200vh;
    }

    .world-banner p 
    {
        max-width: 1000px;
    }

    .world-title
    {
        font-size: 5rem;
    }

    .world-content
    {
        font-size: 3.3rem;
    }

    .world-content span 
    {
        font-size: 3.35rem;
        text-shadow: 7px 1px 8px rgba(17,51,136,0.55);
    }

        .footer-first-section {
        justify-content: space-between;
        flex-direction: column;
    }

    .footer-subsection {
        text-align: center;
        width: 100%;
    }

    .footer-subsection h3
    {
        font-size: 4rem !important;
        text-align: left;
    }

    .footer-subsection ul li
    {
        text-align: left;
        margin-left: 10rem;
    }

    .footer i 
    {
        margin-right: 1.5rem;
    }
    .footer-subsection a
    {
        font-size: 3.2rem;
    }

    .footer-second-section
    {
        justify-content: center !important;
    }

    .footer-second-section .copyright
    {
        text-align: center;
        font-size: 2.8rem;
    }
    
}

@media (max-width: 660px){

            .navbar {
                padding: .8rem 5%;
                margin-bottom: 2rem;
                height: 20vh;
            }

            .login-btn
            {
                order: -1;
                font-size: 15px;
                border-radius: 20px;
                padding: 0.5rem 1rem;
                margin-right: 3rem;
            }
            .logo {
                font-size: 1.38rem;
                text-align: center;
                align-items: center;
                margin-top: -20px;
            }

            .icon-logo
            {
                height: 6rem;
                width: 6rem;
            }
            .icon-logo img 
            {
                height: 100%;
                width: 100%;
            }

            .hamburger i 
            {
                font-size: 25px;
            }

            .hamburger
            {
                margin-left: 3.5rem;
            }
            
            .hero-content h1 {
                font-size: 1.8rem;

            }

            .hero-content p {
                font-size: 1.4rem;
            }

            .hero-content .cta-btn
            {
                
                font-size: 0.8rem;
                font-weight: bolder;
                margin-bottom: 2rem;
            }

            .card
            {
                flex-direction: column;
            }

            .card img 
            {
                height: 10rem;
                width:100%;
            }

            .card p 
            {
                font-size: 1rem;
                margin: 0 10px;
                font-weight: 600;
                text-align: -webkit-center;
            }
            .container.active
            {
                max-height: 500rem;
            }
            /* banner */

            .leroy-banner
            {
                height: 50vh;
                padding: 20px 0;

            }

            .leroy-banner h4
            {
                margin-top: 1.5rem;
                font-size: 1.58rem;
            }

            .leroy-title .fa-thumbs-up
            {
                font-size: 1.8rem !important;
            }

            .leroy-banner p
            {
                font-size: 1.4rem;
                text-align: left;
                padding: 0 10px;
            }
            .about-section
            {
                padding: 0;
            }
            .about-container
            {
                flex-direction: column;
                flex-wrap: wrap;
                width: 100%;
                padding: 5% 0px;
                margin: 0px 2%;
                gap: 10px;

            }


            .stats-section
            {
                display: none;
            }

            .carousel-stats
            {
                display: flex;
                flex-direction: row;
                margin: 20px 10px;
                max-width: 400px;
            }
            carousel-slide
            {
                flex-direction: row;
            }

            .stat-card
            {
                width: 25vw;
            }
            .about-title
            {
                margin-top: 50px;
                font-size: 2.5rem;
            }

            carousel-slide img
            {
                height: 20vh;
                width: 40vw;
            }


            .about-text h2
            {
                display: none;
            }

            .about-text p 
            {
                color: #0f172a;
                font-size: 1rem;
                font-weight: 600;
                margin-right: 0px;
                text-align: center;
            }

            .about-btn
            {
                height: 7.5rem;
                width: 80%;
                font-size: 1rem;
                font-weight: bolder;
                letter-spacing: 3px;
            }
            .divider
            {
                width: 10%;
            }

            .world-banner
            {
                height: 50vh !important;
                margin: 10px;
            }

            .world-banner p 
            {
                max-width: 100%;
                font-size: 1rem;
                font-weight: 600;
            }

            .world-banner .world-title
            {
                font-size: 2rem;
                font-weight: bold;
            }

           

            .world-content span 
            {
                font-size: 24px;
            }
            .footer {
                padding: 2rem 1.5rem 1.5rem;
            }

            .footer .footer-first-section {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
                margin-left: 25.rem;
            }

            .footer-subsection {
                min-width: 100%;
                text-align: center;
            }

            .footer-subsection h3 {
                font-size: 3.5rem !important;
            }
            .footer-subsection a
            {
                font-size: 2.5rem;
            }
            .footer-second-section {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .contact-info {
                align-items: center;
            }

            .footer-second-section .copyright
            {
                width: 100%;
                font-size: 2.3rem;
                font-style: normal;
                font-weight: bold;
            }

            .contact-info .contact-item
            {
                width: 100%;
                font-size: 2rem;
                font-style: normal;
                font-weight: bold;
            }

             .footer-first-section {
                justify-content: center;
            }

            .footer-subsection {
                text-align: center;
                width: 100%;
            }
}

@media (min-width: 350px) and (max-width: 430px) {

            .navbar {
                padding: .8rem 5%;
                margin-bottom: 2rem;
                height: 20vh;
            }


            .login-btn
            {
                order: -1;
                font-size: 15px;
                border-radius: 20px;
                padding: 0.5rem 1rem;
                margin-right: 2rem;
            }
            .logo {
                font-size: 1.38rem;
                text-align: center;
                align-items: center;
                margin-top: -20px;
            }

            .icon-logo
            {
                height: 6rem;
                width: 6rem;
            }
            .icon-logo img 
            {
                height: 100%;
                width: 100%;
            }

            .hamburger i 
            {
                font-size: 25px;
            }

            .hamburger
            {
                margin-left: 2rem;
            }
           
            .card
            {
                flex-direction: column;
            }

            .card img 
            {
                height: 10rem;
                width:100%;
            }

            .card p 
            {
                text-align: -webkit-center;
                font-size: 1rem;
                font-weight: 600;
                margin: 0;
            }
            .container.active
            {
                max-height: 500rem;
            }
            /* banner */

            .leroy-banner
            {
                height: 45vh !important;
                text-align: -webkit-center;
            }

            .leroy-banner h4
            {
                font-size: 1.5rem;
            }

            .leroy-title .fa-thumbs-up
            {
                font-size: 1.8rem !important;
            }

            .leroy-banner p
            {
                text-align: -webkit-center;
                font-size: 1.4rem;
                margin-top: 15px;
                padding: 0 10px;
            }
            
            .about-section {
                display: flex;
                flex-direction: column;
                justify-content: center;
                padding: 0;
                margin: 0;
                align-items: center;
            }
            
            .about-container
            {
                flex-direction: column;
                flex-wrap: wrap;
                width: 100%;
                padding: 5% 0px;
                margin: 0px;
                gap: 10px;
                align-items: center;
            }

            carousel-slide
            {
                flex-direction: row;
            }
            .about-title
            {
                margin-top: 50px;
                font-size: 1.8rem;
            }

            carousel-slide img
            {
                height: 20vh;
                width: 40vw;
            }


            .about-text h2
            {
                display: none;
            }

            .about-text p 
            {
                color: #0f172a;
                font-size: 1rem;
                font-weight: 600;
                margin-right: 0px;
                text-align: center;
            }

            .about-text .about-btn
            {
                height: 70px;
                width: 200px;
                font-size: 1rem;
                font-weight: bolder;
                letter-spacing: 3px;
                line-height: 20px;
                margin: 0 0 3.5rem 5rem;
                padding-top: 5px;
            }
            .divider
            {
                width: 10%;
            }

            .world-banner
            {
                height: 50vh !important;
                margin: 10px;
            }

            .world-banner p 
            {
                font-size: 1rem;
                max-width: 750px;
            }

            .world-banner  .world-title
            {
                font-size: clamp(24px , 5vw , 40px);
            }

            .world-content
            {
                font-size: 3.7rem;
            }

            .world-content span 
            {
                font-size: clamp(24px , 5vw , 40px);
            }
            .footer {
                padding: 2rem 1.5rem 1.5rem;
            }

            .footer .footer-first-section {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
                margin-left: 25.rem;
            }

            .footer-subsection {
                min-width: 100%;
                text-align: center;
            }

            .footer-subsection h3 {
                font-size: 1.5rem !important;
            }
            .footer-subsection a
            {
                font-size: 1.2rem;
            }

            .footer i 
            {
                margin-right: 0.5rem;
                font-size: x-large;
            }

            .footer-subsection ul li
            {
                text-align: left;
                margin-left: 2rem;
            }
            .footer-second-section {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .contact-info {
                align-items: center;
            }

            .footer-second-section .copyright
            {
                width: 100%;
                font-size: 1rem;
                font-style: normal;
                font-weight: 600;
            }

            .contact-info .contact-item
            {
                width: 100%;
                font-size: 1rem;
                font-style: normal;
                font-weight: 600;
            }

             .footer-first-section {
                justify-content: center;
            }

            .footer-subsection {
                text-align: center;
                width: 100%;
            }
}





        
@media (max-height: 926px) {
            .card {
                flex-direction: column;
            }


            .hero
            {
                height: 100vh;
            }

            .hero p 
            {
                font-size: 1.5rem;
            }
            .leroy-banner {
                height: 35vh;
            }

            .about-title {
                margin: 20px 0;
                font-size: 1.8rem;
            }

            .about-container {           
                padding: 0px;
                margin: 0px;
                gap: 10px;
            }

            .about-text p {
                font-size: 1.1rem;
                margin: 0 2% 5%;
            }

            .card img {
                height: 20rem;
                width: 100%;
            }

            .card p {
                font-size: 1rem;
                margin: 0 10px;
            }

            .world-content span {
                font-size: 24px;
            }

            .footer {
                padding: 2rem 1.5rem 1.5rem;
            }

            .footer .footer-first-section {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
                margin-left: 25.rem;
            }

            .footer-subsection {
                min-width: 100%;
                text-align: center;
            }

            .footer-subsection h3 {
                font-size: 1.5rem !important;
            }
            .footer-subsection a
            {
                font-size: 1.2rem;
            }

            .footer i 
            {
                margin-right: 0.5rem;
                font-size: x-large;
            }

            .footer-subsection ul li
            {
                text-align: left;
                margin-left: 2rem;
            }
            .footer-second-section {
                flex-direction: column;
                text-align: center;
                gap: 1.5rem;
            }

            .contact-info {
                align-items: center;
            }

            .footer-second-section .copyright
            {
                width: 100%;
                font-size: 1rem;
                font-style: normal;
                font-weight: 600;
            }

            .contact-info .contact-item
            {
                width: 100%;
                font-size: 1rem;
                font-style: normal;
                font-weight: 600;
            }

             .footer-first-section {
                justify-content: center;
            }

            .footer-subsection {
                text-align: center;
                width: 100%;
            }
}

@media (max-height: 1000px) and (min-height: 927px){
    .footer {
        padding: 2rem 1.5rem 1.5rem;
    }

    .footer .footer-first-section {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        margin-left: 25.rem;
    }

    .footer-subsection {
        min-width: 100%;
        text-align: center;
    }

    .footer-subsection h3 {
        font-size: 1.5rem !important;
    }
    .footer-subsection a
    {
        font-size: 1.2rem;
    }

    .footer i 
    {
        margin-right: 0.5rem;
        font-size: x-large;
    }

    .footer-subsection ul li
    {
        text-align: left;
        margin-left: 2rem;
    }
    .footer-second-section {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .contact-info {
        align-items: center;
    }

    .footer-second-section .copyright
    {
        width: 100%;
        font-size: 1rem;
        font-style: normal;
        font-weight: 600;
    }

    .contact-info .contact-item
    {
        width: 100%;
        font-size: 1rem;
        font-style: normal;
        font-weight: 600;
    }

        .footer-first-section {
        justify-content: center;
    }

    .footer-subsection {
        text-align: center;
        width: 100%;
    }
}
        /* Animations */
        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Navbar shrink on scroll */
        .navbar.scrolled {
            padding: 0.8rem 5%;
            background: rgba(255, 255, 255, 1);
        }

        /* Spacer */
        .spacer {
            height: 90px;
        }

    /* PART FOOTER */

    /* Reset and base styles */
        * {
            box-sizing: border-box;
        }
    /* Footer container */
        .footer {
            background: #173065;
            color: white;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            padding: 3rem 2rem 2rem;
        }

        /* First section - Links and social */
        .footer-first-section {
            max-width: 1200px;
            margin: 0 auto 2rem;
            display: flex;
            justify-content: space-between;
            gap: 2rem;
            flex-wrap: wrap;
        }

        /* Sub-sections in first section */
        .footer-subsection {
            flex: 1;
            min-width: 200px;
        }

        .footer-subsection h3 {
            color: #FEEBE7;
            font-size: 1.2rem;
            margin-bottom: 1rem;
            font-weight: 600;
            opacity: 0.95;
        }

        .footer-subsection ul {
            list-style: none;
        }

        .footer-subsection ul li {
            margin-bottom: 0.75rem;
        }

        /* Links styling */
        .footer-link {
            color: white;
            text-decoration: none;
            font-size: 1rem;
            transition: all 0.3s ease;
            position: relative;
            display: inline-block;
        }

        .footer-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 0;
            background-color: rgba(255, 255, 255, 0.8);
            transition: width 0.3s ease;
        }

        .footer-link:hover {
            color: rgba(255, 255, 255, 0.9);
            transform: translateY(-1px);
        }

        .footer-link:hover::after {
            width: 100%;
        }

        /* Second section - Copyright and Contact */
        .footer-second-section {
             background:#10121a;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            flex-wrap: wrap;
            gap: 1rem;
            padding: 3rem 0;
            border: 1px solid transparent;
            border-radius: 15px;
        }

        .copyright {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
            font-size: 0.95rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-icon {
            width: 18px;
            height: 18px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
        }

        .footer i
        {
            color: #e74c3c;
            border:1px solid transparent;
            border-radius: 50px;
        }