/* FONTS */
@font-face {
    font-family: "BebasNeue";
    src: url("/fonts/en/BebasNeue-Regular.ttf") format("truetype");
}

/* GLOBAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "BebasNeue";
}

body {
    background: #ffffff;
    color: #ffffff;
}

/* NAVBAR */
.lc-navbar {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
}

.lc-nav-left {
    display: flex;
    align-items: center;
    gap: 70px;
}

    .lc-nav-left img {
        height: 105px;
    }

.lc-nav-links {
    display: flex;
    align-items: center;
    gap: 55px;
}

    .lc-nav-links a {
        color: white;
        text-decoration: none;
        font-size: 25px;
    }

        .lc-nav-links a:hover {
            color: #e3e3e3;
        }

.lc-login-btn,
.lc-login-btn2 {
    width: 160px;
    height: 60px;
    background: #00336E;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.2s ease-out;
}

    .lc-login-btn:hover,
    .lc-login-btn2:hover {
        border-bottom: 6px solid #fff;
        color: white;
    }

/* HERO */
.hero {
/*    height: 100vh;
*/    height: 86vh;
    background-image: url("/images/en/Hero-bg.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    padding: 0 clamp(20px, 5vw,75px);
}

.hero-content-position {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.hero h1 {
    font-weight: normal;
    font-size: 136px;
    max-width: 920px;
}

.hero p {
    font-size: 32px;
    max-width: 550px;
}

/* BUTTON */
.lc-get-started-btn {
    width: 230px;
    height: 70px;
    margin-top: 45px;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    background: #00336E;
    border-radius: 6px;
    color: white;
    font-size: 32px;
    text-decoration: none;
    transition: all 0.2s ease-out;
}

    .lc-get-started-btn:hover {
        border-bottom: 6px solid #fff;
    }

/* UNIQUE DROPDOWN */
/* UNIQUE DROPDOWN */
.lc-dropdown {
    position: relative;
}

.lc-dropdown-toggle {
    cursor: pointer;
    color: white;
    font-size: 25px;
    display: flex;
    align-items: center;
    gap: 6px; /* same gap as before */
}

    .lc-dropdown-toggle img {
        width: 35px; /* your original exact size */
        height: 35px; /* your original exact size */
    }

/* MENU */
.lc-dropdown-menu {
    z-index: 99;
    position: absolute;
    top: 30px;
    left: 0;
    background: #ffffff;
    color: #333;
    list-style: none; /* same as before */
    padding: 12px 0;
    border-radius: 6px;
    min-width: 400px; /*190px*/
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    /* YOUR ORIGINAL BORDER-BOTTOM STYLE */
    border-bottom: 8px solid #00336E;
}

    .lc-dropdown-menu li a {
        display: block;
        padding: 10px 18px;
        text-decoration: none;
        color: #E63946;
        font-size: 24px;
    }

        .lc-dropdown-menu li a:hover {
            background: #f0f0f0;
            color: #E63946;
        }
/* SHOW ON HOVER */
.lc-dropdown:hover .lc-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lc-login-btn2 {
    width: 120px !important;
    height: 60px !important;
    border: 1px solid white;
    color: white !important;
    font-size: 24px !important;
}


/* MOBILE MENU ICON */
.lc-menu-icon {
    width: 42px;
    height: 42px;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

    .lc-menu-icon img {
        width: 42px;
        height: 42px;
    }

/* SIDEBAR */
.lc-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background: #00336E;
    padding: 20px 30px 40px 30px;
    display: flex;
    flex-direction: column;
    gap: 28px;
    transition: 0.35s ease;
    z-index: 999;
}

@media(max-width:360px) {
    .lc-sidebar {
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }
}

.lc-sidebar.open {
    right: 0;
    overflow-y: auto;
}

.lc-sidebar-close {
    color: white;
    font-size: 32px;
    cursor: pointer;
}

.lc-sidebar a {
    color: white;
    font-size: 38px;
    text-decoration: none;
}

    .lc-sidebar a:hover {
        color: #dbdbdb;
    }

/* SIDEBAR DROPDOWN */
/* SIDEBAR DROPDOWN */
.lc-sidebar-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 38px;
    color: #f5f5f5;
}

    .lc-sidebar-dropdown-toggle:hover {
        color: #dbdbdb;
    }

    .lc-sidebar-dropdown-toggle img {
        width: 35px; /* keeps same icon size */
        height: 35px; /* keeps same icon size */
    }

.lc-sidebar-dropdown-menu {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: start;
    max-height: 0;
    overflow: hidden;
    transition: 0.35s ease;
    list-style: none; /* same reset */
}

    .lc-sidebar-dropdown-menu.open {
        max-height: 100%; /*500px;*/
    }

    .lc-sidebar-dropdown-menu a {
        font-size: 30px;
        padding-left: 15px;
        color: #f5f5f5;
        text-decoration: none;
        margin-bottom: 10px; /*AddedByme*/
    }

        .lc-sidebar-dropdown-menu a:hover {
            color: #dbdbdb;
        }

.language-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

    .language-container p {
        text-decoration: none;
        font-size: 18px !important;
        color: white;
        margin: 0;
    }

    .language-container img {
        width: 23px;
        height: 23px;
    }

.language-container2 {
    display: flex;
    gap: 10px;
    justify-content: start;
    align-items: center;
    text-decoration: none;
}

    .language-container2 p {
        text-decoration: none;
        font-size: 36px !important;
        color: white;
        margin: 0;
    }

    .language-container2 img {
        width: 26px;
        height: 26px;
    }
/* RESPONSIVE */
@media (max-width: 1380px) {
    .lc-nav-links,
    .lc-login-btn {
        display: none;
    }

    .language-container {
        display: none;
    }

    .lc-menu-icon {
        display: flex;
    }

    .lc-navbar {
        padding: 28px 0px;
    }

    .lc-nav-left img {
        height: 80px;
    }
}

header {
    padding: 0 clamp(20px, 5vw,75px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
}

/* partners style  */
.ticker {
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: clamp(10px,2vw,40px) 0;
    border-radius: 6px;
}

.track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

    .track img {
        height: 60px;
        margin: 0 40px;
        object-fit: contain;
        opacity: 0.9;
    }

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* promp video style */
/*.promo-video-bg {
    width: 100%;
    height: 60vh;
    background-image: url('/images/en/watch-promo-video-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .promo-video-bg h1 {
        font-weight: normal;
        text-align: center;
        font-size: clamp(60px, 6vw, 100px);
        color: white;
    }
*/
.lc-get-started-btn2 {
    text-decoration: none;
    width: 230px;
    height: 70px;
    margin-top: 85px;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    border-radius: 6px;
    color: #E63946;
    font-size: 32px;
    transition: all 0.2s ease-out;
    padding: 0;
    box-shadow: 0px 10px 40px 10px rgba(0, 0, 0, 0.25);
}

    .lc-get-started-btn2:hover {
        border-bottom: 6px solid #E63946;
    }



/* services section style  */
.services-section-container {
    display: flex;
    gap: 60px;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
    height: auto;
    padding: clamp(40px,6vw,70px) clamp(20px, 6vw,105px);
}

    .services-section-container h1 {
        font-size: clamp(40px, 6vw, 100px);
        color: black;
    }

.services-container {
    display: flex;
    gap: 75px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: start;
    width: 100%;
    height: auto;
    padding: 0;
}

.service-card {
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

    .service-card img {
        max-width: 90px;
        height: 100px;
    }

    .service-card h1 {
        max-width: clamp(200px,30vw,360px);
        font-size: clamp(24px,2.6vw,28px);
        color: black;
        text-align: center;
        font-weight: normal;
        margin: 0;
        /* display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden; */
    }

    .service-card p {
        max-width: clamp(200px,30vw,360px);
        font-size: clamp(16px,2vw,24px);
        color: #7E7E7E;
        text-align: center;
        margin: 0;
    }

.lc-get-started-btn3 {
    width: 230px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00336E;
    border-radius: 6px;
    color: white;
    font-size: 32px;
    text-decoration: none;
    transition: all 0.3s ease-out;
    box-shadow: 0px 10px 40px 10px rgba(0, 0, 0, 0.25);
}

    .lc-get-started-btn3:hover {
        border-bottom: 6px solid #ffffff;
    }



/* statistics style  */
.statistics-container {
    padding: 50px clamp(15px,4vw,70px);
    width: 100%;
    height: auto;
    background-color: #2B2B2C;
    display: flex;
    gap: clamp(15px,4vw,70px);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.statistics-card {
    width: 290px;
    min-height: 270px;
    border-radius: 24px;
    background-color: white;
    padding: 20px auto;
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-circle-for-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(180deg,rgba(242, 242, 242, 0.5) 0%, rgba(242, 242, 242, 1) 100%);
    box-shadow: inset 0px 5px 5px 0px white;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .card-circle-for-icon img {
        width: 65px;
        height: 65px;
    }

.statistics-card h1 {
    font-size: clamp(24px,3.4vw,50px);
    color: #E63946;
    text-align: center;
    margin: 0;
}

.statistics-card p {
    font-size: clamp(20px,2vw,24px);
    color: #878787;
    text-align: center;
    margin: 0;
}




/* aboutus style */

/* MAIN SECTION WRAPPER */
.about-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    min-height: 100vh;
    background-color: #f0f0f0;
    background-image: url('/images/en/Aboutus-section-bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom;
    box-shadow: inset 0px 0px 40px 0px rgb(0, 0, 0);
}

/* LEFT IMAGE */
.about-image {
    flex: 1;
    overflow: hidden;
}

    .about-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

/* RIGHT CONTENT PANEL */
.aboutus-right-content-position {
    flex: 1;
    padding: 60px clamp(10px,3vw,70px);
    display: flex;
    gap: 25px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.about-content {
    position: relative;
    width: 100%;
    height: auto;
    background: white;
    padding: 35px 45px;
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
}

.title-red {
    position: absolute;
    left: 40px;
    top: -60px;
    font-size: 100px;
    color: #E63946;
    margin: 0px;
}

.intro-text {
    font-size: 24px;
    color: #00336E;
    max-width: 90%;
    margin: 40px 0px 30px 0px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 10px;
    color: black;
}

.section-text {
    font-size: 18px;
    color: #333;
    margin-bottom: 40px;
    max-width: 90%;
}

.lc-get-started-btn4 {
    width: 230px;
    height: 70px;
    margin-top: 45px;
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    background: #00336E;
    border-radius: 6px;
    color: white;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.18);
    transition: all 0.2s ease-out;
}

    .lc-get-started-btn4:hover {
        border-bottom: 6px solid #fff;
    }
/* RESPONSIVE */
@media(max-width: 1035px) {
    .hero h1 {
        font-size: 80px;
        max-width: 920px;
    }

    .lc-get-started-btn,
    .lc-get-started-btn2,
    .lc-get-started-btn3,
    .lc-get-started-btn4 {
        width: 180px;
        height: 60px;
        gap: 9px;
        font-size: 24px;
    }
}

@media(max-width: 992px) {
    .about-image {
        display: none;
    }

    .about-section {
        flex-direction: column;
    }

    .about-content {
        padding: clamp(15px,2vw,40px);
        background-color: rgba(255, 255, 255, 0.9);
    }

    .title-red {
        font-size: 50px;
        top: -30px;
    }
}

@media(max-width: 600px) {
    .title-red {
        font-size: 40px;
        top: -20px;
    }

    .intro-text,
    .section-text {
        font-size: 16px;
    }

    .read-more-btn {
        font-size: 18px;
        padding: 14px 30px;
    }
}

@media(max-width: 578px) {
    .hero h1 {
        font-size: 60px;
        max-width: 920px;
    }

    .hero p {
        font-size: 24px;
        max-width: 550px;
    }

    .lc-get-started-btn {
        margin-top: 25px;
    }

    .lc-get-started-btn2 {
        margin-top: 40px;
    }
}

/* footer style  */
.footer-section-container {
    width: 100%;
    height: auto;
    padding: 50px clamp(40px,5vw,70px);
    background-color: #E63946;
}

.footer-container {
    display: flex;
    gap: 55px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: start;
}

.logos-section {
    width: 240px;
    display: flex;
    gap: 45px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

    .logos-section h1 {
        font-size: 32px;
        color: white;
        margin: 0;
    }

.social-media-conatiner {
    display: flex;
    gap: 30px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.socail-media-logos {
    display: flex;
    gap: 20px;
    justify-content: start;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

    .socail-media-logos li {
        list-style: none;
        text-decoration: none;
    }

    .socail-media-logos img {
        height: 25px;
        width: auto;
    }

.footer-menu-links {
    width: 240px;
    display: flex;
    gap: 30px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

    .footer-menu-links h1 {
        font-size: 32px;
        color: white;
        margin: 0;
    }

    .footer-menu-links ul {
        list-style: disc;
    }

    .footer-menu-links ul {
        list-style: disc;
    }

        .footer-menu-links ul li a {
            text-decoration: none;
            color: white;
            font-size: 21px;
        }

            .footer-menu-links ul li a:hover {
                text-decoration: none;
                color: #dbdbdb;
                font-size: 21px;
            }

.information-conatainer {
    display: flex;
    gap: 25px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.information-details {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

    .information-details img {
        width: 35px;
        height: 35px;
    }

.information-details-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: start;
    align-items: start;
}

    .information-details-content h1 {
        font-size: 22px;
        color: white;
    }

    .information-details-content h2 {
        font-size: 20px;
        color: white;
    }


/* ################################################################################################################################################################# */
/* INNER PAGE STYLE  */
/* HERO WRAPPER */
.innerpage-hero {
    position: relative;
    height: clamp(45vh,50vw,60vh);
    padding: 0 clamp(20px, 5vw, 75px);
    overflow: hidden;
}

/* Background image */
.innerpage-hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: bottom;
    z-index: 0;
}

/* Gradient overlay */
.innerpage-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.8) 100% );
    z-index: 1;
    pointer-events: none;
}
/* Make all hero content appear above image + gradient */
/* Hero text under navbar/dropdown */
.hero-content-position2 {
    position: relative;
    z-index: 2;
}
/* Navbar should be above hero content & overlay */
.lc-navbar {
    position: relative;
    z-index: 10; /* 🔹 higher than hero text */
}

.hero-content-position2 {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.innerpage-hero h1 {
    font-weight: normal;
    font-size: clamp(38px,6vw,96px);
    max-width: 920px;
    text-align: center;
    margin: 0;
}

.innerpage-hero p {
    text-align: center;
    font-size: 32px;
    max-width: 550px;
    margin: 0;
}

.innerpage-hero-started-btn {
    width: clamp(100px,14vw,160px);
    height: clamp(40px,5vw,60px);
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    background: #00336E;
    border-radius: 6px;
    margin-top: clamp(10px,1.5vw,20px);
    color: white;
    font-size: clamp(16px,2.2vw,25px);
    text-decoration: none;
    transition: all 0.2s ease-out;
}

    .innerpage-hero-started-btn:hover {
        border-bottom: 6px solid #fff;
    }

.innerpage-hero-breadcrumbs-container {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

    .innerpage-hero-breadcrumbs-container p {
        font-size: clamp(16px,2vw,24px);
        margin: 0;
    }

    .innerpage-hero-breadcrumbs-container img {
        width: 24px;
        height: 24px;
    }




/* Services Detials Style */
.Services-detials-container {
    display: flex;
    gap: clamp(25px,3vw,45px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: clamp(20px,4vw,80px) clamp(30px,5vw,100px);
}

    .Services-detials-container h1 {
        font-size: clamp(34px,4vw,64px);
        font-weight: normal;
        color: black;
        text-align: center;
    }

    .Services-detials-container p {
        font-size: clamp(18px,2.1vw,24px);
        font-weight: normal;
        color: black;
        text-align: center;
        margin: 0;
    }
/* MAIN CONTAINER */
.Why-us-container {
    padding: clamp(20px,4vw,80px) clamp(30px,5vw,100px);
    display: flex;
    width: 100%;
    min-height: 70vh;
}

/* LEFT SIDE IMAGE */
.why-us-left {
    flex: 1;
    width: 710px;
    height: 635px;
    background-image: url('/images/en/services-details-section2-image.png');
    background-size: cover;
    background-position: center;
    position: relative;
}

.why-us-left-overlay {
    width: 80%;
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.8);
    padding: clamp(15px,1.8vw,20px) clamp(15px,2vw,35px);
    border-radius: 15px;
    margin: 40px 0 0 0;
}

.premium-label {
    color: #E63946;
    font-size: 20px;
    display: block;
    margin-bottom: 6px;
    font-weight: normal;
}

.why-us-left-overlay h2 {
    font-size: clamp(22px,2.5vw,32px);
    color: #000;
    font-weight: normal;
}

/* RIGHT SIDE TEXT */
.why-us-right {
    flex: 1;
    padding: 0px;
    padding-left: 60px;
    display: flex;
    gap: 10px;
    flex-direction: column;
    justify-content: start;
    align-items: start;
}

.why-title-small {
    color: #E63946;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 0px;
}

.why-title {
    color: #000;
    font-size: clamp(24px,5vw,64px);
    font-weight: normal;
    margin-bottom: 0px;
}

.why-desc {
    font-size: 18px;
    font-weight: normal;
    color: #3B3B3B;
    margin: 0;
}

.why-list {
    list-style: none;
    padding: 0;
}

    .why-list li {
        font-size: 18px;
        margin-bottom: 15px;
        display: flex;
        gap: 10px;
        color: #3B3B3B;
    }

        .why-list li span {
            color: #D1001E;
            font-size: 22px;
            font-weight: bold;
        }

/* RESPONSIVE */
@media (max-width: 900px) {
    .Why-us-container {
        padding: 0px;
        flex-direction: column-reverse;
    }

    .why-us-left {
        flex: 1;
        width: 100%;
        height: auto;
        background-image: url('/images/en/services-details-section2-image.png');
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .why-us-left-overlay {
        width: 90%;
        position: relative;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(255,255,255,0.8);
        padding: clamp(15px,1.8vw,20px) clamp(15px,2vw,35px);
        border-radius: 15px;
        margin: 40px 0;
    }

    .why-us-right {
        padding: 40px 25px 0 25px;
    }

    .why-title {
        font-size: 42px;
    }
}

.SD-Section3 {
    padding: clamp(40px,6vw,80px) clamp(30px,5vw,100px);
    display: flex;
    gap: 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .SD-Section3 h1 {
        font-size: clamp(24px,5vw,64px);
        color: black;
        text-align: center;
        margin-bottom: 20px;
    }

    .SD-Section3 h3 {
        font-size: clamp(20px,2vw,32px);
        color: black;
        text-align: center;
        margin: 0;
    }

    .SD-Section3 p {
        font-size: clamp(16px,2vw,24px);
        color: #3B3B3B;
        text-align: center;
        margin: 0;
    }

.innerpage-red-started-btn {
    width: clamp(180px,20vw,230px);
    height: clamp(45px,5vw,60px);
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    background: #E23845;
    border-radius: 6px;
    margin-top: 0px;
    color: white;
    font-size: clamp(18px,2vw,25px);
    text-decoration: none;
    transition: all 0.2s ease-out;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.25);
}

    .innerpage-red-started-btn:hover {
        border-bottom: 6px solid #fff;
    }

/* brands page style  */
.Brands-page-container {
    padding: clamp(30px,4vw,45px) clamp(15px,5vw,70px);
    display: flex;
    gap: clamp(25px,3vw,45px);
    flex-direction: column;
    justify-content: start;
    align-items: center;
}

    .Brands-page-container h1 {
        color: black;
        text-align: center;
        font-size: clamp(28px,3.5vw,38px);
        font-weight: normal;
    }

.input-wrapper {
    width: 600px;
    position: relative;
    display: inline-block;
}

.brands-searchbar {
    width: 600px;
    height: 65px;
    padding: 20px 20px 20px 20px;
    font-size: 20px;
    color: black;
    background: white;
    border: 1px solid #E63946;
    border-radius: 10px;
    outline: none;
}

@media (max-width:625px) {
    .input-wrapper {
        width: 100%;
    }

    .brands-searchbar {
        width: 100%;
    }
}

.brands-searchbar::placeholder {
    color: #707070;
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #707070;
    pointer-events: none; /* so clicking doesn’t interfere with input */
}

.Brands-container {
    margin-top: 40px;
    width: 100%;
    height: auto;
    background-color: #ffffff;
    display: flex;
    gap: clamp(15px,2vw,25px);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

.Brands-card {
    text-decoration: none;
    width: clamp(130px,20vw,230px);
    height: fit-content;
    border-radius: 16px;
    background-color: #F3F3F3;
    padding: clamp(10px,2vw,25px) clamp(0px,1vw,40px) clamp(10px,1.5vw,20px) clamp(0px,1vw,40px);
    display: flex;
    gap: 25px;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* For smooth movement + shadow */
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-bottom 0.25s ease;
}

    .Brands-card:hover { /* Pop upward */
        box-shadow: 0px 4px 0px #E63946; /* Your existing effect */
    }

    .Brands-card img {
        width: clamp(85px,9.5vw,100px);
        height: auto;
    }

    .Brands-card h1 {
        font-size: clamp(28px,3vw,32px);
        color: #000000;
        text-align: center;
        margin: 0;
        text-decoration: none;
        text-wrap: wrap;
    }


/* Brand Cars style */

.Fitlters-container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.dropdown-BC-wrapper {
    width: 350px;
    position: relative;
    display: inline-block;
}

/* Input style (copied from your search bar) */
.dropdown-BC-input {
    width: 350px;
    height: 65px;
    padding: 20px 50px 20px 25px;
    font-size: 20px;
    color: black;
    background: white;
    border: 1px solid #E63946;
    border-radius: 10px;
    outline: none;
    cursor: pointer; /* because it's a dropdown */
}

    .dropdown-BC-input::placeholder {
        color: #707070;
    }

/* Wrapper to hold input + icon and act as bootstrap trigger */
.dropdown-BC-toggle {
    position: relative;
    width: 100%;
}

.dropdown-BC-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

/* Dropdown menu styling */
.dropdown-BC-menu {
    width: 100%;
    border: 1px solid #E63946;
    border-radius: 10px;
    margin-top: 5px;
    max-height: 250px;
    overflow-y: auto;
}

.dropdown-BC-item {
    font-size: 18px;
    padding: 12px 20px;
}

    .dropdown-BC-item:hover {
        background-color: #FCE6E8;
        color: #E63946;
    }

@media (max-width:1077px) {
    .dropdown-BC-wrapper {
        width: 600px;
    }

    .dropdown-BC-input {
        width: 600px;
    }
}

@media (max-width:625px) {
    .dropdown-BC-wrapper,
    .dropdown-BC-input {
        width: 100%;
    }
}


.Cars-Brand-container2 {
    display: flex;
    max-width: 1200px;
    margin: clamp(25px,3.5vw,40px) auto;
    gap: clamp(10px,2vw,40px);
    padding: 0 clamp(10px,0.5vw,20px);
}

.Cars-Brand-container {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 40px;
    padding: 60px 140px;
}
/* Left section */
.Cars-Brand-left-section {
    flex: 1 1 clamp(0%,3vw,60%);
    max-width: 620px;
    min-width: clamp(100px,20vw,300px);
}

.Cars-Brand-left-section2 {
    width: 100%;
    display: flex;
    justify-content: start;
    align-items: start;
    gap: 20px;
    height: 500px;
}

/* Main slider */
.Cars-Brand-main-slider {
    position: relative;
    width: 100%;
    padding-top: 72%; /* maintains 16:9 ratio */
    border-radius: 12px;
    height: calc(100% - 40%);
    overflow: hidden;
    background: #000;
}

.Cars-Brand-main-slider2 {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.Cars-Brand-main-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

/* Slider buttons */
.Cars-Brand-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.85);
    border: none;
    font-size: 2rem;
    font-weight: bold;
    width: clamp(14px,2vw,40px);
    height: clamp(14px,2vw,40px);
    border-radius: 50%;
    cursor: pointer;
    user-select: none;
    transition: background 0.3s ease;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .Cars-Brand-slider-btn img {
        width: clamp(12px,1.3vw,30px);
        height: clamp(12px,1.3vw,30px);
    }

    .Cars-Brand-slider-btn:hover {
        background: rgba(255, 255, 255, 1);
    }

.Cars-Brand-left {
    left: 10px;
}

.Cars-Brand-right {
    right: 10px;
}

/* Thumbnail row */
.Cars-Brand-thumb-row-wrapper {
    overflow-x: auto;
    overflow-y: auto;
    margin-top: 15px;
}

.Cars-Brand-thumb-row-wrapper2 {
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%;
    width: fit-content;
}

.Cars-Brand-thumb-row {
    display: flex;
    gap: 10px;
    width: max-content;
}

.Cars-Brand-thumb-row2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
}

.Cars-Brand-thumb {
    flex-shrink: 0;
    width: 22vw; /* responsive width */
    max-width: 140px;
    height: auto;
    aspect-ratio: 16/9;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    text-decoration: none;
}

.Cars-Brand-thumb2 {
    flex-shrink: 0;
    width: 100%;
    height: 170px;
    aspect-ratio: 16/9;
    object-fit: cover;
    cursor: pointer;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: border-color 0.3s ease;
    text-decoration: none;
}

.Cars-Brand-thumb:hover,
.Cars-Brand-thumb.active {
    border-color: #003f87;
}

.Cars-Brand-thumb-more {
    flex-shrink: 0;
    width: 22vw;
    max-width: 140px;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 8px;
    background: rgba(34, 34, 34, 0.70);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    text-decoration: none !important;
    margin: 0;
}

.Cars-Brand-thumb-more2 {
    flex-shrink: 0;
    width: 22vw;
    max-width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 8px;
    background: rgba(34, 34, 34, 0.70);
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    text-decoration: none !important;
    margin: 0;
}

.Cars-Brand-thumb-link {
    width: 100%;
}

.Cars-Brand-thumb-more-link {
    background-image: url('/images/en/Car-image4.png');
    background-size: cover;
    text-decoration: none;
    background-repeat: no-repeat;
    width: 100%;
}
/* Right section */
.Cars-Brand-right-section {
    flex: 1 1 35%;
    max-width: 540px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: clamp(2px,0.5vw,15px);
}

/* Text styles */
.Cars-Brand-price {
    font-size: clamP(16px,2vw,32px);
    color: #000;
    margin: 0;
}

.Cars-Brand-title {
    color: #000;
    font-size: clamp(12px,1.4vw,20px);
    margin: clamp(0px,0.2vw,10px) 0;
}

.Cars-Brand-subtitle {
    font-size: clamp(12px,1.4vw,16px);
    margin-bottom: clamp(0px,0.4vw,10px);
    color: #444;
}

.Cars-Brand-spec-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    align-items: start;
    overflow-x: auto;
    gap: 10px;
    margin-bottom: clamp(0px,0.5vw,20px);
}

.Cars-Brand-spec-box {
    flex: 1 15%;
    min-width: fit-content;
    background: #F3F3F3;
    border-radius: 16px;
    padding: 7px 10px;
    display: flex;
    flex-direction: column;
    gap: clamp(0px,0.3vw,8px);
}

.Cars-Brand-spec-box2 {
    min-width: 150px;
    background: #F3F3F3;
    border-radius: 16px;
    padding: 7px 10px;
    display: flex;
    flex-direction: column;
    gap: clamp(5px,0.6vw,12px);
}

.Cars-Brand-spec-box-content {
    display: flex;
    gap: clamp(0px,0.3vw,8px);
    align-items: center;
}

.Cars-Brand-icon {
    width: clamp(12px,1.5vw,24px);
    height: clamp(12px,1.5vw,24px);
    object-fit: contain;
}

.Cars-Brand-spec-title {
    margin: 0;
    font-size: clamp(12px,1.3vw,16px);
    color: #3B3B3B;
}

.Cars-Brand-spec-value {
    font-size: clamp(14px,1.4vw,24px);
    color: #000000;
    margin: 0;
}

.Cars-Brand-location {
    color: #878787;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 8px;
}

.Cars-Brand-loc-icon {
    width: clamp(16px,1.9vw,22px);
    height: auto;
    object-fit: contain;
}

.Cars-Brand-location p {
    margin: 0;
    margin-top: 5px;
    font-size: clamp(15px,1.8vw,22vw);
    color: #878787;
}

.Cars-Brand-book-btn {
    width: 100%;
    max-width: clamp(100%,15vw,230px);
    height: clamp(36px,4vw,60px);
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00336E;
    border-radius: 6px;
    color: white;
    font-size: clamp(18px,2.4vw,28px);
    text-decoration: none;
    box-shadow: 0px 10px 40px 0px rgba(0, 0, 0, 0.18);
    transition: all 0.2s ease-out;
}

    .Cars-Brand-book-btn:hover {
        border-bottom: 6px solid #fff;
    }

/* GLightbox responsive fixes */
.glightbox-container {
    max-height: 90vh !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.glightbox-slide-content img {
    max-height: 65vh !important;
    object-fit: contain;
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

.glightbox-thumbnails {
    max-height: 20vh !important;
    overflow-x: auto !important;
    margin-top: 10px;
}

    .glightbox-thumbnails img {
        max-height: 80px !important;
        cursor: pointer;
        object-fit: cover;
    }

body.glightbox-open {
    overflow-y: hidden !important;
}

.glightbox-desc,
.glightbox-caption {
    display: none !important;
}

/* Media Queries for smaller screens */
@media screen and (max-width: 900px) {
    .Cars-Brand-container {
        flex-direction: column;
        gap: 20px;
    }

    .Cars-Brand-left-section,
    .Cars-Brand-right-section {
        max-width: 100%;
    }
}

@media screen and (max-width: 600px) {
    .Cars-Brand-thumb {
        max-width: 28vw;
    }
}



/* Checkout Car  */

/* MAIN CONTAINER */
.checkout-car-container {
    max-width: 1400px;
    padding: clamp(20px,3vw,70px) clamp(20px,4vw,140px);
    margin: auto;
}

/* ============= TOP SECTION ============= */
.checkout-car-top-section {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Main big image */
.checkout-car-main-image-box {
    flex: 1 1 70%;
    min-width: 300px;
}

.checkout-car-main-image {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 8px;
}

/* Vertical thumbnails */
.checkout-car-thumb-column {
    flex: 1 1 200px;
    max-width: 200px;
    display: flex;
    flex-direction: column;
}

.checkout-car-thumb {
    width: 100%;
    height: 110px;
    object-fit: cover;
    border-radius: 6px;
    cursor: pointer;
    border: 2px solid transparent;
}

    .checkout-car-thumb:hover {
        border-color: #003f87;
    }

.checkout-car-thumb-more {
    height: 110px;
    background: #111;
    color: #fff;
    border-radius: 6px;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}


/* ============= BOTTOM SECTION ============= */
.checkout-car-bottom-section {
    margin-top: 35px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

/* LEFT DETAILS */
.checkout-car-details {
    flex: 1 1 60%;
    min-width: 300px;
}

.checkout-car-price {
    font-size: 36px;
    color: #000;
}

.checkout-car-title {
    font-size: 24px;
    margin: 10px 0;
    color: #000;
}

.checkout-car-description {
    font-size: 24px;
    color: #000;
    line-height: 1.6;
}

/* Pricing boxes (4 items) */
.checkout-car-pricing-boxes {
    display: flex;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.checkout-car-price-box {
    background: #f3f3f3;
    padding: 18px 25px;
    border-radius: 10px;
    width: 150px;
    color: #000;
}

    .checkout-car-price-box p {
        margin: 0;
        font-size: 12px;
        color: #000;
    }

    .checkout-car-price-box h3 {
        margin: 5px 0 0;
        font-size: 16px;
        color: #000;
    }

/* Attributes (seats, mileage, year) */
.checkout-car-attributes {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.checkout-car-attr-box {
    background: #f3f3f3;
    padding: 15px 20px;
    border-radius: 10px;
    width: 150px;
    color: #000;
}

.checkout-car-location {
    font-size: 24px;
    margin-top: 30px;
    display: flex;
    gap: 10px;
    color: #000;
}


/* ============= SUMMARY CARD ============= */
.checkout-car-summary-card {
    width: 350px;
    background: #f8f8f8;
    padding: 25px;
    border-radius: 12px;
    color: #000;
    flex: 1 1 280px;
}

    .checkout-car-summary-card h3 {
        margin-top: 0;
        font-size: 16px;
        color: #000;
        margin-bottom: 20px;
    }

span {
    margin-top: 0;
    font-size: 20px;
    color: #000;
}

.checkout-car-summary-row {
    display: flex;
    justify-content: space-between;
    margin: 8px 0;
    color: #000;
}

    .checkout-car-summary-row p {
        font-size: 18px;
        color: black;
        margin: 0 !important;
    }

.checkout-car-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    margin: 15px 0;
    color: #000;
}

    .checkout-car-summary-total p {
        font-size: 18px;
        color: black;
        margin: 0 !important;
    }

.checkout-car-promo-label {
    margin-top: 15px;
    display: block;
    color: #000;
    font-size: 22px;
}

.checkout-car-input {
    width: 100%;
    padding: 15px 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    color: #000;
    font-size: 20px;
}

.checkout-car-apply-btn {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    background: #00336E;
    color: white;
    border-radius: 6px;
    font-size: 22px;
    cursor: pointer;
}

.checkout-car-terms {
    margin: 15px 0;
    font-size: 16px;
    color: #000;
}

    .checkout-car-terms input {
        width: 18px;
        height: 18px;
        margin-right: 10px;
    }

.checkout-car-stripe-btn,
.checkout-car-tabby-btn {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    border-radius: 6px;
    font-size: 24px;
    cursor: pointer;
    color: white;
    background: #E44646;
    border: 0px;
}

.checkout-car-norton {
    margin-top: 15px;
    width: 120px;
}


/* ============= RESPONSIVE RULES ============= */
@media (max-width: 1100px) {
    .checkout-car-summary-card {
        width: 100%;
    }
}

@media (max-width: 900px) {
    .checkout-car-top-section {
        flex-direction: column;
        align-items: center;
    }

    .checkout-car-thumb-column {
        flex-direction: row;
        max-width: 100%;
        flex-wrap: wrap;
    }

    .checkout-car-thumb,
    .checkout-car-thumb-more {
        width: 120px;
        height: 90px;
    }
}

@media (max-width: 600px) {
    .checkout-car-main-image {
        height: 300px;
    }

    .checkout-car-price {
        font-size: 22px;
    }

    .checkout-car-title {
        font-size: 18px;
    }

    .checkout-car-pricing-boxes {
        gap: 10px;
    }

    .checkout-car-price-box {
        width: 45%;
    }
}




@media (max-width:349px) {
    .Cars-Brand-spec-box2 {
        min-width: 100%;
        background: #F3F3F3;
        border-radius: 16px;
        padding: 7px 10px;
        display: flex;
        flex-direction: column;
    }
}



/* Login page  */
:root {
    --primary-color: #e53946;
    --secondary-color: #717171;
    --bg-color: #ffffff;
    --text-color: #232323;
    --border-color: #B1B1B1;
    --radius: 10px;
}

.login-page-body {
    font-family: Arial, sans-serif;
    background-color: var(--bg-color);
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: start;
}

.login-page-container {
    display: flex;
    width: 100%;
    padding: 0px clamp(0px,1vw,20px);
}

.login-page-left-column {
    width: 595px;
    padding: clamp(5px,1vw,32px);
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}

.login-page-logo-wrapper {
    height: 116px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 10px;
}

.login-page-logo-mask {
    width: 175px;
    height: 97px;
    background-color: black;
}

.login-page-content {
    padding: 0;
}

.login-page-header {
    text-align: start;
    margin-bottom: 15px;
}

.login-page-title {
    font-size: 40px;
    margin-bottom: 0px;
    color: var(--text-color);
}

.login-page-subtitle {
    font-size: 18px;
    color: var(--text-color);
}

.login-page-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.login-page-input-wrapper {
    position: relative;
    width: 100%;
}

.login-page-label {
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--primary-color);
}

.login-page-input {
    width: 100%;
    border: 1.5px solid var(--primary-color);
    border-radius: var(--radius);
    padding: 12px;
    font-size: 16px;
    color: var(--text-color);
    box-sizing: border-box;
}

.login-page-password-wrapper {
    display: flex;
    align-items: center;
    position: relative;
}

.login-page-eye-btn {
    position: absolute;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .login-page-eye-btn img {
        width: 24px;
        height: 24px;
    }

.login-page-checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .login-page-checkbox-wrapper label {
        color: black;
    }

.login-page-btn {
    border-radius: var(--radius);
    font-size: 18px;
    padding: 16px;
    cursor: pointer;
}

.login-page-btn-signin {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.login-page-btn-google {
    width: 100%;
    background-color: white;
    border: 1px solid #e6e8e7;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    box-shadow: 0px 0px 2px rgba(0,0,0,0.18);
}

.login-page-google-icon {
    width: 24px;
    height: 24px;
    text-align: center;
}

.login-page-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.login-page-divider-line {
    flex: 1;
    height: 1px;
    background-color: var(--border-color);
}

.login-page-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
}

.login-page-create-account {
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
}

.login-page-right-column {
    width: 100%;
    height: 95vh;
    padding: 20px;
}

.login-page-car-wrapper {
    width: 100%;
    height: 95vh;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.login-page-car-img {
    width: 100%;
    height: 95vh;
    object-fit: cover;
}

@media(max-width:560px) {
    .login-page-right-column {
        display: none;
    }

    .login-page-left-column {
        width: 595px;
        padding: clamp(20px,2.5vw,32px);
        display: flex;
        flex-direction: column;
    }
}

.CustomCarDetalisCard {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
    padding: 23px;
    border: 1px solid #80808085;
    border-radius: 7px;
}
@media (max-width: 576px) {
    .CustomCarDetalisCard {
        margin-inline: 8px;
    }
}

.hd_lang_btn {
    border-radius: 4px;
    border: 2px solid white;
    background: transparent;
    color: white !important;
    padding: 3px 8px;
}

.lc-nav-actions {
    display: flex;
    gap: 18px;
    align-items: center;
}


.rental-plan-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
    margin-bottom: 5px;
}

.info-icon {
    position: relative;
    cursor: pointer;
    font-size: 16px;
    color: #888;
}

    .info-icon:hover .info-tooltip,
    .info-icon:focus .info-tooltip {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.info-tooltip {
    position: absolute;
    right: 0; /* Tooltip appears aligned to the right of icon */
    top: 26px;
    background: #222;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 15px;
    width: 220px;
    line-height: 1.4;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    z-index: 999;
    text-align: left;
}


.field-error {
    border: 1px solid #dc3545 !important;
    box-shadow: 0 0 0 .15rem rgba(220, 53, 69, .15);
}

.field-error-msg {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 6px;
}



.smart-input {
    width: 100%;
    height: 64px;
    outline: none;
    padding: 20px 50px 20px 25px;
    font-size: 20px;
    color: black;
    background: white;
    border: 1px solid #E63946;
    border-radius: 10px;
}

.smart-textarea {
    width: 100%;
    min-height: 160px;
    padding: 14px;
    outline: none;
    font-size: 20px;
    color: black;
    background: white;
    border: 1px solid #E63946;
    border-radius: 10px;
}



.wishlist-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 6px;
}

.wishlist-icon {
    font-size: 26px;
    color: #D10023; /* red */
    transition: transform .15s ease, opacity .15s ease;
}

.wishlist-btn:hover .wishlist-icon {
    transform: scale(1.15);
    opacity: .9;
}

.wishlist-btn.active .wishlist-icon {
    color: #D10023;
}


.header-wishlist-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    border-radius: 10px;
}

.header-wishlist-icon {
    font-size: 25px;
    color: #fff;
}



.header-wishlist-link:hover {
    background: rgba(255,255,255,0.08);
}


.promo-video-section {
    position: relative;
    width: 100%;
    height: 60vh;
    overflow: hidden;
}

/* Video fills entire section */
.promo-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Dark overlay for text readability */
.promo-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* Title positioning */
.promo-video-title {
    position: relative;
    z-index: 2;
    margin-top:10%; /* 👈 not at most top */
    text-align: center;
    color: #fff;
    font-size: clamp(30px, 3vw, 45px);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile adjustment */
@media (max-width: 768px) {
    .promo-video-section {
        height: 45vh;
    }

    .promo-video-title {
        margin-top: 40px;
        font-size: 22px;
    }
}
