@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  list-style: none;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
}

:root {
  --accent: #FFDE59;
  --accent-2: #ffb13c;
  --definer: #ff7a62;
  --background: #fafaf8;
  --text: #7d7d7d;
  --dark: #171717;
  --white: #ffffff;
}

body .button-primary {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 0.3rem;
  transition: all 0.3s linear;
}
body .button-primary button {
  border: none;
  outline: none;
  background: none;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 7px;
  cursor: pointer;
}
body .button-primary button span {
  letter-spacing: 0;
}
body .button-primary:hover {
  box-shadow: 0 0 7px var(--accent);
}
body .header-texts {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.7rem;
}
body .header-texts .primary {
  font-family: "Cinzel", serif !important;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  color: rgba(119, 119, 119, 0.4666666667);
  position: relative;
}
body .header-texts .primary::before {
  content: "";
  width: 60%;
  height: 3px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  position: absolute;
  top: 100%;
  left: -30px;
}
body .header-texts .primary::after {
  content: "";
  width: 3px;
  height: 130%;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--accent-2), var(--accent));
  position: absolute;
  top: 0;
  left: -12px;
}
body .header-texts .secondary {
  width: 30%;
  color: #a8a8a8;
  font-weight: 300;
}
body nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  padding: 20px 120px;
  background: transparent;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  z-index: 100;
  transition: all 0.3s linear;
}
body nav .logo {
  height: 66%;
}
body nav .main_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
  transition: all 0.3s linear;
}
body nav .main_nav a {
  color: var(--white);
  transition: all 0.3s ease;
}
body nav .main_nav a li {
  text-transform: capitalize;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.7px;
  position: relative;
}
body nav .main_nav a li::before {
  content: "";
  width: 30%;
  height: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 100px;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%) scale(0);
  transition: 0.3s ease;
  opacity: 0;
  visibility: hidden;
}
body nav .main_nav a:hover {
  color: var(--white);
  position: relative;
}
body nav .main_nav a:hover li::before {
  content: "";
  width: 30%;
  height: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 100px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) scale(1);
  transition: 0.3s ease;
  opacity: 1;
  visibility: visible;
}
body nav .main_nav .active {
  pointer-events: none;
  color: var(--accent-2);
  position: relative;
}
body nav .main_nav .active::before {
  content: "";
  width: 30%;
  height: 2px;
  background: var(--white);
  border-radius: 100px;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s ease;
}
body nav .mobNav {
  height: 30px;
  width: 30px;
  border: none;
  outline: none;
  background: none;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  z-index: 10000;
  cursor: pointer;
}
body nav .mobNav .navElement {
  height: 2px;
  width: 20px;
  border-radius: 50px;
  background: var(--white);
  transition: all 0.3s ease;
}
body nav .mobNav .two {
  opacity: 1;
  visibility: visible;
}
body nav .mobNavCng .navElement {
  background: var(--white);
}
body nav .mobNavCng .one {
  transform: translateY(7px) rotate(45deg);
}
body nav .mobNavCng .three {
  transform: translateY(-7px) rotate(-45deg);
}
body nav .mobNavCng .two {
  opacity: 0;
  visibility: hidden;
}
body .scrolling-active {
  height: 100px;
  background: rgba(0, 0, 0, 0.6705882353);
  -webkit-backdrop-filter: blur(0.6rem);
          backdrop-filter: blur(0.6rem);
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
body .scrolling-active .logo {
  height: 100%;
}
body .landing {
  width: 100%;
  min-height: 100vh;
  padding: 0 100px;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7333333333), rgba(0, 0, 0, 0.8)), url(../Assets/landingBG.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
body .landing .container {
  margin-top: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}
body .landing .container h1 {
  font-family: "Cinzel", serif !important;
  font-size: 3rem;
  font-weight: 300;
  color: var(--white);
  position: relative;
}
body .landing .container h1 .special {
  font-family: "Cinzel", serif !important;
  font-size: 3rem;
  font-weight: 300;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body .landing .container h1::before {
  content: "";
  width: 10%;
  height: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  border-radius: 100px;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
}
body .landing .container .desc {
  width: 80%;
  font-weight: 300;
  color: var(--white);
}
body .about {
  width: 100%;
  min-height: 100vh;
  padding: 60px 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
body .about .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
body .about .container .main {
  font-size: 0.9rem;
  color: var(--text);
}
body .about .container .main_text {
  margin-left: 1rem;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--text), var(--dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  position: relative;
}
body .about .container .main_text::before {
  content: "";
  width: 3px;
  height: 100%;
  background: linear-gradient(135deg, var(--text), var(--dark));
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
}
body .about .container .who .desc {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  color: var(--text);
}
body .about .container .values {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
body .about .container .values .value_box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
body .about .container .values .value_box .box {
  width: 300px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
body .about .container .values .value_box .box img {
  height: 100px;
}
body .about .container .values .value_box .box .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
body .about .container .values .value_box .box .text .primary {
  font-size: 1.2rem;
  font-weight: 500;
  background: linear-gradient(135deg, var(--definer), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
body .about .container .values .value_box .box .text .secondary {
  font-size: 0.9rem;
  color: var(--text);
}
body .service {
  width: 100%;
  min-height: 60vh;
  padding: 60px 70px;
  background: linear-gradient(to bottom, var(--white), var(--background));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
}
body .service .service-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6rem;
}
body .service .service-box .box {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1.6rem;
}
body .service .service-box .box img {
  height: 160px;
}
body .service .service-box .box .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
body .service .service-box .box .text .desc {
  font-size: 0.8rem;
  color: var(--text);
}
body .service .service-box .box .text .header {
  background: linear-gradient(135deg, var(--definer), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}
body .service .service-box .box .text .header::before {
  content: "";
  width: 20px;
  height: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
body .service .process {
  margin-top: 2rem;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
body .service .process .main_text {
  margin-left: 1rem;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--text), var(--dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  position: relative;
}
body .service .process .main_text::before {
  content: "";
  width: 3px;
  height: 100%;
  background: linear-gradient(135deg, var(--text), var(--dark));
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
}
body .service .process img {
  width: 90%;
}
body .portfolio {
  width: 100%;
  min-height: 60vh;
  padding: 60px 70px;
  background: linear-gradient(to bottom, var(--white), var(--background));
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
  overflow: hidden;
}
body .portfolio .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
body .portfolio .container .box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
}
body .portfolio .container .box img {
  width: 300px;
  border-top-right-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
}
body .portfolio .container .box .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body .portfolio .container .box .text .primary {
  color: var(--text);
  position: relative;
}
body .portfolio .container .box .text .primary::before {
  content: "";
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--text), var(--dark));
  position: absolute;
  top: 50%;
  left: 110%;
  transform: translateY(-50%);
}
body .portfolio .container .box .text .secondary {
  font-size: 0.7rem;
}
body .portfolio .partner_sec {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
body .portfolio .partner_sec .header {
  margin-left: 1rem;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--text), var(--dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  position: relative;
}
body .portfolio .partner_sec .header::before {
  content: "";
  width: 3px;
  height: 100%;
  background: linear-gradient(135deg, var(--text), var(--dark));
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
}
body .portfolio .partner_sec .logos-container {
  padding: 20px 0;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
body .portfolio .partner_sec .logos-container::before {
  content: "";
  width: 3%;
  height: 100%;
  background: linear-gradient(to right, var(--background), rgba(255, 255, 255, 0));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
body .portfolio .partner_sec .logos-container:hover .logos-slide {
  animation-play-state: paused;
}
body .portfolio .partner_sec .logos-container .logos-slide {
  display: inline-block;
  animation: slide 10s linear infinite;
}
body .portfolio .partner_sec .logos-container .logos-slide img {
  height: 100px;
  margin: 0 40px;
}
@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
body .testimonial {
  width: 100%;
  min-height: 60vh;
  padding: 60px 70px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4rem;
}
body .testimonial .swiper {
  width: 100%;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
body .testimonial .swiper .swiper-slide {
  height: 37vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
body .testimonial .swiper .swiper-slide .feedback {
  flex: 3;
  width: 70%;
  text-align: center;
}
body .testimonial .swiper .swiper-slide .profile {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
body .testimonial .swiper .swiper-slide .profile img {
  width: 70px;
}
body .testimonial .swiper .swiper-slide .profile .desc {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body .testimonial .swiper .swiper-slide .profile .desc .name {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--dark-shade-2);
}
body .testimonial .swiper .swiper-slide .profile .desc .location {
  color: var(--dark-shade-3);
  font-size: 0.8rem;
}
body .contact {
  width: 100%;
  min-height: 90vh;
  padding: 60px 70px;
  background: linear-gradient(to top, var(--white), var(--background));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
body .contact .left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem;
}
body .contact .left .contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0.6rem;
}
body .contact .left .contacts .connect {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  color: var(--text);
}
body .contact .right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
body .contact .right .main_text {
  margin-left: 1rem;
  text-transform: uppercase;
  background: linear-gradient(135deg, var(--text), var(--dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  position: relative;
}
body .contact .right .main_text::before {
  content: "";
  width: 3px;
  height: 100%;
  background: linear-gradient(135deg, var(--text), var(--dark));
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: -1rem;
  transform: translateY(-50%);
}
body .contact .right form {
  width: 100%;
}
body .contact .right form .declaration {
  margin-top: 0.7rem;
  font-size: 0.8rem;
  color: var(--text);
}
body .contact .right form .input-box {
  position: relative;
  width: 100%;
  margin-top: 50px;
  border-bottom: 1px dotted var(--text);
}
body .contact .right form .input-box input {
  width: 100%;
  padding: 5px 0;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0;
  border: none;
  background: none;
  outline: none;
  color: var(--highlighted);
  resize: none;
}
body .contact .right form .input-box span {
  font-family: "Cinzel", serif !important;
  font-size: 1rem;
  font-weight: 300;
  position: absolute;
  left: 0;
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  pointer-events: none;
  transition: all 0.3s ease-in-out;
  color: #acacac;
}
body .contact .right form .input-box input:focus ~ span,
body .contact .right form .input-box input:valid ~ span {
  color: var(--definer);
  font-size: 1.1rem;
  transform: translate(0, -25px);
}
body .contact .right form button {
  margin-top: 3rem;
  border: none;
  outline: none;
  font-size: 1rem;
  cursor: pointer;
}
body .contact .right form button:hover {
  transform: translateY(-6px);
}
body footer {
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1c2225;
}
body footer p {
  color: #dadada;
  font-size: 0.8rem;
}
body footer .developer {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
body footer .developer a {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  color: #dadada;
  font-weight: 500;
}
body footer .developer a box-icon {
  transform: scale(0.5);
}
body footer .developer a:hover {
  color: #0395a8;
}
body .wp-chat-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #128C7E, #25D366);
  border: 2px solid var(--white);
  box-shadow: 0 0 7px var(--white);
  border-radius: 100px;
  color: var(--white);
  font-weight: 300;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  z-index: 90;
  transition: all 0.3s ease;
}
body .wp-chat-btn ion-icon {
  font-size: 1.4rem;
}

@media all and (max-width: 999px) {
  body .header-texts {
    gap: 1rem;
  }
  body .header-texts .primary {
    font-size: 3rem;
  }
  body .header-texts .secondary {
    width: 100%;
  }
  body nav {
    padding: 0px 40px;
  }
  body nav .main_nav {
    display: none;
  }
  body nav .mobNav {
    display: none;
  }
  body .scrolling-active {
    height: 100px;
    background: rgba(0, 0, 0, 0.6705882353);
    -webkit-backdrop-filter: blur(0.6rem);
            backdrop-filter: blur(0.6rem);
  }
  body .scrolling-active .logo {
    height: 70%;
  }
  body .scrolling-active .main_nav {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8980392157);
    -webkit-backdrop-filter: blur(2rem);
            backdrop-filter: blur(2rem);
    position: fixed;
    top: 0;
    left: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: all 0.3s linear;
  }
  body .scrolling-active .show-nav {
    left: 0;
  }
  body .scrolling-active .mobNav {
    display: flex;
  }
  body .landing {
    padding: 0 30px;
  }
  body .landing .container {
    margin-top: 3rem;
    gap: 2.6rem;
  }
  body .landing .container h1 {
    font-size: 2rem;
  }
  body .landing .container h1 .special {
    font-size: 2rem;
  }
  body .landing .container .desc {
    width: 100%;
  }
  body .about {
    padding: 60px 50px;
    gap: 1.6rem;
  }
  body .about .container {
    gap: 1rem;
  }
  body .about .container .values {
    gap: 1rem;
  }
  body .about .container .values .value_box .box {
    width: 100%;
  }
  body .service {
    background: var(--background);
    padding: 60px 50px;
    gap: 3rem;
  }
  body .service .service-box {
    gap: 3rem;
  }
  body .service .service-box .box {
    width: 100%;
  }
  body .service .process img {
    width: 120%;
  }
  body .portfolio {
    padding: 60px 50px;
    gap: 3rem;
  }
  body .portfolio .container {
    gap: 2rem;
  }
  body .portfolio .container .box img {
    width: 100%;
  }
  body .portfolio .partner_sec {
    margin-top: 4rem;
  }
  body .portfolio .partner_sec .logos-container .logos-slide img {
    height: 60px;
    margin: 0 10px;
  }
  body .testimonial {
    padding: 60px 50px;
    gap: 1rem;
  }
  body .testimonial .swiper .swiper-slide .feedback {
    flex: 3;
    width: 100%;
    text-align: center;
  }
  body .contact {
    padding: 0px 50px;
    flex-direction: column;
    align-items: flex-start;
  }
  body .contact .left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 2rem;
  }
  body .contact .right {
    width: 100%;
  }
  body footer {
    flex-direction: column;
    text-align: center;
  }
  body .wp-chat-btn {
    position: fixed;
    bottom: 60px;
    right: 30px;
    padding: 14px;
  }
  body .wp-chat-btn p {
    display: none;
  }
}/*# sourceMappingURL=indexStyle.css.map */