/* custome csss */

/* -------------------------- */
.main {background:url(/img/main-bg.jpeg); background-repeat: no-repeat; background-position: center; background-size: cover;}
body{background-color: #333 !important;}
.card-container{display: flex; gap: 20px; flex-wrap: wrap;}
.card-wrap{width: calc(33.3% - 20px); position: relative; border-radius: 20px 60px 0 20px; overflow: hidden; cursor: pointer;}
.card-wrap img{width: 100%; height: 100%;}
.card-wrap .card-content{position: absolute; top: 0; width: 100%; height: 100%; background: #97895a; padding: 20px ;transform: translateY(95%); transition: 0.5s ease;}
.card-wrap:hover .card-content{transform: translateY(0%); transition: 0.5s ease; opacity: 80%;}
.card-wrap .card-content h4 , .card-wrap .card-content p {color: #fff; margin: 0;}
/* ---------------- menu -------------------------------- */
ul.dropdown-menu-submenu { position: absolute; right: 0; top: 0; transform: translateX(0%); background: #1e1e1e; padding-left: 0; z-index: -9; opacity: 0; transition: 0.5s ease;}
.dropdown-menu:hover ul.show-submenu{transform: translateX(100%);opacity: 1; transition: 0.5s ease;}

.dropdown-menu-submenu li{list-style: none;}

.specific-card p { border: 1px solid; padding: 20px; border-radius: 10px; flex-basis: calc(25% - 20px); margin-bottom: 0 !important; backdrop-filter: blur(10px);}
.specific-card { display: flex ; flex-wrap: wrap; gap: 20px; justify-content: center;}
.hero-tiled-line {margin-top: 25px; font-family: "Stardos Stencil", system-ui; font-weight: 900;}
.hero-tiled-line span {font-size: 46px; line-height: 40px; }
.hero-tiled-line>marquee span { margin-left: 5rem; font-weight: 700; color: #978958;}
.img-hover img{transition: 0.5s ease;}
.img-hover{overflow: hidden; border-radius: 20px;}
.img-hover img:hover{transform: scale(1.1); transition: 0.5S ALL ease;}
.card-hover:hover { box-shadow: 0 0.5rem 1rem rgba(151 137 88) !important; transform: translateY(-10px) !important; transition: all 0.3s ease; }

	/* Image hover effect */
	.card-img-top {
    transition: transform 0.3s ease;
  }
  a:hover .card-img-top {
    transform: scale(1.05);
  }
  .card {
    transition: box-shadow 0.3s ease;
  }
  a:hover .card {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  }

  .hover-up:hover {
    transform: translateY(-10px);
    transition: 0.5s ease;
}
.hover-up{transition: 0.5s ease; cursor: pointer;}

/* Off-white border for form inputs and textarea */
.contact-form .form-control {
  border: 1px solid #545454 !important; background-color: #545454; color: #fff; border-radius: 10px;
}

.video-banner {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  background-color: #000;
}

.video-banner iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300vw;
  /* height: 100vw; */
  /* 300 * 9 / 16 */
  min-width: 100%;
  min-height: 100%;
  border: none;
  pointer-events: none;
}
.home-card-wrap .card{background: no-repeat; backdrop-filter: blur(6px);}
section.str-card-bg {
  background: url(/img/str-bg.jpg);
  padding: 2rem 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.wedo{
  background: url(/img/wedo-bg.jpg);
  padding: 2rem 0;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
.Experience{
  padding: 2rem 0;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
}
section.Experience h2 {
  font-weight: 700;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  padding: 3rem 0;
}


@media (max-width: 768px) {
  /* custome csss */
.c-p-1rem{padding: 1rem !important;}
.c-mt-2rem{margin-top: 2rem;}
.c-mb-0{margin-bottom: 0px !important;}
.c-pb-0{padding-bottom: 0px !important;}
.c-mt-0{margin-top: 0px !important;}
.c-pt-0{padding-top: 0px !important;}
.c-fd-cr{flex-direction: column-reverse;}
/* -------------------------- */
  .video-banner {
    height: 350px;
    /* Adjust if needed for mobile */
  }

  .video-banner iframe {
    width: 400vw;
    /* height: 225vw; */
    /* 400 * 9 / 16 */
  }
  .mobile-menu-opened .header-nav-main{position: fixed !important;}
  .specific-card p{flex-basis: calc(100% - 20px);}
  section.Experience h2{width: 100%;}
}
.logo-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.logo-track {
  display: flex;
  width: calc(300px * 12); /* Adjust based on item count */
  animation: scroll-marquee 30s linear infinite;
}

.logo-item {
  flex: 0 0 auto;
  width: 300px;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-item img {
  max-width: 100%;
  height: auto;
}

@keyframes scroll-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.tab-wrap section { display: none; }
  .tab-wrap section.active { display: block; }

  .tab-btn { display: flex; gap: 10px; margin-bottom: 12px; }
  .tab-btn a {
    padding: 8px 14px;
    border: 1px solid #686868;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
  }
  .tab-btn a.active {
    background: #2c5e30;
    color: #fff;
  }

  .tab-dropdown { display: none; width: 100%; margin-bottom: 12px; padding: 8px; }

  @media (max-width: 768px) {
    .tab-btn { display: none; }
    .tab-dropdown { display: block; }
    .form-img{display: none;}
    .form-container{margin: 0px !important}
  }

.tab-bg{
  background: url(/img/wedo-bg.jpg);
  background-repeat: no-repeat;
  border-radius: 20px;
}

.footer-bg{
  background: url(/img/footer.jpg) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
}

.form-control {
  padding: 10px 20px;
  border-radius: 10px;
}

.form-img img { width: 100%; height: 100%;}
.form-img { width: 100%; height: 100%;}
.form-container{background: #fff; border-radius: 20px; margin: 20px; overflow: hidden; box-shadow: 0px 0px 30px #b3b3b3;}


