.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #0a0f1a;
}
.hero-video {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  background-image: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 100%);
  z-index: 2;
}

/*********************************************/
.marquee {
  overflow: hidden;
  width: 100%;
}
.marquee-track img {
  height: 80px;
  width: 140px;
  border-radius: 10px;
  border: 1px solid rgba(0, 29, 8, 0.1);
  margin-inline-end: 10px;
}

.marquee-container {
    overflow: hidden;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

/*******************************************/
.service-area .sec-shape-top,
.service-area .sec-shape-bottom {
  position: inherit;
}
.service-card {
  /*background: #202020;*/
  background: var(--smoke-color2);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  padding: 40px 40px 35px;
  display: flex;
  gap: 20px;
}
.service-card_icon {
  flex: none;
}
.service-card_icon img {
  transition: all ease 0.4s;
  transform: scale(1);
}
.service-card:hover .service-card_icon img {
  transition: all ease 0.4s;
  transform: scale(1.1);
}
.service-card_title {
  margin-top: -0.3em;
  margin-bottom: 5px;
  color: #fff !important;
  word-break: break-all;
  line-height: 2rem;
  font-weight: 500;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 1 !important;
  -webkit-box-orient: vertical;
}
.service-card_title a {
  color: var(--title-color);
  position: relative;
}
.service-card_title a:before{
  content: "";
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--title-color);
  transition: all ease 0.4s;
}
.service-card_title a:hover::before {
  width: 100%;
}
.service-card_text {
  font-size: 0.875rem;
  color: var(--body-color);
  margin-bottom: 10px;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical;
  line-height: 1.5rem;
  min-height: 4.5rem;
}
.service-card .link-btn {
  color: var(--body-color);
  font-size: 12px;
  font-weight: 400;
  padding-inline-start: 1rem;
}
.service-card .link-btn:after {
  content: "";
  font-weight: 500;
  inset-inline-start: 0;
  transform: translateY(0);
  width: 15px;
  height: 11px;
  display: inline-block;
  border: none;
  color: inherit;
  transition: 0.2s;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 1;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M439.1 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L371.2 256 233.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L179.2 256 41.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M439.1 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L371.2 256 233.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L179.2 256 41.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
}
html[dir="rtl"] .service-card .link-btn:after {
  transform: translate(0, -50%) scaleX(-1); 
}
.service-card .link-btn:before {
  background: var(--body-color);
  height: 1px;
  bottom: -2px;
}

/* ======= product =======*/

.product-card {
  position: relative;
  background-color: var(--smoke-color2);
  transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  -o-transition: .5s;
  /*overflow: hidden;*/
  text-align: center;
  border-radius: 15px;
  border: 1px solid var(--smoke-color2);
  z-index: 2;
}

.product-card .product-img{
  position: relative;
  background-color: var(--smoke-color2);
  border-radius: 15px 15px 0 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card .product-img img {
  transition: all ease 0.5s;
  transform: scale(1);
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.product-card .product-content {
  padding: 1rem;
}
.product-card .product-title {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1px;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical;
  line-height: 1.3rem;
  min-height: 2.6rem;
}
.product-card .product-title a {
  color: inherit;
}
.product-card:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
.product-card .product-title a:hover {
  color: var(--theme-color);
}
.product-card:hover .product-img > a > img {
  transform: scale(1.1);
}
.product-card:hover .product-title a {
  color: var(--theme-color);
}
/* ======= video-card =======*/

.video-card {
  background-color: var(--smoke-color2);
  transition: .5s;
  -moz-transition: .5s;
  -webkit-transition: .5s;
  -o-transition: .5s;
  padding: 0;
  border: 1px solid var(--smoke-color2);
  border-radius: 15px;
  padding-bottom: 1.25rem;
  text-align: center;
}

.video-card .video-img {
  margin-bottom: 25px;
  --space: 20px;
  overflow: hidden;
  position: relative;
  text-align: center;
  background-color: var(--smoke-color2);
  border-radius: 15px 15px 0 0;
  aspect-ratio: 4/3;
  z-index: 2;
}
.video-card .video-img.radiu-lr-15 {
  border-radius: 15px 15px 0 0;
}
.video-overlay {
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.4s ease;
}

.video-card:hover .video-overlay {
  background: rgba(0, 0, 0, 0.65);
}
.play-button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.video-card:hover .play-button {
  transform: scale(1.2);
}
.video-card .video-img img {
  transition: all ease 0.4s;
  transform: scale(1);
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.video-card .video-title {
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 1px;
}
.video-card .video-title a {
  color: inherit;
}
.video-card:hover .video-title a {
  color: var(--theme-color);
}
.video-card:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
}
/* Service Card ---------------------------------- */
.service-bg-area {
  margin-top: -45px;
  background-attachment: fixed;
  margin-bottom: -15px;
}
.service-bg-area .sec-shape-top {
  position: inherit;
  transform: translateY(-2px);
}
.service-bg-area .sec-shape-bottom {
  position: inherit;
  transform: translateY(2px);
}
/*----------------------------------------------
    # about style here
----------------------------------------------*/
.about-thumb {
  position: relative;
  padding-inline-end: 68px;
  display: inline-block;
  height: 100%;
}
.about-thumb .about-img-1 {
  border-radius: 20px;
  height: 100%;
  border: 5px solid white;
  object-fit: cover;
}
.about-thumb .about-img-2 {
  border-radius: 20px;
  position: absolute;
  bottom: 100px;
  inset-inline-end: 0;
  border: 5px solid white;
  z-index: 1;
  filter: drop-shadow(0px 6px 42px rgba(0, 0, 0, 0.19));
}
.about-readmore {
  margin-top: 1rem;
  text-align: end;
}
.about-readmore a:after {
  content: "";
  font-weight: 500;
  inset-inline-start: 0;
  transform: translateY(0);
  width: 15px;
  height: 11px;
  display: inline-block;
  border: none;
  color: inherit;
  transition: 0.2s;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  opacity: 1;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M439.1 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L371.2 256 233.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L179.2 256 41.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z'/%3E%3C/svg%3E") no-repeat center;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M439.1 278.6c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L371.2 256 233.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l160-160zm-352 160l160-160c12.5-12.5 12.5-32.8 0-45.3l-160-160c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L179.2 256 41.9 393.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z'/%3E%3C/svg%3E") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
}
html[dir="rtl"] .about-readmore a:after {
  transform: translate(0, -50%) scaleX(-1); 
}
.about-readmore .link-btn {
  font-size: 12px;
  font-weight: 500;
  padding-inline-start: 1rem;
}
.about-readmore .link-btn i {
  font-size: 14px;
  font-weight: 100;
}
.about-readmore .link-btn:before {
  height: 1px;
  bottom: -2px;
}
.about-tab-1 {
  margin-top: 1rem;
}
.about-tab-1 .filter-menu-active {
  gap: 10px;
  display: flex;
  border-bottom: 1px solid #E6E6E6;
  padding-bottom: 25px;
  flex-wrap: wrap;
  align-items: center;
}
.about-tab-1 button {
  border-radius: 5px;
  border: 0;
  color: var(--title-color);
  background: var(--smoke-color);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 5.5px 1rem;
}
.about-tab-1 button.active, .about-tab-1 button:hover {
  background: var(--theme-color);
  color: var(--white-color);
}
.about-tab-1 .filter-item {
  display: flex;
  gap: 30px;
  padding: 30px 0;
}
.filter-active-cat1 {
  border-bottom: 1px solid #E6E6E6;
}
/********wcu****/
.goal-thumb-2 {
  position: relative;
  padding-inline-start: 144px;
  height: 100%;
  margin: 0;
  margin-bottom: 10px;
}
.goal-thumb-2 .img-1 {
  height: 100%;
}
.goal-thumb-2 .img-1 img {
  border-radius: 20px;
  height: 100%;
  /*object-fit: cover;*/
}
.goal-thumb-2 .img-2 {
  position: absolute;
  inset-inline-start: 0px;
  top: 60px;
  filter: drop-shadow(0px 6px 42px rgba(0, 0, 0, 0.19));
}
.goal-thumb-2 .img-2 img {
  border-radius: 20px;
}
.goal-thumb-2 .wcu-grid {
  position: absolute;
  inset-inline-end: 0;
  bottom: 30px;
}
.wcu-grid {
  background: var(--theme-color);
  border-radius: 20px;
  padding: 40px 68px 40px 40px;
  display: inline-flex;
  align-items: center;
}
.wcu-grid .icon {
  padding-inline-end: 20px;
  border-inline-end: 1px solid rgba(255, 255, 255, 0.31);
  margin-inline-end: 20px;
}
.wcu-grid_year {
  font-size: 48px;
  font-weight: 500;
  color: var(--white-color);
  margin-bottom: -5px;
  margin-top: -0.3em;
}
.wcu-grid_text {
  font-size: 16px;
  font-weight: 600;
  font-family: var(--title-font);
  color: var(--white-color);
  text-transform: uppercase;
  margin-bottom: -0.4em;
  display: block;
}
.about-grid-wrap {
  display: flex;
  gap: 10%;
  padding-bottom: 40px;
  border-bottom: 1px solid #EEEEEE;
}
.about-grid {
  display: flex;
  gap: 20px;
}
.about-grid:not(:last-child) {
  margin-bottom: 40px;
}
.about-grid_icon {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: var(--theme-color);
  line-height: 60px;
  flex: none;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about-grid_icon .goodnesspack-icon {
  width: 50px;
  height: 50px;
  fill: var(--icon-fill);
}
.about-grid_title {
  font-size: 1.375rem;
  font-weight: 500;
  margin-bottom: 8px;
  margin-top: -0.3em;
}
.about-grid_text {
  margin-bottom: -0.3em;
  font-size: 1rem;
}
.about-grid.style2 {
  align-items: center;
  gap: 15px;
  margin-bottom: 0;
}
.about-grid.style2 .about-grid_icon {
  background: var(--white-color);
  border-radius: 0;
  border: 1px solid #EDEDED;
  box-shadow: 0px 10px 21px rgba(0, 0, 0, 0.1);
}
/* Counter 1 ---------------------------------- */
.counter-area-1 {
  background-attachment: fixed;
}
.counter-sec-shape-top {
  margin-top: -45px;
}
.counter-sec-shape-bottom {
  transform: rotateY(180deg) translateY(1px);
  margin-top: -2px;
  margin-bottom: -18px;
}
.counter-card {
  position: relative;
  display: inline-flex;
  gap: 25px;
  align-items: center;
}
.counter-card_icon {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  background-color: var(--theme-color);
  text-align: center;
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.counter-card_icon .goodnesspack-icon {
  width: 50%;
  height: auto;
  fill: white;
  transition: 0.4s all ease-in-out;
}
.counter-card_number {
  margin-top: 0px;
  margin-bottom: 2px;
  font-weight: 600;
  font-size: 45px;
}
.counter-card_text {
  font-weight: 400;
  font-size: 1rem;
  font-family: var(--title-font);
  color: var(--light-color);
  margin-bottom: -0.4em;
}
.counter-card_icon .goodnesspack-icon.about-4 {
  width: 60px;
}
.counter-card:hover .counter-card_icon .goodnesspack-icon {
  transform: rotateY(180deg);
}
.certificate-card a {
  min-height: 350px;
}
.certificate-card .image-lazyload {
  aspect-ratio: 9 / 13;
}
/* Blog Card ---------------------------------- */
.blog-card {
  position: relative;
  display: flex;
  background: var(--smoke-color2);
  border-radius: 20px;
  padding: 30px 30px 30px 30px;
  gap: 30px;
  align-items: center;
}
.blog-card .blog-content {
  border-radius: 0 0 15px 15px;
  padding: 0;
  position: relative;
  z-index: 2;
  transition: 0.4s;
}
.blog-card .blog-title {
  font-size: 1.25rem;
  word-break: break-all;
  margin-top: -0.3em;
  font-weight: 500;
  color: var(--title-color);
  line-height: 30px;
  margin-bottom: 22px;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical;
}

.blog-card .blog-title a {
  color: inherit;
  text-decoration: none;
  display: inline; 
  background-image: linear-gradient(var(--theme-color), var(--theme-color));
  background-repeat: no-repeat;
  background-size: 0 2px;
  background-position: left bottom; 
  transition: all 0.8s ease;
}
html[dir="rtl"] .blog-card .blog-title a {
  background-position: right bottom;
}
.blog-card .blog-title a:hover {
  color: var(--theme-color);
  background-size: 100% 2px;
}
.blog-card .blog-title:hover {
  color: var(--theme-color);
}
.blog-card .blog-meta {
  margin-bottom: 1.125rem;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}
.blog-card .blog-meta a {
  background: transparent;
  display: inline-flex;
  gap: 4px;
  align-items: center;
  border: 1px solid #DFDFDF;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 300;
  font-family: var(--title-font);
  color: var(--title-color);
  padding: 3.5px 1rem;
  margin: 0 0.5rem 10px 0;
}
.blog-card .blog-meta i {
  font-size: 1rem;
}
.blog-card .blog-meta a:hover {
  box-shadow: 0px 16px 51px rgba(0, 0, 0, 0.07);
  background: var(--white-color);
}
.blog-card .blog-content .blog-text {
  font-size: 1rem;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical;
}
.blog-card .blog-content .link-btn.style2 {
  font-weight: 400;
  font-family: var(--title-font);
  color: var(--title-color);
  font-size: 14px;
}
.blog-card .blog-content .link-btn.style2 i {
  height: 35px;
  width: 35px;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white-color);
  border: 1px solid rgba(237, 237, 237, 0.89);
  box-shadow: 0px 16px 51px rgba(0, 0, 0, 0.07);
  color: var(--title-color);
  margin-inline-end: 7px;
  margin-inline-start: 0;
  transition: 0.4s;
}
html[dir="rtl"] .blog-card .blog-content .link-btn.style2 i {
  transform: scaleX(-1); 
}
.link-btn.style2 .goodnesspack-icon {
  width: 13px;
}
.blog-card .blog-content .link-btn.style2:before {
  background-color: var(--theme-color);
  bottom: 10px;
  height: 1px;
  inset-inline-start: 42px;
}
.blog-card .blog-content .link-btn.style2:hover {
  color: var(--theme-color);
}
.blog-card .blog-content .link-btn.style2:hover i {
  background: var(--theme-color);
  color: var(--white-color);
  border-color: var(--theme-color);
}
.link-btn.style2:hover:before {
  width: calc(100% - 42px);
}
.social-links .search-btn .goodnesspack-icon {
  padding: 1px;
}

/*************gear**************************/
.gear-background .gear1:before {
  content: "";
  height: 200px;
  width: 200px;
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 522"><defs><linearGradient id="brass" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="%23ffeaa7"/><stop offset="40%" stop-color="%23d3a24d"/><stop offset="80%" stop-color="%238a6421"/><stop offset="100%" stop-color="%234a3307"/></linearGradient><filter id="shadow"><feDropShadow dx="0" dy="5" stdDeviation="5" flood-color="%23000000" flood-opacity="0.2"/></filter></defs><path d="M495.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-43.3 39.4c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l43.3 39.4c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-55.7-17.7c-13.4 10.3-28.2 18.9-44 25.4l-12.5 57.1c-2 9.1-9 16.3-18.2 17.8c-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-12.5-57.1c-15.8-6.5-30.6-15.1-44-25.4L83.1 425.9c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l43.3-39.4C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L22.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l55.7 17.7c13.4-10.3 28.2-18.9 44-25.4l12.5-57.1c2-9.1 9-16.3 18.2-17.8C227.3 1.2 241.5 0 256 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l12.5 57.1c15.8 6.5 30.6 15.1 44 25.4l55.7-17.7c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM256 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z" fill="url(%23brass)" filter="url(%23shadow)"/></svg>');

  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  animation: gear1rotate 7s linear infinite;
}
.gear-background .gear2:before {
  content: "";
  height: 200px;
  width: 200px;
  position: absolute;
  top: 7.875rem;
  inset-inline-start: 7.875rem;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 522"><defs><linearGradient id="brass" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" stop-color="%23ffeaa7"/><stop offset="40%" stop-color="%23d3a24d"/><stop offset="80%" stop-color="%238a6421"/><stop offset="100%" stop-color="%234a3307"/></linearGradient><filter id="shadow"><feDropShadow dx="0" dy="5" stdDeviation="5" flood-color="%23000000" flood-opacity="0.2"/></filter></defs><path d="M495.9 166.6c3.2 8.7 .5 18.4-6.4 24.6l-43.3 39.4c1.1 8.3 1.7 16.8 1.7 25.4s-.6 17.1-1.7 25.4l43.3 39.4c6.9 6.2 9.6 15.9 6.4 24.6c-4.4 11.9-9.7 23.3-15.8 34.3l-4.7 8.1c-6.6 11-14 21.4-22.1 31.2c-5.9 7.2-15.7 9.6-24.5 6.8l-55.7-17.7c-13.4 10.3-28.2 18.9-44 25.4l-12.5 57.1c-2 9.1-9 16.3-18.2 17.8c-13.8 2.3-28 3.5-42.5 3.5s-28.7-1.2-42.5-3.5c-9.2-1.5-16.2-8.7-18.2-17.8l-12.5-57.1c-15.8-6.5-30.6-15.1-44-25.4L83.1 425.9c-8.8 2.8-18.6 .3-24.5-6.8c-8.1-9.8-15.5-20.2-22.1-31.2l-4.7-8.1c-6.1-11-11.4-22.4-15.8-34.3c-3.2-8.7-.5-18.4 6.4-24.6l43.3-39.4C64.6 273.1 64 264.6 64 256s.6-17.1 1.7-25.4L22.4 191.2c-6.9-6.2-9.6-15.9-6.4-24.6c4.4-11.9 9.7-23.3 15.8-34.3l4.7-8.1c6.6-11 14-21.4 22.1-31.2c5.9-7.2 15.7-9.6 24.5-6.8l55.7 17.7c13.4-10.3 28.2-18.9 44-25.4l12.5-57.1c2-9.1 9-16.3 18.2-17.8C227.3 1.2 241.5 0 256 0s28.7 1.2 42.5 3.5c9.2 1.5 16.2 8.7 18.2 17.8l12.5 57.1c15.8 6.5 30.6 15.1 44 25.4l55.7-17.7c8.8-2.8 18.6-.3 24.5 6.8c8.1 9.8 15.5 20.2 22.1 31.2l4.7 8.1c6.1 11 11.4 22.4 15.8 34.3zM256 336a80 80 0 1 0 0-160 80 80 0 1 0 0 160z" fill="url(%23brass)" filter="url(%23shadow)"/></svg>');

  background-size: contain;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 1;
  transition: all 0.3s ease-in-out;
  animation: gear2rotate 7s linear infinite;
}

@keyframes gear1rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes gear2rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
/************gear end********************/

/*******************************************/

@media (max-width: 1600px) {

}
/* Extra large devices */
@media (max-width: 1560px) {
  .counter-card_icon {
    width: 114px;
    height: 114px;
  }
  .counter-card_number {
    font-size: 40px;
  }
  .counter-card {
    gap: 13px;
  }
}
@media (max-width: 1399px) {
  .counter-card_icon {
    width: 100px;
    height: 100px;
  }
  .counter-card_number {
    font-size: 25px;
  }

}
/* Medium Large devices */
@media (max-width: 1299px) {
  .about-tab-1 {
    margin-top: 27px;
  }
  .counter-card_text,
  .blog-card .blog-title,
  .link-btn.style2 {
    font-weight: 400;
  }
  .scroll-top {
    inset-inline-end: 25px;
    bottom: 25px;
    width: 40px;
    height: 40px;
  }
  .scroll-top:after {
    width: 1rem;
    height: 1rem;
  }
  .scroll-top svg {
    border-width: 1px;
  }
  .scroll-top .progress-circle path {
    stroke-width: 7px;
  }
  .gear-background .gear1:before,
  .gear-background .gear2:before {
    width: 180px;
    height: 180px;
  }
  .wcu-grid {
    padding: 30px;
  }
  .wcu-grid_year {
    font-size: 38px;
  }
  .wcu-grid_text {
    font-size: 14px;
    font-weight: 400;
  }
}
@media (max-width: 1280px) {
  .gear-background .gear2:before {
    width: 150px;
    height: 150px;
  }
  .service-card {
    padding: 30px;
  }
  .service-card_icon img {
    width: 50px;
  }
}
@media (max-width: 1024px) {
  .header-home .header-top {
      padding: 11.5px 28px;
  }
  .service-card {
    padding: 20px;
  }
  .service-card_icon img {
    width: 45px;
  }
  .service-card_title.h5 {
    font-size: 1.1rem;
    font-weight: 300;
  }
  .service-card .service-card_content .link-btn {
    font-size: 0.875rem;
    font-weight: 300;
  }
  .sec-title {
    font-size: 1.5rem;
  }
  .about-grid-wrap.mt-40 {
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 30px;
  }
  .about-grid_content .about-grid_title {
    font-size: 1rem;
    margin-bottom: 0;
  }
  .about-grid_content .about-grid_text {
    font-size: 0.875rem;
  }
  .wcu-grid {
    padding: 25px;
  }
  .wcu-grid .wcu-grid_year {
    font-size: 26px;
  }
  .wcu-grid .wcu-grid_text {
    font-size: 1rem;
    font-weight: 400;
  }
  .about-grid_icon {
    width: 40px;
    height: 40px;
  }
  .about-tab-1 button {
    font-weight: 400;
    font-size: 12px;
    padding: 0px 8px;
  }
  .counter-card_icon {
    width: 90px;
    height: 90px;
  }
  .btn.btn-border, .btn.btn-border3 {
    16px 14px 16px 20px
  }
  .marquee-track img {
    height: 60px;
    width: 105px;
  }
}
/* Medium devices */
@media (max-width: 991px) {
  .service-card {
    padding: 1.875rem;
    gap: 12px;
  }
  .service-card_icon .services-1,
  .service-card_icon .services-2, 
  .service-card_icon .services-3, 
  .service-card_icon .services-4, 
  .service-card_icon .services-5,
  .service-card_icon .services-6 {
    width: 30px;
    height: 30px;
  }
  .goal-thumb-2 {
    padding: 0 40px 40px 40px;
  }
  .about-grid_content .about-grid_title {
    font-size: 1.25rem;
  }
  .about-grid_content .about-grid_text {
    font-size: 1rem;
  }
  .counter-card_icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .counter-card_icon .goodnesspack-icon, .link-btn.style2 i {
    width: 33px;
    height: 33px;
  }
  .counter-card_number {
    font-size: 30px;
    font-weight: 400;
  }
  .counter-card_text, .blog-card .blog-meta a {
    font-size: 1rem;
  }
}
/* Small devices */
@media (max-width: 768px) {
  .hero {
    height: auto;
    aspect-ratio: 16 / 9;
  }
  .hero-video {
    object-fit: contain; 
  }
  .play-button {
    width: 36px;
    height: 36px;
    border-width: 1px;
  }
  .play-button svg {
    width: 22px;
    height: 22px;
  }
  .counter-card_number {
    font-size: 1rem;
  }
  .counter-card_text {
    font-size: 12px;
    font-weight: 100;
  }
}
/* Extra small devices */
@media (max-width: 576px) {
  .marquee-group .inner {
    min-height: 50px;
    width: 80px;
  }
  .service-area .sec-shape-top {
    transform: translateY(-2px);
  }
  .service-area .sec-shape-bottom {
    transform: translateY(2px);
  }
  .product-area .row.gy-30 {
    --bs-gutter-y: 18px;
  }
  .service-bg-area {
    margin-top: 0;
  }
  .service-bg-area .sec-shape-top {
    position: inherit;
    transform: translateY(-2px);
  }
  .service-bg-area .sec-shape-bottom {
    position: inherit;
    transform: translateY(2px);
  }
  .about-grid-wrap {
    gap: 7px;
  }
  .counter-card_icon {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
  .counter-card_icon .goodnesspack-icon {
    width: 30px;
    height: 30px;
  }
  .counter-card_icon .goodnesspack-icon.about-4 {
    width: 38px;
  }
  .counter-sec-shape-top {
    margin-top: 0;
    transform: translateY(-2px);
  }
  .counter-sec-shape-bottom {
    transform: translateY(2px);
  }
  .footer-wrapper .sec-shape-top {
    transform: translateY(-2px);
  }
  .wcu-grid {
    padding: 15px 22px 15px 15px;
  }
  .wcu-grid .icon {
    padding-inline-end: 7px;
    margin-inline-end: 7px;
  }
  .wcu-grid .icon img {
    width: 52px;
  }
  .wcu-grid .wcu-grid_year {
    font-size: 30px;
  }
  .about-grid_content .about-grid_title {
    font-size: 1rem;
  }
  .about-grid_content .about-grid_text {
    font-size: 0.875rem;
  }
  .counter-card {
    gap: 10px;
  }
  .certificate-area .row.gy-30 {
    --bs-gutter-y: 10px;
  }
  .certificate-card a {
    min-height: 220px;
  }

}
/* Extra small devices */
@media (max-width: 375px) {
  .gear-background .gear1:before, .gear-background .gear2:before {
    width: 100px;
    height: 100px;
  }
  .gear-background .gear1:before {
    inset-inline-start: 46px;
  }
  .gear-background .gear2:before {
    top: 60px;
    inset-inline-start: 110px;
  }
}

@media (max-width: 575.98px) {
  .services-mobile-scroll {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
        
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .services-mobile-scroll::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
  }

  .services-mobile-scroll {
    scroll-snap-type: x mandatory;
    scroll-padding: 15px;
  }

  .services-mobile-scroll [class*="col-"] {
    flex: 0 0 85% !important;
    max-width: 85% !important;
    scroll-snap-align: start;
  }
}