* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "Noto Sans Georgian", sans-serif; */
}

body {
    background-attachment: fixed;
    width: 100%;
    background: url('BG.jpg') no-repeat center center/cover;
    min-height: 100vh;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

.noto-sans-georgian {
    font-family: "Noto Sans Georgian", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    font-variation-settings: "width" 100;
}

.container {
    margin: 0px 150px;
}

.header-line {
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-left: 50px;
}

.header-logo {
    max-width: 350px;
    width: 100%;
}

.img {
    height: 100%;
    width: 100%;
}

.nav {
    display: flex;
    padding-top: 30px;
    align-items: flex-start;
    justify-content: space-around;
    height: 110px;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    text-wrap: nowrap;
    font-size: 25px;
    margin-right: 100px;
    transition: color .3s ease-in-out;
}

.nav-item:hover {
    color: #31ac78;
}

.nav-item.active {
    color: #31ac78;
    font-weight: bold;
}

.header-dowm {
    margin-top: 45px;
    padding-left: 90px;
    padding-right: 90px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2px;
    height: 100%;
}

.content {
    display: flex;
    justify-content: flex-start;
    color: #fff;
    width: 100%;
    padding: 10px 0px;
}

.content-icon1 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2px;
}

.stores {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
}

.icon {
    height: auto;
    width: 35px;
}

.left-div {
    padding-right: 20px;
    padding-top: 20px;
}

.right-div {
    width: 350px;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.inner-div {
    width: 100%;
}

.pht1 {
    height: 80%;
    width: 80%;
}

.title {
    width: 100%;
    font-size: 23px;
    border-radius: 10px;
    padding: 5px 10px;
    background: linear-gradient(to left, #8fffd000, #95ffd31f);
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.label-text {
    font-size: 20px;
    text-wrap: nowrap;
}

.inner-title-div {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.qr {
    height: auto;
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}


.footer-div {
    margin-top: 108px;
    color: #fff;
    padding-left: 90px;
    padding-right: 90px;
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    box-sizing: border-box;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 2px;
}

.footer-title {
    width: 250px;
    padding-top: -10px;
}

.soc-icons {
    display: flex;
    justify-content: flex-start;
}

.soc-icons a {
    text-decoration: none;
    padding: 10px;
    background-color: #31ac78;
    margin: 5px;
    border-radius: 20px;
}

.soc-icons a i {
    color: #fff;
    font-size: 1.5em;
    opacity: 0.9;
    padding: 2px;
}

.icons-div {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
}

.terms {
    color: #31ac78;
    padding-top: 5px;
    text-decoration: none;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.pht1 {
    animation: float 2.5s ease-in-out infinite;
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 98;
    position: relative;
}

.burger-line {
    height: 3px;
    width: 100%;
    background-color: #fff;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background-color: #fff;
    z-index: 99;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 80px;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav-item {
    color: #31ac78;
    text-decoration: none;
    font-size: 20px;
    margin: 15px 20px;
    padding: 10px 20px;
    transition: all 0.3s ease;
    width: calc(100% - 40px);
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-item:hover {
    color: #31ac78;
    background-color: #f9f9f9;
}

.mobile-nav-item.active {
    color: #31ac78;
    font-size: 22px;
    font-weight: bold;
    border-bottom: 1px solid #31ac78;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #31ac78;
    font-size: 30px;
    cursor: pointer;
    z-index: 101;
}

/* Responsive Styles */
@media (max-width: 1720px) {
    .container {
        margin: 0px 10px;
    }

    .img {
        max-width: 250px;
    }

    .header-line {
        margin-left: 30px;
        margin-right: 30px;
        justify-content: space-around;
    }

    .nav {
        display: flex;
        align-items: flex-start;
        justify-content: center;
        gap: 25px;
    }

    .nav-item {
        margin-right: 0px;
    }

    .header-dowm {
        margin-top: 50px;
    }
}

@media (max-width: 1480px) {
    .header-dowm {
        margin-top: 100px;
    }
}

@media (max-width: 1380px) {
    .benefit-box {
        padding: 45px 14px;
    }
}

@media (max-width: 1200px) {
    .benefits {
        padding-left: 0;
        padding-right: 0;
    }

    .left-div {
        margin-top: -30px;
    }
}

@media (max-width: 1024px) {
    .container {
        margin: 0 50px;
    }

    .nav {
        display: none;
    }

    .burger-menu {
        display: flex;
    }

    .header-line {
        justify-content: space-between;
        margin-left: 0;
    }
    .Gp {
        width: 300px;
    }
    

    .header-dowm {
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .left-div {
        display: none;
    }

    .right-div {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .pht1 {
        max-width: 400px;
        margin-bottom: 40px;
    }

    .mobile-nav {
        width: 50%;
    }

    .inner-title-div {
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
    }

}

@media (max-width: 768px) {
    .container {
        margin: 0 20px;
    }

    .header-logo {
        max-width: 250px;
    }
    .Gp {
        width: 250px;
    }
    

    .content {
        font-size: 16px;
        padding: 10px 0;
    }

    .footer-div {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .container {
        margin: 0 15px;
    }

    .img {
        width: 80%;
    }
    .Gp {
        width: 200px;
    }
    

    .nav-item {
        font-size: 18px;
    }

    .title {
        /* flex-direction: column; */
        /* align-items: flex-start; */
        gap: 10px;
        font-size: 18px;
    }

    .label-text {
        font-size: 16px;
    }

    .content {
        font-size: 14px;
    }

    .icon {
        align-self: flex-end;
        width: 28px;
    }

    .qr {
        width: 50%;
    }

    .footer-title {
        width: 180px;
    }

    .footer-content span {
        font-size: 11px;
        text-align: center;
    }

    .terms {
        font-size: 14px;
    }

    .soc-icons a i {
        font-size: 1.2em;
    }




}
@media (max-width: 470px) {
    
    .Gp {
        width: 150px;
    }
    

    




} 