@import url('https://fonts.googleapis.com/css2?family=Goblin+One&family=Onest:wght@100..900&display=swap');

:root {
    --primary-color: #EB8710;
    --secondary-color: #C3D900;
    --red-color: #ff0000;
    --dark-color: #200055;
    --white-color: #FFFFFF;
    --text-color: #4D4D4D;
    --text-color-2: #7B7B7B;
    --my-font: "Goblin One", serif;
    --my-shadow: 0 2px 2px 0px rgba(0, 0, 0, 0.1)
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: "Onest", sans-serif;
    letter-spacing: 0.25px;
    color: #121212;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

.pointer {
    cursor: pointer;
}

.primary-color {
    color: var(--primary-color) !important;
}

.red-color {
    color: var(--red-color) !important;
}

.section-padding-2 {
    padding: 80px 0;
}

.section-padding {
    padding: 150px 0;
}

.overlay-text {
    font-size: 10rem;
    /* adjust as needed */
    font-weight: bold;
    background: linear-gradient(to bottom, #ff7f50, transparent);
    /* top color → transparent bottom */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    opacity: 0.6;
    position: absolute;
    left: 50%;
    top: 2%;
    transform: translateX(-50%);
    text-align: center;
    width: 100%;
    z-index: -1;

}

.my-font {
    font-family: var(--my-font);
}

.title {
    font-size: 2.5rem;
    position: relative;
    margin-bottom: 5rem;
    font-weight: 700;
    text-align: center;
    color: var(--primary-color);
}

.btn1 {
    padding: 0.75rem 2rem;
    border-radius: 9px;
    background: #d5f365;
    border: none;
    outline: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.35s ease-in-out;
    font-weight: 600;
    color: #121212;
    display: inline-block;
}

.btn1:hover {
    box-shadow: 7px 5px 56px -14px var(--secondary-color);
}

.btn1:active {
    transform: scale(0.97);
    box-shadow: 7px 5px 56px -10px var(--secondary-color);
}


.navbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 70px;
}

.pulse-contain {
    padding: 0.5rem 1.25rem;
    border-radius: 50vw;
    background-color: rgba(40, 199, 111, 0.14);
    font-size: 0.875rem;
    color: #005c29;
}

.pulse-ring {
    animation: pulse-ring 2s cubic-bezier(0.455, 0.03, 0.515, 0.955) infinite;
    width: 6px;
    height: 6px;
    background-color: #28C76F;
}

@keyframes pulse-ring {
    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    100% {
        transform: scale(2.4);
        opacity: 0;
    }
}

.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    border-bottom: 1px solid #c3c3c3;
    z-index: 999;
    background: #fff;
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #0000000f;
    animation: fadeInDown 0.5s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

/* Banner section */
/* .banner {
    height: 92vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.videoPanel {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    pointer-events: none;
}

.banner video {
    object-fit: cover;
    object-position: bottom;
    width: 100%;
    filter: brightness(0.6);
} */

.yg-wdt-videoBanner-37{
    position: relative;
    overflow: hidden;
}
.yg-wdt-videoBanner-37::before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.5));
}
.yg-wdt-videoBanner-37 video {
    aspect-ratio: 21 / 9;
    overflow: hidden;
    object-fit: cover;
    display: block;
}
.yg-wdt-bannerContent-38 {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}

.banner .banner-content {
    color: var(--white-color);
}

.banner .banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 4rem;

    span {
        color: #F59E0B;
    }
}

.banner .banner-content h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #e9e9e9;
}

.banner .banner-content p {
    font-size: 1rem;
    color: #e9e9e9;
    line-height: 1.75rem;
}

.banner form {
    color: var(--white-color);
    background-color: #ffffff1f;
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;

    .form-label {
        color: var(--white-color);
        font-size: 0.875rem;
    }

    .form-control {
        background-color: transparent;
        color: var(--white-color);
        border: 1px solid #c3c3c3;
        outline: none;
        box-shadow: none;
        font-size: 0.875rem;
        min-height: 44px;

        &::placeholder {
            color: var(--white-color);
            opacity: 0.7;
        }
    }

    .form-select {
        background-color: transparent;
        color: var(--white-color);
        border: 1px solid #c3c3c3;
        outline: none;
        box-shadow: none;
        font-size: 0.875rem;
        min-height: 44px;

        /* Remove default arrow */
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;

        /* Custom white arrow */
        background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 0.75rem center;
        background-size: 12px 12px;
        padding-right: 2rem;
    }

    .select-wrapper {
        position: relative;
    }

    /* Base select */
    .custom-select {
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        width: 100%;
        padding: 10px 2.5rem 10px 0.75rem;
        /* space on right for arrow */
        background-color: transparent;
        color: #ffffff;
        /* text color */
        border: 1px solid #c3c3c3;
        min-height: 44px;
        font-size: 0.875rem;
        border-radius: 6px;
    }

    .custom-select::-ms-expand {
        display: none;
    }

    .select-wrapper::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 12px;
        transform: translateY(-50%);
        width: 14px;
        height: 14px;
        pointer-events: none;
        background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='white' d='M7 10l5 5 5-5z'/></svg>");
        background-repeat: no-repeat;
        background-size: 14px 14px;
    }

    .custom-select option {
        background-color: #d4d4d4;
        /* orange */
        color: #000;
    }

    /* Hover for options (some browsers support) */
    .custom-select option:hover {
        background-color: #d4d4d4;
        color: #000;
    }

    /* Focus outline */
    .custom-select:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.12);
    }
}

.banner form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.banner .my-banner-btn {
    padding: 1rem 2rem;
}



.about h2 {
    color: var(--primary-color);
    text-align: left;
    margin-bottom: 1rem;
    font-weight: 700;
    font-family: inherit;
}

.about p {
    line-height: 1.75rem;
}

.about .inner-contain {
    padding: 1rem;
    border-radius: 1rem;
    background-color: #f3f3f3c7;
    border-right: 5px solid var(--secondary-color);
    border-left: 5px solid var(--secondary-color);
    align-content: center;

    h3 {
    font-size: 0.9rem;
    text-align: center;
    font-weight: 600;
    line-height: 1.75rem;
  }
}

.features h2 {
    font-size: 2.2rem;
    line-height: 3.125rem;
    margin-bottom: 0;
}

.features p {
    font-size: 1.25rem;
    line-height: 2rem;
    margin-bottom: 0;
}

.benifits {
    padding-top: 12rem;
    padding-bottom: 5rem;
}

.benifits .inner-contain {
    padding: 1.5rem;
    background-color: var(--white-color);
    border-radius: 1rem;
    border: 1px solid rgb(247, 216, 150);
    box-shadow: 4px 4px 0px rgb(247, 216, 150);
    height: 100%;

    .icon-img {
        height: 80px;
    }
}

.benifits .inner-contain h3 {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 2rem;
    margin: 1rem 0;
}

.benifits .inner-contain ul li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.875rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
    line-height: 1.4rem;
}

.benifits .inner-contain ul li::before {
    content: '\EB81';
    color: var(--primary-color);
    font-family: 'remixicon';
    font-weight: bold;
    display: inline-block;
    width: 1rem;
    position: absolute;
    left: 0;
    font-size: 1rem;
}

.benifits .inner-contain ul li:last-child {
    margin-bottom: 0;
}

.sound {
    background-color: #fffbf3;
}

.sound .logo-contain {
    margin-top: 2rem;
    margin-bottom: 7rem;
}

.sound h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.sound h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #585858;
}

.sound .logo-contain .jmgo-logo {
    height: 25px;
    opacity: 0.7;
}

.sound .logo-contain .dolby-logo {
    height: 30px;
    margin-left: 1rem;
    opacity: 0.7;
}

.overview {
    padding: 5rem 0;
}

.overview h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.overview p {
    font-size: 1.125rem;
    line-height: 2rem;
    margin-bottom: 1.8rem;
    color: #4b4b4b;

    &:last-child {
        margin-bottom: 0;
    }
}


.brand .inner-contain {
    padding: 1rem;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    align-content: center;
    text-align: center;
    height: 100%;
    aspect-ratio: 1/1;
}
.brand .inner-contain .brand-img {
    
}









@media (max-width: 1528px) {
    .banner {
        height: auto;
    }

    .yg-wdt-videoBanner-37 video{
        aspect-ratio: 16 / 9;
    }

    .banner .banner-content h1 {
        font-size: 2.5rem;
        line-height: 3.3rem;
    }

    .navbar svg {
        height: 50px;
    }

    .navbar h5 {
        font-size: 18px;
    }

    .navbar span {
        font-size: 0.875rem;
    }

    .banner .my-banner-btn,
    .banner .btn1 {
        padding: 0.8rem 1.75rem;
        font-size: 0.875rem;
    }

    .banner h2 {
        font-size: 1.75rem;
    }

    .about .inner-contain h3 {
        font-size: 1.125rem;
        line-height: 1.7rem;
    }
}

@media (max-width: 1366px) {
    .features h2 {
        font-size: 2rem;
        line-height: 2.825rem;
    }

    .features p {
        font-size: 1.05rem;
        line-height: 1.8rem;
    }

    .overlay-text {
        font-size: 8rem;
        top: 5%;
    }

    .sound h2 {
        font-size: 3.2rem;
    }

    .overview h2 {
        font-size: 1.8rem;
    }

    .overview p {
        font-size: 1.025rem;
        line-height: 1.8rem;
    }
}






@media (max-width: 991px) {
    .mobile-form {
        background-color: #fff5e8;
        padding: 3rem 0;
    }

    .mobile-form form {
        border: #0000001f solid 1px;
        padding: 2rem;
        border-radius: 10px;
        background-color: var(--white-color);

        .form-label {
            font-size: 0.875rem;
        }

        .form-control,
        .form-select {
            border: 1px solid #c3c3c3;
            outline: none;
            box-shadow: none;
            font-size: 0.875rem;
            min-height: 44px;
        }
    }

    .mobile-form form .form-check-input:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

    .banner {
        background: #101010;
    }

    .overlay-text {
        font-size: 6rem;
        top: 6%;
    }

    .benifits .inner-contain h3 {
        font-size: 1.15rem;
        line-height: 1.8rem;
    }

    .sound h2 {
        font-size: 2.5rem;
    }

    .sound h4 {
        font-size: 1.3rem;
    }

    .sound .logo-contain .dolby-logo {
        height: 25px;
        margin-left: 1rem;
    }

    .sound .logo-contain .jmgo-logo {
        height: 22px;
    }

    .reverse {
        flex-direction: column-reverse;
    }

}

@media (max-width: 800px) {
    .yg-wdt-bannerContent-38{
        position: relative;
        padding-top: 2rem;
    }
    .navbar h5 {
        font-size: 14px;
        margin-bottom: 2px;

        small {
            font-size: 10px !important;
        }
    }

    .navbar svg {
        height: 40px;
    }

    .navbar span {
        font-size: 0.675rem;
    }
}

@media (max-width: 767px) {
    body {
        font-size: 90%;
    }

    .about .inner-contain h3 {
        font-size: 1.025rem;
        line-height: 1.6rem;
    }

    .overlay-text {
        font-size: 5rem;
        top: 3%;
    }

    .benifits {
        padding-top: 10rem;
        padding-bottom: 5rem;
    }

    .sound h2 {
        font-size: 2.5rem;
    }

    .sound h4 {
        font-size: 1rem;
    }
}




@media (max-width: 480px) {
    .banner .banner-content h1 {
        font-size: 2rem;
        line-height: 2.8rem;
    }

    .banner .banner-content p {
        font-size: 0.875rem;
        line-height: 1.5rem;
    }

    .banner .my-banner-btn,
    .banner .btn1 {
        padding: 0.75rem 1.5rem;
        font-size: 0.775rem;
    }

    .btn1 {
        font-size: 0.775rem;
    }

    .about h2 {
        font-size: 1.8rem;
    }

    .about .inner-contain h3 {
        font-size: 0.75rem;
        line-height: 1.3rem;
    }

    .features h2 {
        font-size: 1.5rem;
        line-height: 2.225rem;
    }

    .overlay-text {
        font-size: 4rem;
        top: 2%;
    }

    .benifits {
        padding-top: 7.2rem;
        padding-bottom: 5rem;
    }

    .sound .logo-contain .jmgo-logo {
        height: 14px;
    }

    .sound .logo-contain .dolby-logo {
        height: 18px;
        margin-left: 0.2rem;
    }

    .overview h2 {
        font-size: 1.5rem;
    }

    .overview {
        padding: 3rem 0;
    }

    .section-padding-2 {
        padding: 60px 0;
    }

    .sound h2 {
        font-size: 1.8rem;
        margin-bottom: 0.7rem;
    }

    .about-list {
        flex-wrap: wrap;
        justify-content: center;
    }

    .about .inner-contain h3 {
        font-size: 0.85rem;
        line-height: 1.3rem;
    }

    .features h2 {
        font-size: 1.4rem;
        line-height: 2.125rem;
    }

    .navbar h5 {
        small {
            font-size: 8px !important;
        }
    }

    .navbar span {
        font-size: 0.5rem;
    }

    .pulse-contain {
        padding: 0.5rem 1rem;
    }

}


@media (max-width: 430px) {
    .overlay-text {
        font-size: 3.25rem;
        top: 2%;
    }
}

@media (max-width: 380px) {
    .banner .banner-content h5 {
        font-size: 0.8rem;
    }

    .banner .banner-content h1 {
        font-size: 1.5rem;
        line-height: 2.2rem;
    }

    .pulse-contain {
        padding: 0.5rem 0.75rem;
        font-weight: 600;
    }

    .navbar svg {
        height: 35px;
    }

    .navbar h5 {
        small {
            font-size: 7px !important;
        }
    }

    .btn1 {
        padding: 0.75rem 1rem;
    }

    .mobile-form form {
        padding: 1.5rem;
    }

    .mobile-form form {

        .form-control,
        .form-select {
            font-size: 0.775rem;
        }
    }

    .about .inner-contain h3 {
        font-size: 0.65rem;
        line-height: 1.3rem;
    }
}