@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;
    color: var(--white-color);
}

html {
    scroll-behavior: smooth;
}

body {
    font-size: 100%;
    margin: 0;
    padding: 0;
    font-family: "Onest", sans-serif;
    letter-spacing: 0.25px;
    color: var(--white-color);
    overflow-x: hidden;
    background-color: #000;
}

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 {
    padding: 40px 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.5em 1em;
    font-size: 1rem;
    display: inline-block;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 0.2em;
    cursor: pointer;

    overflow: hidden;
    position: relative;
    transition: 300ms cubic-bezier(0.83, 0, 0.17, 1);

    &>.text {
        font-weight: 700;
        color: var(--white-color);
        position: relative;
        z-index: 1;
        transition: color 700ms cubic-bezier(0.83, 0, 0.17, 1);
    }
}

.btn1::after {
    content: "";

    width: 0;
    height: calc(300% + 1em);

    position: absolute;
    translate: -50% -50%;
    inset: 50%;
    rotate: 30deg;

    background-color: var(--secondary-color);
    transition: all 1000ms cubic-bezier(0.83, 0, 0.17, 1);
}

.btn1:hover {
    border-color: var(--secondary-color);

    &>.text {
        color: var(--white-color);
    }

    &::after {
        width: calc(120% + 1em);
    }

}

.btn1:active {
    scale: 0.98;
    filter: brightness(0.9);
}

.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%;
    z-index: 999;
    background: #000000;
    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: 100vh;
    width: 100vw;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
}

.videoPanel {
    position: relative;
    pointer-events: none;
}

.videoPanel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    background: radial-gradient(circle at center,
            rgba(0, 0, 0, 0.6) 30%,
            rgba(0, 0, 0, 0) 100%
        );
    z-index: 2;
}


.banner video {
    object-fit: cover;
    object-position: bottom;
    width: 100%;
}

.banner .banner-content {
    color: var(--white-color);
}

.banner .banner-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 4rem;
    color: var(--white-color);
}

.banner .banner-content h5 {
    font-size: 1rem;
    margin-bottom: 1rem;
    font-weight: 400;
    color: #e9e9e9;
}

.banner .banner-content p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: #f0f0f0;
    line-height: 1.75rem;
}

.glass-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    width: fit-content;
}

.text-animated {
    background: linear-gradient(90deg, #FFD700, #FF4500, #FFD700);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 6s ease-in-out infinite;
}

@keyframes shine {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.glow-text {
    color: #FFD700;
    text-shadow: 0 0 10px #ffae00, 0 0 20px #ff8c00, 0 0 30px #ff4500;
}

#countdown .time-box {
    background: rgba(0, 0, 0, 0.315);
    padding: 10px 20px;
    min-width: 100px;
    border-radius: 12px;
    font-size: 1.75rem;
    font-weight: bold;
    backdrop-filter: blur(5px);

}

#countdown .label {
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 5px;
    display: block;
    color: #aaa;
}


.vip-btn {
  background: linear-gradient(135deg, #ffd700, #ffae00);
  color: #111 !important;
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  animation: pulseGlow 2s infinite;
}

/* Hover interaction */
.vip-btn:hover {
  transform: scale(1.07);
  box-shadow: 0 0 25px rgba(255, 215, 0, 0.8);
}

/* Shine effect */
.vip-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  transition: 0.5s;
}

.vip-btn:hover::after {
  left: 100%;
}

/* Pulsating Glow */
@keyframes pulseGlow {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(255, 215, 0, 1);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
  }
}


.banner form {
    color: var(--white-color);
    background-color: #ffffff1f;
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
}

.banner form .form-label {
    color: var(--white-color);
    font-size: 0.875rem;
}

.banner form .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;
}

.banner form .form-control::placeholder {
    color: var(--white-color);
    opacity: 0.7;
}

.banner form .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;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    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;
}

.banner form .select-wrapper {
    position: relative;
}
.banner form .termss {
    font-size: 0.8rem;
}

.banner form .custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 10px 2.5rem 10px 0.75rem;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #c3c3c3;
    min-height: 44px;
    font-size: 0.875rem;
    border-radius: 6px;
}

.banner form .custom-select::-ms-expand {
    display: none;
}

.banner form .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;
}

.banner form .custom-select option {
    background-color: #d4d4d4;
    color: #000;
}

.banner form .custom-select option:hover {
    background-color: #d4d4d4;
    color: #000;
}

.banner form .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);
}







@media (max-width: 1528px) {
    .banner {
        height: auto;
        padding: 3rem 0;
    }

    .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: 1276px) {
    .videoPanel {
        height: 100%;
    }
}



@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 {
        height: auto;
        padding: 0;
    }

    .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) {
    .section-padding {
        padding: 20px 0;
    }

    .banner h2 {
        font-size: 1.25rem;
    }
    
    .banner video {
        height: 100%;
        width: 100%;
    }

    .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;
    }

    #countdown .time-box {
        padding: 10px;
        min-width: auto;
    border-radius: 12px;
    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: 40px 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;
    }
}