* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #f5f5f5;
}

.navbar {
  width: 100%;
  background-color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 60px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo span {
  font-family:'Popins',sans-serif;
  font-size: 58px;
  font-weight: 600;
  color: rgb(46,50,255); 
  text-transform: lowercase;
}

.nav-links a {
  font-family: Arial, sans-serif;  
  margin-left: 40px;
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: bold;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #0072ff;
}

.txt{
    display: flex;
    justify-content: center;
    text-align: center;
    align-items: center;
    font-size: 25px;
    line-height: 2.0;
}

.color {
    background-color: #e4e7ea;
    padding: 60px 0;
}

.careers-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.career-card {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.career-card img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.career-card img:hover {
    transform: translateY(-5px);
}

.career-card h3 {
    font-size: 24px;
    margin: 0;
}

.btn{
    background-color: #2560eb;
    color:white;
    border:none;
    padding:10px 20px;
    border-radius:25px;
    cursor:pointer;
}

.footer {
  background-color: #000;
  color: #fff;
  padding: 40px 0;
  font-family: Arial, sans-serif;
}

.footer-container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}

.footer-logo h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}

.footer-logo span {
  color: #007bff; 
}

.footer-links {
  margin-bottom: 20px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
}

.footer-links a:hover {
  color: #007bff;
}

.footer-social {
  margin: 20px 0;
}

.footer-social a {
  color: #fff;
  margin: 0 10px;
  font-size: 18px;
  text-decoration: none;
}

.footer-social a:hover {
  color: #007bff;
}

.footer-bottom {
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 14px;
}

.footer-bottom p {
  margin: 5px 0;
}

.footer-terms a {
  color: #aaa;
  text-decoration: none;
  margin: 0 10px;
}

.footer-terms a:hover {
  color: #fff;
}

@media screen and (max-width:767px){
   .Div-3{
    flex-direction:column;
    text-align:center;
   }
}