body {
  font-family: "Segoe UI", sans-serif;
  background-color: #f8f9fa;
}
/* =================================header */
header {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 0px 2%;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #4a90e2;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 50px;
  border-radius: 50%;
}

/* ==================================nav bar */

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.4);
  padding: 10px 20px;
  color: #2c3e50;
}

.left-section {
  display: flex;
  align-items: center;
}

.menu-btn {
  padding: 10px;
  color: #2c3e50;
  cursor: pointer;
  margin-right: 0; /* No gap between three dots and logo */
}

.logo {
  margin-left: 10px; /* Minimal spacing for clarity */
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a,
.hamburger-content a {
  color: #2c3e50;
  text-decoration: none;
}

.hamburger-menu {
  display: none; /* Hidden on desktop */
  cursor: pointer;
}

.menu-content,
.hamburger-content {
  display: none;
  position: fixed;
  top: 0;
  background-color: #ffffff;
  width: 250px;
  height: 100vh;
  padding: 20px;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.5);
}

.menu-content.active {
  left: 0;
  display: block;
}

.hamburger-content.active {
  right: 0;
  display: block;
}

.hamburger-content div,
.menu-content div div {
  color: #2c3e50;
}

.hamburger-content div a,
.menu-content div div a {
  padding: 8px;
  margin: 5px;
  color: #2c3e50;
  display: block;
  background-color: #ececec;
}

ul li a {
  text-decoration: none;
  color: #2c3e50;
  display: block;
  padding: 5px;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }
}

#home-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px;
}

#home-logo h1 {
  color: rgb(255, 149, 0);
  font-weight: bold;
  font-size: 25px;
}
#home-logo h3 {
  color: rgb(255, 149, 0);
  font-weight: bold;
  font-size: 50px;
}

#logo-img {
  width: 40px;
  border-radius: 50%;
}

/* ===============================team */

.team-section {
  padding: 80px 0;
  background: linear-gradient(145deg, #ffffff, #e6e6e6);
}

.team-heading {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 50px;
  color: #343a40;
}

.profile-card {
  position: relative;
  overflow: hidden;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.4s ease-in-out;
}

.profile-card:hover {
  transform: translateY(-10px);
}

.profile-img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .profile-img {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .profile-img {
    height: 200px;
    width: 200px;
    border: solid 4px darkorange;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
  }
}

.profile-content {
  padding: 25px;
  text-align: center;
}

.profile-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  border-bottom: solid 2px darkorange;
}

.profile-role {
  font-size: 1rem;
  color: #6c757d;
  margin-bottom: 15px;
}

.social-links a {
  color: #343a40;
  margin: 0 10px;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #007bff;
}

/* Sliding orange overlay */
.profile-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: rgba(255, 149, 0, 0.7);
  transition: height 0.5s ease-out;
  z-index: 1;
}

.profile-card:hover::before {
  height: 100%;
}

.profile-card .profile-img,
.profile-card .profile-content {
  position: relative;
  z-index: 2;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* ==============footer */

footer {
  background: linear-gradient(
    135deg,
    #1a1a1a 0%,
    #005f8f 100%
  ); /* dark background for premium feel */
  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; /* inherits footer background */
}

.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%;
  }
}
