/* General Section Styling */

/* 
/* Contact */
/* styles.css */

  
  /* Career */

 
/* General Reset */
/* General Reset */
body {
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif;
  line-height: 1.6;
}

/* Import Roboto Condensed Font */

.nav-link {
  position: relative;
  
  text-decoration: none;
  color: white;
  transition: color 0.3s ease;
  
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 6px;
  width: 0;
  background-color: #F1B516;
  transition: width 0.4s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover::after {
  width: 100%;
  transition: width 0.4s ease-out;
}

.team-section {
  padding: 40px 0 60px 40px; /* Padding on all sides */
  background-color: #f9f9f9;
}

.content-container {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two equal columns */
  gap: 30px; /* 30px gap between the columns */
  width: calc(100% - 80px); /* Full width minus 40px padding on each side */
  padding: 0 40px; /* Padding on left and right */
  justify-content: center; /* Center the grid content */
}

.text-content {
  padding: 20px;
  text-align: left;
}

.text-content h1 {
  font-size: 40px;
  color: #333;
  margin-bottom: 10px;
}

.text-content p {
  font-size: 20px;
  line-height: 27px;
  color: #555;
  margin-bottom: 15px;
  padding-top: 10px;
}

.text-content .highlight {
  padding-top: 10px;
  font-weight: bold;
  color: #333;
}

.image-container {
  position: relative;
  text-align: center;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-overlay {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #fff;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.icon-overlay img {
  width: 40px;
  height: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .content-container {
    grid-template-columns: 1fr; /* Single column for smaller screens */
    gap: 20px; /* Adjust gap for smaller screens */
    width: 100%; /* Full width for smaller screens */
    padding: 0 5px; /* Reduce padding */
  }

  .text-content {
    text-align: left; /* Center-align text for smaller screens */
  }

  .image-container {
    margin-top: 20px;
  }
}

/* Media query for mobile devices */
@media (max-width: 768px) {
  .team-section {
    padding: 10px; /* Adjust padding to 10px for mobile */
   
  }
}


/* Career Banner */

/* General reset for the section */
.careers-section {
  display: flex;
  justify-content: left;
  align-items: center;
  padding: 80px 20px 80px 80px;
  background: linear-gradient(135deg, #000000, #1a1a1a, #808080);
  color: #ffffff;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* Content container */
.careers-section .content {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px; /* Adjust padding to match the "Be a part" section */
}

/* Left content styling */
.careers-section h1 {
  color: white !important;
  font-size: 3rem; /* Increased font size */
  margin-bottom: 15px;
  font-weight: bold;
  text-align: left; /* Left-align the text */
}

.careers-section p {
  color: white !important;
  font-size: 1.5rem; /* Increased font size */
  line-height: 1.8;
  text-align: left; /* Left-align the text */
}

/* Responsive design */
@media (max-width: 768px) {
  .careers-section h1 {
    font-size: 2.5rem;
  }

  .careers-section p {
    font-size: 1.2rem;
  }

  @media (max-width: 768px) {
    .careers-section {
      padding-left: 15px; /* Adjust left padding to 15px for mobile */
    }
  }
}


/** Jobs Section **/

/* General reset */
body {
  margin: 0;
  font-family: 'Roboto Condensed', sans-serif; /* Updated font family */
  line-height: 1.6;
  color: #333;
}

.opportunities-section {
  padding: 20px 90px 80px; /* 40px padding on left and right */
  background: #f9f9f9;
}

.opportunities-section h1 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #222;
}

.opportunities {
  max-width: 100%; /* Full width */
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr; /* Single column layout */
  gap: 20px; /* Space between categories */
}

.category {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: relative; /* For positioning the plus icon */
}

.category h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #444;
  text-transform: uppercase;
}

.category ul {
  /*list-style: none;*/
  padding: 0;
  margin: 0;
}

.category li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  color: rgb(0, 123, 255);
    text-decoration: none;
  position: relative;
}

.category li:last-child {
  border-bottom: none;
  list-style: disc;
}

.job-title {
  color: #007bff;
  font-size: 20px;
  font-weight: 400px;
  cursor: pointer;
}

.location {
  font-size: 0.9rem;
  color: #888;
  text-align: right; /* Fully right-align the text */
  flex: 1; /* Push it to the right */
  position: relative; /* For positioning the plus icon above */
}

.toggle-btn {
  position: absolute; /* Position the button above the location text */
  top: -55px; /* Move it above the location text */
  right: 0; /* Align it to the right */
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #007bff;
  cursor: pointer;
}

.description {
  display: none; /* Hidden by default */
  margin-top: 10px;
  padding: 10px;
  background: #f9f9f9;
  border-radius: 5px;
  font-size: 0.9rem;
  color: #555;
}


.description p{
  font-size: 15px;
   padding-top: 10px;
    padding-bottom: 5px;
  
}

/* Responsive Design */
@media (max-width: 768px) {
  .category {
    padding: 15px; /* Reduce padding for smaller screens */
  }

  .category h2 {
    font-size: 1.3rem; /* Adjust heading size */
  }

  .job-title {
    font-size: 0.9rem; /* Adjust job title size */
  }

  .location {
    font-size: 15px; /* Adjust location text size */
  }

  .toggle-btn {
    font-size: 1.2rem; /* Adjust button size */
    top: -15px; /* Adjust position for smaller screens */
  }

  .description {
    font-size: 0.8rem; /* Adjust description text size */
  }
}

  /* Media query for mobile devices */
@media (max-width: 768px) {
  .opportunities-section {
    padding: 50px 22px; /* Adjust padding to 10px on left and right for mobile */
  }
}

@media (max-width: 768px) {
    .text-content, h1 {
       margin-bottom: 5px;
    }
}






/* General styling for the second category */
.category {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  padding-left: 0px !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: relative; /* For positioning the plus icon */
}

.category h2 {
  font-size: 24px;
  padding-left: 19px;
  margin-bottom: 15px;
  color: #444;
  text-transform: uppercase;
}



.category li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

.category li:last-child {
  border-bottom: none;
}

.job-title {
  color: #000;
  font-size: 18px;
  cursor: pointer;
}

.location {
  font-size: 0.9rem;
  color: #888;
  text-align: right;
}

.toggle-btn {
  position: absolute; /* Position the button in the top-right corner */
  top: 20px; /* Adjust vertical alignment */
  right: 20px; /* Adjust horizontal alignment */
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #007bff;
  cursor: pointer;
}

.description {
  display: none; /* Hidden by default */
  margin-top: 10px;
  padding-top: 5px;
  padding-top: 15px !important;
    padding: 22px;
  background: #f9f9f9;
  border-radius: 20px;
  font-size: 0.9rem;
  color: #555;
}

.toggle-btn-one {
  {
    top: -54px;
    right: -5px;
}   
}
}


/* */

.div-block-38 {
height: 73px !important;
    width: auto !important;
    max-width: 100% !important;
    overflow: hidden !important;
    display: flex !important; 
    align-items: center !important;
    justify-content: left !important;
    padding: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
}
.apply-btn {
    margin-bottom: 8px;
    margin-top: 5px;
    display: inline-block;
    padding: 8px 23px 8px; /* Added bottom padding of 10px */
    background-color: #6c757d; /* Grey background */
    color: white; /* White text */
    text-decoration: none; /* Remove underline */
   
    font-size: 16px; /* Font size */
    font-weight: bold; /* Bold text */
    border-radius: 5px; /* Rounded corners */
    transition: all 0.3s ease; /* Smooth hover effect */
  }

  .apply-btn:hover {
    background-color: #5a6268; /* Darker grey on hover */
    transform: scale(1.05); /* Slight zoom effect on hover */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Add shadow on hover */
  }

  .apply-btn:active {
    background-color: #4e555b; /* Even darker grey when clicked */
    transform: scale(1); /* Reset zoom effect */
  }
  
  .job-details span {
    display: block; /* Ensures each span appears on a new line */
    color: #007bff; /* Blue color for text */
    margin-bottom: 5px; /* Adds spacing between lines */
    font-size: 14px; /* Adjust font size as needed */
}

.location {
    text-align: right; /* Aligns the text to the left */
    display: block;   /* Ensures it takes up the full width */
    color: grey;      /* Keeps the grey color */
    margin-top: 5px;  /* Adds some spacing if needed */
}

/* Custom Clients */

.custom-bullets {
    list-style-type: disc !important;/* Adds bullet points */
    padding-left: 20px; /* Adds proper indentation */
    margin-left: 0; /* Resets any unwanted margin */
}

.custom-bullets li {
    margin-bottom: 10px; /* Adds spacing between list items */
}

/* General Reset for ul and li */
ul {
    list-style-type: disc !important; /* Ensures bullet points are visible */
    padding-left: 20px !important; /* Adds proper indentation */
    margin-left: 0 !important; /* Resets any unwanted margin */
}

li {
    margin-bottom: 10px !important; /* Adds spacing between list items */
}

/* Specific Reset for .category ul */
.category ul {
    list-style-type: disc !important; /* Forces bullet points to appear */
    padding-left: 20px !important; /* Adds proper indentation */
    margin-left: 0 !important; /* Resets unwanted margin */
}

/* Custom Bullets for Specific Sections */
.custom-bullets {
    list-style-type: disc !important; /* Adds bullet points */
    padding-left: 20px !important; /* Adds proper indentation */
    margin-left: 0 !important; /* Resets any unwanted margin */
    
}

.custom-bullets li {
    margin-bottom: 10px !important; /* Adds spacing between list items */
    display: list-item !important;
    color: black;
}

/* Reset for .opportunities-section ul */
.opportunities-section ul {
    list-style-type: disc !important; /* Ensures bullet points are visible */
    padding-left: 20px !important; /* Adds proper indentation */
    margin-left: 0 !important; /* Resets any unwanted margin */
}

.opportunities-section ul li {
    margin-bottom: 10px !important; /* Adds spacing between list items */
}

.job-details h3{
    color: black !important;
 padding-top: 12px;
    padding-bottom: 5px;   
    font-size: 20.5;
}

.img-footer-one{
    padding-top: 52px;
    
}


.section-back {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the video covers the entire section */
  z-index: -1; /* Places the video behind any potential content */
}

.section{
 /*background-color: transparent;*/
 /*opacity: 0.9;*/
 background-color: rgba(0, 0, 0, 0.5); /* Black overlay with 50% opacity */
  z-index: -1; /* Places the overlay above the video */
}

