/* Import fonts */
@import url('https://fonts.googleapis.com/css?family=Fira+Sans|Inter');
/* November 4 build November xx upload */
/* General Styles */
body {
  margin: 0;
  padding: 0;
  text-align: left;
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  color: #000000;
  background-color: #ffffff;
}

/* Apply DM Sans to all headings */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Fira Sans', sans-serif;
    font-size: 48px;
  }


/* Header */
header {
    background-color: white;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
  }
  
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2px 1px;
  }
  
  .logo-img {
    width: 260px;
    height: auto;
    padding-left: 12px;
    padding-top: 6px;
  }
  #sideNav{
    width: 160px;
    height: 100vh;
    position: fixed;
    right: -160px;
    top: 0;
    background: rgb(255, 90, 0);
    z-index: 2;
    transition: 0.5s;
  }
  
  nav ul li{
    list-style: none;
    margin: 60px 14px
  }
  
  nav ul li a{
    text-decoration: none;
    color: #ffffff;
  }
  
  #menuBtn{
    width: 30px;
    height: 30px;
    background: none;
    text-align: center;
    position: fixed;
    right: 30px;
    top: 2px;
    border-radius: 10px;
    z-index: 3;
    cursor: pointer;
  }
  
  #menuBtn img{
    width: 40px;
    margin-top: 1px;
  }
    

/* Hero - ---*/
.Hero {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: left; /* Merged style */
    background: rgba(0,0,0,0.48);
    color: hsl(0, 0%, 100%); /* Merged style */
    margin-bottom: 6px;
    margin-top: 50px; /* Merged style */
    padding-left: 12px; /* Merged style */
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.video-bg {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    min-width: 100%;
    min-height: 100%;
}

p {
    margin-bottom: 10px;
  }
  
color-bar {
    opacity: 0.5;
  }
  
  .Hero h1{
    font-size: 96px;
    -webkit-text-fill-color:#fff;
  }
  
  .Hero p{
    font-size: 32px;
    margin-top: 80px;
  }
  /* about Us, What We Do and Clients sections */
.about-us,
.what-we-do,
.clients {
  padding: 20px;
}

/* Body */
.about-us {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: center;
    background-color: #ffffff;
    padding: 2px 0;
    margin-top: 10px; /* Added margin to separate from hero */
  }
  
  .about-us h2 {
    color: rgb(0, 0, 0);
    font-size: 36px;
    margin-bottom: 20px; 
  }
  
  .about-us p {
    color: rgb(0, 0, 0);
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 10px; 
  }
  
  .two-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    
  }
  
  .left-column {
    flex: 1;
    padding: 40px;
    font-size: 22px;
    line-height: 1;
    margin:auto; /* Add top and bottom margins to center the text vertically */
  }
  
  .right-column {
    flex: 1; /* Give the right column more space */
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0px; /* Add padding to the right column */
  }
  
  .right-column img {
    max-width: 100%;
    height: auto;
    width: 100%; /* Ensure the image takes the full width of its container */
  }
  
.about-us .left-column p,
.what-we-do .left-column p {
  margin-bottom: 20px;
}
/* What We Do */
.what-we-do {
    background-color: #ffffff;
    padding: 20px 0;
    overflow: hidden; /* Clear floats */
  }
  
  .what-we-do h2 {
    color: rgb(0, 0, 0);
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .what-we-do p {
    color: rgb(0, 0, 0);
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .what-we-do .two-column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .what-we-do .left-column {
    flex-basis: 48%;
    border: 1px solid rgb(255, 255, 255);
    padding: 40px;
    margin-top: 10px;
    box-sizing: border-box;
  }
  
  .what-we-do .right-column {
    flex-basis: 48%;
    box-sizing: border-box;
  }
  
  .what-we-do .subheaders-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .what-we-do .subheader {
    flex-basis: 48%;
    margin-bottom: 20px;
  }
  
  .what-we-do .subheader h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .what-we-do .subheader p {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  
  .what-we-do .subheader:last-child {
    margin-right: 0;
  }
  /* New style to balance the text in the right column */
  .what-we-do .right-column {
    padding: 20px;
  }
  
  .what-we-do .subheader {
    text-align: justify;
  }
  
  .accordion {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .accordion-item {
    background-color: #f1f1f1;
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .accordion-item input[type="checkbox"] {
    display: none;
  }
  
  .accordion-item label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    background-color: #e0e0e0;
    color: #333;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .accordion-item label:hover {
    background-color: #d0d0d0;
  }
  
  .accordion-item label span {
    font-size: 24px;
    color: rgb(255, 90, 0);
    transition: transform 0.3s ease;
  }
  
  .accordion-item .content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: #f9f9f9;
  }
  
  .accordion-item input[type="checkbox"]:checked + label + .content {
    max-height: 1000px;
  }
  
  .accordion-item input[type="checkbox"]:checked + label span {
    transform: rotate(45deg);
  }
  
  .accordion-item .content p {
    padding: 15px;
    margin: 0;
  }
  
  /* Responsive styles */
  @media screen and (max-width: 768px) {
    .accordion {
      max-width: 100%;
    }
    .clients .row {
        flex-wrap: wrap;
    }
    
    .clients .column {
        flex: 50%;
        max-width: 50%;
        padding: 0 8px;
    }
    
    .clients img {
        width: 100%;
        margin: 0 0 20px 0;
    }
  }
  /*-------client section----*/
.clients {
    background-color: #ffffff;
    padding: 50px 0px 0 0px; /* Remove padding at the bottom */
  }
  
  .clients h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .clients p {
    font-size: 24px;
    line-height: 1.5;
    margin-bottom: 40px;
  }
  
  .clients img {
    margin-bottom: 20px;
  }
  
  .clients .row {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 -10px;
    justify-content: center;
  }
  
  .clients .column {
    flex: 50%;
    justify-content: space-between;
    max-width: 50%;
    padding: 0 8px;
  }
  
  /*-New styles to adjust size and margins of the images-*/
  .clients img {
    width: 30%;
    margin: 0 5px
  }
  
  #gap {
    text-align: center;
    background: url('images/website_clients1.png') center/contain no-repeat;
    height: 0;
    padding-bottom: 56.25%; /* This is for a 16:9 aspect ratio */
    position: relative;
  }
  /* NEW CONTACT FORM July 20 -------------------*/
.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin: 0;
    padding-top: 4px;
    padding-bottom: 4px;
  }
  
  .left-column2 {
    flex-basis: 50%;
  }
  
  .right-column2 {
    flex-basis: 50%;
  }
  .left-column2 h2 {
    margin-top: 30px;
    padding-left: 50px;
  }
  .left-column2 p {
    margin-top: 30px;
    padding-left: 50px;
  }
  
  .left-column2 p i {
    color: #ffffff;
    margin-right: 15px;
    font-size: 30px;
    padding-left: 50px;
  }
  
  .social_media {
    margin-top: 30px;
    padding-left: 50px;
  }
  
  .social_media a {
    text-decoration: none;
    font-size: 30px;
    margin-right: 20px;
    padding-left: 10px;
    color: #ffffff;
    display: inline-block;
    transition: transform 0.5s;
  }
  
  .social_media a:hover {
    color: #70fa00;
    transform: translateY(-5px);
  }
  
  .right-column2 form {
    width: 80%;
  }
  
  form input, form textarea {
    width: 100%;
    border: 0;
    outline: none;
    background: #b3b3b3;
    padding: 6px;
    margin: 15px 0;
    color: #ffffff;
    font-size: 18px;
    border-radius: 6px;
    
  }
  
  form button {
    padding: 14px 40px;
    font-size: 18px;
    margin-top: 10px;
    border-radius: 6px;
    cursor: pointer;
  }
  
  #msg {
    color: #000000;
    margin-top: 10px;
    display: block;
  }
  
  .copyright {
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background:rgb(255, 90, 0);
    font-weight: 300;
    margin-top: 30px;
  }
  
    .copyright p { /* Add a new class for the paragraph inside the copyright block */
      color: #FFFFFF; /* Change the text color to white or any other color you prefer */
    }
