/* Career Section Styling */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700&display=swap');
 
body{
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  width: 100%;
}
nav{
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #007bff;
  border-bottom: 2px solid black;
  position: relative;
  height: 37px;
}

.logo{
  color: #fff;
}

nav ul{
  display: flex;
  gap: 40px;
  align-items: center;
}

nav ul li{
  list-style-type: none;
}

nav ul li a{
  text-decoration: none;
  color: #fff;
}
nav ul li a:hover{
  color: #0170B9;
  font-weight: bold;
}
.logo img {
  width: 70px;
  height: auto;
}


.menu-icon{
  display: none;
}

.menu-icon i{
  color: #fff;
  font-size: 30px;
}

@media (max-width:600px) {
  nav ul{
      position: absolute;
      top: 40px;
      left: 0;
      right: 0;
      flex-direction: column;
      text-align: center;
      background: #004274;
      gap: 0;
      z-index: 1;
      overflow: hidden;
  }
  nav ul li{
      padding-bottom: 10px;
      padding-top: 10px;
  }
  .menu-icon{
      display: block;
  }
  #menuList{
      transition: all 0.5s;
  }
  .demo_img{
    background-size: contain;
    /* width: 300%; */
    height: auto;
  }
  
}

.demo_img{
    background-image: url("./Assets/carrer-background.jpg");
    /* background-size: 100% 90%; */
    background-repeat: no-repeat;
    background-position: center;
    height: 20rem;
    object-fit: cover;
    width: 100%;
    /* margin-left: 25%; */
  }
  .ct1 {
    position: absolute;
    padding: 320px 0 0 100px;
    font-size: 3rem;
    color: #ffffff;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    text-align: center;
  }
  

.career-section {
    background-color: #f9f9f9;
  }
  
  .container {
    text-align: center;
  }
  
  .section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
  }
  
  .section-description {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 40px;
  }
  .oppening{
    color:#007BFF;
    font-weight: bold;
    font-size: 1.2rem;
  }
  
  .career-card {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 20px;
    text-align: left;
    transition: transform 0.3s ease;
  }
  
  .career-card h3 {
    font-size: 1.8rem;
    color: #007BFF;
    margin-bottom: 10px;
  }
  
  .career-card p {
    font-size: 1rem;
    color: #555;
  }
  
  .career-card ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 0 20px;
  }
  
  .career-card ul li {
    font-size: 0.9rem;
    color: #666;
    padding: 5px 0;
  }
  .apply-btn {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .apply-btn a{
    text-decoration: none;
    color: white;
  }
  .apply-btn:hover {
    background-color: black;
    color: #f9f9f9;
    transform: scale(1.1); /* zoom-in by 20% on hover */

  }
  
  /* Hover effects */
  .career-card:hover {
    transform: translateY(-5px);
  }
  .job-2{
    height: 50vh;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    margin: 20px;
    text-align: left;
    transition: transform 0.3s ease;
  }
  
  @media (min-width: 768px) {
    .career-card {
      display: inline-block;
      width: calc(33.333% - 40px);
      vertical-align: top;
    }
  }


  /* CTA Section Styling */
.cta-section {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 40px;
    background-color: #007BFF;
    color: white;
    text-align: center;
  }
  
  .cta-section h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .cta-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .cta-section a {
    color: #ffeb3b;
    text-decoration: none;
    font-weight: bold;
  }
  
  .cta-section a:hover {
    text-decoration: underline;
  }
  
  .get-started-btn {
    background-color: #ffeb3b;
    color: #333;
    border: none;
    padding: 12px 30px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    transition: transform 0.2s ease;

  }
  
  .get-started-btn:hover {
    background-color: #0056b3;
    color: #fff;
    transform: scale(1.2); /* zoom-in by 20% on hover */

  }
  
  
/* About Us Section */
.about-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    margin-top: 3%;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .about-image {
    flex: 1 1 50%;
    padding-right: 20px;
  }
  
  .about-image img {
    object-fit: contain;    
    max-width: 80%;
    mix-blend-mode:inherit;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .about-text {
    flex: 1 1 50%;
    padding-left: 20px;
    margin-bottom: 5%;
  }
  
  .about-text h1 {
    font-weight: bold;
    font-size: 2.5rem;
    color: black;
    margin-bottom: 20px;
  }
  
  .about-text p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .about-text h6 {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .read-more-btn {
    background-color: #007BFF;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .read-more-btn:hover {
    background-color: black;
    color: #f9f9f9;
    transform: scale(1.1); /* zoom-in by 20% on hover */

  }
  
  /* Responsive styling for smaller screens */
  @media (max-width: 768px) {
    .about-content {
      flex-direction: column;
    }
  
    .about-image, .about-text {
      flex: 1 1 100%;
      padding-left: 0;
      padding-right: 0;
      text-align: center;
    }
  
    .about-image {
      padding-bottom: 20px;
    }
  }

 
/* The footer is fixed to the bottom of the page */

.footer-distributed {
  background-color:#10182F;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  height: 28rem;
  text-align: left;
  font: bold 16px sans-serif;
  padding: 50px 50px 60px 50px;

  /* margin-right: -20px; */
  /* margin-top: 80px; */
}

.footer-distributed .footer-left, .footer-distributed .footer-center, .footer-distributed .footer-right {
  display: inline-block;
  vertical-align: top;
}

/* Footer left */
.footer-links{
display: flex;
flex-direction: column; /* Arrange items in a column */
align-items: flex-start; /* Align items to the start */
gap: 10px;
}
.footer-distributed .footer-left {
  width: 30%;
}
.footer-left li{
  list-style: none;
}
.footer-left li a{
  color: white;
  text-decoration: none;
  display: inline-block;
  line-height: 2.5;
  /* text-decoration: none; */
  /* color: inherit; */
}
.footer-left li a:hover{
  color: #0056b3;
}

.footer-distributed h3 {
  color: #ffffff;
  font: normal 36px 'Cookie', cursive;
  margin: 0;
}


.footer-distributed h3 span {
  color: #e0ac1c;
}

/* Footer links */

.footer-distributed .footer-links {
  color: #ffffff;
  margin: 20px 0 12px;
}

.footer-distributed .footer-links a {
  display: inline-block;
  line-height: 1.8;
  text-decoration: none;
  color: inherit;
}

.footer-distributed .footer-company-name {
  color: #8f9296;
  font-size: 14px;
  font-weight: normal;
  margin: 0;
}
.footer-right form {
display: flex;
gap: 10px;
margin-top: 7%;
}

.footer-right input[type="email"] {
flex: 1;
padding: 10px;
border-radius: 6px;
border: 1px solid #7489C6;
background: none;
color: #fff;
outline: none;
}

.footer-right input[type="email"]::placeholder {
color: #ccc;
}

.footer-right button {
background: #0170B9;
color: #fff;
border: none;
padding: 10px 15px;
border-radius: 6px;
cursor: pointer;
font-weight: 500;
transition: background 0.2s ease, transform 0.2s ease;
}

.footer-right button:hover {
background: #cecccc;
transform: scale(1.1);
}


/* Footer Center */

.footer-distributed .footer-center {
  width: 35%;
}

.footer-distributed .footer-center i {
  background-color: #33383b;
  color: #ffffff;
  font-size: 25px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  text-align: center;
  line-height: 42px;
  margin: 10px 15px;
  vertical-align: middle;
}

.footer-distributed .footer-center i.fa-envelope {
  font-size: 17px;
  line-height: 38px;
}

.footer-distributed .footer-center p {
  display: inline-block;
  color: #ffffff;
  vertical-align: middle;
  margin: 0;
}

.footer-distributed .footer-center p span {
  display: block;
  font-weight: normal;
  font-size: 14px;
  line-height: 2;
}

.footer-distributed .footer-center p a {
  color: #e0ac1c;
  text-decoration: none;
  ;
}

/* Footer Right */

.footer-distributed .footer-right {
  width: 30%;
  margin-left: 3%;
}

.footer-distributed .footer-company-about {
  line-height: 20px;
  color: #92999f;
  font-size: 13px;
  font-weight: normal;
  margin: 0;
}

.footer-distributed .footer-company-about p {
  display: block;
  color: #ffffff;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-distributed .footer-icons {
  margin-top: 25px;
}

.footer-distributed .footer-icons a {
  display: inline-block;
  text-decoration: none;
  width: 35px;
  height: 35px;
  cursor: pointer;
  /* background-color: #33383b; */
  border-radius: 50%;
  border: none;
  font-size: 1.5rem;
  color: #ffffff;
  text-align: center;
  line-height: 35px;
  margin-right: 3px;
  margin-bottom: 5px;
}

.footer-distributed .footer-icons a:hover {
  background-color: #3F71EA;
}

.footer-links a:hover {
  color: #3F71EA;
}


@media (max-width: 514px) {
.footer-distributed {
    flex-direction: column;
    align-items: center;
    height: auto;
}
.footer-distributed .footer-left,
.footer-distributed .footer-center,
.footer-distributed .footer-right {
    width: 100%;
    margin-bottom: 40px;
    text-align: center;
}
.footer-left p span{
  margin-left: -87%;
}
}
