@import url('../fonts/freight/stylesheet.css');
@import url('../fonts/kamerik/stylesheet.css');

body,
html,
main {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
}

::selection {
  background-color: #1942be;
  color: #fff;
}

/* width */
::-webkit-scrollbar {
  width: 6px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
  ;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #1942be;
  border-radius: 3px;
  ;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

body,
main {
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

button {
  background: none;
  border: none;
  outline: none;
}

select {
  cursor: pointer;
}

.btn:focus {
  outline: none;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

p {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
}

input:focus {
  outline: none;
  box-shadow: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.padding-top {
  padding-top: 50px;
}

.padding-bottom {
  padding-bottom: 50px;
}

.padding-y {
  padding-top: 50px;
  padding-bottom: 50px;
}

img {
  max-width: 100%;
  height: auto;
  pointer-events: none;
}

.btn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease-in-out;
  border-radius: 30px;
}

.btn.btn-1 {
  background-color: #1942be;
  color: #fff;
  border: none;
}

.btn.btn-1:hover {
  background-color: #1942be;
  color: #fff;
  transform: translateY(-5px);
}

.btn.btn-white {
  background-color: #fff;
  color: #222222;
  border: none;
}

.btn.btn-white:hover {
  background-color: #1942be;
  color: #fff;
  transform: translateY(-5px);
}


.header-main {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: 0.3s ease-in-out;
}

.header-main.scroll {
  background-color: rgba(34, 34, 34, 0.4);
  backdrop-filter: blur(15px);
  padding: 5px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-main .navbar-toggler {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.header-main .navbar-toggler .bar {
  display: block;
  height: 2px;
  width: 40px;
  background-color: #fff;
}

.header-main .nav-item {
  position: relative;
}

.header-main .nav-item .nav-link {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  padding: 5px 15px;
  position: relative;
  overflow: hidden;
}

.header-main .nav-item .nav-link::after {
  content: attr(data-content);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 5px 15px;
  transform: translateY(150%);
  transition: 0.3s ease-in-out;
}

.header-main .nav-item .nav-link span {
  display: inline-block;
  transition: 0.3s ease-in-out;
}

.header-main .nav-item .nav-link:hover:after {
  transform: translateY(0);
}

.header-main .nav-item .nav-link:hover span {
  transform: translateY(-150%);
}

.header-main .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  right: 0;
  height: 2px;
  background-color: #1942be;
  transition: 0.3s ease-in-out;
}

.header-main .nav-item>.nav-link.active:before {
  transform: translateX(-50%) scaleX(1);
}

.header-main .nav-item .dropdown {
  position: absolute;
  left: 15px;
  top: 100%;
  background: #fff;
  padding: 4px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  border-radius: 15px;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: 0.3s ease-in-out;
}

.header-main .nav-item:hover .dropdown {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-main .nav-item .dropdown li a {
  display: block;
  width: 230px;
  padding: 5px 15px;
  border-radius: 10px;
  color: #222;
  font-family: "Inter", sans-serif;
  transition: 0.3s ease-in-out;
}

.header-main .nav-item .dropdown li a.active,
.header-main .nav-item .dropdown li a:hover {
  background-color: rgba(25, 66, 190, 0.3);
}

.header-main .navbar-brand img {
  width: 100%;
  max-width: 200px;
  height: auto;
}

.mobile-menu-offcanvas {
  background-color: #000;
}

.mobile-menu-offcanvas .offcanvas-header {
  position: relative;
}

.mobile-menu-offcanvas .btn-close {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #fff !important;
  padding: 0;
  font-size: 30px;
  width: 50px;
}

.mobile-menu-offcanvas .menu-brand {
  display: block;
  width: 0;
  overflow: hidden;
}

.mobile-menu-offcanvas.show .menu-brand {
  transition: 0.5s ease-in-out;
  width: 200px;
}

.mobile-menu-offcanvas .menu-brand img {
  width: 200px;
  max-width: 200px;
  min-width: 200px;
}

.mobile-menu-offcanvas .btn-close .icon {
  position: relative;
  display: block;
  width: 34px;
  height: 34px;
}

.mobile-menu-offcanvas .btn-close .icon .bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: #fff;
  transform-origin: center center;
}

.mobile-menu-offcanvas .btn-close .icon .bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(35deg);
}

.mobile-menu-offcanvas .btn-close .icon .bar:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-35deg);
}

.mobile-menu-offcanvas .navbar-nav {
  /* text-align: center; */
  margin: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.mobile-menu-offcanvas .navbar-nav>li {
  transform: translateX(100%);
  opacity: 0;
  transition: 0s ease-in-out;
}

.mobile-menu-offcanvas.show .navbar-nav li {
  transition: 0.5s ease-in-out;
  transform: translateX(0);
  opacity: 1;
}

.mobile-menu-offcanvas .navbar-nav li a {
  font-family: 'Kamerik205 2';
  display: block;
  color: #fff;
  font-size: 20px;
  padding: 15px;
  /* width: fit-content; */
}

.mobile-menu-offcanvas .navbar-nav>li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.mobile-menu-offcanvas .navbar-nav .dropdown-wrapper>a {
  position: relative;
}

.mobile-menu-offcanvas .navbar-nav .dropdown-wrapper>a::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 40px;
  background-image: url(../images/chev-down.png);
  background-repeat: no-repeat;
  background-position: center right;
  transform-origin: center center;
  transition: 0.3s ease-in-out;
}


.mobile-menu-offcanvas .navbar-nav .dropdown {
  display: none;
}

.mobile-menu-offcanvas .navbar-nav .dropdown a {
  font-size: 18px;
  padding: 5px 20px;
}

.mobile-menu-offcanvas .btn {
  /* margin: 0 auto;
  display: block;
  width: fit-content; */
  transform: translateY(50px);
  opacity: 0;
  font-size: 22px;
  transition: 0s ease-in-out;
}

.mobile-menu-offcanvas.show .btn {
  transition: 0.5s ease-in-out;
  opacity: 1;
  transform: translateY(0);
}

.home-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding: 150px 0 30px;
}

.home-banner video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.7);
  pointer-events: none;
}

.home-banner .content:not(.content-full) {
  max-width: 700px;
}

.home-banner .content .branding {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.home-banner .content h1 {
  font-family: 'Kamerik205 3';
  text-transform: uppercase;
  font-size: 4rem;

}


.home-banner p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 300;
}

.home-banner .scroll-btn {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 300;
  color: #fff;
  display: block;
  width: fit-content;
  margin: 0 auto
}

.book-call-section {
  background-color: #222222;
  padding: 50px 0;
}

.book-call-section a {
  display: block;
  text-align: center;
  color: #fff;
}

.book-call-section .lottie-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.book-call-section .lottie-btn {
  width: 70%;
}

.book-call-section .lottie-wrapper .icons {
  font-size: 130px;
  position: relative;
  font-family: 'Kamerik205 2';
  /* transform: translateY(-20px); */
}

.book-call-section .lottie-wrapper .icons span:not(.icon-1) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.book-call-section a:hover .lottie-wrapper .icons.start span.icon-2 {
  opacity: 0.8;
  transform: translateX(-100%);
}

.book-call-section a:hover .lottie-wrapper .icons.start span.icon-3 {
  opacity: 0.6;
  transform: translateX(-200%);
}

.book-call-section a:hover .lottie-wrapper .icons.start span.icon-4 {
  opacity: 0.4;
  transform: translateX(-300%);
}

.book-call-section a:hover .lottie-wrapper .icons.end span.icon-2 {
  opacity: 0.8;
  transform: translateX(100%);
}

.book-call-section a:hover .lottie-wrapper .icons.end span.icon-3 {
  opacity: 0.6;
  transform: translateX(200%);
}

.book-call-section a:hover .lottie-wrapper .icons.end span.icon-4 {
  opacity: 0.4;
  transform: translateX(300%);
}

.book-call-section a h5 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 40px;
}

/* .book-call-section a h3 {
  font-family: 'Kamerik205 8', sans-serif;
  position: relative;
  font-size: 120px;
  overflow: hidden;
  text-transform: uppercase;
  line-height: 1;
} */

/* Base text line containers */
/* .book-call-section a h3>span {
  display: block;
  white-space: nowrap;
} */

/* Absolutely position the reveal layer directly over the initial layer */
/* .book-call-section a h3 .reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
} */

/* Individual character inline blocks */
/* .book-call-section a h3 .char {
  display: inline-block;
  vertical-align: top;
  transform: translateY(100%);
  animation: reveal-anim 5s ease-in-out forwards infinite;
  will-change: transform;
} */

/* -------------------------------------------------------------
   Initial Text Delays (0.0s to 0.9s)
------------------------------------------------------------- */
/* .book-call-section a h3 .initial .char:nth-child(3) {
  animation-delay: 0s;
}

.book-call-section a h3 .initial .char:nth-child(5) {
  animation-delay: 0.1s;
}

.book-call-section a h3 .initial .char:nth-child(1) {
  animation-delay: 0.2s;
}

.book-call-section a h3 .initial .char:nth-child(10) {
  animation-delay: 0.3s;
}

.book-call-section a h3 .initial .char:nth-child(4) {
  animation-delay: 0.4s;
}

.book-call-section a h3 .initial .char:nth-child(7) {
  animation-delay: 0.5s;
}

.book-call-section a h3 .initial .char:nth-child(6) {
  animation-delay: 0.6s;
}

.book-call-section a h3 .initial .char:nth-child(8) {
  animation-delay: 0.7s;
}

.book-call-section a h3 .initial .char:nth-child(9) {
  animation-delay: 0.8s;
}

.book-call-section a h3 .initial .char:nth-child(2) {
  animation-delay: 0.9s;
} */

/* -------------------------------------------------------------
   Reveal Text Delays (Offset by 2s)
------------------------------------------------------------- */
/* .book-call-section a h3 .reveal .char:nth-child(3) {
  animation-delay: 2.5s;
}

.book-call-section a h3 .reveal .char:nth-child(5) {
  animation-delay: 2.6s;
}

.book-call-section a h3 .reveal .char:nth-child(1) {
  animation-delay: 3.3s;
}

.book-call-section a h3 .reveal .char:nth-child(2) {
  animation-delay: 2.8s;
}

.book-call-section a h3 .reveal .char:nth-child(4) {
  animation-delay: 2.9s;
}

.book-call-section a h3 .reveal .char:nth-child(7) {
  animation-delay: 3s;
}

.book-call-section a h3 .reveal .char:nth-child(6) {
  animation-delay: 3.1s;
} */

/* -------------------------------------------------------------
   Keyframe Animation
------------------------------------------------------------- */
/* @keyframes reveal-anim {
  0% {
    transform: translateY(100%);
  }

  10%,
  50% {
    transform: translateY(0%);
  }

  60%,
  100% {
    transform: translateY(-100%);
  }
} */

.what-we-do #what-we-do-title {
  font-family: 'Kamerik205 8', sans-serif;
  text-transform: uppercase;
  font-size: 10rem;
  text-align: end;
  color: #000;
  position: relative;
}

.what-we-do #what-we-do-title .what {
  font-family: "DM Serif Display", serif;
  font-style: italic;
  position: absolute;
  top: 30px;
  right: 0;
  color: #fff;
  z-index: 1;
  -webkit-text-stroke: 1px #000;
}

.what-we-do #what-we-do-title .we {
  display: inline-block;
}

.what-we-do #what-we-do-title .do {
  display: inline-block;
  transform: translateY(70px);
  position: relative;
  z-index: 9;
}

.what-we-do .what-we-do-desc {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 20px;
}

.what-we-do .what-we-do-desc .initial {
  opacity: 0.5;
}

.what-we-do .what-we-do-desc .reveal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 1;
}

/* .home-banner .content h1 span{
  font-family: 'Kamerik205 5';
  font-size: 3.6rem
} */
.services-listing .service-item {
  position: relative;
  margin: 5px 0;
}

.services-listing .service-item .content-wrapper {
  position: relative;
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.services-listing .service-item .content-wrapper .video-abs {
  position: absolute;
  top: 100%;
  z-index: 9;
  max-width: 400px;
  opacity: 0;
  /* transform: skewY(15deg); */
  pointer-events: none;
}

.services-listing .service-item:hover .content-wrapper .video-abs {
  opacity: 1;
  /* transform: skewY(0deg) */
}

.services-listing .service-item .content-wrapper {
  /* position: relative; */
  padding: 20px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5)
}

.services-listing .service-item:nth-last-child(1) .content-wrapper {
  border-bottom: none;
}

.services-listing .service-item .content-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: -1;
  transition: 1s ease;
  transform: scaleX(0.5);
  border-radius: 20px;
  opacity: 0;
}

.services-listing .service-item .content-wrapper:hover:before {
  transform: scaleX(1);
  opacity: 1;
}

.services-listing .service-item .content-wrapper .video-abs {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  max-width: 400px;
  opacity: 0;
  pointer-events: none;
  /* Prevents video from intercepting mouse events */
  will-change: transform;
  /* transform: skewY(15deg); */
}

/* Ensure inner elements don't interfere with mouse bounds */
.services-listing .service-item .content-wrapper p {
  position: absolute;

}

.services-listing .service-item h4 {
  position: relative;
  font-family: 'Kamerik205 8';
  text-transform: uppercase;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0;
  color: #000;
  line-height: 2rem;
  overflow: hidden;
}

.services-listing .service-item h4 span {
  display: block;
  transition: 0.3s ease-in-out;
}

/* Base styles for split characters */
.services-listing .service-item h4 span .char {
  display: inline-block;
  /* Required for transforms to work */
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.services-listing .service-item .content-wrapper:hover h4 span .char {
  color: #fff;
}

/* Absolute overlay span (hidden below initially) */
.services-listing .service-item h4 span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

/* Push the characters of the 1st span down initially */
.services-listing .service-item h4 span:nth-child(1) .char {
  transform: translateY(100%);
}

/* Keep characters of 2nd span in normal position initially */
.services-listing .service-item h4 span:nth-child(2) .char {
  transform: translateY(0);
}

/* Hover States: Roll up characters */
.services-listing .service-item .content-wrapper:hover h4 span:nth-child(1) .char {
  transform: translateY(0);
}

.services-listing .service-item .content-wrapper:hover h4 span:nth-child(2) .char {
  transform: translateY(-100%);
}

.how-it-works {
  /* background-color: #222222;
  color: #fff; */
}

.sec-title {
  display: flex;
  align-items: start;
  gap: 100px;
}

.sec-title .tagline {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 10px;
}

.sec-title h2 {
  font-family: "Space Grotesk", sans-serif;
  /* font-family: 'Kamerik205 3'; */
  font-size: 4rem;
  width: 50%;
}

.sec-title-4 .tagline {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0;
}

.sec-title-4 h2 {
  font-family: "Space Grotesk", sans-serif;
  /* font-family: 'Kamerik205 3'; */
  font-size: 4rem;
}

.sec-title h2 span {
  /* font-family: 'Kamerik205 2'; */

}

.how-it-works .how-it-work-listing {
  margin-top: 20px;
}

.how-it-works .how-it-work-listing .work-card {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  padding: 30px;
  height: 100%;
}

.how-it-works .how-it-work-listing .work-card .card-icon {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
  font-size: 20px;
  display: block;
  margin-bottom: 20px;
}

.how-it-works .how-it-work-listing .work-card h5 {
  font-family: "Kamerik205 8";
  font-size: 1.4rem;
}

.how-it-works .how-it-work-listing .work-card p {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
}

.projects-section {
  background-color: #F2EFEA;
}

.projects-section .sec-title {
  color: #000;
}

.projects-section .project-item {
  position: relative;
}

.projects-section .project-item img {
  /* border-radius: 20px; */
  width: 100%;
}

.projects-section .project-item .content {
  padding: 20px 0;
}

.projects-section .project-item.full-width {
  margin-bottom: 50px;
}

.projects-section .project-item a {
  display: block;
}

.projects-section .project-item img {
  transition: 5s ease-in-out;
  object-fit: cover;
  object-position: center top;
}

.projects-section .project-item.full-width img {
  height: 40vw;
}

.projects-section .project-item .image-larger {
  height: 32vw;
}

.projects-section .project-item .img-shorter {
  height: 22vw;
}

.projects-section .project-item:hover img {
  object-position: center bottom;
}

.projects-section .project-item.full-width .content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  color: #fff;
  /* border-radius: 0 0 20px 20px; */
  padding: 30px;
}

.projects-section .project-item .content h6 {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 300;
  margin-bottom: 0;
}

.projects-section .project-item .content h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  margin-bottom: 0;
}

.projects-section .padding-project-item {
  margin-top: 70px;
}

.sec-title-2 .tagline {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 10px;
}

.sec-title-2 h2 {
  font-family: 'Kamerik205 3';
  font-size: 6rem;
}

.sec-title-2 h2 span {
  font-family: 'Kamerik205 2';
}

.sec-title-3 {
  text-align: center;
}

.sec-title-3 .tagline {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  margin-top: 10px;
}

.sec-title-3 h2 {
  font-family: 'Kamerik205 3';
  font-size: 3rem
}

.sec-title-3 h2 span {
  font-family: 'Kamerik205 2';
}

.why-sylex {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 80px 0;
}

.why-sylex .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.5);
  pointer-events: none;
}

.why-sylex .why-sylex-card {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  height: 100%;
}

.why-sylex .why-sylex-card h3 {
  font-family: 'Kamerik205';
  font-weight: 300;
  font-style: italic;
  font-size: 2rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.why-sylex .why-sylex-card h6 {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 300;
}

.core-vision {
  position: relative;
  color: #fff;
  text-align: center;
  padding-top: 150px;
}

.core-vision::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.2) 100%);
  z-index: -1;
}

.core-vision .video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.5);
  pointer-events: none;
}

.core-vision h2 {
  font-family: 'Freight';
  font-size: 10rem;
  font-style: italic;
}

.industries-practice {
  background-color: #222222;
}

.industries-practice .sec-title {
  color: #fff;
}

.industries-practice .sec-title h2 {
  width: auto;
}

.industries-practice .sec-title h2 span {
  font-weight: 100;
}

.industries-practice .industry-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.industries-practice .industry-card img {
  width: 100%;
  transition: 0.3s ease-in-out;
}

.industries-practice .industry-card:hover img {
  transform: scale(1.1);
}

.industries-practice .industry-card .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.industries-practice .industry-card .content h4 {
  margin-bottom: 0;
}

/* ==========================================================================
   Preloader Styles
   ========================================================================== */
body.is-loading {
  overflow: hidden !important;
  height: 100vh !important;
}

body.is-loading .home-banner .branding,
body.is-loading .home-banner .split-text,
body.is-loading .home-banner .row {
  opacity: 0 !important;
}

#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #080808;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: opacity, transform;
}

.preloader-inner {
  text-align: center;
  max-width: 320px;
  width: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.preloader-logo img {
  max-height: 65px;
  width: auto;
  animation: preloaderPulse 2s infinite ease-in-out;
}

@keyframes preloaderPulse {

  0%,
  100% {
    opacity: 0.7;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.preloader-progress-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888888;
}

.preloader-num {
  color: #1942be;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
}

.preloader-bar-bg {
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: #1942be;
  border-radius: 3px;
  box-shadow: 0 0 12px rgba(201, 243, 29, 0.5);
  will-change: width;
}

/* Testimonials Section */
.testimonials-sec {
  background-color: #ffffff;
}

.testimonials-sec .sec-title {
  margin-bottom: 40px;
}

.testimonials-wrapper {
  margin-top: 20px;
}

/* Testimonials Section */
.testimonials-sec {
  background-color: #ffffff;
}

.testimonials-sec .sec-title {
  margin-bottom: 40px;
}

.testimonials-wrapper {
  margin-top: 20px;
}

/* Trust Header & Summary Badge */
.tp-trust-summary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f8f9ff;
  border: 1px solid rgba(25, 66, 190, 0.15);
  padding: 10px 22px;
  border-radius: 30px;
  margin-top: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.tp-trust-summary:hover {
  background: #ffffff;
  border-color: #1942be;
  box-shadow: 0 4px 15px rgba(25, 66, 190, 0.15);
}

.tp-trust-summary .tp-summary-text {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #191919;
}

.tp-trust-summary .tp-summary-text span {
  color: #1942be;
  font-weight: 700;
}

.tp-summary-stars {
  display: flex;
  gap: 3px;
}

.tp-summary-stars .tp-star-box {
  width: 20px;
  height: 20px;
  font-size: 11px;
}

/* Review Card Link Wrapper */
.tp-review-card-link {
  display: block;
  height: 100%;
  text-decoration: none !important;
  color: inherit !important;
}

/* Owl Carousel Flex Height Alignment */
.testimonials-slider .owl-stage {
  display: flex;
}

.testimonials-slider .owl-item {
  display: flex;
  flex: 1 0 auto;
}

.testimonials-slider .item {
  width: 100%;
  display: flex;
  flex-direction: column;
}

/* Brand Review Card */
.testimonial-card,
.tp-card {
  text-align: left;
  background-color: #ffffff;
  border: 1px solid #e5e8e6;
  border-radius: 14px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
  position: relative;
}

.tp-review-card-link:hover .testimonial-card,
.tp-review-card-link:hover .tp-card,
.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: #1942be;
  box-shadow: 0 12px 30px rgba(25, 66, 190, 0.12);
}

/* Card Header: Stars & Verified Badge */
.tp-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  width: 100%;
}

.tp-stars {
  display: flex;
  gap: 3px;
  align-items: center;
}

.tp-star-box {
  width: 24px;
  height: 24px;
  background-color: #1942be;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 12px;
}

.tp-verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #6c757d;
}

.tp-verified-badge i {
  color: #1942be;
  font-size: 13px;
}

/* Review Title */
.tp-review-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #191919;
  margin-bottom: 10px;
  line-height: 1.35;
}

/* Review Text */
.testimonial-card .testimonial-text {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  color: #4a5568;
  margin-bottom: 22px;
  max-width: 100%;
  flex-grow: 1;
}

.whatsapp-btn-float{
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 99;
  display: block;
  height: 55px;
  width: 55px;
  transition: 0.3s;
}
.whatsapp-btn-float:hover{
  transform: scale(1.1);
}
.whatsapp-btn-float img{
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/* Card Footer: Author & Trust Logo */
.tp-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid #f0f4f2;
  margin-top: auto;
  width: 100%;
}

.tp-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tp-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1942be, #0d2777);
  color: #ffffff;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.tp-author-details {
  display: flex;
  flex-direction: column;
}

.testimonial-card .author-name {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: normal;
  text-transform: none;
  color: #191919;
  margin-bottom: 2px;
}

.tp-review-date {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: #718096;
}

.tp-mini-logo {
  display: none !important;
  height: 18px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.tp-review-card-link:hover .tp-mini-logo {
  opacity: 1;
}

/* Dots Styling for Carousel */
.testimonials-slider .owl-dots {
  margin-top: 35px;
  text-align: center;
}

.testimonials-slider .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background: #d0d7d3;
  border-radius: 30px;
  display: inline-block;
  transition: all 0.3s ease;
}

.testimonials-slider .owl-dots .owl-dot:hover span {
  background: #1942be;
}

.testimonials-slider .owl-dots .owl-dot.active span {
  background: #1942be;
  width: 35px;
}

@media only screen and (max-width: 767px) {
  .testimonial-card, .tp-card {
    padding: 22px 18px;
  }

  .tp-review-title {
    font-size: 16px;
  }

  .testimonial-card .testimonial-text {
    font-size: 14px;
    margin-bottom: 18px;
  }

  .tp-trust-summary {
    flex-direction: column;
    gap: 8px;
    padding: 12px 18px;
  }
}

/* Policy Content Document Styles */
.policy-doc-wrapper {
  background: #ffffff;
  padding: 50px 45px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.policy-block {
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid #f0f4f8;
}

.policy-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.policy-block h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.policy-block h3 .num-badge {
  color: #1942be;
  font-weight: 800;
}

.policy-block h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: #1f2937;
  margin-top: 18px;
  margin-bottom: 10px;
}

.policy-block p {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #4b5563;
  margin-bottom: 14px;
}

.policy-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}

.policy-list li {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: #4b5563;
  position: relative;
  padding-left: 24px;
  margin-bottom: 8px;
}

.policy-list li::before {
  content: "•";
  color: #1942be;
  font-size: 20px;
  position: absolute;
  left: 6px;
  top: -2px;
}

.policy-contact-card {
  background: #f8f9ff;
  border: 1px solid rgba(25, 66, 190, 0.15);
  border-radius: 12px;
  padding: 24px 28px;
  margin-top: 15px;
}

.policy-contact-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 12px;
}

.policy-contact-card p {
  margin-bottom: 8px;
  color: #374151;
  font-size: 15px;
}

.policy-contact-card a {
  color: #1942be;
  text-decoration: none;
  font-weight: 500;
}

.policy-contact-card a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .policy-doc-wrapper {
    padding: 30px 20px;
  }
  .policy-block h3 {
    font-size: 19px;
  }
}



.footer-main {
  background-color: #222222;
}

.footer-main .footer-brand {
  margin-bottom: 40px;
}

.footer-main .footer-content {
  border-top: 1px solid #1942be;
  padding: 30px 0 50px;
}

.footer-main .footer-head {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  width: fit-content;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 20px;
}

.footer-main .footer-head::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #1942be;
}

.footer-main .footer-content .footer-links li a {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: #fff;
  transition: 0.3s ease-in-out;
  padding: 5px 0;
}

.footer-main .footer-content .footer-links:not(.contact-links) li a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0;
  transform: translateY(-50%);
  height: 2px;
  background-color: #1942be;
  transition: 0.3s ease-in-out;
}


.footer-main .footer-content .footer-links:not(.contact-links) li a:hover {
  padding-left: 15px;
}

.footer-main .footer-content .footer-links:not(.contact-links) li a:hover:before {
  width: 10px;
}

.footer-main .footer-content .footer-mail {
  display: block;
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  color: #fff;
  width: fit-content;
  border-bottom: 1px solid #fff;
  margin-top: 30px;
  transition: 0.3s ease-in-out;
}

.footer-main .footer-content .footer-mail:hover {
  color: #1942be;
  border-bottom: 1px solid #1942be;
}

.footer-main .footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-main .footer-copyright p {
  color: #fff;
}

.image-text-column p {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  color: #666666;
}

.image-text-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.image-text-column ul li {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 16px;

  padding-left: 30px;
}

.image-text-column ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
  background-image: url(../images/check-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.how-it-works-about-pg {
  background-color: #F2EFEA;
}

.value-card {
  box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.25);
  text-align: center;
  padding: 20px;
  border-radius: 20px;
}

.value-card .icon img {
  height: 50px;
  width: 50px;
  object-fit: contain;
  margin-bottom: 10px;
}

.value-card h4 {
  font-family: "Kamerik205 8";
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.video-section .video-wrapper {
  position: relative;
}

.video-section .video-wrapper img {
  border-radius: 20px;
}

.video-section .video-wrapper .video-player {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  border: 2px solid #fff;
  color: #fff;
}

.packages-section {
  background-color: #010101;
  color: #fff;
}

.packages-section .sec-title-4 h2 {
  color: #fff;
}

.packages-section .nav-pills {
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px !important;
}

.packages-section .nav-pills .nav-link {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 30px;
  padding: 10px 22px;
  transition: all 0.3s ease-in-out;
  text-transform: capitalize;
}

.packages-section .nav-pills .nav-link:hover {
  color: #fff;
  border-color: #575ECF;
  background-color: rgba(87, 94, 207, 0.15);
  transform: translateY(-2px);
}

.packages-section .nav-pills .nav-link.active {
  color: #fff;
  background-color: #575ECF;
  border-color: #575ECF;
  /* box-shadow: 0 0 20px rgba(87, 94, 207, 0.6), 0 0 40px rgba(92, 41, 244, 0.3); */
}

.packages-section .package-tier-info {
  color: rgba(255, 255, 255, 0.85);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  margin-top: 25px;
  text-align: center;
}

.packages-section .package-card {
  position: relative;
  color: #fff;
  background-color: rgba(8, 7, 82, 0.2);
  padding: 30px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  transition: all 0.3s ease-in-out;
}

.packages-section .package-card * {
  position: relative;
  z-index: 1;
}

.packages-section .package-card::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 30%;
  width: 50%;
  height: 100px;
  background-color: rgba(92, 41, 244, 0.6);
  /* z-index: 1; */
  filter: blur(100px);
  pointer-events: none;
}

.packages-section .package-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 26px;
  font-weight: 700;
}

.packages-section .package-card .price {
  font-family: "Inter", sans-serif;
  display: block;
  font-weight: 500;
  font-size: 2rem;
  margin-top: -20px;
  padding-left: 25px;
}

.packages-section .package-card .price::before {
  content: '$';
  position: absolute;
  left: 0;
  top: 0;
  color: #575ECF;
  font-size: 1.8rem;
}

.packages-section .package-card a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.3);
  color: #F7F6F3;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 30px;
  margin: 30px 0;
  transition: 0.3s ease-in-out;
}

.packages-section .package-card:hover {
  border-color: #575ECF;
  /* box-shadow: 0 0 10px rgba(87, 94, 207, 0.2), 0 0 50px rgba(92, 41, 244, 0.2); */
  transform: scale(1.05);
}

.packages-section .package-card:hover a {
  background-color: #575ECF;
}

.packages-section .package-card a:hover {
  transform: translateY(-10px);
}

.packages-section .package-card ul {
  overflow-y: auto;
  height: 229px;
  padding-right: 5px;
}

.packages-section .package-card ul li {
  position: relative;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  padding: 10px 10px 10px 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.packages-section .package-card ul li:nth-last-child(1) {
  border-bottom: none;
}

.packages-section .package-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 15px;
  width: 15px;
  background-image: url(../images/check-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

.faq-listing .faq-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  padding: 20px 0;
}

.faq-listing .faq-item .faq-question {
  font-family: "Kamerik205 8";
  font-size: 1.4rem;
  margin-bottom: 0;
}

.faq-listing .faq-item .faq-answer {
  font-family: "Space Grotesk", sans-serif;
  color: #666666;
}

.faq-listing .faq-item .faq-answer p {
  margin-bottom: 0;
}

.contac-us {
  background-image: url(../images/dots-bg.svg);
}

.contac-us .form-wrapper {
  border: 2px solid #575ECF;
  padding: 30px;
  border-radius: 25px;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(3px);
}

.contac-us .input-field input,
.contac-us .input-field select,
.contac-us .input-field textarea {
  display: block;
  width: 100%;
  font-family: "Inter", sans-serif;
  height: 50px;
  padding: 5px 10px;
  /* border: 1px solid #353535; */
  border: none;
  border-radius: 10px;
  font-weight: 500;
  outline: none;
}

.contac-us .input-field textarea {
  height: 116px;
  resize: none;
}

.contac-us .contact-item h5 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
}

.contac-us .contact-item a {
  font-family: "Inter", sans-serif;
  color: #0c0c0c;
  font-size: 1rem;
}

.because {
  text-align: center;
  position: relative;
  padding: 50px 0;

}

.because span {
  margin: 0 auto;
  color: #373737;
  border: 1px solid #373737;
  border-radius: 30px;
  padding: 12px 20px;
  z-index: 1;
  position: relative;
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
  background-color: #fff;
}

.because::before {
  content: "";
  height: 1px;
  background-color: #373737;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  position: absolute;
}

.what-happened-next .sec-title-2 h2 {
  font-size: 5rem;
}

.next-card {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  padding: 20px;
  text-align: center;
  border-radius: 20px;
}

.next-card .img-wrapper {
  height: 60px;
  width: 60px;
  background-color: #1942be;
  padding: 10px;
  border-radius: 50%;
  margin: -45px auto 30px;
}

/* 
  font-family: 'Kamerik205 5';
  font-family: 'Kamerik205 3';
  font-family: "Space Grotesk", sans-serif;
  font-family: 'Freight';
  font-family: "DM Serif Display", serif;
  font-family: "Inter", sans-serif;
*/
@media only screen and (max-width: 1920px) {}

@media only screen and (max-width: 1599px) {}

@media only screen and (max-width: 1444px) {}

@media only screen and (max-width: 1399px) {}

@media only screen and (max-width: 1199px) {}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 767px) {}

@media only screen and (max-width: 575px) {
  .home-banner .content h1 {
    font-size: 3rem
  }

  .book-call-section .lottie-wrapper {
    gap: 10px;
  }

  .book-call-section .lottie-wrapper .icons {
    font-size: 40px;
  }

  .what-we-do #what-we-do-title {
    font-size: 4rem;
  }

  .what-we-do #what-we-do-title .do {
    transform: translateY(25px)
  }

  .services-listing .service-item h4 {
    font-size: 1.3rem;
  }

  .services-listing .service-item .content-wrapper {
    padding: 5px 0;
  }

  .sec-title {
    flex-direction: column;
    gap: 10px;
  }

  .sec-title h2 {
    width: 100%;
    font-size: 2rem;
  }

  .footer-main .footer-content .footer-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .footer-main .footer-copyright {
    flex-direction: column;
  }

  .sec-title-2 h2 {
    font-family: 'Kamerik205 3';
    font-size: 5rem;
  }

  .why-sylex .why-sylex-card h3 {
    font-size: 1.6rem;
  }

  .core-vision h2 {
    font-size: 6rem;
  }

  .what-happened-next .sec-title-2 h2 {
    font-size: 3rem;
  }

  .because span {
    font-size: 12px;
  }

  .next-card {
    margin-top: 25px;
  }

  .projects-section .project-item img {
    transition: 5s ease-in-out;
    height: 300px !important;
    object-fit: cover;
    object-position: center top;
  }

  .sec-title-3 .tagline,
  .sec-title .tagline,
  .sec-title-4 .tagline {
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .sec-title-3 h2,
  .sec-title-4 h2 {
    font-size: 2rem;
  }

  .header-main .navbar-toggler .bar {
    width: 25px;
    height: 1px;
  }

  .header-main .navbar-toggler {
    gap: 6px;
  }

  .mobile-menu-offcanvas .menu-brand img,
  .header-main .navbar-brand img {
    min-width: 150px;
    width: 150px;
    max-width: 150px;
  }

  .mobile-menu-offcanvas .navbar-nav li a {
    font-size: 18px;
    padding: 10px;
  }

  .mobile-menu-offcanvas .btn {
    font-size: 16px;
  }

  .what-we-do #what-we-do-title .what {
    top: -30px;
  }

  .what-we-do #what-we-do-title .we {
    position: relative;
    z-index: 9;
  }

  .services-listing .service-item .content-wrapper video {
    display: none;
  }

  .projects-section .project-item .content h4 {
    font-size: 1.5rem
  }

  .footer-main .footer-content .footer-links:not(.contact-links) li a:hover {
    padding-left: 0;
  }

  .footer-main .footer-content .footer-links:not(.contact-links) li a:hover:before {
    width: 0;
  }
}

/* ==========================================================================
   BRIEF FORMS & THANK YOU PAGE STYLES (White Background Theme)
   ========================================================================== */
.brief-section {
  background-color: #ffffff;
  background-image: url(../images/dots-bg.svg);
  background-attachment: fixed;
}

.brief-form-wrapper {
  border: 2px solid #575ECF;
  padding: 40px;
  border-radius: 25px;
  background-color: #ffffff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.brief-form-header {
  border-bottom: 1px solid #eaecf5;
  padding-bottom: 25px;
  margin-bottom: 35px;
}

.brief-form-header h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #11052d;
  margin-bottom: 8px;
}

.brief-form-header p {
  color: #555566;
  font-size: 15px;
  margin-bottom: 0;
}

.brief-card-section {
  background: #f8f9ff;
  border: 1px solid rgba(87, 94, 207, 0.2);
  border-radius: 18px;
  padding: 28px;
  margin-bottom: 30px;
  transition: all 0.3s ease;
}

.brief-card-section:hover {
  border-color: #575ECF;
  box-shadow: 0 10px 30px rgba(87, 94, 207, 0.12);
}

.brief-section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #575ECF;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brief-section-title .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background-color: #575ECF;
  color: #ffffff;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.brief-field-group {
  margin-bottom: 22px;
}

.brief-field-group:last-child {
  margin-bottom: 0;
}

.brief-label {
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #11052d;
  margin-bottom: 8px;
}

.brief-label .req {
  color: #575ECF;
  margin-left: 3px;
}

.brief-field-group input[type="text"],
.brief-field-group input[type="email"],
.brief-field-group input[type="tel"],
.brief-field-group input[type="number"],
.brief-field-group input[type="date"],
.brief-field-group select,
.brief-field-group textarea {
  display: block;
  width: 100%;
  font-family: "Inter", sans-serif;
  height: 50px;
  padding: 12px 18px;
  background-color: #ffffff;
  border: 1px solid #ccd2e3;
  border-radius: 10px;
  font-size: 15px;
  color: #11052d;
  font-weight: 500;
  outline: none;
  transition: all 0.25s ease;
}

.brief-field-group select option {
  background-color: #ffffff;
  color: #11052d;
}

.brief-field-group textarea {
  height: 116px;
  resize: vertical;
}

.brief-field-group input:focus,
.brief-field-group select:focus,
.brief-field-group textarea:focus {
  border-color: #575ECF;
  background-color: #ffffff;
  box-shadow: 0 0 0 4px rgba(87, 94, 207, 0.2);
}

.brief-field-group input::placeholder,
.brief-field-group textarea::placeholder {
  color: #888899;
}

/* Custom Checkbox & Radio Grid */
.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.pill-option {
  position: relative;
  cursor: pointer;
  user-select: none;
}

.pill-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.pill-option span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background-color: #ffffff;
  border: 1px solid #ccd2e3;
  border-radius: 30px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  color: #11052d;
  font-weight: 500;
  transition: all 0.25s ease;
}

.pill-option:hover span {
  border-color: #575ECF;
  color: #575ECF;
}

.pill-option input:checked ~ span {
  background-color: #575ECF;
  border-color: #575ECF;
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(87, 94, 207, 0.3);
}

/* Dynamic Color Picker Group */
.color-picker-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  background: #ffffff;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid #ccd2e3;
}

.color-picker-row input[type="color"] {
  -webkit-appearance: none;
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  cursor: pointer;
  background: none;
  padding: 0;
}

.color-picker-row input[type="color"]::-webkit-color-swatch-wrapper {
  padding: 0;
}

.color-picker-row input[type="color"]::-webkit-color-swatch {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
}

.color-picker-row input[type="text"] {
  flex: 1;
  background: transparent;
  border: none;
  height: 38px;
  padding: 0 10px;
  color: #11052d;
}

.color-picker-row input[type="text"]:focus {
  box-shadow: none;
  background: transparent;
}

.btn-remove-color {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border: 1px solid rgba(239, 68, 68, 0.25);
  border-radius: 8px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-remove-color:hover {
  background: #ef4444;
  color: #ffffff;
}

.btn-add-color {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(87, 94, 207, 0.1);
  color: #575ECF;
  border: 1px dashed #575ECF;
  border-radius: 10px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 6px;
}

.btn-add-color:hover {
  background: #575ECF;
  color: #ffffff;
}

/* Custom File Upload */
.custom-file-upload {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 25px;
  background: #ffffff;
  border: 2px dashed rgba(87, 94, 207, 0.35);
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}

.custom-file-upload:hover {
  border-color: #575ECF;
  background: #f8f9ff;
}

.custom-file-upload i {
  font-size: 28px;
  color: #575ECF;
  margin-bottom: 8px;
}

.custom-file-upload span {
  font-size: 14px;
  color: #11052d;
  font-weight: 500;
}

.custom-file-upload input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

/* Submit Action Box */
.brief-submit-box {
  text-align: center;
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid #eaecf5;
}

.brief-submit-btn {
  padding: 16px 45px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  background-color: #1942be;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(25, 66, 190, 0.25);
}

.brief-submit-btn:hover {
  background-color: #575ECF;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(87, 94, 207, 0.35);
}

.brief-submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Alert Notification Toast */
.brief-toast {
  display: none;
  padding: 15px 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  font-family: "Inter", sans-serif;
  font-size: 15px;
}

.brief-toast.success {
  background-color: rgba(16, 185, 129, 0.1);
  border: 1px solid #10b981;
  color: #047857;
}

.brief-toast.error {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #b91c1c;
}

/* Thank You Page Styling */
.thankyou-wrapper {
  text-align: center;
  padding: 60px 30px;
  background: #ffffff;
  border: 2px solid #575ECF;
  border-radius: 25px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.thankyou-icon {
  width: 90px;
  height: 90px;
  background: #575ECF;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 25px;
  box-shadow: 0 10px 30px rgba(87, 94, 207, 0.3);
  animation: pulseSuccess 2s infinite ease-in-out;
}

@keyframes pulseSuccess {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.thankyou-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: #11052d;
  margin-bottom: 15px;
}

.thankyou-subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.15rem;
  color: #555566;
  max-width: 650px;
  margin: 0 auto 35px;
  line-height: 1.6;
}

@media only screen and (max-width: 767px) {
  .brief-form-wrapper {
    padding: 22px;
  }
  .brief-card-section {
    padding: 18px;
  }
  .brief-form-header h3 {
    font-size: 1.5rem;
  }
  .thankyou-title {
    font-size: 2rem;
  }
}
