* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

body {
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-200px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(200px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.delay-1 {
    animation-delay: 0.5s;
}

.delay-2 {
    animation-delay: 1s;
}

.fade-left {
    animation: fadeInLeft 1.5s ease forwards;
}

.fade-right {
    animation: fadeInRight 1.5s ease forwards;
}

.main-section {
    background-image: url(../image/banner.png);
    width: 100%;
    aspect-ratio: 3/2;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: cover;
    max-height: calc(100vh - 60px);
    border-radius: 0 0 100px 100px;
    position: relative;
    overflow-x: hidden;
}

.main-section::after {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background: #000000;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.40) 25%, rgba(0, 0, 0, 0.16) 100%);
    border-radius: 0 0 100px 100px;
}

.main-section::before {
    position: absolute;
    width: 100%;
    height: 100%;
    content: '';
    background: #000000;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.25) 20%, rgba(0, 0, 0, 0.16) 100%);
    border-radius: 0 0 100px 100px;
}

.main-nav-bar {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: absolute;
    top: 0;
    z-index: 99;
    padding: 25px;
    width: 100%;
}

.header-logo {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 5px;
}

.header-logo img {
    width: 70px;
}

.footer-logo {
    width: 150px !important;
}

.header-logo .logo-text {
    font-size: 40px;
    line-height: 1;
    text-transform: uppercase;
    color: #ffffff;
    font-weight: bold;
    font-family: "Times New Roman";
}

.header-right-top {
    display: flex;
    justify-content: end;
    gap: 20px;
    align-items: center;
}

.header-right-top a {
    font-size: 14px;
    line-height: 24px;
    color: #ffffff;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.google-play-img {
    width: 150px;
}


/* Hide checkbox */

#menu-toggle {
    display: none;
}


/* Hamburger icon */

.menu-icon {
    display: none;
    font-size: 26px;
    cursor: pointer;
    user-select: none;
}

.menu {
    display: flex;
    gap: 10px;
    position: relative;
}


/* Mobile view */

@media (max-width: 1110px) {
    .main-nav-bar.inside-home .header-right-top {
        flex-direction: row-reverse;
        gap: 10px;
    }
    .menu {
        display: none;
        flex-direction: column;
        margin-top: 50px;
        /* gap: 15px; */
    }
    .menu-icon {
        display: flex;
        align-items: center;
    }
    /* Show menu when checked */
    #menu-toggle:checked~.menu {
        display: flex;
        position: absolute;
        left: 0;
        top: 80px;
        margin: 0;
        width: 100%;
        background-color: rgb(0 0 0 / 100%);
        padding: 15px 10px;
    }
}

.call-to-action {
    padding-right: 25px;
}

.main-nav-bar.inside-home {
    align-items: center;
    background-color: rgb(0 0 0 / 60%);
    position: fixed;
    padding: 5px 25px;
}

.socialmedia-icon {
    display: flex;
    gap: 5px;
}

.header-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 25px;
}

.header-right-bottom {
    display: flex;
    justify-content: end;
    gap: 25px;
}

.header-btn {
    font-size: 16px;
    color: #ffffff;
    font-weight: 600;
    font-family: "Montserrat";
    background-color: #d4af37;
    text-decoration: none;
    border: 2px solid #fff;
    border-radius: 35px;
    padding: 10px 32px;
}

.header-btn.btn2 {
    background-color: #2a2b2e;
}

.float-wp {
    position: fixed;
    right: 30px;
    bottom: 150px;
    width: 50px;
    z-index: 99999;
}

.main-footer p,
.footer-section3 p {
    font-size: 12px;
}

footer {
    padding: 0px;
    display: flex;
    justify-content: space-between;
    max-width: 1600px;
    margin: 0 auto;
    font-size: 16px;
    color: #000000;
    font-weight: 500;
    flex-wrap: wrap;
    gap: 15px;
}

footer a {
    text-decoration: none;
    color: #d4af37;
}

.banner-content {
    position: absolute;
    left: 50%;
    bottom: 50px;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 30px;
    z-index: 9999;
    max-width: 1100px;
    width: 100%;
    overflow-x: hidden;
}

.banner-card {
    max-width: 500px;
    text-align: center;
}

.banner-card img {
    border-radius: 25px;
    width: 90%;
    border: 2px solid #fff;
}

p.blue-bg-text {
    font-size: 14px;
    color: #fff;
    font-weight: 600;
    padding: 15px;
    background-color: #193cae;
    border: 2px solid #fff;
    border-radius: 25px;
    text-align: center;
    display: inline;
    margin: 0 auto;
    position: relative;
    top: -20px;
    z-index: 9;
}

.grey-bg-text {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
    padding: 15px;
    background-color: #77787b;
    border-radius: 0 0 23px 23px;
    text-align: center;
    display: inline-block;
    margin: 0 auto;
    position: relative;
    top: -5px;
    z-index: 7;
}

.show-in-mob {
    display: none !important;
}

.show-in-desk {
    display: block !important;
}

@media(max-width: 1500px) {
    .header-btn {
        font-size: 14px;
    }
    .call-to-action {
        padding: 0.5rem 0.5rem !important;
    }
    .header-right-top {
        gap: 10px;
    }
    .header-right-bottom {
        gap: 12px;
    }
    .menu {
        gap: 0;
    }
}

@media (max-width: 1400px) and (min-width: 1301px) {
    .main-section {
        max-height: 750px;
        /* min-height: 1200px; */
    }
}

@media(max-width: 1650px) {
    .header-right-top a,
    .footer-column ul li a,
    .footer-section3 p {
        font-size: 14px !important;
    }
    .main-index .header-right-top a {
        font-size: 12px !important;
    }
}

@media(max-width: 1400px) {
    .header-logo .logo-text {
        font-size: 40px;
    }
    .menu {
        gap: 0;
    }
}

@media(max-width: 1300px) {
    .main-section {
        max-height: unset;
        /*min-height: 1200px;*/
    }
    .main-nav-bar.inside-home .call-to-action {
        padding-right: 0;
    }
    .main-nav-bar.inside-home .header-logo img {
        width: 70px;
    }
    .main-nav-bar.inside-home .header-logo .logo-text {
        font-size: 30px;
    }
    .show-in-mob {
        display: block !important;
    }
    .show-in-desk {
        display: none !important;
    }
    .main-nav-bar.inside-home {
        flex-direction: row;
        justify-content: space-between;
    }
    .main-nav-bar {
        flex-direction: column;
        gap: 10px;
        justify-content: center;
        align-items: center;
    }
}

@media(max-width: 1200px) {
    .main-section {
        /*max-height:unset;   */
        /*min-height: 1200px;*/
    }
    .banner-content {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .header-right-top,
    .header-right-bottom {
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }
}

@media(max-width: 1200px) {
    .main-section {
        min-height: 1300px;
    }
    .banner-content {
        padding: 0 15px;
        bottom: 100px;
        gap: 50px;
    }
}

@media(max-width: 600px) {
    .footer-logo {
        width: 70px !important;
    }
    .main-nav-bar {
        padding: 15px;
    }
    .header-right-top a svg {
        width: 37px;
    }
    .socialmedia-icon {
        gap: 0;
        justify-content: space-between;
    }
    .google-play-img {
        width: 130px;
    }
    .header-btn {
        font-size: 13px;
        padding: 10px 20px;
    }
    .header-right-top {
        gap: 1;
        justify-content: space-between;
    }
    .main-section {
        min-height: 1150px;
    }
    .banner-content {
        bottom: 65px;
        padding: 0px 15px;
        gap: 30px;
    }
    .main-index-text .banner-content {
        bottom: 0;
    }
    .float-wp {
        right: 30px;
        bottom: 30px;
    }
    p.blue-bg-text {
        font-size: 15px;
        display: inline-block;
    }
    .grey-bg-text {
        border-radius: 0 0 30px 30px;
        padding: 15px 25px;
        display: inline-block;
        /*margin-top:-25px;*/
        top: -25px;
    }
    .banner-card img {
        border-radius: 25px;
        width: 100%;
        max-width: 430px;
    }
    .grey-bg-text {
        font-size: 13px;
    }
    .main-section,
    .main-section:after,
    .main-section:before {
        border-radius: 0 0 100px 100px;
    }
    footer {
        font-size: 14px;
        gap: 5px;
    }
    /*
    footer p {
        text-align: center;
    }*/
    .main-section::before {
        display: none;
    }
    .main-section::after {
        position: absolute;
        width: 100%;
        height: 100%;
        content: '';
        background: #000000;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.40) 25%, rgb(0 0 0 / 40%) 100%);
        border-radius: 0 0 100px 100px;
    }
    .main-section {
        background-image: url(../image/Mobile-BG.png);
    }
    .header-logo .logo-text {
        font-size: 30px;
    }
    .header-logo img {
        width: 70px;
    }
}

@media(max-width:460px) {
    .banner-card img {
        max-width: 320px;
    }
    .main-section {
        min-height: 1000px;
    }
}

@media(max-width:430px) {
    .header-right-top a svg {
        width: 33px;
    }
}

@media(max-width:400px) {
    .google-play-img {
        width: 100px;
    }
    .header-right-top a {
        font-size: 12px;
    }
    .out-side .header-right-top a {
        font-size: 11px;
    }
    .header-right-top a svg {
        width: 25px;
    }
    .header-btn {
        font-size: 13px;
        padding: 10px 10px;
    }
}


/*popup*/

:root {
    --accent: #1976d2;
    --overlay-bg: rgba(0, 0, 0, 0.5);
    --radius: 8px;
}

.icon-btn {
    height: auto;
    cursor: pointer;
}

.icon-btn svg {
    display: block;
}

.popup-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 99999999;
}


/* overlay hidden */

.overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--overlay-bg);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease;
    z-index: 999999;
}


/* modal box */

.modal-crea {
    background: #fff;
    border-radius: var(--radius);
    width: min(600px, calc(100% - 40px));
    padding: 35px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.modal-crea .links .theme-paragraph {
    font-size: 14px;
}

.modal-head-crea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    padding-bottom: 6px;
}

.modal-head-crea h3 {
    margin: 0;
}

.close {
    cursor: pointer;
    font-size: 45px;
    line-height: 1;
}

.field {
    display: block;
    margin: 10px 0;
}

.field small {
    display: block;
    margin-bottom: 10px;
    color: #444;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
}

.field-inline {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.inline-label {
    font-size: 0.9rem;
    color: #333;
}

.actions {
    margin-top: 20px;
}

.btn {
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
}

.links {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
}

.link {
    color: var(--accent);
    text-decoration: underline;
    cursor: pointer;
    user-select: none;
}

.privacy {
    color: #777;
    font-size: 0.85rem;
    margin-top: 8px;
    font-size: 14px !important;
}


/* show overlays based on radio state */

#popup-login:checked~.overlay-login {
    opacity: 1;
    pointer-events: auto;
}

#popup-register:checked~.overlay-register {
    opacity: 1;
    pointer-events: auto;
}

#popup-forgot:checked~.overlay-forgot {
    opacity: 1;
    pointer-events: auto;
}

#popup-email:checked~.overlay-email {
    opacity: 1;
    pointer-events: auto;
}


/* blur page when any popup open */

#popup-login:checked~.page,
#popup-register:checked~.page,
#popup-forgot:checked~.page,
#popup-email:checked~.page {
    filter: blur(3px);
    pointer-events: none;
}

@media (max-width: 420px) {
    .modal {
        width: calc(100% - 30px);
    }
}

@media (max-width: 380px) {
    .main-index .header-right-top a {
        font-size: 11px !important;
    }
}






 