body {
    font-family: 'Lexend Deca', sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #0077A4;
    padding: 20px;
    padding-left: 40px;
    padding-right: 40px;
}

.banner {
    display: flex;
    align-items: center;
    background-color: #0077A4;
}

.logo {
    margin-right: auto;
}

.logo img {
    height: 44px;
    width: 184px;
}

nav ul {
    list-style-type: none;
    margin-right: 0px;
    padding: 0;
    display: flex;
    left: -10px;
}

nav ul li {
    margin-right: 0px;
    margin-left: 90px;
    font-size: 12px;
    text-align: center;
    align-items: center;
    left: -10px;
    display: flex;
}

nav ul li:first-child {
    margin-left: -10;
    align-items: center;
    display: flex;
}

nav ul li a {
    margin-right: 0px;
    color: white;
    text-decoration: none;
    display: flex;
}

.hamburger-menu {
    display: none;
    color: white;
    cursor: pointer;
}

/* HOMEBANNER */

.container1 {
    position: relative;
    width: 100%;
}

.background-image {
    background-image: url('../img/mobilecomp-cover.png');
    background-size: cover;
    background-position: center;
    height: 350px; /* Adjust the height as needed */
    color: white; /* Text color */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.background-image p {
    font-size: 40px; /* Adjust the font size as needed */
    font-weight: bold;
    letter-spacing: 2px;
}

.container {
    max-width: 800px; /* Adjust as needed */
    margin: 0 auto; /* Center the container */
    text-align: center; /* Center-align the text */
}

.container h1 {
    margin-top: 40px;
    font-size: 11px; /* Adjust the font size as needed */
    color: #0077A4;
}

.container p {
    margin-top: 0px;
    font-size: 15px; /* Adjust the font size as needed */
    line-height: 2.0; /* Adjust the line height as needed */
    color: #575757;
    padding: 20px;
}

.products {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 30px;
    margin-bottom: 20px;
}

.product + .product {
    margin-left: 30px; /* Adjust as needed */
}

.product {
    width: calc(20% - 20px); /* Adjust width as needed */
    height: 230px;
    margin-bottom: 20px;
    text-align: center;
    border: solid 1px #c7c7c7;
    border-radius: 10px;
    position: relative;
}

.product img {
    width: 120px;
    height: 120px; /* Adjust height as needed */
    object-fit: cover;
    border-radius: 8px;
    margin-top: 30px;
}

.product p {
    margin-top: 10px;
    color: #444444;
    font-size: 16px ;
}

/* Add this CSS to your existing styles.css file or link a new one */

.product-nav {
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}
.product-box {
    flex: 1;
    margin: 0 10px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: solid 1px #c7c7c7;
    transition: transform 0.3s ease-in-out;
    margin-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
}
.product-box:hover {
    transform: scale(1.05);
}
.product + .product {
    margin-left: 30px; /* Adjust as needed */
}
.image {
    width: 30%;
    height: auto;
    margin-left: -10px;
}
.title {
    margin-left: 0px;
    padding: 10px;
    font-weight: normal;
    margin-left: 10px;
    flex: 1;
    color: #575757;
    font-size: 14px;
}
a {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}

.checkbox {
    position: absolute; /* Set the position of the checkbox to absolute */
    top: 10px; /* Adjust the top position as needed */
    right: 10px; /* Adjust the left position as needed */
}

#flexFormContainer {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #ffffff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-width: 400px;
    width: 100%;
    justify-content: center;
  }
  
  #flexForm {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center items horizontally */
  }
  
  img {
    width: 173px;
    height: 52px;
  }
  
  .formGroup {
    margin-bottom: 20px; /* Increased margin for better separation */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .formGroup label {
    margin-bottom: 5px; /* Spacing between label and input */
    font-size: 13px;
    color: #444444;
    margin-top: 10px;
  }
  
  .formGroup input,
  .formGroup textarea {
    width: 100%; /* Ensure input fields take up full width */
    padding: 8px; /* Adjust padding as needed */
    border: 1px solid #ccc;
    border-radius: 5px;
  }

  .formGroup input {
    width: 300px;
    font-family: 'Lexend Deca', sans-serif;
  }

  #flexForm textarea {
    width: 300px;
    resize: vertical; /* Only allow vertical resizing */
    font-family: 'Lexend Deca', sans-serif;
  }  
  
  #flexForm button[type="submit"] {
    background-color: #007bff;
    color: white;
    padding: 10px 50px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 13px;
    margin-bottom: 15px;
    margin-left: 130px; /* Add this line */
    margin-right: 130px; /* Add this line */
  }
  
  #flexForm button[type="submit"]:hover {
    background-color: #0056b3; /* Darker blue on hover */
  }
  
  #closeFormButton {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
  
  #showFormButton {
    background-color: #007bff;
    color: #fff;
    padding: 20px 60px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: 'Lexend Deca', sans-serif;
    font-size: 13px;
  }
  
  #showFormButton:hover {
    background-color: #013f81;
  }
  
  .hidden {
    display: none;
  }
  
  .button-container {
    display: flex; /* Use flexbox to center the button horizontally and vertically */
    justify-content: center; /* Center the button horizontally */
    align-items: center; /* Center the button vertically */
    margin-top: 20px; /* Add some margin at the top */
    margin-bottom: 20px; /* Add some margin at the top */
    
  }
  

/* FLOATING BUTTONS */

.floating-fb-btn1 {
    position: fixed;
    bottom: 160px;
    right: 16px;
    background-color: #0077a4;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.floating-fb-btn1 img {
    width: 70%;
    height: auto;
}

.floating-fb-btn {
    position: fixed;
    bottom: 100px;
    right: 16px;
    background-color: #0077a4;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    z-index: 9999;
}

.floating-fb-btn img {
    width: 70%;
    height: auto;
}

.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #01D20C;
    color: #ffffff;
    width: 42px;
    height: 70px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    z-index: 9999;
  }
  
  .custom-button1 {
    font-family: 'Lexend Deca', sans-serif;
    display: inline-block;
    padding: 15px 40px;
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 5px;
    margin-left: 10px;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-button1:hover {
    background-color: #ffffff;
    color: #0077A4;
}

/* FOOTER */

.footer-content {
    padding: 20px;
    text-align: center;
    color: white;
}

.footer-content img{
    height: 44px;
    width: 184px;
}

.footer-buttons {
    margin-top: 20px;
}

