.rotating-image {
  width: 50px;
  height: 50px;
  animation: rotate 1s linear infinite;
}

.gray-clr {
  color: #363636;
}

.gap-20 {
  gap: 20px;
}

.justify {
  text-align: justify;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.border-btn-main {
  border: 1px solid #0c2f7a !important;
}

.header-wrapper {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  /* Solid color instead of transparent */
  /*background: #000000bf;*/
  background: #fffcfcbf;
  transition: background-color 0.3s ease;
  /* Alternative solid gradient */
  /* background: linear-gradient(180deg, #0c2f7a 100%, #0c2f7a 100%);
  transition: background-color 0.5s ease; */
}

header.scrolled {
    background-color: white;
}

.fs-20 {
  font-size: 21px !important;
}

.header-scrolled {
  background: #ced0cf !important;
  background: linear-gradient(180deg, #ced0cf 100%, #ced0cf 100%) !important;
}

/* Top bar styling */
.top-bar {
  padding: 0;
}

.top-menu-wrapper {
  display: flex;
  justify-content: flex-end;
}

.menu-top {
  list-style: none;
  display: flex;
  margin: 0;
  padding: 0;
}

.menu-top li a {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  border-right: #737373 solid 1px;
  color: #fff;
  padding: 25px 10px 4px 0;
  font-weight: 300;
  margin-right: 10px;
  display: block;
}

.menu-top li:last-child a {
  border-right: none;
}

/* Navbar styling */
.navbar {
  padding: 0;
}

.navbar-brand {
  padding: 15px 0;
}

.navbar-brand img {
  height: 65px;
}

.nav-item {
  position: relative;
  color:black;
}

header.scrolled .nav-link {
    color: #000 !important;
}


.nav-link {
  padding: 35px 0 !important;
  color: #000 !important;
  font-size: 18px;
  /*text-transform: uppercase;*/
  font-weight: 400;
  font-family: "Roboto Condensed", sans-serif;
  /* margin: 0 15px; */
}

.dropdown-toggle::after {
  vertical-align: middle;
}

.talk-button {
  background-color: #2a5885;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 15px;
}

.talk-button i {
  margin-left: 10px;
}

/* Video container */
.video-container {
  position: relative;
  width: 100%;
  /*height: 100vh;*/
  overflow: hidden;
  margin-top: -115px !important;
}

/* Add this to push all content below the navbar */
.header-wrapper + * {
  /* margin-top: 115px;  */
}

/* Media queries */
@media (max-width: 768px) {
  .video-container {
     padding-top: 100px;
    /*height: 50vh;*/
    margin-top: 180px; /* Smaller margin for mobile */
  }

  .nav-link {
    padding: 15px 0 !important;
  }

  .menu-top li a {
    padding: 15px 10px 4px 0;
  }

  .navbar-brand img {
    height: 55px;
    width:240px;
  }

  .top-bar {
    display: none;
  }
  /* Adjust the mobile content margin */
  .header-wrapper + * {
    margin-top: -125px !important; /* Smaller margin for mobile */
  }
}

.dev-it {
  font-size: 21px;
  margin-bottom: 16px;
  position: relative;
  font-weight: 100;
  font-family: "Roboto Condensed", sans-serif;
}
.dev-it::after {
  position: absolute;
  content: "";
  width: 100%;
  background: #fff;
  height: 1px;
  left: 0;
  bottom: 0;
  top: 35px;
}
.marquee-content {
  display: flex;
  gap: 10px;
  animation: slide 20s linear infinite;
}

.circular-logo-container {
  border-radius: 50%;
  border: 2px dotted green;
  height: 150px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 10px; */
  margin: 0 auto;
}

.circular-logo-container img {
  max-height: 80%;
  max-width: 80%;
  object-fit: contain;
}

/* Client Logo */

.logo-section {
  padding: 50px 0;
  border-radius: 20px;
}

.logo-slider-container {
  height: 80vh;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
}

.logo-track {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.track-down {
  animation: scrollDown 20s linear infinite;
}

.track-up {
  animation: scrollUp 20s linear infinite;
}

.logo-item {
  padding: 20px;
  text-align: center;
  flex-shrink: 0;
}

.logo-item img {
  max-width: 100%;
  max-height: 80px;
  filter: grayscale(80%);
  border-radius: 8px;
  padding: 10px;
  /* background-color: rgba(255, 255, 255, 0.7); */
}

@keyframes scrollDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollUp {
  0% {
    transform: translateY(-50%);
  }
  100% {
    transform: translateY(0);
  }
}

.logo-slider-container:before,
.logo-slider-container:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 100px;
  z-index: 2;
  pointer-events: none;
}

.logo-slider-container:before {
  top: 0;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0)
  );
}

.logo-slider-container:after {
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0)
  );
}

.content-area {
  padding: 20px;
}

.bg-abstract-img {
  background: url("../img/bg-abs.png") no-repeat center center;
  background-size: cover;
  /* height: 100vh; */
  width: 100%;
}
