﻿
html {
  font-size: 14px;
}

.site_container {
    background-color: white;
    width: 100%;
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    padding: 5px;
    font-family: Arial, Helvetica, sans-serif;
}

/* ---------------------- */ /* MOBILE-FIRST STYLES */ /* ---------------------- */

.fixed_top_container {
    flex-direction: column;
    height: auto; /* allow natural height */
    padding: 12px; /* more touch‑friendly */
    gap: 10px; /* spacing between items */

    align-items: center;
    text-align: center;
}

.logo {
    height: 120px; /* smaller but still readable */
    max-width: 100%; /* prevents overflow */
    margin-bottom: 0px;
}

a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.phone_facebook_div {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    max-height: 90px;
    flex-wrap: nowrap;
    background-color: white;
    margin-bottom: 0px;
}

#button_trio {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.hero-button {
    border: none;
    width: 110px;
    height: 50px;
    color: white;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    margin: 4px 8px;
    transition-duration: 0.4s;
    cursor: pointer;
    border-radius: 8px;
    box-shadow: 5px 5px 5px #29241E;
}

.hero-button1 {
    background-color: #24AA6D;
    color: black;
    border: 2px solid #24AA6D;
}

    .hero-button1:hover {
        background-color: #24AA6D;
        color: white;
    }

.hero-button2 {
    background-color: #208CBA;
    color: black;
    border: 2px solid #208CBA;
}

    .hero-button2:hover {
        background-color: #208CBA;
        color: white;
    }

.hero-button3 {
    background-color: #0060FF;
    color: black;
    border: 2px solid #0060FF;
}

    .hero-button3:hover {
        background-color: #0060FF;
        color: white;
    }


/* RESET */
.nav-menu,
.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* HAMBURGER */
.hamburger {
    display: none;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: pointer;
}


/* footer cards */
.footer_container {
    padding: 5px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}

.my-footer-card {
    position: relative;
    cursor: pointer;
    width: 250px;
}

.face1 {
    position: relative;
    width: 250px;
    height: 200px;
    background-color: #3f48cc;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px 8px 8px 8px;
    transition: 0.5s;
    transform: translateY(100px);
    z-index: 1;
}

    .face1 .iconbox {
        text-align: center;
    }

.my-footer-card:hover .face1 {
    transform: translateY(0);
}


.face2 {
    position: relative;
    width: 250px;
    height: 200px;
    background-color: white;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 8px 8px 8px 8px;
    transition: 0.5s;
    transform: translateY(-100px);
    box-sizing: border-box;
    padding: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
}

    .face2 .content {
        font-size: 18px;
        font-weight: bold;
    }

        .face2 .content p {
            text-align: center;
        }

.my-footer-card:hover .face2 {
    transform: translateY(0);
}

.iconbox {
    opacity: 0.4;
    transition: 0.5s;
}

.my-footer-card:hover .iconbox {
    opacity: 1;
}

.iconbox h3 {
    margin: 10px 0 0;
    padding: 0;
    color: white;
    text-align: center;
    font-size: 25px;
}

.iconbox p {
    margin: 0;
    padding: 0;
}

.copyright {
    text-align: center;
}

/* ===== MOBILE ===== */
@media (max-width: 900px) {

    .logo {
        margin-bottom: 20px;
    }

    .phone_facebook_div {
        margin-bottom: 20px;
        background-color: aquamarine;
    }

    .nav-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .hamburger {
        display: block;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: #fff;
        justify-content: center;
        align-items: center;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu > li {
        border-bottom: 1px solid #ddd;
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 12px 16px;
    }

    /* DROPDOWNS ON MOBILE */
    .dropdown {
        display: none;
        padding-left: 1rem;
    }

    .dropdown.open {
        display: block;
    }

    .dropdown a:active {
        background: #eaeaea;
    }

    /* TOP-LEVEL items */
    .nav-menu > li > a,
    .nav-menu > li > button {
        background: #3f48cc; /* example dark blue */
        color: #fff;
        font-weight: 600;
        border-bottom: 1px solid #3f48cc;
        width: 100%;
        display: block;
        box-sizing: border-box;
    }

    /* FIRST-LEVEL dropdown items */
    .nav-menu .dropdown > li > a,
    .nav-menu .dropdown > li > button {
        background: #3f48cc; 
        color: #222;
        font-weight: 500;
        border-bottom: 1px solid #3f48cc;
        width: 100%;
        display: block;
        box-sizing: border-box;
    }

    /* SECOND-LEVEL dropdowns (deeper) */
    .nav-menu .dropdown .dropdown > li > a,
    .nav-menu .dropdown .dropdown > li > button {
        background: #3f48cc;
        padding-left: 32px;
    }

    .footer_container {
        padding: 5px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0px;
    }

    #slider_container2 {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 95%; /* almost full width */
        max-width: 100%;
        height: 250px; /* or whatever looks good on mobile */
        margin: 10px auto;
        box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    }

    .slideshow {
        aspect-ratio: 3 / 1; /* keep shape, height adjusts automatically */
        min-height: 200px; /* ensures div has space */
    }

        .slideshow div {
            position: absolute;
        }

    .slide-text {
        position: absolute;
        bottom: 20%;
        transform: translateY(50%);
        color: white;
        background: rgba(0, 0, 0, 0.5);
        padding: 20px 30px;
        border-radius: 8px;
        max-width: 40%;
    }

    /* LEFT */
    .text-left {
        left: 30%;
    }

    /* RIGHT */
    .text-right {
        right: 30%;
    }

        .slide-text h2 {
            margin: 0;
            font-size: 2rem;
        }

    #slider_container2 .transbox {
        font-size: 16px;
        padding: 15px;
        margin: 10px;
    }

    #map {
        height: 300px; /* or whatever fits your design */
        width: 100%;
    }
}


@media (min-width: 901px) {


    html {
        font-size: 16px;
    }


    .btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
        box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
    }

    html {
        position: relative;
        min-height: 100%;
    }

    body {
        font-family: sans-serif;
        line-height: 1.4;
        margin-bottom: 60px;
    }

    .renderbody_container {
        margin-top: 180px;
    }


    .map_buttons {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        margin-top: 5px;
    }

        .map_buttons .button {
            background-color: #04AA6D; /* Green */
            border: none;
            color: white;
            padding: 6px 12px;
            text-align: center;
            text-decoration: none;
            display: inline-block;
            font-size: 12px;
            border-radius: 4px;
            margin: 4px 2px;
            cursor: pointer;
            -webkit-transition-duration: 0.4s; /* Safari */
            transition-duration: 0.4s;
        }

            .map_buttons .button:hover {
                box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
            }

    
    #map {
        height: 320px;
        width: 480px;
    }


    .far {
        font-size: 12px;
    }

    .fa {
        font-size: 12px;
    }

    .fa-circle:before {
        color: white;
    }

    .my-fa-color {
        color: white;
    }


    /* styling links */
    a:link {
        color: blue;
        text-decoration: none;
    }

    a:visited {
        color: blue;
        text-decoration: none;
    }

    a:hover {
        color: orangered;
        font-weight: bold;
        text-decoration: underline dotted;
    }

    a:active {
        font-style: italic;
    }


    

    .header_container {
    }

    .fixed_top_container {
        position: fixed;
        height: 100px;
        background-color: white;
        top: 0;
        left: 0;
        right: 0;
        padding: 5px;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        z-index: 999999;
    }

    .logo {
        max-width: 350px;
        max-height: 90px;
    }

    #button_trio {
        display: flex;
        justify-content: flex-end;
    }

    .hero-button {
        width: 180px;
        height: 80px;
        font-size: 26px;
        
    }

    

    .animate {
        animation-duration: 0.5s;
        animation-name: animate-fade;
        animation-delay: 0.2s;
        animation-fill-mode: backwards;
    }

    @keyframes animate-fade {
        0% {
            opacity: 0;
        }

        100% {
            opacity: 1;
        }
    }


    .animate.pop {
        animation-name: animate-pop;
        animation-timing-function: cubic-bezier(.26,.53,.74,1.48);
    }

    @keyframes animate-pop {
        0% {
            opacity: 0;
            transform: scale(0.5, 0.5);
        }

        100% {
            opacity: 1;
            transform: scale(1, 1);
        }
    }


    .delay-1 {
        animation-delay: 0.1s;
    }

    .delay-2 {
        animation-delay: 0.3s;
    }

    .delay-3 {
        animation-delay: 0.5s;
    }

    .phone_div {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: blue;
        margin: 10px;
    }

    .facebook_div {
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        color: blue;
        margin: 10px;
    }




    /* Hide hamburger on desktop */
    .hamburger {
        display: none;
    }

    .nav {
        position: fixed;
        height: 40px;
        background-color: #3f48cc;
        top: 100px;
        left: 0;
        right: 0;
        padding: 10px;
        z-index: 999998;
    }

    .nav-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .nav ul {
        display: flex;
        list-style-type: none;
        align-items: center;
        justify-content: center;
    }

    .nav li {
        list-style-type: none;
        padding: 0px 10px;
        color: white;
    }

    .nav a {
        text-decoration: none;
        color: white;
        position: relative;
    }

    .nav ul li a:before {
        content: "";
        width: 0;
        height: 5px;
        background-color: #00bcd4;
        position: absolute;
        top: 120%;
        left: 0;
        transition: all 0.5s;
    }

    .nav ul li a:after {
        content: "";
        width: 0;
        height: 5px;
        background-color: indigo;
        position: absolute;
        top: 120%;
        right: 0;
        transition: all 0.5s;
    }

    .nav ul a:hover:before {
        width: 50%;
        transform: translateX(100%);
    }

    .nav ul a:hover:after {
        width: 50%;
        transform: translateX(-100%);
    }


    /* submenu stuff */

    .submenu_link_color {
        color: white !important;
    }

    ul li {
        display: block;
        float: left;
        padding: 1rem;
        position: relative;
        text-decoration: none;
        transition-duration: 0.5s;
    }

        ul li ul {
            background-color: #3f48cc;
            visibility: hidden;
            opacity: 0;
            min-width: 13rem;
            position: absolute;
            margin-top: 5px;
            left: 0;
            display: none;
            margin: 0;
            padding-left: 10px;
        }

            ul li:hover > ul,
            ul li:focus-within > ul,
            ul li ul:hover,
            ul li ul:focus {
                visibility: visible;
                opacity: 1;
                display: block;
            }

            /* sub submenu stuff */


            ul li ul li {
                width: 100%;
                margin: 5px;
                display: block;
                float: left;
                padding: 1rem;
                position: relative;
                text-decoration: none;
                transition-duration: 0.5s;
            }

                ul li ul li ul {
                    background-color: #3f48cc;
                    visibility: hidden;
                    opacity: 0;
                    min-width: 13rem;
                    position: absolute;
                    margin-top: 5px;
                    top: 5px;
                    left: 88%;
                    display: none;
                    margin: 0;
                    padding-left: 10px;
                }



                    ul li ul li:hover > ul li ul,
                    ul li ul li:focus-within > ul li ul,
                    ul li ul li ul:hover,
                    ul li ul li ul:focus {
                        visibility: visible;
                        opacity: 1;
                        display: block;
                    }


    .footer_container {
        padding: 5px;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
    }

    

    /* home */
    .main_container {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
    }

    .main_header {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: left;
        background-color: white;
        color: black;
        box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    }

    .main_container .main_header .header_text {
        margin: 5px;
        padding: 10px;
        font-size: 20px;
    }

    .rcvs_image a img {
        width: 304px;
        height: 216px;
    }

    .blurb_middle ul {
        display: flex;
        flex-direction: column;
    }

        .blurb_middle ul li {
            margin: 0;
            padding: 0;
        }


    /* location container */
    .location_container {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
    }

    .location_header {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        padding: 15px;
        background-color: #3f48cc;
        box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    }

    table {
        font-family: arial, sans-serif;
        border-collapse: collapse;
        width: 100%;
    }

    td, th {
        border: 0px solid #dddddd;
        text-align: left;
        padding: 8px;
    }


    .location_container .location_header .timings_text_main_site {
        color: white;
    }

    .location_container .location_header .timings_text_satellite_site {
        color: white;
    }

    /* slideshow */
    #slider_container {
        width: 80%;
        height: 500px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 26px;
        background: rgba(0,0,0,0.6);
        box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    }

    #slider_container2 {
        width: 80%;
        position: relative;
        height: auto;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 26px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    }

    .slideshow {
        width: 100%;
        max-width: 100%;
        aspect-ratio: 3 / 1; /* THIS controls the shape */
        position: relative;
        z-index: 1;
        overflow: hidden; /* prevents spill if images differ slightly */
    }

        .slideshow div {
            width: 100%;
            height: 100%;
            position: absolute;
            background-size: cover !important;
            background-position: center;
            background-repeat: no-repeat;
            opacity: 0;
            transition: opacity 1.5s ease;
            z-index: 0;
        }



    #slider_container2 .transbox {
        /*background-color: rgba(255, 255, 255, 0.2);*/
        -webkit-backdrop-filter: blur(2px);
        backdrop-filter: blur(2px);
        padding: 20px;
        margin: 30px;
        font-weight: bold;
        font-size: 18px;
        position: absolute;
    }


    .slideshow div.change {
        opacity: 1;
        z-index: 1;
    }

        .slideshow div.change img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain; /* ensures whole image is visible */
        }

    .hero-text {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.3);
        color: white;
        padding: 25px 40px;
        border-radius: 10px;
        z-index: 10;
        text-align: center;
        max-width: 50%;
    }

        /* LEFT */
        .hero-text.left {
            left: 5%;
        }

        /* RIGHT */
        .hero-text.right {
            right: 5%;
        }

        .hero-text h2 {
            margin: 0;
            font-size: clamp(1.5rem, 4vw, 3.5rem);
            line-height: 1.2;
        }

   
    .slider_text {
        color: black;
    }


    .slide-btn {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        background: rgba(0,0,0,0.5);
        color: white;
        border: none;
        font-size: 20px;
        padding: 5px 9px;
        cursor: pointer;
        transition: 0.3s;
    }

        .slide-btn:hover {
            background: rgba(0,0,0,0.8);
        }

    .prev {
        left: 5px;
    }

    .next {
        right: 5px;
    }

    /* why us section */
    .why_us_container {
        width: 80%;
        margin-left: auto;
        margin-right: auto;
        margin-top: 20px;
    }

    .why_us_header {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-evenly;
        padding: 15px;
        font-size: 22px;
        color: blue;
        box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    }

    .why_us_image {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        padding: 20px;
    }

        .why_us_image img {
            width: 450px;
            height: 400px;
        }

    .why_us_header .why_us_text p a {
        text-align: end;
        text-decoration: none;
    }

    .rcvs_logo_small {
        width: 45px;
        height: 35px;
    }


    /* staff page */


    .staff_header {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: center;
        color: black;
        box-shadow: 0 10px 20px rgba(0,0,0,0.8);
    }

    .staff_card {
        position: relative;
        width: 300px;
        height: 450px;
        background-color: black;
        box-shadow: 0px 30px 30px rgba(0,0,0,0.5);
        margin: 10px;
    }

    .staff_content {
        position: absolute;
        bottom: 0px;
        width: 80%;
        height: 96px;
        background-color: white;
        left: 10%;
        text-align: center;
        transition: 0.5s;
        overflow: hidden;
    }

        .staff_content h3 {
            font-size: 20px;
            margin: 5px;
        }

        .staff_content p {
            width: 80%;
            margin: 5px auto;
            font-size: 11px;
            transition: 0.5s;
            opacity: 0;
            border-radius: 5px;
        }

        .staff_content .staff_title {
            font-size: medium;
        }

        .staff_content .staff_qualifications {
            font-size: small;
        }

    .staff_card:hover .staff_content {
        height: 100%;
        width: 100%;
        left: 0%;
    }

    .staff_card:hover p {
        opacity: 1;
        transition-delay: 0.5s;
    }

    .staff_imgbox {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transition: 0.5s;
    }

        .staff_imgbox img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

    /* accreditation */
    .rcvs_container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 10px;
    }



    /* history slider start */

    .slider {
        width: 800px;
        height: 600px;
        border-radius: 10px;
        overflow: hidden;
    }

    .slides {
        width: 500%;
        height: 500px;
        display: flex;
    }

        .slides input {
            display: none;
        }

    .slide {
        width: 20%;
        transition: 2s;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .slide img {
            width: 400px;
            height: 500px;
        }

    .navigation-manual {
        position: absolute;
        width: 800px;
        margin-top: -40px;
        display: flex;
        justify-content: center;
    }

    .manual-btn {
        border: 2px solid #40D3DC;
        padding: 5px;
        border-radius: 10px;
        cursor: pointer;
        transition: 1s;
    }

        .manual-btn:not(:last-child) {
            margin-right: 40px;
        }

        .manual-btn:hover {
            background: #40D3DC;
        }

    #radio1:checked ~ .first {
        margin-left: 5%;
    }

    #radio2:checked ~ .first {
        margin-left: -10%;
    }

    #radio3:checked ~ .first {
        margin-left: -30%;
    }

    #radio4:checked ~ .first {
        margin-left: -60%;
    }

    #radio5:checked ~ .first {
        margin-left: -80%;
    }

    #radio6:checked ~ .first {
        margin-left: -100%;
    }

    #radio7:checked ~ .first {
        margin-left: -120%;
    }

    #radio8:checked ~ .first {
        margin-left: -140%;
    }

    /* auto navigation start */

    .navigation-auto {
        position: absolute;
        display: flex;
        width: 800px;
        justify-content: center;
        margin-top: 460px;
    }

        .navigation-auto div {
            border: 2px solid #40D3DC;
            padding: 5px;
            border-radius: 10px;
            transition: 1s;
        }

            .navigation-auto div:not(:last-child) {
                margin-right: 40px;
            }

    #radio1:checked ~ .navigation-auto .auto-btn1 {
        background: #40D3DC;
    }

    #radio2:checked ~ .navigation-auto .auto-btn2 {
        background: #40D3DC;
    }

    #radio3:checked ~ .navigation-auto .auto-btn3 {
        background: #40D3DC;
    }

    #radio4:checked ~ .navigation-auto .auto-btn4 {
        background: #40D3DC;
    }

    #radio5:checked ~ .navigation-auto .auto-btn5 {
        background: #40D3DC;
    }

    #radio6:checked ~ .navigation-auto .auto-btn6 {
        background: #40D3DC;
    }

    #radio7:checked ~ .navigation-auto .auto-btn7 {
        background: #40D3DC;
    }

    #radio8:checked ~ .navigation-auto .auto-btn8 {
        background: #40D3DC;
    }

    /* auto navigation end */
    /* history slider end */

    .Ordered_Links {
        display: flex;
        flex-direction: column;
        justify-content: left;
        padding: 15px;
    }

    /* history page */
    .history-page {
        background-color: #f4f7f6;
        color: #333;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 1.6;
        padding-bottom: 2rem;
    }

    .history-header {
        background-color: #2f6f73;
        color: white;
        padding: 2rem 1rem;
        text-align: center;
    }

        .history-header h1 {
            margin: 0;
            font-size: 2.2rem;
        }

    .history-container {
        
        margin: 2rem auto;
        padding: 0 1.2rem;
    }

    .history-intro {
        margin-bottom: 2rem;
        font-size: 1.05rem;
    }

    .history-section {
        margin-bottom: 2.5rem;
    }

        .history-section h2 {
            color: #2f6f73;
            margin-bottom: 0.5rem;
        }

    .history-image-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1rem;
        margin: 2rem 0;
    }

    .history-image-placeholder {
        background-color: #d9e4e3;
        border: 2px dashed #7aa5a8;
        min-height: 180px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        font-weight: bold;
        color: #2f6f73;
        padding: 0.5rem;
    }

    .history-image {
        max-width: 100%;
        height: auto;
        display: block;
        margin-bottom: 0.5rem;
    }


    .history-image-placeholder figcaption {
        font-weight: normal;
        font-size: 0.9rem;
        color: #333;
    }


    .history-footer {
        background-color: #2f6f73;
        color: white;
        text-align: center;
        padding: 1rem;
        margin-top: 3rem;
        font-size: 0.9rem;
    }

    .image-container {
        width: 200px;
        height: 300px;
        overflow: hidden;
        position: relative;
        cursor: zoom-in;
    }

        .image-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.2s ease; /* smooth scale */
            transform-origin: center center;
            will-change: transform;
        }

}