body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #414950;
}

header {
  background-color: #00293e;
  padding: 30px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header a {
  text-decoration: none;
  color: darkorange;
  display: flex;
  align-items: center;
  justify-content: center;
}

header img {
  height: 50px;
  margin-right: 10px;
}

header h1 {
  font-weight: 700;
  font-size: 24px;
  margin: 0;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  width: 50px;
  height: 4px;
  background-color: #007bff;
  position: absolute;
  left: 0;
  bottom: -10px;
}

.about-section {
  padding: 60px 0;
}

.about-section img {
  max-width: 100%;
  border-radius: 10px;
}

.feature-icon {
  font-size: 2rem;
  color: #007bff;
  margin-bottom: 15px;
}

.team-member {
  text-align: center;
  margin-bottom: 10px;
}

.team-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  object-position: center center;
  border-radius: 50%;
  border: 5px solid darkorange;
  margin-bottom: 15px;
}

.hidden-member {
  display: none;
}

.show-all .hidden-member {
  display: block;
}

.btn-primary {
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #0056b3;
}
/* ==========================================images */

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #005f8f 100%);
  color: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

#footercontents {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin: 10px 3%;
}
#footer-logo {
  padding: 0px 40px;
}
.gradient-text {
  margin-top: 30px;
  font-size: 2.5rem;
  font-weight: bold;
  display: inline-block;
  background: linear-gradient(
    to right,
    rgb(255, 149, 0) 0%,
    rgb(255, 149, 0) 40%,
    blue 50%,
    blue 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

#get-in-touch-heading,
#company-insights {
  color: rgb(255, 149, 0);
  font-size: 20px;
}

#other-links,
#useful-links {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
#useful-links h2 {
  color: #007bff;
  font-size: 20px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
#other-footer-links-one,
#other-footer-links-two,
#footer-nav-links-one,
#footer-nav-links-two {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
.newsletter-footer {
  background: transparent;
}

.text-orange {
  color: rgb(255, 149, 0);
}

.btn-orange {
  background-color: rgb(255, 149, 0) !important;
  color: white !important;
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  transition: 0.3s ease;
}

.btn-orange:hover {
  background-color: darkorange !important;
}

.footer-bottom {
  text-align: center;
  background-color: #00293e;
  padding: 20px 10px;
}

@media screen and (max-width: 750px) {
  #footercontents {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    margin: 10px 3%;
  }
}

@media screen and (max-width: 500px) {
  #footercontents {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    margin: 10px 8%;
  }
}
