@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

@font-face {
  font-family: 'noto';
  src: url(/fonts/noto-sans.regular.woff2);
}

@font-face {
  font-family: 'bey';
  src: url(/fonts/Beyonders.woff2);
}

:root {
  --primary: #AB1700;
  --light-primary: #E92921;
  --white: #ffffff;
  --black: #121212;
  --gradient: linear-gradient(180deg, #AB1700 0%, #000000 100%);
  --dark-grad: linear-gradient(var(--rgba-dark), var(--rgba-dark));
  --rgba-dark: rgba(0, 0, 0, 0.5)
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: 'noto';
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
}

section {
  position: relative;
  padding: 40px 0px;
}

.custom-padding {
  padding: 140px 0px;
  background-attachment: fixed !important;
}

.custom-bg {
  background: var(--gradient) !important;
  color: var(--white);
}

.btn {
  text-transform: capitalize;
}

.btn:hover {
  background-color: var(--primary);
  color: var(--white);
}

.btn-primary {
  background: var(--primary);
  border: unset;
}

.bg-primary {
  background: var(--gradient);
  color: var(--white);
}

.animated-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 36px;
  border: 4px solid;
  border-color: transparent;
  font-size: 16px;
  background-color: inherit;
  border-radius: 100px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary);
  cursor: pointer;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button svg {
  position: absolute;
  width: 24px;
  fill: var(--primary);
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .arr-1 {
  right: 16px;
}

.animated-button .arr-2 {
  left: -25%;
}

.animated-button .circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button .text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.animated-button:hover {
  box-shadow: 0 0 0 12px transparent;
  color: var(--white);
  border-radius: 12px;
}

.animated-button:hover .arr-1 {
  right: -25%;
}

.animated-button:hover .arr-2 {
  left: 16px;
}

.animated-button:hover .text {
  transform: translateX(12px);
}

.animated-button:hover svg {
  fill: var(--white);
}

.animated-button:active {
  scale: 0.95;
  box-shadow: 0 0 0 4px var(--primary);
}

.animated-button:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}


.light {
  background-color: var(--white);
}

.dark {
  background-color: var(--black);
  color: var(--white);
}

.highlight {
  color: var(--primary);
}

.typed-box {
  height: 50px;
  padding: 10px;
}



nav.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
}

.navbar-nav .nav-link.active {
  color: var(--white);
}

.navbar .nav-link {
  color: var(--white);
}

nav.navbar.scrolled {
  background: #fff;
  transition: background 0.3s ease;
}

nav.navbar.scrolled .nav-link {
  color: #000 !important;
}

/* .navbar-brand img {
 width: 60px !important;
 height: 60px !important;
 object-fit: contain;
} */


.sec-1 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  height: 100vh;
}

.sec-1::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
  pointer-events: none;
}

.sec-1 video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: auto;
  object-fit: cover
}

.spline-watermark {
  display: none !important;
}

.sec-1-text-sec {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.typed {
  position: relative;
  z-index: 1;
  font-size: 2rem;
  display: inline-block;
  /* prevent shrink on delete */
  text-align: center;
}

.main-type-box {
  font-family: "Inter", sans-serif;
  font-size: 48px;
  line-height: 1.34;
  margin-bottom: 0;
  word-wrap: break-word;
  font-weight: 700;
}

.title-typing {
  font-size: 38px;
  font-weight: bold;
  color: var(--light-primary);
  text-shadow: 0 0 6px rgba(0, 0, 0, .92);
}

.sec-2 {
  background: url(/img/home.jpg) no-repeat 50% 50%;
  background-size: cover;
  background-attachment: fixed !important;
  color: var(--white);
  padding: 140px 0px;
}

.sec-3 .card {
  background-color: var(--white);
  box-shadow: 0px 0px 20px 0px #ccc;
  height: 550px;
}

.sec-3 .card-body {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.sec-4 {
  background: var(--dark-grad), url(/img/why-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
}


.sec-4 .swiper {
  width: 100%;
  padding-top: 50px;
  padding-bottom: 50px;
}

.sec-4 .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 300px;
}



.sec-4 .card {
  height: 400px;
  width: 300px;
  padding: 15px;
  border-radius: 14px;
  position: relative;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.sec-4 .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 6px;
  background: linear-gradient(90deg, #AB1700 0%, #000 100%);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.sec-4 .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: #AB1700;
}

.who {
  background: var(--dark-grad), url(/img/who-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
  padding: 40px 0px;
}

.who .card {
  width: 300px;
  height: 200px;
  perspective: 1000px;
  border: unset;
  background: unset;
}

.who .card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.999s;
}

.who .card:hover .card-inner {
  transform: rotateY(180deg);
}

.who .card-front,
.who .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
}

.who .card-front {
  color: var(--white);
  display: flex;
  align-items: center;
  border-radius: 10px;
  justify-content: center;
  font-size: 24px;
  transform: rotateY(0deg);
  background: transparent;
}

.who .card-back {
  display: flex;
  background: rgba(0, 0, 0, 0.10);
  color: var(--white);
  align-items: center;
  border-radius: 10px;
  justify-content: center;
  font-size: 15px;
  transform: rotateY(180deg);
  padding: 20px;
}

.sec-6 {
  background: url(/img/achive-bg.jpg) no-repeat 50% 50%;
  background-size: cover;
}

.sec-6 .card {
  height: 250px;
}

.sec-6 .card .card-title {
  font-size: 60px;
  color: var(--primary);
}

.sec-6 .card h2 {
  font-size: 18px;
}

.sec-6 .card .card-text {
  font-size: 15px;
}


.sec-7 {
  background: url(/img/client-bg.png) no-repeat 50% 50%;
  background-size: cover;
}

.sec-7 .swiper-slide .card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 450px;
}

.sec-7 .swiper-slide .card-text {
  font-size: 15px;
}

.sec-7 .swiper-slide .card .card-rating {
  padding: 20px 0px 40px;
  border-bottom: 1px solid var(--black);
  border-radius: 10px;
}

.sec-7 .swiper-slide .card .stars .fa-star {
  color: gold;
}

.sec-7 .swiper-slide .card .client-details {
  padding-top: 30px;
}

.sec-7 .swiper-slide .card .client-details h4 {
  color: var(--primary);
  font-size: 18px;
}

.sec-8 {
  padding: 80px 0px;
}

.sec-8 .cta-el {
  width: 450px;
  height: 300px;
  object-fit: contain;
}

.cta-el-1 {
  transform: rotate(40deg);
  left: 50px;
  bottom: 20px;
}

.cta-el-1,
.cta-el-2 {
  position: absolute;
}


footer {
  background: var(--black);
  padding: 60px 0px 10px;
  color: white;
}

footer a {
  text-decoration: none;
  color: unset;
}

footer a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-column-box {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}

.footer-column-box h4 {
  color: var(--light-primary);
  font-size: 16px;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}



.copyright {
  border-top: 1px solid #cccccc48;
  padding-top: 30px;
}



/* Fixes */

.why-arrow {
  width: 112px;
  height: 50px;
  object-fit: contain;
}


.cta-section {
  height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;

}

.cta-section .cta-el {
  width: 450px;
  height: 300px;
  object-fit: contain;
}

.cta-section .cta-el-2 {
  top: 0;
  right: -220px;
}


.terms {
  background: #fff;
  border-radius: .6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  overflow: hidden;
  margin-top: 1.5rem;
  padding: 1.5rem 1.7rem;
}

.terms-header {
  background: linear-gradient(to right, var(--primary), var(--black));
  color: #fff;
  text-align: center;
  padding: 180px 0px;
}

.terms-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: .4rem;
}

.terms-header p {
  font-size: .95rem;
  opacity: 0.9;
}

.terms h2 {
  font-size: 1.3rem;
  margin-top: 1.4rem;
  font-weight: 600;
}

.terms h3 {
  font-size: 1.1rem;
  margin-top: 1.2rem;
  font-weight: 600;
}

.terms p,
.terms li {
  line-height: 1.6;
  font-size: 0.96rem;
}

.terms ul {
  padding-left: 1.3rem;
}

.privacy {
  background: #fff;
  border-radius: .6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  overflow: hidden;
  margin-top: 1.5rem;
  padding: 1.5rem 1.7rem;
}

.privacy-header {
  background: linear-gradient(to right, var(--primary), var(--black));
  color: #fff;
  text-align: center;
  padding: 180px 0px;
}

.privacy-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: .4rem;
}

.privacy-header p {
  font-size: .95rem;
  opacity: 0.9;
}

.privacy h2 {
  font-size: 1.3rem;
  margin-top: 1.4rem;
  font-weight: 600;
}

.privacy h3 {
  font-size: 1.1rem;
  margin-top: 1.2rem;
  font-weight: 600;
}

.privacy p,
.privacy li {
  line-height: 1.6;
  font-size: 0.96rem;
}

.privacy ul {
  padding-left: 1.3rem;
}

.cookie {
  background: #fff;
  border-radius: .6rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
  overflow: hidden;
  margin-top: 1.5rem;
  padding: 1.5rem 1.7rem;
}

.cookie-header {
  background: linear-gradient(to right, var(--primary), var(--black));
  color: #fff;
  text-align: center;
  padding: 180px 0px;
}

.cookie-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: .4rem;
}

.cookie-header p {
  font-size: .95rem;
  opacity: 0.9;
}

.cookie h2 {
  font-size: 1.3rem;
  margin-top: 1.4rem;
  font-weight: 600;
}

.cookie h3 {
  font-size: 1.1rem;
  margin-top: 1.2rem;
  font-weight: 600;
}

.cookie p,
.cookie li {
  line-height: 1.6;
  font-size: 0.96rem;
}

.cookie ul {
  padding-left: 1.3rem;
}


@media screen and (max-width: 768px) {

  .navbar-brand img {
    width: 80px;
    height: 80px;
    object-fit: contain;
  }

  .cta-el {
    display: none;
  }

  .footer-column-box {
    flex-direction: column;
  }
}


.text-animate {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  display: inline-block;
  min-height: 3em;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
  font-family: 'bey';
}

.word {
  position: absolute;
  top: 50%;
  transform: translate(-50%, 100%);
  opacity: 0;
  animation: fadeDown 6s infinite ease-in-out;
}

.word:nth-child(2) {
  animation-delay: 2s;
}

.word:nth-child(3) {
  animation-delay: 4s;
}

@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translate(-50%, -100%);
  }

  10%,
  30% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }

  40%,
  100% {
    opacity: 0;
    transform: translate(-50%, 100%);
  }
}





/* Responsive */


@media screen and (max-width: 992px) {
  .who .card {
    width: unset;
  }

  .sec-4 .card {
    height: 400px;
    width: unset;
  }

  .text-animate {
    font-size: 24px;
  }

  .navbar-collapse {
    background: white;
    border-radius: 15px;
  }


  nav.navbar {
    background: transparent;
    transition: background 0.3s ease;
  }

  nav.navbar.scrolled {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }

  .navbar .nav-link {
    color: var(--black);
    transition: color 0.3s ease;
  }

  nav.navbar:not(.scrolled) .nav-link {
    color: var(--black);
    padding: 10px;
  }

  .navbar-toggler-icon {
    background-image: none !important;
    position: relative;
  }

  .navbar-toggler-icon::before {
    content: '\f0c9';
    font: var(--fa-font-solid);
    font-weight: 900;
    /* solid */
    font-size: 1.5em;
    color: var(--light-primary);
    display: block;
    text-align: center;
  }

  .navbar-toggler {
    border: unset;
    border-radius: unset;
  }

  .navbar-toggler:focus {
    box-shadow: unset;
  }

}