@import url('css2');
    @import url('css2-1');



body {
    font-family: 'Open Sans', Corbel Light, sans-serif;
        line-height: 1.6;
        margin: 0;
        padding: 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    max-height: 50px;
}

.nav-toggle{
    display: none;
}

nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #06b0ff;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #666666;
}

.logo {
    margin-top: 50px;
    width: 200px;
  }

.hero-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.582),rgba(0, 0, 0, 0.582)),url("img/pre.jpg"); /* Replace this with the path to your desired image */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    color: #fff;
    text-align: center;
}

.hero-text h1 {
    font-size: 48px;
}

.career-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    padding: 30px;
}

.career-item {
    background-color: #f5f5f5;
    padding: 20px;
    width: 250px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.career-item:hover {
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.career-item h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.career-item p {
    margin-bottom: 20px;
}

.career-item a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
}

.career-item a:hover {
    background-color: #666;
}

main {
    padding: 2rem;
    width: 1100px;
    margin: 0 auto;
}

.career-section {
    margin-bottom: 2rem;
}

h3 {
    font-family: 'Roboto', Arial, sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.1rem;
}

  
footer {
    background-color: #f5f2f2;
    color: #fff;
    padding: 2rem 0;
    font-size: 1rem;
  }
  
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
  }
  
  .footer-logo img {
    margin-bottom: -15px;
    max-width: 150px;
  }
  
  .footer-address {
    text-align: center;
    color: #333;
  }
  
  .footer-social {
    display: flex;
    gap: 1rem;
    margin-bottom: 15px;
  }
  
  .footer-social a {
    color: #c98c32;
    text-decoration: none;
    font-size: 1.5rem;
  }
  
  .footer-social a:hover {
    color: #ccc;
  }


  @media (max-width: 768px) {
    .header-container {
      flex-direction: column;
      padding: 10px;
    }
  
    .logo-container img {
      max-height: 40px;
    }
  
    nav ul {
      flex-direction: column;
      margin-top: 10px;
    }
  
    nav ul li {
      margin-left: 0;
      margin-bottom: 10px;
    }
  
    .hero-section {
      height: 200px;
    }
  
    .hero-text h1 {
      font-size: 32px;
    }
  
    .career-content {
      gap: 15px;
      padding: 15px;
    }
  
    .career-item {
      width: 100%;
    }
  
    main {
      padding: 1rem;
      width: 100%;
    }
    
    .footer-container {
      gap: 1rem;
    }

    .nav-toggle {
        display: none;
        background-color: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        font-size: 24px;
        color: #06b0ff;
      }
      
      .nav-menu {
        display: flex;
        max-height: 0;
        overflow: hidden;
        transition: max-height 1s ease-in-out;
      }
      
      
      .nav-menu.open {
        max-height: 300px;
      }
      
      footer {
        background-color: #f5f2f2;
        color: #fff;
        padding: 2rem 0;
        font-size: 1rem;
        margin-left: 25px;
        margin-right: -11px;
      }

      .what-we-are{
        margin-bottom: 50px;
    }
      
      @media (max-width: 768px) {
        .nav-toggle {
          display: block;
        }
      }
  }
.dev{
    width: 100%;
}

.what-we-are{
    margin-bottom: 100px;
}
  
ul {
    list-style: circle;
    color: #333;
}

.learn-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #34b349;
    color: #fff;
    text-decoration: none;
    transition: background-color 0.3s;
  }
  
  .learn-more-btn:hover {
    background-color: #666;
  }