@font-face {
    font-family: 'RB-Font';
    src: url('RB-Regular.woff2') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

/********** Template CSS **********/
:root {
    --primary: #1E3A8A;
    --secondary: #3B82F6;
    --light: #F6F7FC;
    --dark: #15233C;

    --primary-dark: #0F2B6D;
    --thrd: #F59E0B;
    --secondary-dark: #D97706;

    --neutral-light: #F3F4F6;
    --neutral-medium: #D1D5DB;
    --neutral-dark: #4B5563;

    --text-primary: #111827;
    --text-secondary: #374151;
    --success: #10B981;

    --error: #EF4444;
    --accent: #8B5CF6;
    --font-title: 'RB-Font';
    --font-pra: "Tajawal", sans-serif;
}




body {
    font-family: var(--font-pra);
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;

    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
    background-color: #f0f0f0 !important;
}

/* From Uiverse.io by Nawsome */
.boxes {
    --size: 32px;
    --duration: 800ms;
    height: calc(var(--size) * 2);
    width: calc(var(--size) * 3);
    position: relative;
    transform-style: preserve-3d;
    transform-origin: 50% 50%;
    margin-top: calc(var(--size) * 1.5 * -1);
    transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
    -webkit-transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
    -moz-transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
    -ms-transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
    -o-transform: rotateX(60deg) rotateZ(45deg) rotateY(0deg) translateZ(0px);
}

.boxes .box {
    width: var(--size);
    height: var(--size);
    top: 0;
    left: 0;
    position: absolute;
    transform-style: preserve-3d;
}

.boxes .box:nth-child(1) {
    transform: translate(100%, 0);
    -webkit-animation: box1 var(--duration) linear infinite;
    animation: box1 var(--duration) linear infinite;
}

.boxes .box:nth-child(2) {
    transform: translate(0, 100%);
    -webkit-animation: box2 var(--duration) linear infinite;
    animation: box2 var(--duration) linear infinite;
}

.boxes .box:nth-child(3) {
    transform: translate(100%, 100%);
    -webkit-animation: box3 var(--duration) linear infinite;
    animation: box3 var(--duration) linear infinite;
}

.boxes .box:nth-child(4) {
    transform: translate(200%, 0);
    -webkit-animation: box4 var(--duration) linear infinite;
    animation: box4 var(--duration) linear infinite;
}

.boxes .box>div {
    --background: #5C8DF6;
    --top: auto;
    --right: auto;
    --bottom: auto;
    --left: auto;
    --translateZ: calc(var(--size) / 2);
    --rotateY: 0deg;
    --rotateX: 0deg;
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--background);
    top: var(--top);
    right: var(--right);
    bottom: var(--bottom);
    left: var(--left);
    transform: rotateY(var(--rotateY)) rotateX(var(--rotateX)) translateZ(var(--translateZ));
}

.boxes .box>div:nth-child(1) {
    --top: 0;
    --left: 0;
}

.boxes .box>div:nth-child(2) {
    --background: #145af2;
    --right: 0;
    --rotateY: 90deg;
}

.boxes .box>div:nth-child(3) {
    --background: #447cf5;
    --rotateX: -90deg;
}

.boxes .box>div:nth-child(4) {
    --background: #DBE3F4;
    --top: 0;
    --left: 0;
    --translateZ: calc(var(--size) * 3 * -1);
}

@-webkit-keyframes box1 {
    0%, 50% {
        transform: translate(100%, 0);
    }

    100% {
        transform: translate(200%, 0);
    }
}

@keyframes box1 {
    0%, 50% {
        transform: translate(100%, 0);
    }

    100% {
        transform: translate(200%, 0);
    }
}

@-webkit-keyframes box2 {
    0% {
        transform: translate(0, 100%);
    }

    50% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100%, 0);
    }
}

@keyframes box2 {
    0% {
        transform: translate(0, 100%);
    }

    50% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(100%, 0);
    }
}

@-webkit-keyframes box3 {
    0%, 50% {
        transform: translate(100%, 100%);
    }

    100% {
        transform: translate(0, 100%);
    }
}

@keyframes box3 {
    0%, 50% {
        transform: translate(100%, 100%);
    }

    100% {
        transform: translate(0, 100%);
    }
}

@-webkit-keyframes box4 {
    0% {
        transform: translate(200%, 0);
    }

    50% {
        transform: translate(200%, 100%);
    }

    100% {
        transform: translate(100%, 100%);
    }
}

@keyframes box4 {
    0% {
        transform: translate(200%, 0);
    }

    50% {
        transform: translate(200%, 100%);
    }

    100% {
        transform: translate(100%, 100%);
    }
}

/*** Button ***/
.btn {
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover,
.btn.btn-secondary,
.btn.btn-outline-secondary:hover {
    color: #FFFFFF;
    border-radius: 14px 4px;
    -webkit-border-radius: 14px 4px;
    -moz-border-radius: 14px 4px;
    -ms-border-radius: 14px 4px;
    -o-border-radius: 14px 4px;
}

.btn.btn-primary:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    border-radius: 4px 14px;
    -webkit-border-radius: 4px 14px;
    -moz-border-radius: 4px 14px;
    -ms-border-radius: 4px 14px;
    -o-border-radius: 4px 14px;
    transition: 0.3s all ease-in;
    -webkit-transition: 0.3s all ease-in;
    -moz-transition: 0.3s all ease-in;
    -ms-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
}

.btn.btn-secondary:hover {
    background: var(--primary);
    border-color: var(--primary);
    border-radius: 4px 14px;
    -webkit-border-radius: 4px 14px;
    -moz-border-radius: 4px 14px;
    -ms-border-radius: 4px 14px;
    -o-border-radius: 4px 14px;
    transition: 0.3s all ease-in;
    -webkit-transition: 0.3s all ease-in;
    -moz-transition: 0.3s all ease-in;
    -ms-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand img {
    max-height: 60px;
}

.navbar .navbar-nav .nav-link {
    margin-left: 25px;
    padding: 10px 0;
    color: #696E77;
    font-weight: 500;
    outline: none;
    font-family: var(--font-title);
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-brand img {
        max-height: 45px;
    }

    .navbar .navbar-nav {
        margin-top: 20px;
        margin-bottom: 15px;
    }

    .navbar .nav-item .dropdown-menu {
        padding-left: 30px;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}

/*** Header ***/
#header-carousel {
    max-height: 90dvh;
}

.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    text-align: start;
    z-index: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 15%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
    background-color: var(--primary);
    border: 15px solid var(--primary);
    border-radius: 14px 4px;
    -webkit-border-radius: 14px 4px;
    -moz-border-radius: 14px 4px;
    -ms-border-radius: 14px 4px;
    -o-border-radius: 14px 4px;
}

#header-carousel .carousel-item {

    max-height: 90dvh;
}

@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }

    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

.page-header {
    background: url(../img/page-header.webp) center center no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
}

.page-header:after {
    content: "";

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 70, 120, 0.25);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-weight: 500;
}

.page-header .breadcrumb-item a,
.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #696E77;
}

.page-header .breadcrumb-item a:hover,
.page-header .breadcrumb-item.active {
    color: var(--primary);
}


/*** Facts ***/
@media (min-width: 992px) {
    .container.facts {
        max-width: 100% !important;
    }

    .container.facts .facts-text {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }


}

@media (min-width: 1200px) {
    .container.facts .facts-text {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .container.facts .facts-text {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }

    .container.facts .facts-counter {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.container.facts .facts-text {
    background: linear-gradient(90deg, rgba(4, 30, 60, 0.9) 0%, rgba(1, 95, 201, .9)) 100%, url(../img/carousel-3.webp) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-counter {
    background: linear-gradient(rgba(255, 255, 255, .9), rgba(255, 255, 255, .9)), url(../img/carousel-4.webp) center right no-repeat;
    background-size: cover;
}

.container.facts .facts-text .h-100,
.container.facts .facts-counter .h-100 {
    padding: 6rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.Feature img {
    border-radius: 114px 24px;
    -webkit-border-radius: 114px 24px;
    -moz-border-radius: 114px 24px;
    -ms-border-radius: 114px 24px;
    -o-border-radius: 114px 24px;
}

.Feature .icon-card {
    background-color: #DBE3F4;
    border-radius: 14px 4px;
    -webkit-border-radius: 14px 4px;
    -moz-border-radius: 14px 4px;
    -ms-border-radius: 14px 4px;
    -o-border-radius: 14px 4px;
}

.Feature .icon-card:hover {
    background-color: var(--text-primary);
    border-radius: 34px 14px;
    transition: 0.3s all ease-in;
    -webkit-transition: 0.3s all ease-in;
    -moz-transition: 0.3s all ease-in;
    -ms-transition: 0.3s all ease-in;
    -o-transition: 0.3s all ease-in;
    -webkit-border-radius: 34px 14px;
    -moz-border-radius: 34px 14px;
    -ms-border-radius: 34px 14px;
    -o-border-radius: 34px 14px;

    h5 {
        color: white
    }
}

/*** Service ***/
.service-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
    border: 1px solid var(--primary-dark);
    padding: 1rem 1rem !important;
    border-radius: 36px 14px;

    p {
        font-family: var(--font-pra);
        font-weight: 500;
        color: #666;
    }
}

.service-item:hover {
    background-color: var(--dark);
    transition: 0.45s all ease-in;
    -webkit-transition: 0.45s all ease-in;
    -moz-transition: 0.45s all ease-in;
    -ms-transition: 0.45s all ease-in;
    -o-transition: 0.45s all ease-in;

    h4 {
        color: white;
    }

    p {
        color: whitesmoke
    }

    a {
        background-color: var(--secondary-dark);
    }
}

.service-item .service-icon {
    width: 73px;
    height: 73px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--secondary);
    background: wheat;

    border-radius: 24px 8px;
}

.service-item .service-icon img {
    max-width: 46px;
    max-height: 46px;
}

.service-item a.btn {
    color: white;
    background-color: var(--primary-dark);
    border-radius: 14px 4px;
}

.service-item a.btn:hover {
    color: white;
    background-color: var(--thrd);
    border-radius: 4px 14px;
    -webkit-border-radius: 4px 14px;
    -moz-border-radius: 4px 14px;
    -ms-border-radius: 4px 14px;
    -o-border-radius: 4px 14px;
    transition: 0.2 all ease-out;
    -webkit-transition: 0.2 all ease-out;
    -moz-transition: 0.2 all ease-out;
    -ms-transition: 0.2 all ease-out;
    -o-transition: 0.2 all ease-out;
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(1, 95, 201, .9), rgba(1, 95, 201, .9)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-item {
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-text {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -50px;
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    bottom: 0;
    opacity: 1;
}

.team-item a.btn {
    color: var(--primary);
}

.team-item a.btn:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Testimonial ***/
.animated.pulse {
    animation-duration: 1.5s;
}

.testimonial-left,
.testimonial-right {
    position: relative;
}

.testimonial-left img,
.testimonial-right img {
    position: absolute;
    padding: 5px;
    border: 1px dashed var(--primary);
    border-radius: 10px;
}

.testimonial-left img:nth-child(1),
.testimonial-right img:nth-child(3) {
    width: 70px;
    height: 70px;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-left img:nth-child(2),
.testimonial-right img:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.testimonial-left img:nth-child(3),
.testimonial-right img:nth-child(1) {
    width: 50px;
    height: 50px;
    bottom: 10%;
    right: 10%;
}

.testimonial-carousel .owl-item img {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 5px;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 10px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    background: var(--secondary);
}


/*** Footer ***/
.footer {
    color: #A7A8B4;

    i {
        font-size: 16px;
    }
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: start;
    color: #A7A8B4;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}


.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
    font-weight: 750;
    transition: color 0.2s ease-out;
}

.footer .btn.btn-square {
    color: #A7A8B4;
    border: 1px solid#A7A8B4;
}

.footer .btn.btn-square:hover {
    color: var(--secondary);
    border-color: var(--light);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--secondary);
}

.footer .copyright a:hover {
    color: #FFFFFF;
}


.values .product {
    in-height: 330px;
    padding: 1.3rem;
    border: 2px solid var(--secondary);
    border-radius: 24px 4px;
    background: rgba(255, 255, 255, 0.055);
    box-shadow: 0 11px 6px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, border 0.25s ease;
    min-height: 240px;

    p {
        color: #555555;
        line-height: 1.5;
    }

    h3 {
        margin: 0 0 0.5rem;
        font-size: 1.2rem;
        color: var(--success);
    }

    img {
        width: 120px;
        margin: auto;
    }
}

.values .product:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.4);
}

.values .silhouette {
    height: 120px;
    margin-bottom: 1.2rem;
    animation: floaty 4s ease-in-out infinite;
    display: flex;
}


.values .product:hover .silhouette {
    animation: vanish 0.9s ease forwards;
}


.values .product .values .price {
    position: absolute;
    bottom: 1.2rem;
    left: 1.3rem;
    font-weight: 800;
    color: #fff0a8;
}

.values .tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 0.7rem;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #d8d1ff;
}


.values .product:hover::after {
    opacity: 1;
}

.imp-link {
    display: flex;
    gap: 5px;
}

.Registration-form .form-label,
.Registration-form label {
    font-family: var(--font-pra);
    font-weight: 500;
    color: black;
}

.video-hero {
    height: 90vh;
    min-height: 500px;
    overflow: hidden;
}

.video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.previewCard {
    --gutter: 1.5rem;
    --brightness: 0.85;
    --saturation: 1.5;
    --frostRadius: 1.5rem;

    padding: var(--gutter);
    border-radius: var(--gutter);
    aspect-ratio: 4 / 3;
    width: 100%;
    display: grid;
    justify-content: start;
    align-content: end;
    position: relative;
    background: #333;
    overflow: hidden;
    cursor: pointer;
    transition: transform 250ms ease-in-out;
    text-decoration: none;
    color: white;
}

.previewCard:hover {
    transform: scale(1.03);
}

.previewCard img.backdrop {
    transition: transform 500ms ease-in-out;
}

.previewCard:hover img.backdrop {
    transform: scale(1.1);
}

.previewCard .arrow-icon {
    transition: transform 250ms ease-in-out;
}

.previewCard:hover .arrow-icon {
    transform: scale(1.5);
}

.previewCard::after {
    content: "";
    position: absolute;
    inset: -0.5rem;
    z-index: 1;
    pointer-events: none;
    -webkit-backdrop-filter: blur(var(--frostRadius)) saturate(var(--saturation)) brightness(var(--brightness));
    backdrop-filter: blur(var(--frostRadius)) saturate(var(--saturation)) brightness(var(--brightness));
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.2) 100%);
    -webkit-mask-image: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.5) 55%,
            black 75%);
    mask-image: linear-gradient(to bottom,
            transparent 0%,
            rgba(0, 0, 0, 0.1) 40%,
            rgba(0, 0, 0, 0.5) 55%,
            black 75%);
}

.backdrop {
    position: absolute;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    width: 100%;
    height: 100%;
}

.content {
    position: relative;
    z-index: 2;
    display: grid;
    bottom: 0;
    justify-content: start;
    align-content: end;
    gap: 0.5rem;
}

.title {
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.2;
}

.category {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.1rem;
    opacity: 0.6;
    font-size: 0.9rem;
}

.description {
    font-size: 1rem;
    line-height: 1.4;
    display: grid;
    grid-template-columns: 1fr auto;
    place-content: start;
    gap: 0.5rem;
}

.description p {
    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.arrow-icon {
    transform: translateY(-0.1rem);
    font-size: 2.5rem;
    display: grid;
    place-items: center;
    width: 1.5rem;
    height: 1.5rem;
    fill: #fff;
}

/* Large featured image at 75% width */
.featured-image-wrapper {
    max-width: 60%;
    margin: 2rem auto;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

article {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.9;
}

article h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item+.breadcrumb-item::before {
    content: "›";
}

.gallery-item {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    background: #fff;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item .caption {
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: #333;
}

.filter-btn.active {
    background-color: var(--bs-primary) !important;
    color: #fff !important;
    border-color: var(--bs-primary) !important;
}

/* Video card */
.video-card {
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background: #fff;
    transition: transform 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
}

.video-card .ratio {
    border-bottom: 1px solid #eee;
}

.video-card .video-info {
    padding: 1rem;
}