/*Hero*/
.hero {
  background: #0b2a3b url("../img/Background 2.png") no-repeat center;
  background-size: cover;
  padding: 70px 0;
  color: #fff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.hero-content {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 41px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero-text p {
  font-size: 20px;
  opacity: 0.95;
  margin-bottom: 28px;
  max-width: 520px;
}


/*Search part*/
.search-section h2 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.search-box input {
  width: 320px;
  max-width: 100%;
  height: 46px;

  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  padding: 0 18px;

  font-size: 15px;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.search-box input:focus {
  box-shadow: 0 0 0 3px rgba(0, 137, 150, 0.25);
}

.search-box button {
  height: 46px;
  min-width: 90px;

  border: 0;
  border-radius: 999px;
  background: #2e8b8b;
  cursor: pointer;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  -webkit-appearance: none;
  appearance: none;
}

.search-box button:hover {
  background: #65d6d6;
}

.search-box button img {
  width: 30px;
  height: 30px;
}

.hero-img {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: flex-end;
}

.hero-img img {
  max-width: 520px;
  width: 100%;
  height: auto;
}


/*Section Title*/
.section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin: 45px 0 28px;
  color: #222;
}


/*Main Content */
.main-content {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.left-col {
  flex: 1;
  min-width: 280px;
}

.img-grid {
  display: grid;
  grid-template-columns: 50% 50%;
  gap: 15px;
  width: 100%;
}

.img-grid img {
  width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
}

.img-top {
  grid-column: span 2;
  height: 260px;
  object-fit: contain;
}

.img-grid img:not(.img-top) {
  height: 160px;
  object-fit: cover;
}

.right-col {
  flex: 1;
  min-width: 280px;
}

.company-name {
  color: #008996;
  font-size: 34px;
  margin-bottom: 10px;
}

.subheading {
  font-size: 16px;
  color: #444;
  margin-bottom: 18px;
}

.info-block p {
  margin-bottom: 12px;
  font-size: 16px;
  color: #222;
}

.small-text {
  display: block;
  font-size: 14px;
  color: #666;
  margin-left: 12px;
  margin-top: 6px;
}


/*Banner */
.banner-bar {
  background: #f2f8fd;
  text-align: center;
  padding: 20px 15px;
  margin: 40px 0;

  border-left: 8px solid #008996;
  border-right: 8px solid #008996;
}

.banner-bar h2 {
  color: #008996;
  font-size: 26px;
}


/*Text*/
.text-desc {
  text-align: center;
  color: #666;
  line-height: 1.7;
  font-size: 17px;
  margin-bottom: 90px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 15px;
}


/*Responsive */
/*Phone */
@media (max-width: 768px) {

  .hero {
    padding: 50px 0;
  }

  .hero-text {
    text-align: center;
  }	
	
  .hero-img {
    justify-content: center;
  }

  .hero-text h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-text p {
    font-size: 16px;
    line-height: 1.6;
  }

  .search-box {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }	
	
  .img-grid {
    grid-template-columns: 100%;
  }

  .img-top {
    grid-column: span 1;
    height: 240px;
  }

  .text-desc {
    text-align: left;
  }
}

/*Small phone */
@media (max-width: 520px) {

  .search-box button {
    min-width: 70px;
  }
}