.company-logo{
    margin-right: 200px;
}
.company-logo img {
    max-height: 150px;
    max-width: 150px;
    margin-left: 125px;
    margin-right: 250px ;
    border-radius: 5px;
}
.static-bar {
    background-color: #add8e6; /* Light blue background color */
    color: #333; /* Text color */
    padding: 10px 20px ;/* Aligns items to the start and end of the flex container */
    display: flex;
    border-radius: 5px;
}

.phone-email {
    margin-left: auto;
    float:right;
/* Pushes the phone number and email to the right */
}

.phone, .email {
    margin-right: 20px; /* Adds spacing between phone number and email */
    color: #ffffff; /* Text color */
    text-decoration: none;
    align-items: right;
}

.email:hover {
    text-decoration: underline;
}

/* Styling for navigation */
.aboutcompany{
    display: flex;
    align-items: center;
    justify-content: space-between; 
    position: relative;
}
.menu-icon{
    display:none;
    cursor: pointer;
}
.bar {
    width: 25px;
    height: 3px;
    background-color: #000; /* Adjust color as needed */
    margin: 5px 0;
}
.navigation {
    display: flex;
    flex-direction: row;
    margin-left: 30px;
}

.nav-link {
    margin-right: 15px;
    color: #100000;
    text-decoration: none;
}
.nav-link:hover {
    text-decoration: none;
    color: #add8e6;; /* Change color on hover (your choice) */
    cursor: pointer;
}
.dropdown {
    position: relative;
    display: inline-block;
    margin-right: 15px;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    z-index: 1;
}

.dropdown-content a {
    color: #100000;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    color: #add8e6;
    text-decoration: none;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.bold-text {
    font-weight: bold; /* Make the text bold */
}
.colorful-line {
    width: 100px; /* Adjust width of the line */
    height: 3px; /* Adjust height of the line */
    background: #add8e6; /* Single color */
    margin-bottom: 20px; /* Adjust margin as needed */
}
.summary-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 20px;
    background-color: #0B2B43;
    color: white;
    border-radius: 5px;
  }
  .summary-container a{
    text-decoration: none;
    color:#add8e6;
  }
  
  .column {
    flex-basis: 33%; /* Adjust the width of each column */
    margin-bottom: 20px; /* Add spacing between columns */
  }
  
  .column img {
    width: 100px; /* Make the logo fill the column width */
  }
  
  .column h3 {
    margin-bottom: 10px;
  }
  
  .column ul {
    list-style-type: none; /* Remove bullets from the list */
    padding: 0;
  }
  
  .column ul li a {
    color: white;
    text-decoration: none;
  }
  
  .column ul li a:hover {
    color: #add8e6; /* Change color on hover */
  }
  
  .row {
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/
    width: 100%;
  }
  
  .row .column {
    flex-basis: 48%; /* Adjust the width of each column */
  }

  .thin-line {
    border-top: 1px solid #ccc; /* Add a top border to create a thin line */
    width: 100%; /* Take full width of the container */
    margin-top: 20px; 
    color: #add8e6;/* Add some spacing */
  }
  @media screen and (max-width: 768px) {
    .menu-icon {
        margin-right: 20px;
        display: block; /* Show the menu icon when screen size is reduced */
    }
    #navigation {
        display: none;
        flex-direction: row;
        position: absolute;
        top: calc(80%+10px);
        right: 10px;
        background-color: white;
        padding: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        border: 2px solid #000;
        z-index: 1000;
    }
    .about-section{
        flex-direction: column;
    }
    .company-logo img{
        max-height: 150px;
        max-width: 150px;
        margin-left: 100px;
        margin-right: 250px ;
        border-radius: 5px;
    }
  }
  @media screen and (max-width: 430px) and (min-width :312px){
    .about-section{
        flex-direction: column;
        margin-top: 20px;
        margin-bottom: 20px;
    }
    .summary-container {
        flex-direction: column;
    }
    .menu-icon {
        margin-right: 20px;
        display: block;
    }
    .company-logo img {
        max-height: 150px;
        max-width: 150px;
        margin-left: 10px;
        margin-right: 10px;
        /* border-radius: 5px; */
    }
    .company-logo{
        margin-right:100px;
    }
    #navigation {
        display: none;
        flex-direction: row;
        position: absolute;
        top: calc(80%+10px);
        right: 10px;
        background-color: white;
        padding: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        border: 2px solid #000;
        z-index: 1000;
    }
    .row p{
        width:50%;
    }
}
@media screen and (max-width: 1024px){
    .company-logo{
        margin-right:00px;
    }
    .company-logo img{
        margin-left:12px;
    }
}
    