* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: "BPG Nino Mtavruli", "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;
}

.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;
}
body.no-scroll {
    overflow: hidden;
}
.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;
    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;
    margin-bottom: 45px;
    padding-left: 90px;
    padding-right: 90px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2px;
    height: 100%;
}
.left-div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.inner-div {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
}
.right-div {
    display: flex;
    justify-content: center;
    align-items: center;
}
.title {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px;
}
.inner-div-content {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
}
.icon {
    width: 50px;
    height: 50px;
}
.address {
    color: #fff;
    font-size: 23px;
}
iframe {
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.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;
}
.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;
    height: 80%;
    width: 80%;
}
/* 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;
    }
}
@media (max-width: 1480px) {
    .header-dowm {
        justify-content: center;
    }
    .inner-div {
        width: 100%;
    }
}
@media (max-width: 1200px) {
    .container {
        margin: 0 50px;
    }

    .header-dowm {
        padding-left: 30px;
        padding-right: 30px;
    }
    .address {
        font-size: 20px;
    }
    iframe {
        width: 100%;
        height: 200px;
    }
}
@media (max-width: 1024px) {
    .nav {
        display: none;
    }
    .burger-menu {
        display: flex;
    }
    .right-div {
        display: none;
    }
    .header-dowm {
        justify-content: flex-start;
    }
    .inner-div-content{
        width: 100%;
    }
    .left-div{
        width: 100%;
        height: fit-content;
    }
    .header-line {
        justify-content: space-between;
        margin-left: 0;
    }
    .title {
        font-size: 28px;
    }
    .mobile-nav {
        width: 50%;
    }
}
@media (max-width: 768px) {
    .container {
        margin: 0 30px;
    }
    .header-dowm {
        padding-left: 10px;
        padding-right: 10px;
        margin-top: 30px;
    }
    .header-logo {
        max-width: 250px;
    }
    .title {
        font-size: 24px;
    }
    .address {
        font-size: 18px;
    }
    .icon {
        width: 40px;
        height: 40px;
    }

    .footer-div {
        padding-left: 20px;
        padding-right: 20px;
        margin-top: 60px;
    }
}
@media (max-width: 576px) {
    .container {
        margin: 0 15px;
    }
    .title {
        font-size: 22px;
    }
    .img{
        width: 80%;
    }
    .address {
        font-size: 16px;
    }
    .icon {
        width: 35px;
        height: 35px;
    }
    .inner-div-content {
        /* flex-direction: column;
        align-items: flex-start; */
        gap: 5px;
    }
    .footer-title {
        width: 200px;
    }
    .footer-content span {
        font-size: 14px;
        text-align: center;
    }
}