/* ===============================
   HERO SECTION - Full Width Fix
================================= */
.hero {
    background: #2d2dbf;
    color: #fff;
    text-align: center;
    padding: 70px 20px;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    width: 100vw;
    box-sizing: border-box;
    overflow: hidden;
    z-index: 1;
}

.hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.hero .search-box {
    display: inline-flex;
    align-items: center;
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.hero .search-box input {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 15px;
    font-size: 1rem;
    color: #333;
}

.hero .search-box button {
    background: #00C300;
    color: #fff;
    border: none;
    padding: 12px 22px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.hero .search-box button:hover {
    background: #00a000;
}
.company-logo-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 30px auto;
}

.company-logo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #00C300;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.company-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.company-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #222;
  margin-top: 15px;
}

.company-sub {
  color: #555;
  font-size: 1.1rem;
  margin-top: 5px;
}