/* #3c4043 paragraph */
/* #1e2022 heading */

/* animate header background at first load time */
#header.dark[data-transparent="true"]:not(.sticky-active) .header-inner {
  animation: header-bg-animation 4.5s forwards 1;
}

@keyframes header-bg-animation {
  0% {
    background-color: #1b1b1ba8;
  }
  100% {
    background-color: transparent;
  }
}

.intro-section {
  padding: 20px 0;
}

#companies {
  width: 100px;
  height: 100px;
  animation: scroll 60s linear infinite;
  object-fit: contain;
  mix-blend-mode: darken;
}

.slide-track {
  width: 100%;
  display: flex;
  gap: 3em;
  overflow: hidden;
}

.slider {
  background-color: rgb(255, 255, 255);
  padding: 2em 2em;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translatex(-1000%);
  }
}

.social {
  background-color: rgb(226, 226, 226);
}
.socail-cotent {
  text-wrap: balance;
}
.project {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
.major {
  height: 100%;
}

.nav-cont {
  margin-top: 150px;
}

footer {
  background-color: rgb(245, 248, 248);
}

.single-footer-widget {
  display: flex; /* Enable flexbox */
  flex-direction: column; /* Stack items vertically */
  gap: 10px; /* Add space between elements */
}

.single-footer-widget .logo {
  width: fit-content; /* Adjust the width as needed */
  height: 200px;
  display: block;
}
.single-footer-widget .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.single-footer-widget p {
  text-align: left; /* Ensure text is aligned to the left */
  margin: 0; /* Reset margin for better control */
}
.single-footer-widget a {
  color: #3c4043ca;
  margin: 0;
}

.single-footer-widget a:hover {
  color: #000 !important;
  margin-left: 0.2rem;
  transition: all 0.3s ease-in-out;
}

.single-footer-widget > ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-footer-widget > ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}

/* services card */

.servicePage .card .card-body h5 a {
  color: #1e2022;
  font-size: 1.25rem;
  font-weight: 600;
}

.servicePage .card .card-body p {
  color: #3c4043;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.servicePage .card .card-body .post-image {
  margin: 0;
}

.Services-Grid .card .card-body .card-title {
  color: #1e2022 !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
}
.Services-Grid .card .card-body .card-text {
  color: #3c4043 !important;
  font-size: 0.9rem !important;
  font-weight: 400 !important;
}

.powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 4rem;
}

.powered-by a {
  color: #3c4043 !important;
}

@media (max-width: 767px) {
  .about {
    height: 300px;
    /* Adjust as needed for smaller screens */
  }
  .powered-by {
    flex-direction: column;
    margin-top: 2rem;
    gap: 0;
  }
}

/* ================================
   Header Logo – Global Control
================================ */

#header #logo {
  display: flex;
  align-items: center;
  height: 110px; /* header logo container height */
}

#header #logo img {
  max-height: 110px; /* ACTUAL LOGO SIZE */
  width: auto;
  transition: all 0.3s ease;
}

#header .header-inner {
  min-height: 115px;
  display: flex;
  transition: all 0.3s ease;
}

#header .header-inner.container {
  padding: 20px 30px;
}


@media (max-width: 767px) {
  #header #logo {
    height: 90px;
  }

  #header #logo img {
    max-height: 90px;
  }
}