@charset "utf-8";
/* CSS Document */

* {
    box-sizing: border-box;
}

html,
body {
    padding: 0;
    margin: 0;
    font-family: 'montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.1;
    background-color: #000000;
    min-height: 100vh;
}

@media (min-width: 992px) {
    html,
    body {
        min-height: 100vh;
        overflow-y: auto;
    }

    section {
        padding-top: 1.5rem;
        padding-bottom: 2rem;
    }
}

.letter-space-6 {
    letter-spacing: 6px
}

.letter-space-3 {
    letter-spacing: 3px;
}

.border-bottom-nav {
    border-bottom: 2px solid #ed1c28;
}

.text-red {
    color: #f5002c !important;
}

.video-text {
    position: relative;
}

.carousel-control-prev,
.carousel-control-next {
    height: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
}

.line {
    position: absolute;
    width: 90px;
    height: 5px;
    background: #ff1833;
    border-radius: 5px;
}

.line.red-top {
    right: 14%;
    bottom: 110%;
    transform: rotate(-20deg);
}

.line.red-bottom {
    left: 18%;
    top: 96%;
    transform: rotate(-20deg);
}
.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s ease;
}

.play-icon img {
    width: 80px;
    height: auto;
    display: block;
}

.play-icon.hide {
    display: none !important;
}

@media(max-width:767px) {
    .play-icon img {
        width: 50px;
    }
}

@media(max-width:1192px) {
    .line.red-top {
        right: 14%;
        bottom: 110%;
        transform: rotate(-20deg);
    }

    .line.red-bottom {
        left: 13%;
        top: 96%;
        transform: rotate(-20deg);
    }
}

@media(max-width:576px) {
    .line.red-top {
        display: none;
    }

    .line.red-bottom {
        display: none;
    }

}

@media(max-width:776px) {
    .desktop {
        display: none !important;
    }
}

.desktop {
    display: inline-block;
}

.video-frame {
    width: 100%;
    max-height: 52vh;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.video-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/*form css start*/

#enquiryForm {
    position: relative;
}

.enquiry-section h1 {
    color: #fff;
    letter-spacing: 8px;
    font-weight: 300;
    font-size: 32px;
}

.form-control {
    background-color: transparent;
    border: 1px solid #ff1d2d;
    color: #ffffff;
    border-radius: 40px;
    height: 40px;
    padding: 0 22px;
    box-shadow: none;
}

.form-select {
    background-color: transparent;
    border: 1px solid #ff1d2d;
    color: #ffffff;
    border-radius: 40px;
    height: 40px;
    padding: 0 22px;
    box-shadow: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ff1d2d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 14px 10px;
    cursor: pointer;
    color-scheme: dark;
}

.form-select.empty,
.form-select:invalid {
    color: #777777;
}

select.form-select option {
    background-color: #121212 !important;
    color: #ffffff !important;
    padding: 10px 15px;
}

select.form-select option:checked,
select.form-select option:hover,
select.form-select option:focus,
select.form-select option:active {
    background-color: #ff1d2d !important;
    background: #ff1d2d !important;
    color: #ffffff !important;
    box-shadow: 0 0 10px 100px #ff1d2d inset !important;
    -webkit-box-shadow: 0 0 10px 100px #ff1d2d inset !important;
}

select.form-select option[value=""],
select.form-select option:disabled {
    color: #777777 !important;
    background-color: #121212 !important;
}

.form-control::placeholder {
    color: #777777;
}

.form-control:focus,
.form-select:focus {
    background-color: #000000;
    color: #ffffff;
    border-color: #ff1d2d;
    box-shadow: 0 0 0 0.2rem rgba(255, 29, 45, 0.25);
}

.phone-box {
    display: flex;
    gap: 12px;
}

.country-code {
    width: 80px;
    text-align: left;
}

.form-check-label {
    color: #fff;
    font-size: 14px;
    line-height: 1.4;
}

.form-check-input {
    background: transparent;
    border: 1px solid #fff;
}

.btn-submit {
    margin-top: 16px;
    background: #ff2433;
    color: #fff;
    border: none;
    border-radius: 40px;
    padding: 12px 45px;
    font-size: 18px;
    letter-spacing: 2px;
    font-weight: 600;
    transition: .3s;
}

.btn-submit:hover {
    background: #e30015;
}

@media(min-width: 992px) {
    nav.navbar {
        padding-top: 0.75rem !important;
        padding-bottom: 0.75rem !important;
    }

    .border-bottom-nav {
        padding-bottom: 0.75rem !important;
    }

    .video-text {
        margin-top: 1.5rem !important;
    }

    .video-text p {
        font-size: 1rem !important;
        margin-bottom: 0;
    }

    .enquiry-section h1 {
        font-size: 28px;
        margin-bottom: 0.75rem;
    }

    .enquiry-section .mb-3 {
        margin-bottom: 0.75rem !important;
    }

    .form-control,
    .form-select {
        height: 38px;
    }

    .btn-submit {
        margin-top: 12px;
        padding: 10px 40px;
        font-size: 16px;
    }
}

@media(max-width: 991px) {

    html,
    body {
        height: auto;
        min-height: 100vh;
        overflow-x: hidden;
        overflow-y: auto;
    }

    section {
        padding-top: 20px;
    }

    .enquiry-section {
        margin-top: 20px;
    }

    .btn-submit {
        margin-bottom: 30px;
    }
}

@media(max-width:576px) {

    .enquiry-section h1 {
        font-size: 28px;
        letter-spacing: 4px;
    }

    .phone-box {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .country-code {
        width: 75px;
    }

    .btn-submit {
        margin-bottom: 35px;
    }

}

/*form css end*/

/* jQuery UI Autocomplete accessibility helper reset */
.ui-helper-hidden-accessible {
    display: none !important;
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
}

/* jQuery UI Autocomplete styling synced with page theme */
.ui-autocomplete {
    background-color: #121212 !important;
    border: 1px solid #ff1d2d !important;
    border-radius: 12px !important;
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 99999 !important;
    padding: 6px 0 !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
    box-sizing: border-box !important;
}

.ui-menu-item {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ui-menu-item .ui-menu-item-wrapper {
    color: #ffffff !important;
    padding: 8px 16px !important;
    font-size: 14px;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
}

.ui-menu-item .ui-menu-item-wrapper.ui-state-active,
.ui-menu-item .ui-menu-item-wrapper:hover {
    background-color: #ff1d2d !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px;
    margin: 0 4px !important;
}

.ui-menu-item {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.ui-menu-item .ui-menu-item-wrapper {
    color: #ffffff !important;
    padding: 8px 16px !important;
    font-size: 14px;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
}

.ui-menu-item .ui-menu-item-wrapper.ui-state-active,
.ui-menu-item .ui-menu-item-wrapper:hover {
    background-color: #ff1d2d !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 6px;
    margin: 0 4px !important;
}