body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: #333;
}

.top-bar {
  background: #f88c02;
  color: white;
  padding: 8px 20px;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: white;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #002244;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.social-icons i {
  margin-left: 12px;
  color: #fff;
  cursor: pointer;
}

.hero {
  background-image: url('https://images.unsplash.com/photo-1531746790731-6c087fecd65a?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  padding: 120px 20px;
  color: #000;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
}

.hero-content {
  position: relative;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  font-weight: bold;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn {
  background: #2979ff;
  color: white;
  padding: 12px 24px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #1c54b2;
}
.features {
  display: flex;
  justify-content: space-around;
  background: #f88c02;
  color: white;
  padding: 60px 20px;
  text-align: center;
  flex-wrap: wrap;
}

.feature {
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  margin: 20px;
}

.feature i {
  color: white;
  margin-bottom: 20px;
}

.feature h3 {
  font-weight: bold;
  margin-bottom: 15px;
}

.feature p {
  font-size: 15px;
  line-height: 1.6;
}
.company-overview {
  padding: 80px 20px;
  background: #fff;
  display: flex;
  justify-content: center;
}

.overview-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  gap: 40px;
  align-items: flex-start;
}

.overview-text {
  flex: 1;
  min-width: 300px;
}

.overview-text h2 {
  font-size: 32px;
  font-weight: 900;
}

.overview-text h3 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 20px;
}

.overview-text p {
  font-size: 16px;
  margin: 15px 0;
  color: #555;
}

.overview-text ul {
  padding-left: 20px;
  margin-bottom: 20px;
  color: #333;
}

.overview-text ul li {
  margin-bottom: 10px;
  list-style: disc;
}

.btn-outline {
  padding: 10px 20px;
  border: 2px solid #f88c02;
  border-radius: 50px;
  text-decoration: none;
  color: #f88c02;
  font-weight: 600;
  display: inline-block;
  margin-top: 10px;
}

.overview-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  position: relative;
}

.overview-image img {
  max-width: 100%;
  height: auto;
}

.btn-values {
  background: #f88c02;
  color: #fff;
  display: block;
  padding: 15px;
  text-align: center;
  font-weight: bold;
  text-decoration: none;
  margin-top: -4px;
}

.overview-values {
  flex-basis: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.value-box {
  flex: 1;
  min-width: 280px;
  background: #f9f9f9;
  padding: 20px;
  border-left: 4px solid #f88c02;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.value-box h4 {
  color: #f88c02;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight {
  color: #f88c02;
}


 /* Offcanvas Custom Styles */
    .offcanvas-header {
      background-color: #343a40;
      color: white;
    }

    .offcanvas-body a {
      color: #000;
      font-size: 1.1rem;
      margin-bottom: 10px;
      display: block;
    }

   @media (max-width: 991.98px) {
      .desktop-menu {
        display: none;
      }
    }

    @media (min-width: 992px) {
      .offcanvas {
        display: none !important;
      }
    }




    .member{
    flex: 1 1 250px;
    margin: 20px;
    text-align: center;
    padding: 20px 20px;
    cursor: pointer;
    max-width: 100%;
    transition: all 0.3s;
}

.member:hover{
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transform: translateY(-20px);
}

.member img{
    display: block;
    width: 150px; height: 150px;
    object-fit: cover;
    border:4px solid #f88c02;
    border-radius: 50%;
    margin: 0 auto;
}

.member h2{
    text-transform: uppercase;
    font-size: 24px;
    color: #f88c02;
    margin: 15px 0;
}

.member p{
    font-size: 15px;
    color: #838383;
    line-height: 1.6;
}

.team-row{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding: 40px 0;
}


@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  height: 100px;
  margin: auto;
  overflow: hidden;
  position: relative;
  width: auto;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.slider .slide {
  height: 100px;
  width: 250px;
}