@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #E30C0A;
    --secondary-color: #252525;
    --white: #ffffff;
    --black: #000000;
    --bg-color: #ECDCDC;
    --font-heading: "Roboto", sans-serif;
    --font-body: "PT Sans", sans-serif;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}
@media (max-width: 1399px) {
    html {
        font-size: 15px;
    }
}

body {
    font-family: var(--font-body);
    font-size: 1.125rem;
    line-height: 1.4;
    color: var(--secondary-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

p,
li {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
}

.bg-white {
    background-color: var(--white);
}

.bg-gray {
    background-color: var(--bg-color);
}

.bg-red {
    background-color: var(--primary-color);
}

/* =============================== */
/* =============================== */
/* Header */
/* =============================== */
/* =============================== */

header.header {
    position: sticky;
    top: 0;
    z-index: 99;
}

.header-top {
    background: var(--primary-color);
    padding: 6px 0;
}

.header-top ul.contact-info,
.header-top ul.social-info {
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 1.67rem;
}

@media (max-width: 767px) {

    .header-top ul.contact-info,
    .header-top ul.social-info {
        justify-content: center;
    }
}

@media (max-width: 400px) {
    .header-top ul.contact-info {
        flex-direction: column;
        gap: 5px;
    }

    .header-top ul.social-info {
        display: none;
    }
}

.header-top ul.contact-info li,
.header-top ul.social-info li {
    list-style: none;
    margin: 0;
}

.header-top ul.contact-info li a,
.header-top ul.social-info li a {
    color: var(--white);
    text-decoration: none;
}

@media (max-width: 440px) {
    .header-top ul.contact-info li a {
        font-size: 1rem;
    }
}


.header-top ul.social-info {
    justify-content: flex-end;
}

@media (max-width: 767px) {

    .header-top ul.social-info {
        justify-content: center;
        margin-top: 10px;
    }
}

.header-top ul.social-info li {}

.header-top ul.social-info li a {}

.header-bottom {

    background-image: url(../imgs/lana-hero.jpg);

    background-repeat: no-repeat;

    background-size: cover;
}

.header-bottom .navbar-collapse {
    justify-content: flex-end;
}

.navbar-nav li a {
    color: var(--white);
    font-size: 1.375rem;
    font-weight: 500;
    text-transform: capitalize;
    transition: .5s;
    padding: 0 1rem !important;
}

.navbar-nav li a::after {
    font-size: 1.5rem;
    margin-left: 0.5rem;
    position: relative;
    top: 2px;
}

@media (max-width: 1399px) {
    .navbar-nav li a {
        font-size: 1.125rem;
    }
}

@media (max-width: 1199px) {
    .navbar-nav li a {
        font-size: 1.375rem;
    }
}

.navbar-nav li:first-child a {
    padding-left: 0 !important;
}

@media (max-width: 1199px) {
    .navbar-nav li:first-child a {
        padding-left: 1rem !important;
    }
}

.navbar-nav li:last-child a {
    padding-right: 0 !important;
}

@media (max-width: 1199px) {
    .navbar-nav li:last-child a {
        padding-left: 1rem !important;
    }
}

@media (max-width: 767px) {

    .navbar-nav li a,
    .navbar-nav li:last-child a,
    .navbar-nav li:first-child a {
        font-size: 1.125rem;
        padding: 0.5rem !important;
    }
}

.navbar-nav li a:hover,
.navbar-nav li a:focus {
    color: var(--primary-color);
}

.navbar-nav li a.active {
    color: var(--primary-color);
}
.navbar-brand {
    padding: 0;
}
.navbar-nav {}

.navbar-nav li {
    margin: 0;
}

.navbar-nav li.dropdown {}

.navbar-nav li.dropdown ul {
    background: #252525;
    border-radius: 0;
}

/* Desktop: show dropdown on hover */
@media (min-width: 1200px) {
    .navbar-nav li.dropdown:hover > .dropdown-menu,
    .navbar-nav li.dropdown.show > .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
    }

    .navbar-nav li.dropdown > .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0.2s ease;
        pointer-events: none;
    }

    .navbar-nav li.dropdown:hover > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

/* Mobile: dropdown opens on click (Bootstrap) */
@media (max-width: 1199.98px) {
    .navbar-nav li.dropdown > .dropdown-menu {
        border: none;
        background: #1c1c1c;
    }

    .navbar-nav li.dropdown.show > .dropdown-toggle {
        color: var(--primary-color);
    }
}

.navbar-nav li.dropdown ul li {
    margin: 0;
}

.navbar-nav li.dropdown ul li a {
    font-weight: 300;
    font-size: 1.25rem;
    padding: 0.75rem 1rem !important;
}

@media (max-width: 767px) {
    .navbar-nav li.dropdown ul li a {
        font-size: 1rem;
    }
}

.navbar-nav li.dropdown ul li a:hover,
.navbar-nav li.dropdown ul li a:focus,
.navbar-nav li.dropdown ul li a:active {
    background: transparent;
    color: var(--primary-color);
}

.navbar-toggler {
    color: var(--white);
    border: none;
    padding: 0.4rem;
    box-shadow: none !important;
    width: 44px;
    height: 44px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    z-index: 1100;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

.navbar-toggler .toggler-icon {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.navbar-toggler.is-active .toggler-icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.navbar-toggler.is-active .toggler-icon:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.is-active .toggler-icon:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.navbar-toggler.is-active {
    position: fixed;
    top: 4px;
    right: 15px;
    z-index: 1200;
}

.navbar-toggler.is-active .toggler-icon {
    background: var(--white);
}

/* =============================== */
/* Modern Mobile Menu */
/* =============================== */

@media (max-width: 1199.98px) {
    .navbar-toggler {
        display: flex;
    }

    .header-bottom {
        position: relative;
        z-index: 1050;
    }

    .header-bottom .navbar-collapse {
        position: fixed;
        inset: 0;
        z-index: 1080;
        width: 100%;
        height: 100%;
        max-height: 100vh;
        padding: 0;
        margin: 0;
        background: transparent;
        display: block !important;
        visibility: hidden;
        pointer-events: none;
        transition: visibility 0.35s ease;
    }

    .header-bottom .navbar-collapse.collapsing,
    .header-bottom .navbar-collapse.show {
        visibility: visible;
        pointer-events: auto;
    }

    .header-bottom .navbar-collapse::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.55);
        opacity: 0;
        transition: opacity 0.35s ease;
    }

    .header-bottom .navbar-collapse.show::before,
    .header-bottom .navbar-collapse.collapsing::before {
        opacity: 1;
    }

    .mobile-menu-panel {
        position: absolute;
        top: 0;
        right: 0;
        width: min(86vw, 360px);
        height: 100%;
        background: linear-gradient(165deg, #1a1a1a 0%, #111111 55%, #0c0c0c 100%);
        box-shadow: -12px 0 40px rgba(0, 0, 0, 0.35);
        padding: 1.25rem 1.25rem 1.5rem;
        display: flex;
        flex-direction: column;
        transform: translateX(105%);
        transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .header-bottom .navbar-collapse.show .mobile-menu-panel,
    .header-bottom .navbar-collapse.collapsing .mobile-menu-panel {
        transform: translateX(0);
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 1rem;
        margin-bottom: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-label {
        font-family: var(--font-heading);
        font-size: 0.85rem;
        font-weight: 600;
        letter-spacing: 0.18em;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.55);
    }

    .mobile-menu-close {
        width: 40px;
        height: 40px;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        color: var(--white);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem;
        transition: background 0.25s ease, color 0.25s ease;
    }

    .mobile-menu-close:hover {
        background: var(--primary-color);
        color: var(--white);
    }

    .mobile-menu-call {
        display: inline-flex;
        align-items: center;
        gap: 0.4rem;
        color: var(--white);
        font-size: 0.9rem;
        font-weight: 600;
        background: var(--primary-color);
        padding: 0.45rem 0.85rem;
        border-radius: 999px;
        transition: background 0.3s ease;
        text-decoration: none;
        margin-bottom: 1rem;
        justify-content: center;
        width: 100%;
    }

    .mobile-menu-call:hover {
        color: var(--white);
        background: #c40a08;
    }

    .header-bottom .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 0.5rem 0 1rem;
        gap: 0.15rem;
    }

    .header-bottom .navbar-nav > .nav-item {
        opacity: 0;
        transform: translateX(18px);
        transition: opacity 0.35s ease, transform 0.35s ease;
    }

    .header-bottom .navbar-collapse.show .navbar-nav > .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .header-bottom .navbar-collapse.show .navbar-nav > .nav-item:nth-child(1) { transition-delay: 0.05s; }
    .header-bottom .navbar-collapse.show .navbar-nav > .nav-item:nth-child(2) { transition-delay: 0.09s; }
    .header-bottom .navbar-collapse.show .navbar-nav > .nav-item:nth-child(3) { transition-delay: 0.13s; }
    .header-bottom .navbar-collapse.show .navbar-nav > .nav-item:nth-child(4) { transition-delay: 0.17s; }
    .header-bottom .navbar-collapse.show .navbar-nav > .nav-item:nth-child(5) { transition-delay: 0.21s; }
    .header-bottom .navbar-collapse.show .navbar-nav > .nav-item:nth-child(6) { transition-delay: 0.25s; }
    .header-bottom .navbar-collapse.show .navbar-nav > .nav-item:nth-child(7) { transition-delay: 0.29s; }
    .header-bottom .navbar-collapse.show .navbar-nav > .nav-item:nth-child(8) { transition-delay: 0.33s; }

    .header-bottom .navbar-nav > .nav-item > .nav-link {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0.95rem 0.85rem !important;
        margin: 0 !important;
        font-size: 1.15rem !important;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.92);
        border-radius: 10px;
        transition: background 0.25s ease, color 0.25s ease;
    }

    .header-bottom .navbar-nav > .nav-item > .nav-link::after {
        margin-left: 0;
        font-size: 0.9rem;
        opacity: 0.7;
    }

    .header-bottom .navbar-nav > .nav-item > .nav-link:hover,
    .header-bottom .navbar-nav > .nav-item > .nav-link:focus,
    .header-bottom .navbar-nav > .nav-item > .nav-link.active {
        color: var(--white);
        background: rgba(227, 12, 10, 0.18);
    }

    .header-bottom .navbar-nav > .nav-item > .nav-link.active {
        box-shadow: inset 3px 0 0 var(--primary-color);
    }

    .header-bottom .navbar-nav li.dropdown > .dropdown-menu {
        position: static !important;
        float: none;
        transform: none !important;
        width: 100%;
        margin: 0.15rem 0 0.35rem;
        padding: 0.35rem;
        border: none;
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.04);
        box-shadow: none;
    }

    .header-bottom .navbar-nav li.dropdown ul li a {
        color: rgba(255, 255, 255, 0.75);
        font-size: 0.98rem !important;
        font-weight: 400;
        padding: 0.7rem 0.9rem !important;
        border-radius: 8px;
    }

    .header-bottom .navbar-nav li.dropdown ul li a:hover,
    .header-bottom .navbar-nav li.dropdown ul li a:focus,
    .header-bottom .navbar-nav li.dropdown ul li a:active {
        color: var(--white);
        background: rgba(227, 12, 10, 0.2);
    }

    .header-bottom .navbar-nav li.dropdown.show > .dropdown-toggle {
        color: var(--white);
        background: rgba(227, 12, 10, 0.18);
    }

    .mobile-menu-footer {
        margin-top: auto;
        padding-top: 1.25rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-menu-cta {
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 1rem;
        border-radius: 10px;
    }

    .mobile-menu-social {
        display: flex;
        justify-content: center;
        gap: 0.75rem;
    }

    .mobile-menu-social a {
        width: 42px;
        height: 42px;
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    }

    .mobile-menu-social a:hover {
        background: var(--primary-color);
        border-color: var(--primary-color);
        color: var(--white);
    }

    body.mobile-menu-open {
        overflow: hidden;
    }
}

@media (min-width: 1200px) {
    .mobile-menu-panel {
        display: contents;
    }
}

/* =============================== */
/* =============================== */
/* Hero Slider */
/* =============================== */
/* =============================== */

.slider-section {
    position: relative;
}

.hero-slider .item {
    position: relative;
}

.hero-slider .item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero-slider .item img {
    width: 100%;
    height: calc(100vh - 150px);
    object-fit: cover;
    display: block;
}

.hero-slider .item .container {
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    z-index: 2;
}

.hero-slider .slider-content h2,
.hero-slider .slider-content p,
.hero-slider .slider-content .btn {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    transition-delay: 0s;
}

.hero-slider .slider-content.is-visible h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.hero-slider .slider-content.is-visible p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.hero-slider .slider-content.is-visible p+p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

.hero-slider .slider-content.is-visible .btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.5s;
}

.hero-slider .item h2 {
    color: var(--white);
    font-size: 4.375rem;
    margin-bottom: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
}

@media (max-width: 1399px) {
    .hero-slider .item h2 {
        font-size: 3.5rem;
    }
}

.hero-slider .item p {
    color: var(--primary-color);
    font-size: 2em;
    font-weight: 400;
    margin-bottom: 0;
}
@media (max-width: 1399px) {
    .hero-slider .item p {
        font-size: 1.875rem;
    }
}

.hero-slider .item p span {
    display: block;
    color: var(--white);
}

.hero-slider.owl-carousel .owl-nav button.owl-prev,
.hero-slider.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-radius: 50%;
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.slider-section:hover .hero-slider.owl-carousel .owl-nav button.owl-prev,
.slider-section:hover .hero-slider.owl-carousel .owl-nav button.owl-next {
    opacity: 1;
    visibility: visible;
}

.slider-section:hover .hero-slider.owl-carousel .owl-nav button.owl-prev:hover,
.slider-section:hover .hero-slider.owl-carousel .owl-nav button.owl-next:hover {
    opacity: 0.85;
}

.hero-slider.owl-carousel .owl-nav button.owl-prev {
    left: 20px;
}

.hero-slider.owl-carousel .owl-nav button.owl-next {
    right: 20px;
}

.hero-slider.owl-carousel .owl-dots {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    z-index: 2;
}

.hero-slider.owl-carousel .owl-dots .owl-dot span {
    background: var(--white);
    opacity: 0.5;
}

.hero-slider.owl-carousel .owl-dots .owl-dot.active span,
.hero-slider.owl-carousel .owl-dots .owl-dot:hover span {
    background: var(--primary-color);
    opacity: 1;
}

.btn-main {
    background-color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    padding: 15px 20px 15px 20px;
    color: var(--white);
}

@media (max-width: 1399px) {
    .btn-main {
        font-size: 1.125rem;
    }
}

.btn-main:hover {
    background: var(--secondary-color);
    color: var(--white);
}

@media (max-width: 767px) {
    .hero-slider .item img {
        height: 450px;
    }

    .hero-slider .item h2 {
        font-size: 1.75rem;
    }

    .hero-slider .item p {
        font-size: 1.125rem;
    }

    .hero-slider.owl-carousel .owl-nav button.owl-prev,
    .hero-slider.owl-carousel .owl-nav button.owl-next {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }

    .hero-slider.owl-carousel .owl-nav button.owl-prev {
        left: 10px;
    }

    .hero-slider.owl-carousel .owl-nav button.owl-next {
        right: 10px;
    }
}



/* =============================== */
/* =============================== */
/* Footer */
/* =============================== */
/* =============================== */

footer.footer {
    position: relative;
}

.footer-widget h3 {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-widget ul {
    margin: 0;
}

@media (max-width: 991px) {
    .footer-widget ul {
        padding: 0;
    }
}

.footer-widget ul.footer-social-info {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-widget ul.footer-social-info li {
    margin: 0;
}

.footer-widget ul.footer-social-info li a {
    font-size: 2rem;
    color: var(--primary-color);
}

.footer-widget ul.footer-social-info li a:hover {
    color: var(--secondary-color);
}

.footer-widget ul.footer-contact-info {
    padding: 0;
    margin-bottom: 1rem;
}

.footer-widget ul.footer-contact-info li {
    margin-bottom: 5px;
}

.footer-widget ul li {
    list-style: none;
    margin-bottom: 1rem;
}

.footer-widget ul li a {
    color: var(--secondary-color);
}

.footer-widget ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background: var(--secondary-color);
    padding: 1rem 0;
}

.footer-bottom p {
    color: var(--white);
    margin: 0;
}

.footer-widget {
    margin-bottom: 1rem;
}

/* =============================== */
/* =============================== */
/* About Section */
/* =============================== */
/* =============================== */
.padding-all {
    padding: 80px 0;
}

.padding-top {
    padding-top: 80px;
}

.padding-bottom {
    padding-bottom: 80px;
}

.title-heading {
    font-size: 2.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.subtitle-heading {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--black);
    margin-bottom: 1rem;
    display: block;
}

.title-heading span {
    color: var(--secondary-color);
}

.btn-main-arrow {
    padding: 0;
    background: transparent;
    outline: none;
    box-shadow: none;
    color: var(--primary-color);
}

.btn-main-arrow:focus {
    box-shadow: none;
}

.btn-main-arrow i {
    transition: transform 0.3s ease;
}

.btn-main-arrow:hover i {
    transform: translateX(10px);
}

.about-content {
    margin-bottom: 2rem;
}

.about-form {
    background-color: var(--primary-color);
    padding: 2rem;
    border-radius: 12px;
}

@media (max-width: 991px) {
    .about-form {
        padding: 2rem 1rem;
    }
}

.about-form form {}

.about-form form h3 {
    font-size: 2rem;
    color: var(--white);
    font-weight: 600;
}

.about-form form p {
    color: var(--white);
}

.about-form form .form-group {
    margin-bottom: 1rem;
}

.about-form form .form-group input {
    height: 45px;
}

.about-form form .form-group textarea {
    min-height: 150px;
}

.btn-main.bg-black {
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.btn-main.bg-black:hover {
    background: var(--primary-color);
    border-color: var(--white);
}

.about-form form .form-group select {}

/* =============================== */
/* Multi Select (tags / chips) */
/* =============================== */

.multi-select {
    position: relative;
    width: 100%;
}

.multi-select-control {
    position: relative;
    min-height: 45px;
    background: var(--white);
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    padding: 6px 36px 6px 8px;
    display: flex;
    align-items: center;
    cursor: text;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.multi-select.is-open .multi-select-control,
.multi-select-control:focus-within {
    border-color: #86b7fe;
    box-shadow: 0 0 0 0.2rem rgba(13, 110, 253, 0.2);
    outline: none;
}

.multi-select-values {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    width: 100%;
    min-width: 0;
}

.multi-select-tags {
    display: contents;
}

.multi-select-tag {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    background: #4a4a4a;
    color: var(--white);
    border-radius: 4px;
    font-size: 0.875rem;
    line-height: 1.2;
    padding: 5px 0 5px 10px;
}

.multi-select-tag-label {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 8px;
}

.multi-select-tag-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 100%;
    min-height: 24px;
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.25);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 0.85rem;
    padding: 0;
    line-height: 1;
    border-radius: 0 4px 4px 0;
    transition: background 0.2s ease;
}

.multi-select-tag-remove:hover {
    background: rgba(0, 0, 0, 0.2);
}

.multi-select-input {
    flex: 1 1 80px;
    min-width: 80px;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
    height: auto !important;
    padding: 4px 2px !important;
    font-size: 1rem;
    color: #212529;
}

.multi-select-input::placeholder {
    color: #6c757d;
}

.multi-select-arrow {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #212529;
    font-size: 0.85rem;
    pointer-events: none;
    transition: transform 0.2s ease;
}

.multi-select.is-open .multi-select-arrow {
    transform: translateY(-50%) rotate(180deg);
}

.multi-select-dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 2px);
    z-index: 30;
    display: none;
    margin: 0;
    padding: 0;
    list-style: none;
    background: var(--white);
    border: 1px solid #86b7fe;
    border-radius: 0.25rem;
    max-height: 220px;
    overflow-y: auto;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.multi-select.is-open .multi-select-dropdown {
    display: block;
}

.multi-select-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    color: #212529;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background 0.15s ease;
    margin: 0;
}

.multi-select-option:hover,
.multi-select-option.is-active {
    background: #f1f3f5;
}

.multi-select-option-hint {
    font-size: 0.75rem;
    color: #adb5bd;
    white-space: nowrap;
    opacity: 0;
}

.multi-select-option:hover .multi-select-option-hint,
.multi-select-option.is-active .multi-select-option-hint {
    opacity: 1;
}

.multi-select-option.is-selected {
    display: none;
}

.multi-select-empty {
    padding: 0.85rem 0.9rem;
    color: #6c757d;
    font-size: 0.9rem;
}

.text-white p {
    color: var(--white);
}


/* =============================== */
/* =============================== */
/* Why Choose Us Section */
/* =============================== */
/* =============================== */

.why-choose-us-item {
    background-color: #FFF5F4;
    padding: 2rem 1.125rem;
    border-radius: 6px 6px 6px 6px;
    height: 100%;
    padding-bottom: 0;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .why-choose-us-item {
        padding-bottom: 1rem;
        margin-bottom: 1rem;
        height: auto;
    }
}

.why-choose-us-section {}

.why-choose-us-item-icon {
    margin-bottom: 1rem;
}

.why-choose-us-item-icon i {
    color: var(--primary-color);
    display: inline-block;
    font-size: 3.125rem;
    line-height: 1;
    text-align: center;
    transition: all .3s;
}

.why-choose-us-item-content {}

.why-choose-us-item-content h3 {
    font-weight: 600;
    font-size: 1.625rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.why-choose-us-item-content p {}

h2.title-heading {}


/* =============================== */
/* =============================== */
/* Our Services Section */
/* =============================== */
/* =============================== */

.service-item {
    position: relative;
    overflow: hidden;
}

.service-item:hover {}

.service-item-img {
    height: 550px;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
}

.service-item-img h3 {
    position: absolute;
    bottom: 1rem;
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: 98%;
    opacity: 0;
}

.service-item:hover .service-item-img h3 {
    opacity: 0;
}

.service-item-img:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: 0.4;
}

.service-item:hover .service-item-img:before {
    background: var(--primary-color);
    opacity: 0.7;
}

.service-item-img img {
    height: 100%;
    object-fit: cover;
}

.service-item-content {
    position: absolute;
    width: 100%;
    padding: 2rem;
    text-align: center;
    color: var(--white);
    top: 75%;
    transition: 0.75s;
    /* opacity: 0; */
}

@media (max-width: 1399px) {
    .service-item-content {
        /* bottom: -43%; */
    }
}

@media (max-width: 1199px) {
    .service-item-content {
        /* bottom: -53%; */
    }
}

@media (max-width: 991px) {
    .service-item-content {
        /* bottom: -30%; */
    }
}

@media (max-width: 767px) {
    .service-item-content {
        /* bottom: -35%; */
    }
}

@media (max-width: 515px) {
    .service-item-content {
        /* bottom: -40%; */
    }
}

@media (max-width: 420px) {
    .service-item-content {
        /* bottom: -44%; */
    }
}

.service-item:hover .service-item-content {
    top: 0;
    opacity: 1;
}

.service-item-content h3 {
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 2rem;
}

.service-item-content p {
    color: var(--white);
    opacity: 0;
    transition: 0.5s;
}

.service-item:hover .service-item-content p {
    opacity: 1;
}

.service-item-content a {
    color: var(--white);
}

.service-item-content a:hover {}

/* =============================== */
/* Smooth Fade In / Out (scroll) */
/* =============================== */

.wow {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
    transition: opacity 0.7s cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
    transition-delay: 0s;
    backface-visibility: hidden;
}

.wow.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
    .wow {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

/* =============================== */
/* Google Reviews */
/* =============================== */

.google-reviews {
    margin-top: 2.5rem;
    text-align: left;
}

.google-reviews-summary {
    padding-right: 1rem;
}

.google-reviews-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.google-reviews-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--white);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.12);
}

.google-reviews-brand h3 {
    margin: 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.2;
}

.google-reviews-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.google-reviews-rating .rating-score {
    font-size: 1.125rem;
    font-weight: 700;
    color: #f6ad0f;
}

.google-reviews-rating .rating-stars,
.google-review-stars {
    color: #f6ad0f;
    font-size: 0.95rem;
    letter-spacing: 1px;
}

.google-reviews-count {
    margin: 0 0 0.5rem;
    color: #777;
    font-size: 0.95rem;
}

.google-powered {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    color: #888;
    font-size: 0.875rem;
}

.google-text-logo {
    height: 18px;
    width: auto;
}

.btn-review-us {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #3474e0;
    color: var(--white) !important;
    border-radius: 50px;
    padding: 0.65rem 1.15rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: none;
    transition: background 0.3s ease;
}

.btn-review-us:hover {
    background: #2a5fba;
    color: var(--white) !important;
}

.google-g-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--white);
    border-radius: 50%;
}

.google-reviews-slider {
    position: relative;
    padding: 0 40px 10px;
}

.google-review-card {
    background: var(--white);
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    padding: 1.25rem;
    height: 100%;
    min-height: 240px;
    text-align: left;
}

.google-review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.google-review-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    min-width: 0;
    justify-content: center;
}

.google-review-avatar {
    width: 42px !important;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

span.google-review-avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
}

.avatar-purple {
    background: #7b5ea7;
}

.avatar-teal {
    background: #2a9d8f;
}

.avatar-blue {
    background: #457b9d;
}

.google-review-user h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #1a73e8;
    line-height: 1.2;
}

.google-review-user span {
    display: flex;
    font-size: 0.8rem;
    color: #000000;
    margin-top: 2px;
}

.google-review-user span.google-review-avatar {
    color: #fff;
    font-size: 1.5rem;
}

.google-review-badge {
    flex-shrink: 0;
    line-height: 0;
}

.google-review-stars {
    margin-bottom: 0.65rem;
}

.google-review-text {
    /* max-height: 110px; */
    overflow-y: auto;
    padding-right: 4px;
}

.google-review-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.google-review-text::-webkit-scrollbar {
    width: 4px;
}

.google-review-text::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.google-reviews-slider.owl-carousel .owl-nav button.owl-prev,
.google-reviews-slider.owl-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #888 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    margin: 0;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, box-shadow 0.3s ease;
}

.google-reviews-slider.owl-carousel .owl-nav button.owl-prev:hover,
.google-reviews-slider.owl-carousel .owl-nav button.owl-next:hover {
    color: var(--primary-color) !important;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.google-reviews-slider.owl-carousel .owl-nav button.owl-prev {
    left: 0;
}

.google-reviews-slider.owl-carousel .owl-nav button.owl-next {
    right: 0;
}

.google-reviews-slider.owl-carousel .owl-dots {
    margin-top: 1rem;
}

.google-reviews-slider.owl-carousel .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #d0d0d0;
    margin: 4px;
    transition: background 0.3s ease;
}

.google-reviews-slider.owl-carousel .owl-dots .owl-dot.active span,
.google-reviews-slider.owl-carousel .owl-dots .owl-dot:hover span {
    background: #f6ad0f;
}

@media (max-width: 991px) {
    .google-reviews-summary {
        padding-right: 0;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .google-reviews-brand,
    .google-reviews-rating,
    .google-powered {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .google-reviews-slider {
        padding: 0 30px 10px;
    }

    .google-reviews-slider.owl-carousel .owl-nav button.owl-prev,
    .google-reviews-slider.owl-carousel .owl-nav button.owl-next {
        width: 34px;
        height: 34px;
        font-size: 0.8rem;
    }
}

/* =============================== */
/* Scroll to Top */
/* =============================== */

.scroll-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--white);
    font-size: 1.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.scroll-to-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--secondary-color);
    color: var(--white);
}

@media (max-width: 767px) {
    .scroll-to-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
}

.line {
    background: #fff;
    width: 75px;
    height: 2px;
    margin-bottom: 1rem;
}



/*==========================
   SERVICE BANNER
==========================*/

/* .service-banner{
    position: relative;
    width: 100%;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: url("../imgs/services.jpg") center center/cover no-repeat;
    background-size: cover;
} */

.service-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
}

.banner-content{
    position: relative;
    z-index: 2;
    max-width: 720px;
    color: #fff;
}
/*==========================
   LINE
==========================*/

.title-line{
    width: 70px;
    height: 3px;
    background: #ffffff;
    
}

/*==========================
   MAIN TITLE
==========================*/

.main-title{
    font-size: 70px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.banner-text{
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 650px;
}
/*==========================
   DESKTOP
==========================*/

@media (min-width:1200px){

    .service-banner{
        min-height:650px;
    }

}

/*==========================
   LAPTOP
==========================*/

@media (max-width:991px){

    .service-banner{
        min-height:520px;
        padding:80px 0;
    }

    .main-title{
        font-size:56px;
    }

    .banner-text{
        font-size:19px;
    }

}

/*==========================
   TABLET
==========================*/

@media (max-width:768px){

    .service-banner{
        min-height:450px;
        padding:70px 0;
    }

    .small-title{
        font-size:18px;
    }

    .title-line{
        width:60px;
        margin-bottom:25px;
    }

    .main-title{
        font-size:42px;
        margin-bottom:20px;
    }

    .banner-text{
        font-size:17px;
        margin-bottom:30px;
    }

    .banner-btn{
        font-size:18px;
        padding:12px 28px;
    }

}

/*==========================
   MOBILE
==========================*/

@media (max-width:576px){

    .service-banner{
        min-height:400px;
        padding:60px 0;
    }

    .small-title{
        font-size:16px;
    }

    .main-title{
        font-size:34px;
    }

    .banner-text{
        font-size:15px;
        line-height:1.6;
    }

    .banner-btn{
        padding:10px 22px;
        font-size:16px;
    }

}
.elementor-heading-title {
    font-size: 2em;
    font-weight: 400;
    color: #000000;
}
.divider {
    width: 75px;
    height: 3px;
    background: var(--primary-color);
    margin-bottom: 25px;
}
.elementor-heading-title2 {
    font-size: 44px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--primary-color);
}
.text-black2 {
    color: #000 !important;
}

.custom-tabs{
    background:#e9dddd;
    padding:16px;
    border-radius:0;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}
.custom-tabs .nav-link{
    background:#232323;
    color:#fff;
    border:none;
    border-radius:12px;
    padding:12px 20px;
    font-size:16px;
    font-weight:600;
    line-height:1;
    transition:.3s;
    white-space:nowrap;
}
.custom-tabs .nav-link:hover{
    background:var(--primary-color);
    color:#fff;
}
.custom-tabs .nav-link.active{
    background:var(--primary-color) !important;
    color:#fff !important;
    box-shadow:none;
}
.custom-tabs .nav-link:focus{
    box-shadow:none;
}

@media(max-width:991px){

.custom-tabs{
    justify-content:flex-start;
    overflow-x:auto;
    flex-wrap:nowrap;
    scrollbar-width:none;
}

.custom-tabs::-webkit-scrollbar{
    display:none;
}
}
.services-img img {
    border-radius: 10px !important;
}
.team-section{
    position:relative;
    background: url("../imgs/lana-hero.jpg") center center/cover no-repeat;
    overflow:hidden;
}

/* Dark Overlay */
.team-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(20,20,20,.25);
}

.team-section .container{
    position:relative;
    z-index:2;
}

.team-title{
    font-size:40px;
    font-weight:700;
    color:#fff;
    margin-bottom:12px;
}

.team-title .text-red{
    color:var(--primary-color);
}

.title-line{
    width:70px;
    height:2px;
    background:#fff;
    margin:10px 0;
}

.team-text{
    color:#fff;

    max-width:700px;
    margin-bottom:40px;
}
@media(max-width:991px){

.team-section{
    padding:80px 0;
}

.team-title{
    font-size:35px;
}

.team-text{
    font-size:17px;
}

}

@media(max-width:576px){

.team-title{
    font-size:30px;
}

.team-text{
    font-size:16px;
    line-height:1.7;
}

.btn-enquiry{
    width:100%;
    text-align:center;
}

}
.divider-botom {
    margin-top: 12px;
    border: 1px solid #000 !important;
}


.contact-us{
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: url("../imgs/busy-woman-doing-many-things-same-time.jpg") center center/cover no-repeat;
    background-size: cover;
}

.contact-us::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
}
.contact-item{
    display:flex;
    align-items:flex-start;
    margin-bottom:15px;
}

.contact-item:last-child{
    margin-bottom:0;
}

.contact-item .icon{
    width:55px;
    min-width:55px;
    text-align:center;
}

.contact-item .icon i{
    font-size:40px;
    color:var(--primary-color);
}

.contact-item .content h3{
    font-size:26px;
    font-weight:700;
    color:var(--primary-color);
    margin:0 0 5px;
}

.contact-item .content a,
.contact-item .content p{
    font-size:18px;
    color:#6b7280;
    text-decoration:none;
    margin:0;
    line-height:1.6;
}
.map-section{
    width:100%;
    overflow:hidden;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.map-section iframe{
    width:100%;
    height:260px;
    border:0;
    display:block;
}

@media (max-width:768px){
    .map-section iframe{
        height:200px;
    }
}
.btn-blue {
    background-color: #1a73e8 !important;
}

.about-banner{
    position: relative;
    width: 100%;
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: url("../imgs/about-banner.jpeg") center center/cover no-repeat;
    background-size: cover;
}

.about-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
}



.values-list{
    list-style:none;
    padding:0;
    margin:0;
}

.values-list li{
    display:flex;
    align-items:flex-start;
    margin-bottom:15px;
}
.values-img img {
    border-radius: 8px !important;
}
.values-list .title{
    min-width:170px;
    color:var(--primary-color);
    font-size:22px;
    font-weight:700;
}

.values-list .dash{
    color:var(--primary-color);
    font-size:18px;
    font-weight:700;
    margin:0 10px;
}

.values-list .desc{
    color:#222;
    font-size:18px;
    line-height:1.6;
    flex:1;
}

/* Responsive */

@media(max-width:991px){

.values-list .title{
    min-width:140px;
    font-size:24px;
}

.values-list .dash{
    font-size:24px;
}

.values-list .desc{
    font-size:20px;
}

}

@media(max-width:576px){

.values-list li{
    display:block;
    margin-bottom:10px;
}

.values-list .title,
.values-list .dash,
.values-list .desc{
    display:inline;
}

.values-list .title{
    font-size:20px;
}

.values-list .dash{
    margin:0 5px;
    font-size:20px;
}

.values-list .desc{
    font-size:17px;
    line-height:1.7;
}

}

.custom-tabs-full{
    display:flex;
    width:100%;
    gap:0;
    justify-content:space-between;
    flex-wrap:nowrap;
}

.custom-tabs-full .nav-item{
    flex:1;
    margin:0 !important;
    padding:0 4px;
}
@media (max-width:767px){

    .custom-tabs,
    .custom-tabs-full{
        display:grid !important;
        grid-template-columns:repeat(2,1fr);
        gap:12px;
        width:100%;
    }

    .custom-tabs .nav-item,
    .custom-tabs-full .nav-item{
        width:100% !important;
        flex:none !important;
        padding:0 !important;
        margin:0 !important;
    }

    .custom-tabs .nav-link,
    .custom-tabs-full .nav-link{
        width:100% !important;
        min-width:100% !important;
        min-height:70px;
        font-size:14px;
        line-height:1.3;
        border-radius:10px;
        display:flex;
        align-items:center;
        justify-content:center;
        text-align:center;
        padding:12px;
    }

}
.custom-tabs-full .nav-link{
    width:100%;
    border-radius:12px;
    text-align:center;
    min-height:70px;
    display:flex;
    align-items:center;
    justify-content:center;
    line-height:1.3;
    font-size:18px;
}
.heading-border{
    position: relative !important;
    display: inline-block !important;
    padding-bottom: 20px !important;
    overflow: visible !important;
}

.heading-border::after{
    content: "" !important;
    position: absolute !important;
    left: 50% !important;
    bottom: 0 !important;
    transform: translateX(-50%) !important;
    width: 110px !important;
    height: 2px !important;
    background: var(--primary-color) !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 9999 !important;
}
.service-banner{
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: url("../imgs/services.jpg") center center/cover no-repeat;
    background-size: cover;
}

.service-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
}
.quote-banner{
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: url("../imgs/technical-support.webp") center center/cover no-repeat;
    background-size: cover;
}

.quote-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
}
.border-botom {
    padding-bottom: 10px;
    border-bottom: 2px solid #000;
}
.brand-color {
    color: var(--primary-color) !important;
    font-size: 70px !important;
}

.brand{
    position: relative;
    width: 100%;
    min-height: 300px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: url("../imgs/lane-cove-1.jpeg") center center/cover no-repeat;
    background-size: cover;
}

.brand::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
}


.product-card{
    position:relative;
    overflow:hidden;
    border-radius:8px;
    cursor:pointer;
}

.product-card img{
    width:100%;
    height:320px;
    object-fit:cover;
    transition:.5s;
}

.product-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
    opacity:0;
    transition:.4s ease;
}

.product-overlay h4{
    color:#fff;
    font-size:18px;
    font-weight:700;
    margin-bottom:12px;
    transform:translateY(20px);
    transition:.4s;
}
.product-overlay p{
    color:#fff;
    font-size:16px;
    margin:0;
    transform:translateY(20px);
    transition:.4s;
}
.product-card:hover .product-overlay{
    opacity:1;
}

.product-card:hover .product-overlay h4,
.product-card:hover .product-overlay p{
    transform:translateY(0);
}


.blog-img{
    display:block;
    overflow:hidden;
}

.blog-img img{
    width:100%;
    height:260px;
    object-fit:cover;
    transition:.5s;
}
.blog-card {
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #ECDFDF;
    height: 520px !important;
}

.blog-title{
    margin-bottom:15px;
}

.blog-title a{
    color:#222;
    text-decoration:none;
    transition:.3s;
}

.blog-title a:hover{
    color: #1a73e8;
}

.blog-desc{
    color:#555;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.blog-img{
    position: relative;
    display: block;
    overflow: hidden;
}

.blog-img img{
    width: 100%;
    display: block;
    transition: all .4s ease;
}

.blog-img::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.30);
    opacity: 0;
    transition: .4s ease;
    z-index: 1;
}
.blog-img:hover::before{
    opacity: 1;
}
.custom-pagination{
    margin-top:20px;
}

.custom-pagination .page-item{
    margin:0 6px;
}

.custom-pagination .page-link{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    border:1px solid #007bff;
    color:#007bff;
    background:#fff;
    border-radius:0;
    font-size:16px;
    font-weight:600;
    transition:.3s;
    text-decoration:none;
}

.custom-pagination .page-item.active .page-link{
    background:#007bff;
    color:#fff;
    border-color:#007bff;
}

.custom-pagination .page-link:hover{
    background:#007bff;
    color:#fff;
}

.custom-pagination .next-page{
    width:auto;
    padding:0 18px;
}

.alarm-banner{
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: url("../imgs/man-using-tablet-his-smart-home\ \(2\).jpg") center center/cover no-repeat;
    background-size: cover;
}

.alarm-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
}
.card-info img {
    height: 380px !important;
    width: 100%;
    object-fit: cover;
}
.flip-card{
    perspective:1200px;
}

.flip-card-inner{
    position:relative;
    width:100%;
    height:500px;
    transition:transform .8s;
    transform-style:preserve-3d;
}

.flip-card:hover .flip-card-inner{
    transform:rotateY(180deg);
}

/* Front & Back */

.flip-card-front,
.flip-card-back{
    position:absolute;
    width:100%;
    height:100%;
    border-radius:16px;
    overflow:hidden;
    backface-visibility:hidden;
}
.flip-card-inner .flip-card-front:before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    background: #000 !important;
    opacity: 0.4 !important;
}
 
/* Images */

.flip-card-front img,
.flip-card-back img{
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Front */

.flip-card-front{
    background:#fff;
}

.front-content{
    position:absolute;
    left:0;
    bottom:35px;
    width:100%;
    text-align:center;
    z-index:2;
}

.front-content h3{
    color:#fff;
    font-size:30px;
    font-weight:700;
    margin:0;
}

/* Back */

.flip-card-back{
    transform:rotateY(180deg);
}

.back-overlay{
    position:absolute;
    inset:0;
    background:rgba(239,57,57,.82);
}

.back-content{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:40px;
    z-index:2;
}

.back-content h3{
    color:#fff;
    font-size:30px;
    font-weight:700;
    margin-bottom:25px;
}

.back-content p{
    color:#fff;
    font-size:22px;
    line-height:1.4;
    margin:0;
}

/* Hover */

.flip-card:hover .flip-card-front img,
.flip-card:hover .flip-card-back img{
    transform:scale(1.05);
    transition:.6s;
}

/* Responsive */

@media(max-width:991px){

.flip-card-inner{
    height:420px;
}

.front-content h3,
.back-content h3{
    font-size:32px;
}

.back-content p{
    font-size:20px;
}

}

@media(max-width:767px){

.flip-card-inner{
    height:360px;
}

.front-content h3,
.back-content h3{
    font-size:26px;
}

.back-content{
    padding:25px;
}

.back-content p{
    font-size:17px;
}

}
.camera-banner{
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: url("../imgs/intercom.png") center center/cover no-repeat;
    background-size: cover;
}

.camera-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
}
.form-in{
    height: 800px !important;
}
.formm-in2 {
    height: 750px !important;
}
.form-3 {
     height: 950px !important;
}
.card-in img {
    height: 400px !important;
}
.assess-banner{
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: url("../imgs/banner-1-img.jpg") center center/cover no-repeat;
    background-size: cover;
}

.assess-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
}
.text-red2 {
    color: var(--primary-color) !important;
}
.text-black2 {
    color: #000 !important;
}

.worker-banner{
    position: relative;
    width: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: url("../imgs/workers-control-room-min.jpg") center center/cover no-repeat;
    background-size: cover;
}

.worker-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
}
.tech-banner{
    position: relative;
    width: 100%;
    min-height: 450px;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: url("../imgs/technical-support.jpg") center center/cover no-repeat;
    background-size: cover;
}

.tech-banner::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
}

.manual-accordion .accordion-item{
    border:1px solid #d8d8d8;
    border-radius:0;
    margin-bottom:8px;
}

.manual-accordion .accordion-button{
    background:#d9d9d9;
    color:#222;
    font-size:32px;
    font-weight:500;
    box-shadow:none;
}

.manual-accordion .accordion-button:not(.collapsed){
    background:#d9d9d9;
    color:#222;
}

.manual-accordion .accordion-button::after{
    display:none;
}

.manual-accordion .accordion-button::before{
    content:"+";
    margin-right:12px;
    font-size:32px;
    font-weight:bold;
}

.manual-accordion .accordion-button:not(.collapsed)::before{
    content:"−";
}

.manual-links{
    text-align:center;
}

.manual-links li{
    margin:25px 0;
}

.manual-links a{
    color:#0056d6;
    text-decoration:none;
    font-size:20px;
}

.manual-links a:hover{
    text-decoration:underline;
}

#batteryAccordion{
    width:420px;
    margin:40px auto 0;
}

#batteryAccordion .accordion-button{
    background:#fff;
    font-size:18px;
    border:1px solid #ddd;
}

#batteryAccordion .accordion-body{
    border:1px solid #ddd;
}


.detail-card {
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.blog-sidebar{
    background:#fff;
}

.sidebar-widget{
    margin-bottom:40px;
}

.widget-title{
    font-size:18px;
    font-weight:500;
    margin-bottom:12px;
    color:#222;
}

.sidebar-title{
    font-size:28px;
    font-weight:700;
    color:#1b2b4f;
    margin-bottom:22px;
}

.search-form{
    display:flex;
    gap:10px;
}

.search-form input{
    width:100%;
    height:42px;
    border:1px solid #ddd;
    padding:0 12px;
    outline:none;
}

.search-form input:focus{
    border-color:#1a73e8 ;
}

.search-form button{
    background: #1a73e8 ;
    color:#fff;
    border:none;
    padding:0 22px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.search-form button:hover{
    background:#0b5ed7;
}

.recent-posts{
    list-style:none;
    padding:0;
    margin:0;
}

.recent-posts li{
    margin-bottom:18px;
}

.recent-posts li:last-child{
    margin-bottom:0;
}

.recent-posts a{
    color:#1a73e8 ;
    text-decoration:none;
}

.recent-posts a:hover{
    color:#1a73e8 ;
}

.no-comments{
    font-size:16px;
    color:#444;
    margin:0;
    line-height:1.7;
}

@media(max-width:991px){
    .blog-sidebar{
        margin-top:40px;
    }

    .sidebar-title{
        font-size:24px;
    }

    .search-form{
        flex-wrap:wrap;
    }

    .search-form button{
        width:100%;
        height:42px;
    }
}

.wp-block-quote {
    position: relative;
}
.wp-block-quote::before {
    position: absolute;
    content: '';
    background-color: #ddd;
    width: 5px;
    height: 100%;
    left: -24px;
}
.post-navigation{
    padding:40px 0;
    border-top:1px solid #eee;
}

.post-navigation .nav-links{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.post-navigation .nav-previous,
.post-navigation .nav-next{
    flex:1;
}

.post-navigation .nav-next{
    text-align:right;
}

.post-navigation .nav-previous span,
.post-navigation .nav-next span{
    color:#0d6efd;
    font-size:18px;
    font-weight:500;
    white-space:nowrap;
}
@media (max-width:767px){

    .post-navigation{
        padding:25px 0;
    }

    .post-navigation .nav-links{
        flex-direction:row;   
        justify-content:space-between;
        align-items:center;
        gap:10px;
    }

    .post-navigation .nav-previous span,
    .post-navigation .nav-next span{
        font-size:15px;
    }

    .post-navigation .nav-next{
        text-align:right;
    }
    .cta-banner-title{
        font-size:30px !important;
        
    }
}

.cta-banner-section{
    position: relative;
    background: url(../imgs/lana-hero.jpg) center center / cover no-repeat;
    overflow: hidden;
    height: 300px;
    border-radius: 0 0 18px 18px;
    display: flex;
    align-items: center;
}

.cta-banner-overlay{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(20, 20, 20, .25);
}

.cta-banner-content{
    position:relative;
    z-index:2;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.cta-banner-title{
    color:#fff;
    font-size:50px;
    font-weight:700;
    margin:0;
}


.objectives-box{
    background:#f8eaea;
    border-radius:20px;
    padding:35px 40px;
}

.objectives-heading{
    text-align:center;
    margin-bottom:50px;
    padding-bottom:20px;
    border-bottom:1px solid #efb4b4;
}

.objectives-heading h2{
    font-size:56px;
    font-weight:700;
    color: #000;
    margin:0;
}

.objectives-heading h2 span{
    color:var(--primary-color);
}

.objective-item h4{
    color:#1f2d45;
    margin-bottom:30px;
}

.objective-item ul{
    list-style:none;
    padding:0;
    margin:0;
}

.objective-item ul li{
    position:relative;
    padding-left:38px;
    margin-bottom:18px;
    font-size: 18px;
}

.objective-item ul li:last-child{
    margin-bottom:0;
}

.objective-item ul li::before{
    content:"✔";
    position:absolute;
    left:0;
    top:3px;
    width:24px;
    height:24px;
    background:#ff2d55;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
    font-weight:700;
}

/* ---------- Tablet ---------- */

@media (max-width:991px){

    .objectives-box{
        padding:40px 30px;
    }

    .objectives-heading{
        margin-bottom:35px;
    }

    .objectives-heading h2{
        font-size:42px;
    }

    .objective-item h3{
        font-size:34px;
        margin-bottom:20px;
    }

    .objective-item ul li{
        font-size:19px;
    }

}

/* ---------- Mobile ---------- */

@media (max-width:767px){

    .project-objectives{
        padding:60px 0;
    }

    .objectives-box{
        padding:30px 20px;
        border-radius:15px;
    }

    .objectives-heading{
        margin-bottom:30px;
        padding-bottom:15px;
    }

    .objectives-heading h2{
        font-size:32px;
        line-height:1.3;
    }

    .objective-item h3{
        font-size:26px;
        margin-bottom:18px;
    }

    .objective-item{
        margin-bottom:20px;
    }

    .objective-item ul li{
        font-size:17px;
        line-height:1.6;
        padding-left:32px;
        margin-bottom:15px;
    }

    .objective-item ul li::before{
        width:22px;
        height:22px;
        font-size:11px;
        top:2px;
    }

}