
/*@import url("//cdn.web-fonts.ge/fonts/bpg-nino-mtavruli/css/bpg-nino-mtavruli.min.css");
@import url("//cdn.web-fonts.ge/fonts/bpg-banner-caps/css/bpg-banner-caps.min.css");
@import url("//cdn.web-fonts.ge/fonts/arial-geo/css/arial-geo.min.css");*/

* {
  box-sizing: border-box;
}
a {
    text-decoration: none;
}
ul, ol {
    list-style: none;
  }
body,
h1, h2, h3, h4, h5, h6,
p,
ul, ol,
li,
figure,
figcaption,
blockquote,
dl, dd, dt {
    font-weight: 500;
  margin: 0;
  padding: 0;
}
body {
    padding-top: 55px;
    font-family: "BPG Arial", sans-serif;

}
.main-container {
    margin: auto;
    max-width: 1100px;
}

.navigation-header {
  font-family: "BPG Nino Mtavruli Bold", sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  padding-right: 15px;
  z-index: 1000; 
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.2); }
nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;

}
.logo-container {
    display: flex;
    color: ghostwhite;
    text-decoration: none;
}
.navigation-items {
    display: flex;
    gap: 20px;
}
.navigation-items > a {
    color: #01435a;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
    transition: .4s ease-in-out;

  }
  .navigation-items > a:hover {
    color: gray;
  }
  /*.hamburger {
    display: none;
    font-size: 20px;
    font-weight: 800;
    color: white;
  }*/

.background-image {
    background-image: url(images/cover.png);
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat;
    height: 70vh; 
}
.container {
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
    padding-top: 60px;
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.services, .submit-button {
    text-align: center;
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
}
.logo {
    width: auto;
    height: 270px;
    margin-right: 10px;
}
.services {
    color: #198d9a;
    background-color: white;
    min-height: 100px; /* Set a minimum height for better vertical alignment */
    width: auto; 
    padding: 20px;
    border-radius: 6px;

    /* Center text horizontally */
    text-align: center;

    /* Center text vertically */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.services p {
    font-size: 18px;
}
.services h1 {
    font-size: 25px;
    font-weight: 400;
}
/*
.contact-form-div {
    width: 350px;
    height: 300px;
    background-color: white;
    text-align: center;
    font-size: 17px;
    border-radius: 25px;    
}
.contact-form {
    margin-top: 35px;
    justify-content: center;
    
}
.flex-column {
   display: flex;
   flex-direction: column;
   align-items: center;
   color: black;
}
.flex-column input {
    max-width: 250px;
    width: 100%;
    height: 40px;
    margin: 15px;
    border-radius: 8px;
    border: lightgray solid 1px;

}
.flex-column select {
    max-width: 250px;
    width: 100%;
    height: 40px;
    margin: 15px;
    border: lightgray solid 1px;
    border-radius: 8px;
}*/
.submit-button {
    width: 200px;
    height: 55px;
    font-size: 19px;
    font-weight: 500;
    border: none;
    background-color: #198d9a;
    color: white;
    border-radius: 6px;
    margin-top: 50px;
    cursor: pointer;
}
/*section2*/
.section2 {
    text-align: center;
    margin-top: 40px;
}
.section2 h3 {
    margin-bottom: 20px;
    font-size: 23px;
    font-weight:400;
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
}
.info-box-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.info-box {
    max-width: 500px;
    width: 100%;
    height: auto;
    background-color: #F5F5F5;
    border-radius: 10px;
    margin: 30px 5px 0 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center; /* Center text & button */
    padding-bottom: 20px; /* Space for the button */
   
}
.info-box h2 {
    font-size: 20px;
    margin: 20px 0 20px 0;
}
.info-box p {
    font-size: 17px;
    margin-bottom: 15px;
}
.see-more-button {
    width: 150px;
    border-radius: 4px;
    height: 45px;
    border: none;
    font-size: 16px;
    background-color:#198d9a;
    color: white;
    cursor: pointer;
    font-family: "BPG Nino Mtavruli Bold", sans-serif;

}
.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40%;
    height: 90%;
    background-color:#f8f8f8;
    z-index: 1100;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 10px; 
    border-radius: 15px;
    overflow: auto;
}
.popup-content {
    max-height: 90vh; 
    width: 95%;
    padding-top: 40px;
    z-index: 1200;
}
.close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 30px;
    cursor: pointer;
}
.full-info {
    margin-top: 30px;
    padding-left: 30px;
}
.section3 {
    display: flex;
    justify-content: center;
    align-items: center;
}
.section3-content {
    max-width: 800px;
    width: 100%;
    margin-bottom: 50px;
    text-align: center;
}
.section3-content h4 {
    margin-bottom: 20px;
    font-weight: 900;
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
    font-size: 25px;
}
.footer-container {
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
    height: 200px;
    width: 100% ;
    background-color: #051650;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
}
.footer-linkedin-icon{
    color: white;
    margin: 0 2px 0 10px;
    font-size: 25px;
}
.footer-watsapp-icon{
    color: white;
    margin: 0 2px 0 6px;
    font-size: 25px;
}
.footer-instagram-icon {
    color: white;
    margin: 0 10px 0 6px;
    font-size: 25px;
}
.footer-fb-icon {
    color: white;
    font-size: 25px;
}
.Why-lingo-section {
    text-align: center;
    padding-top: 50px;
    margin-top: 30px;
    margin-bottom: 50px;
    background-color: #F5F5F5;
    border-radius: 10px;
}
.Why-lingo-section:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}
.Why-lingo-section span { 
    font-size: 30px;
    font-family: "BPG Nino Mtavruli Bold", sans-serif;
    
}
.flex-container {
    margin-top: 60px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}
.flex-box {
    width: 300px;
    height: 250px;
    margin-bottom: 50px;
}
.flex-box p {
    margin-top: 30px;
}

.background1 {
    background-image: url(images/close-up-bar-graph-with-executives-negotiating-background.jpg);
    background-size: cover; 
    background-position: top;
    background-repeat: no-repeat;
    height: 200px; 
    border-radius: 10px 10px 0 0; 
}
.background2 {
    background-image: url(images/business-woman-planning-work.jpg);
    background-size: cover; 
    background-position: bottom; 
    background-repeat: no-repeat;
    height: 200px; 
    border-radius: 10px 10px 0 0;
}
.background3 {
    background-image: url(images/young-colleagues-working-together-cafe.jpg);
    background-size: cover; 
    background-position: top; 
    background-repeat: no-repeat;
    height: 200px; 
    border-radius: 10px 10px 0 0; 
}
.background4 {
    background-image: url(images/programming-background-with-person-working-with-codes-computer\ \(1\).jpg);
    background-size: cover; 
    background-position: bottom;
    background-repeat: no-repeat;
    height: 200px; 
    border-radius: 10px 10px 0 0; 
}

/* hover*/
.info-box:hover {
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Adjust the values as needed */
}
.see-more-button:hover {
    background-color: #063a85;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);  
}
.submit-button:hover {
    background-color: #063a85;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);  
}

@media screen and (max-width:768px) { 
    /*.hamburger {
        display: flex;
        cursor: pointer;
      }
      .hamburger #closeHam {
        display: none;
      }*/
    .navigation-items {
        display: none;
    }
    .section1 {
        justify-content: center;
    }
    .info-box-container {
        display: flex;
        justify-content: center;
    }
    .section3-content {
        max-width: 400px;
        margin: 30px 0 30px 0;
        text-align: center;
    }
    .section3-content h4{
        font-weight: 100;
        font-size: 20px;
    }
    .info-box p {
        font-size: 17px;
        margin-bottom: 5px;
    }
    .popup {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        height: 96%;
        background-color:#f8f8f8;
        z-index: 1100;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: 15px; 
        overflow: auto;
    }
    .popup-content {
        max-height: 90vh; /* Allow more space on smaller screens */
        width: 95%; /* Make it more mobile-friendly */
        padding-top: 5px; /* Extra space for close button */
        z-index: 1200;
    }
    .full-info {
        margin-top: 50px;
        padding-left: 15px;
    }
    .close {
        position: absolute;
        top: 10px;
        right: 15px;
        font-size: 24px;
        cursor: pointer;
        z-index: 1300;
    }
    
}