:root{
    --dark-color:#19283f;
    --gray-color:#9B9B9B;
}
body{
    font-family: "Roboto",sans-serif ;
    font-weight: bold;
    margin-bottom: 0px;
    overflow-x: hidden;
    /* height: 10000px; */
}

    .scrollable-row {
        overflow-x: auto;
    }

    .row-scroll {
        display: flex;
    }

    .card {
        flex: 0 0 auto;
        margin-right: 10px; /* Adjust the spacing between cards */
    }

    #newscard .card-img-top {
        height: 200px; /* Adjust this value as needed */
        overflow: hidden;
    }

.map-container {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 aspect ratio */
        height: 0;
        overflow: hidden;
    }
    
    .map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

@media (max-width: 768px) {
  iframe {
    height: 300px;
  }

}
.language-icon {
    width: 20px; /* Adjust this value as needed */
    height: auto;
}
.card .see-more {
  position: static;
}
/*.langselector{*/
/*    background-color:#19283f;*/
/*    color:white;*/
/*    text-align:right;*/
/*}*/
.languageSelectContainer {
    background-color: #19283f;
    text-align: right;
    padding: 5px;
  }

  /* Style the language selector */
  #languageSelect,#languageSelectpages {
    background-color: transparent;
    color: white;
    border: none;
    font-size: 16px;
    padding: 5px 30px 5px 10px;
    min-width: 120px; /* Adjust the width as needed */
    margin-left: 87%;
  }

  /* Style the select options */
  #languageSelect option {
    background-color: #19283f;
    color: white;
  }
  
  
  /* Style the select options */
  #languageSelectpages option {
    background-color: #19283f;
    color: white;
  }


  /* Style the selected option */
  #languageSelect option:checked {
    background-color: white;
    color: black;
  }
  
   #languageSelectpages option:checked {
    background-color: white;
    color: black;
  }

  /* Media query for smaller screens */
  @media (max-width: 768px) {
    #languageSelect {
      min-width: 100px;
      margin-left: 300px;
    }
     #languageSelectpages {
      min-width: 100px;
      margin-left: 300px;
    }
  }

 .scrolling-container {
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 10px; /* Add some space at the bottom */
  }

  .scrolling-container .row {
    display: inline-block;
    width: auto;
    margin: 0;
  }

  .col {
    display: inline-block;
    margin-right: 10px; /* Add some space between cards */
    vertical-align: top;
  }
   @media (max-width: 768px) {
    .scrolling-container .col {
      max-width: calc(50% - 20px); /* Display 2 cards per row on smaller screens */
    }
  }
.main-title::after{
    content:'';
    width:120px;
    height:2px;
    background-color: var(--gray-color);
    position: absolute;
    bottom: -20;
    left:50%;
    transform: translateX(-50%);
}
/* Start Navbar */
.navbar{
    background-color: var(--dark-color);

}
.navbar-nav{
    margin-left: auto;
}
.navbar .navbar-nav .nav-link{
    color: white;

}
.navbar .navbar-nav .nav-link.active,
.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link:focus{
    color: var(--gray-color);
}

.navbar-toggler path {
    width: 30px;
    height: 30px;
    fill: white;
}

.logo-img {
    width: 100px;  /* Set the desired width */
    height: 100;  /* Set height to auto to maintain aspect ratio */
    margin-left: 20px;
}
/* End Navbar */
/* start landing */
.landing {
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--dark-color);
}
.landing-img {
    margin-top: 0px;
    width: 40%;
    height: 0.1%;
}

.landing-text {
    flex: 1 1 auto;
    width: 60%;
    margin-left: 10%; /* Optional: Add padding for spacing */
    color: white;
}
.form-label {
  display: inline-block;
  width: 100%;
  text-align: left;
 
}

.btn-primary {
    background-color: var(--gray-color);
    color: white;
    border-color: #9B9B9B;
}
/* End landing */
.card-img-top {
    object-fit: cover;
    height: 200px;
}
.card-body {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .careers-bg{
    background-color: var(--dark-color);
  }  /* #eff7fa; */
  /* Styles for the popup */
  
.popup {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed position */
    z-index: 9999; /* Make sure it appears on top of other elements */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scrolling if needed */
    background-color: rgba(0, 0, 0, 0.6); /* Semi-transparent background */
}

.popup-content {
    background-color: #eff7fa;;
    margin: 15% auto; /* Center the popup on the screen */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px;
}
.scroller-row {
    overflow-x: auto; /* Enable horizontal scrolling */
    overflow-y: hidden;
    height: 300px;
    white-space: nowrap; 
}
#photo{
    height:300px
}

.close {
    color: #19283f;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    margin-right: -12px;
    margin-top: -20px;
}
.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}
.pop-up-header{
    margin-top: 20px;
}
#popup-photos img {
    height: 300px;
}
footer{
    background-color: var(--dark-color);
    color: white;
    padding: 20px;
}
.row {
    display: flex;
    flex-wrap: wrap;
     margin-top: 50px;
}
.section {
    height: calc(100% - 123px); /* Subtract the height of the navbar */
    position: relative;
      
}
.navbar-toggler-white {
    background-color: #fff;
    margin-right: 2%;
  }
  .landing-img {
    max-width: 100%;
    max-height: 100%;
  }
/* Add this CSS to your existing stylesheet */
.col-lg-4 ul.list-unstyled {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}

.col-lg-4 ul.list-unstyled li {
  width: 50%;
  padding-right: 5px; /* Add spacing between the links */
}

/* To display two li elements in one line on larger screens */


#team-photo {
    text-align: center;
}

.ceo-photo {
  max-width: 100%; /* Resize image to fit width of screen */
  height: auto; /* Maintain aspect ratio */
}




.rounded-image {
    border-radius: 50%;
    width: 100px; /* Adjust the size of the images as needed */
    height: 100px; /* Keep the width and height the same for perfect circles */
    margin: 5px;
}

.team-members {
    display: flex; /* Use flexbox to create a horizontal layout */
    justify-content: center; /* Center the items horizontally */
    align-items: center; /* Center the items vertically */
    flex-wrap: wrap; /* Allow team members to wrap on smaller screens */
}

.members {
    text-align: center;
    margin: 5px; /* Add some spacing between each CEO photo and name pair */
}
.navbar-toggler-icon {
  font-size: 20px;
  height: 20px;
  width: 15px;
}




  
@media (max-width: 768px) {
    .row {
        flex-direction: column;
    }
      .joinus {
        flex-direction: column;
      }
      .joinus .main-title {
        margin-bottom: 20px;
      }
      .joinus .card {
        margin-bottom: 10px;
      }
       .landing-img {
        display: none;
      }
          .landing-text{
        margin-right: 8%;
      }
   .rounded-image {
        width: 80px; /* Reduce image size on smaller screens */
        height: 80px;
    }
 .col-lg-4 ul.list-unstyled li {
    width: 100%; /* Make each link occupy the full width on smaller screens */
    padding-right: 0; /* Remove spacing between the links on smaller screens */
    margin-bottom: 10px; /* Add vertical spacing between the links on smaller screens */
  }
       
}