@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

html,
body {
    width: 100%;
    height: 100%;
}

body {
    background-color: #060C18;
}

.main-wrapper {
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 9;
}

.header.is-sticky {
    background-color: rgba(6, 12, 24, 0.8);
    backdrop-filter: blur(10px);
}

.header-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-block .logo {
    flex-shrink: 0;
}

.header-block .logo a {
    text-decoration: none;
    display: flex;
}

.header-block .logo a img {
    width: 250px;
}

.header-button .btn-web-button {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background-color: #FF6B00;
    color: #fff;
    font-weight: 500;
    font-size: 18px;
    line-height: 18px;
    text-transform: capitalize;
    gap: 10px;
    padding: 12px 24px;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-web-button::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: #005099;
    height: 120%;
    width: 0;
    transition: all 0.5s;
    z-index: -1;
    border-radius: 0 30px 30px 0;
}

.header-button .btn-web-button img {
    width: 22px;
    flex-shrink: 0;
}

.hero-section {
    background-image: url(../images/bg.jpg);
    background-position: top center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    padding-top: 120px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(11, 21, 36, 0.8);
    z-index: -1;
}

.hero-content h1 {
    font-weight: 800;
    font-size: 100px;
    line-height: 100px;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #fff;
    text-shadow: 4px 4px 14px rgba(255, 107, 0, 0.5);
}

.hero-content h1 span {
    background: linear-gradient(174deg, rgba(255, 255, 255, 1) 0%, rgb(255 107 0) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255, 107, 0, 0.5), 0 0 20px rgba(255, 107, 0, 0.25);
}

.hero-content p {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 28px;
    line-height: 28px;
    color: #fff;
    margin-top: 8px;
}

.hero-content p span {
    color: #FF6B00;
    font-weight: 600;
    display: inline-block;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.contact-form-block {
    margin-top: 20px;
}

.contact-form-block form {
    background-color: rgba(6, 12, 24, 0.3);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    backdrop-filter: blur(10px);
    display: flex;
    width: 100%;
    gap: 20px;
}

.contact-form-block .form-field.mobile-number-input-field {
    width: 60%;
}

.contact-form-block .form-field.otp-field {
    width: 25%;
    flex-shrink: 0;
}

.contact-form-block .header-button {
    width: 15%;
    flex-shrink: 0;
}

.contact-form-block .form-field .mobile-number-field {
    position: relative;
}

.contact-form-block .form-field .mobile-number-field .header-button {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    z-index: 1;
}

.contact-form-block .form-field .form-control {
    box-shadow: none;
    border-radius: 6px;
    border: 0;
    height: 50px;
    font-weight: 400;
    font-size: 16px;
    line-height: 16px;
    color: #060C18;
    background-color: #fff;
    padding: 8px 15px;
}

.contact-form-block .form-field .form-control::placeholder {
    text-transform: capitalize;
    font-size: 14px;
    line-height: 14px;
}

.contact-form-block .form-field .mobile-number-field .btn-web-button {
    border-radius: 100px;
    padding: 8px 20px;
    background-color: #005099;
}

.contact-form-block .form-field .mobile-number-field .btn-web-button::after {
    background-color: #FF6B00;
}

.contact-form-block .header-button .btn-web-button {
    height: 100%;
}

.bonus-block {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.bonus-box {
    background-color: rgba(6, 12, 24, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bonus-box img {
    width: 50px;
}

.bonus-box .bonus-content h6 {
    margin-bottom: 0;
    color: #fff;
    font-weight: 500;
    font-size: 22px;
    line-height: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bonus-box .bonus-content h6 span {
    color: #FF6B00;
    font-weight: 600;
    display: inline-block;
    font-size: 28px;
    line-height: 28px;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-bottom: 30px;
}

.hero-img-section {
    text-align: center;
    margin-top: 30px;
}

.hero-img-section img {
    width: 75%;
    margin: 0 auto;
}

.btn-whatsapp {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-weight: 500;
    font-size: 16px;
    line-height: 16px;
    text-transform: capitalize;
    padding: 10px 20px;
    border-radius: 100px;
    background-color: #25D366;
    transform: translateY(0);
    transition: all 0.5s;
}

.btn-whatsapp img {
    width: 22px;
    flex-shrink: 0;
}

.whatsapp-button {
    margin-top: 20px;
}