/* <<<<<<<<<<<<<<<<<<< GENERAL >>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>> */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
}

:root {
  --color-primary: #6c63ff;
  --color-success: #00bf8e;
  --color-warning: #f7c94b;
  --color-danger: #f75842;
  --color-danger-variant: rgba(247, 88, 66, 0.4);
  --color-white: #fff;
  --color-ligth: rgba(255, 255, 255, 0.7);
  --color-black: #555;
  --color-bg: #1f2641;
  --color-bg1: #2e3267;
  --color-bg2: #424890;

  --container-width-lg: 80%;
  --container-width-md: 90%;
  --container-width-sm: 94%;

  --transition: all 400ms ease;
}
body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  color: var(--color-white);
  background: #333;
}
.container {
  width: var(--container-width-lg);
  margin: 0 auto;
}
section {
  padding: 6rem 0;
}
section h2 {
  text-align: center;
  margin-bottom: 4rem;
}
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.2;
}
h1 {
  font-size: 3.2rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.6rem;
}
h4 {
  font-size: 1.3rem;
}
a {
  color: var(--color-white);
}
img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.btn {
  display: inline-block;
  background: var(--color-white);
  color: var(--color-black);
  padding: 1rem 2rem;
  border: 1px solid transparent;
  font-weight: 500;
  transition: var(--transition);
}
.btn:hover {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn-primary {
  background: #f4d956;
  color: #555;
}
.btn-secondary {
  background: transparent;
  border: 1px solid var(--color-white);
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s;
}

/* <<<<<<<<<<<<<<<<<<< NAVBAR >>>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>> */
header {
  position: fixed;
  width: 100%;
  z-index: 100;
}
nav {
  top: 0;
  z-index: 11;
  height: 5rem;
  background: transparent;
  transition: background-color 0.5s ease-in-out;
}
nav button {
  display: none;
}
/* Change navbar style on scroll using javascript */
.window-scroll {
  background: #333333;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.test {
  background: #333333;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2);
}
.nav__container {
  height: 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo-icon {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon-head {
  width: 40px;
}
.logo-text-ultra {
  color: #f4d956;
  font-size: 18px;
  letter-spacing: 1px;
}
.logo-text-webflow {
  font-size: 20px;
  letter-spacing: 1px;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.nav__menu a {
  font-size: 0.9rem;
  transition: color 0.3s;
  letter-spacing: 1px;
}
.nav__menu a:hover,
.nav__menu a.active {
  color: rgba(244, 217, 86, 0.5);
}
.nav__menu li a i {
  display: none;
}
.nav__menu li div i {
  display: none;
}
html {
  scroll-behavior: smooth;
}
.nav-menu-icons {
  margin-left: 6rem;
  margin-top: 1rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
}
.btn-secondary:hover {
  color: #fff;
}
/* Style for the dropdown container */
/* Dropdown Languages */
.language-btn {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.languageCode {
  margin-left: 7px;
  font-size: 14px;
}
.language-dropdown {
  display: none;
  width: 95px;
  position: absolute;
  background: #555;
  color: #fff;
  top: 82%;
  left: -7px;
  border: 1px solid rgba(244, 217, 86, 0.5);
  border-radius: 5px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1;
}

.language-dropdown ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.language-dropdown li {
  padding: 10px;
  cursor: pointer;
  font-size: 12px;
}

.language-dropdown li:hover {
  background-color: #333;
}

.see-more-link i {
  animation: arrowMovement 1.5s infinite alternate;
}
@keyframes arrowMovement {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(12px);
  }
}

.language-btn {
  width: 5px;
  margin-left: 20px;
  background: none;
  display: inline-block;
  color: var(--color-black);
  padding: 1rem 2rem;
  margin-right: -2rem;
  transition: background-color 1s ease-in-out;
}
.language-btn:hover .language {
  color: rgba(244, 217, 86, 0.5);
  transition: color 0.3s;
}
.language-btn:hover {
  cursor: pointer;
}
.fa-globe {
  color: #fff;
  margin-right: 5px;
  margin-left: -15px;
  margin-top: 5px;
  font-size: 16px;
  transition: color 0.3s ease;
}
.fa-globe:hover,
.fa-globe.active {
  color: rgba(244, 217, 86, 0.5);
}
/* Style for the Call Us container */
.call-us {
  position: fixed;
  right: 0;
  top: 65%;
  transform: translateY(-35%);
  padding: 1rem 1rem;
  width: 55px;
  transition: width 1s ease;
  overflow: hidden;
  z-index: 9;
}
.call-us:hover {
  width: 300px;
}
.call-us:hover .call-us-title {
  background: rgb(59, 68, 77);
  color: #fff;
  transition: color 0.5s ease-in-out;
  transition: background-color 0.5s ease-in-out;
  margin-right: -1px;
}
.call-us-title {
  font-size: 18px;
  height: 170px;
  text-align: center;
  color: #555;
  padding: 2rem 5px;
  background-color: #f4d956;
  text-transform: uppercase;
  font-weight: bold;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  white-space: nowrap;
  margin: 0;
  border-radius: 2px;
}
.call-us-content {
  display: flex;
  align-items: center;
}
.call-us-contact-us {
  width: 300px;
  height: 170px;
  padding: 2rem;
  background: #212529;
}
.call-us-contact-us li {
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.call-us-contact-us li a {
  display: flex;
  align-items: center;
}
.call-us-contact-us a {
  text-decoration: none;
  color: #fff;
  font-size: 14px;
}
.call-us-contact-us i {
  color: #fff;
  margin-left: 56px;
  font-size: 18px;
  margin-bottom: 5px;
}
.call-us:hover .contact-us {
  display: block;
}
.call-us-icons {
  width: 20px;
  margin-right: 7px;
}

/* Search functionallity */
#right-icons {
  margin-left: 15px;
  display: flex;
  align-items: center;
}
.search-container-mobile {
  display: none;
}
.search-container {
  position: relative;
  transition: width 0.7s ease, opacity 1s ease, visibility 1s ease;
}
.search-icon {
  margin-top: 7px;
  margin-right: -28px;
  font-size: 22px;
  cursor: pointer;
  transition: transform 0.7s ease;
}
.search-input {
  width: 0;
  padding: 7px;
  border: 1px solid rgba(244, 217, 86, 0.5);
  border-radius: 20px;
  transition: width 0.7s ease, opacity 1s ease, visibility 1s ease;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}

.suggestions {
  display: none;
  position: absolute;
  top: 20px;
  left: -118px;
  width: 167px;
  border-radius: 7px;
  background-color: #fff;
  border: 1px solid #ccc;
  z-index: 1;
  max-height: 150px;
  overflow-y: auto;
  overflow-x: hidden;
}
.suggestions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.suggestions li {
  padding: 5px;
  cursor: pointer;
  color: #555;
  font-size: 12px;
}
.suggestions li:hover {
  background: #f8f9fa;
}
.search-container.active .search-input {
  width: 140px;
  background: #555;
  color: #fff;
  margin-top: -15px;
  margin-left: -118px;
  opacity: 1;
  visibility: visible;
  transition: width 0.7s ease, margin 0.7s ease, opacity 1s ease,
    visibility 1s ease;
}
.search-container.active .search-icon {
  display: none;
}
.search-container:not(.active) .search-input {
  width: 0;
  margin-top: 0;
  margin-left: 0;
  opacity: 0;
  visibility: hidden;
  transition: none;
}

/* <<<<<<<<<<<<<<<<<<< HERO >>>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>> */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 12rem 0 85px 0 !important;
}
.header__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
}
.header__left {
  width: 565px;
}
.header__left p {
  margin: 1rem 0 2.4rem;
}
.row {
  display: flex;
  justify-content: center;
}
.col {
  flex: 1;
  padding: 10px;
  text-align: center;
}
.col img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.hero-img-01 {
  margin-top: 20px;
}

/* Slider image in home page */
.header__right {
  height: 100%;
}
.slider {
  width: 100%;
  position: relative;
}
.slider ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.slider li {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slider li.active {
  opacity: 1;
  transition: opacity 3s ease-in-out;
}
/* delivered projects */
.delivered-projects {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  margin-left: 1.2rem;
  margin-top: 2rem;
}
.text-highlight-container {
  display: flex;
}

.delivered-imgs {
  display: flex;
}
.delivered-imgs img {
  height: 3.8rem;
  width: 3.8rem;
  border-radius: 50%;
  margin-left: -1.6rem;
  border: 2px solid rgba(244, 217, 86, 0.5);
}

.delivered-text {
  font-size: 1rem;
  font-weight: 600;
}
.delivered-text-highlight {
  color: #f4d956;
  font-weight: 700;

  margin-top: 2px;
}

/* featured in */
.heading-featured-in {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1rem;
  color: #888;
}
.section-featured {
  margin-top: auto;
  background: #212529;
  padding: 1.2rem 0 1.2rem 0;
}
.logos {
  display: flex;
  justify-content: space-around;
}
.logos img {
  max-height: 2.3rem;
  width: auto;
  filter: brightness(0);
  opacity: 50%;
}

/* <<<<<<<<<<<<<<<<<<< CATEGORIES >>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>> */
.categories {
  background: #5555;
  padding-top: 2rem !important;
}
.categories__container {
  display: grid;
  grid-template-columns: 100%;
  gap: 4rem;
}
.categories h1 {
  line-height: 1;
  margin-bottom: 3rem;
}
.categories__left {
  margin-top: 3.2rem;
}
.services-heading {
  text-align: left;
  margin-bottom: 3rem !important;
}
.categories__left p {
  margin: 1rem 0 3rem;
  margin-right: 3rem;
}
.categories__right {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.category {
  background: #555;
  padding: 2rem;
  border-radius: 2rem;
  transition: var(--transition);
}
.category:hover {
  box-shadow: 0 3rem 3rem rgba(0, 0, 0, 0.3);
}
.category:nth-child(1) .category__icon {
  background: var(--color-primary);
}
.category:nth-child(2) .category__icon {
  background: var(--color-danger);
}
.category:nth-child(3) .category__icon {
  background: var(--color-success);
}
.category:nth-child(4) .category__icon {
  background: var(--color-warning);
}
.category:nth-child(5) .category__icon {
  background: var(--color-success);
}
.category:nth-child(6) .category__icon {
  background: var(--color-danger-variant);
}
.category__icon {
  background: var(--primary-color);
  padding: 0.7rem;
  border-radius: 0.9rem;
}
.category h4 {
  margin: 2rem 0 1rem;
}
.category p {
  font-size: 0.85rem;
}
/* Animation of categories */
/* First category */
.category:nth-child(1) {
  animation: moveLeftToRight 4s ease-in-out;
}
/* Second category */
.category:nth-child(2) {
  animation: blurToNormal 4s ease-in-out;
}
/* Third category */
.category:nth-child(3) {
  animation: moveRightToLeft 4s ease-in-out;
}
/* Fourth category */
.category:nth-child(4) {
  animation: moveBottomToTop 5s ease-in-out;
}
/* Fifth and sixth categories */
.category:nth-child(5) {
  animation: zoomOut 4s ease-in-out;
}
.category:nth-child(6) {
  animation: moveLeftToRight2 5s ease-in-out;
}
/* First category */
.category.animate1 {
  animation: moveLeftToRight 4s ease-in-out;
}
/* Second category */
.category.animate2 {
  animation: blurToNormal 4s ease-in-out;
}
/* Third category */
.category.animate3 {
  animation: moveRightToLeft 4s ease-in-out;
}
/* Fourth category */
.category.animate4 {
  animation: moveBottomToTop 5s ease-in-out;
}
/* Fifth category */
.category.animate5 {
  animation: zoomOut 4s ease-in-out;
}
/* Sixth category */
.category.animate6 {
  animation: moveLeftToRight2 5s ease-in-out;
}
/* First category: Move from left to right */
@keyframes moveLeftToRight {
  from {
    transform: translateX(-30%);
  }
  to {
    transform: translateX(0);
  }
}
/* Second category: Initial zoom in, then return to original size */
@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes blurToNormal {
  0% {
    filter: blur(4px);
    opacity: 0.5;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
/* Third category: Move from right to left */
@keyframes moveRightToLeft {
  from {
    transform: translateX(30%);
  }
  to {
    transform: translateX(0);
  }
}
/* Fourth category: Move from bottom to top */
@keyframes moveBottomToTop {
  from {
    transform: translateY(40%);
  }
  to {
    transform: translateY(0);
  }
}
/* Fifth category: Initial zoom out, then return to original size */
@keyframes zoomOut {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/* Sixth categories: Move from left to right */
@keyframes moveLeftToRight2 {
  from {
    transform: translateX(-30%);
  }
  to {
    transform: translateX(0);
  }
}

/* <<<<<<<<<<<<<<<<<<< PROJECTS >>>>>>>>>>>>>>>>>>>>> */
/* <<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>> */
.projects__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.project {
  background: #555;
  text-align: center;
  border: 1px solid transparent;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.project:hover {
  background: transparent;
  border-color: rgba(244, 217, 86, 0.5);
  cursor: pointer;
}
.project__image {
  opacity: 0.9;
  transition: opacity 0.3s ease;
}
.project:hover .project__image {
  opacity: 1;
}
.project__info {
  padding: 2rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.project__info p {
  margin: 1.2rem 0 0;
  font-size: 0.9rem;
  flex-grow: 1;
}

.project__info .btn-primary {
  width: 225px;
  margin-top: 1rem;
}
.project__image {
  filter: blur(7px);
  transition: filter 2s ease;
}

/* <<<<<<<<<<<<<<<<<<< SLIDER OF PROJECTS >>>>>>>>>>>>>>>>>>>>> */
.sliders-content {
  background: #555;
  width: var(--container-width-lg);
  margin: 0 auto;
  margin-top: 3rem;
  transition: var(--transition);
  border: 1px solid transparent;
  height: 720px;
}
.sliders-content:hover {
  background: transparent;
  border-color: rgba(244, 217, 86, 0.5);
  cursor: pointer;
}
.splide__slide img {
  width: 100%;
  height: auto;
}
.splide__slide {
  opacity: 0.6;
}
.splide__slide.is-active {
  opacity: 1;
}

.main-carousel-container {
  width: 100%;
  height: 500px;
  padding: 2rem;
}
.splide__list-container li {
  height: 510px;
}
.thumbnail-carousel {
  margin-top: 75px;
  width: 96%;
  padding: 1rem 0;
  background: #212529;
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: 1rem;
  justify-content: center; /* Center the .splide__list horizontally */
}

.thumbnail-carousel .splide__list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  transition: transform 0.3s;
}

.thumbnail-carousel .splide__slide {
  flex: 0 0 calc(25% - 1rem);
  max-width: calc(25% - 1rem);
  text-align: center;
  overflow: hidden;
}

/* Media query for smaller screens */
@media (max-width: 768px) {
  .thumbnail-carousel .splide__slide {
    flex: 0 0 calc(33.33% - 1rem);
    max-width: calc(33.33% - 1rem);
  }
}

/* Media query for even smaller screens */
@media (max-width: 576px) {
  .thumbnail-carousel .splide__slide {
    flex: 0 0 calc(50% - 1rem);
    max-width: calc(50% - 1rem);
  }
}

.project-visit-website {
  width: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.visit-website-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f4d956;
  color: #555;
  padding: 10px;
  border-radius: 4px;
  z-index: 1; /* Changed to a positive z-index */
  font-size: 14px;
  opacity: 0; /* Initially hidden */
  pointer-events: none; /* Prevent hover interference */
}

.project-visit-website:hover::before {
  opacity: 1;
  z-index: 1;
}
.project-visit-website:hover {
  opacity: 0.7;
}
.project-visit-website img {
  transition: opacity 0.3s ease;
}
.project-visit-website:hover img {
  opacity: 0.7;
}

.splide__arrow--prev {
  left: auto;
}
.splide__arrow--next {
}
.splide__arrow svg {
  fill: #555 !important;
  height: 2rem !important;
  transition: all 400ms ease !important;
}
.splide__arrow {
  width: 3rem !important;
  height: 3rem !important;
  background: #f4d956 !important;
  transition: all 400ms ease !important;
}
.sliders-content:hover .splide__arrow {
  background: #555 !important;
}
.sliders-content:hover .splide__arrow svg {
  fill: #f4d956 !important;
}
.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 1px solid rgba(244, 217, 86, 0.5) !important;
}

/* <<<<<<<<<<<<<<<<<<< FOOTER >>>>>>>>>>>>>>>>>>>>> */
footer {
  /*background: var(--color-bg1);*/
  background: #333333;
  padding-top: 5rem;
  font-size: 0.9rem;
}

.footer__container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5rem;
}
.footer__container > div h4 {
  margin-bottom: 1.2rem;
}
.footer__col-1 p {
  margin: 0 0 2rem;
}
footer ul li {
  margin-bottom: 0.7rem;
}
footer ul li a {
  transition: 0.3s;
}
footer ul li a:hover {
  color: rgba(244, 217, 86, 0.5);
}
.footer__socials {
  display: flex;
  gap: 3rem;
  font-size: 1.5rem;
  margin-top: 2rem;
}
.footer__copyright {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 4rem;
  padding: 1.2rem 0;
  border-top: 1px solid rgba(244, 217, 86, 0.5);
}
.logo-text-ultra-cr {
  color: #f4d956;
}
.icon-footer {
  width: 120px;
}
.logo-text-ultra-foot {
  font-size: 32px;
  color: #f4d956;
}
.logo-text-webflow-foot {
  font-size: 33px;
}
.about-company {
  padding: 12px;
}
