@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap');

/* Our Start Style Start */
:root {
  /* Primary Colors */
  --primary-blue: #1778F2;
  --grey: #121212;
  --white: #fff;

  /* Secondary Colors */
  --secondary-blue: #16359B;
  --blue-100: #B9C8FC;
  --blue-200: #7896F5;
  --blue-300: #476DEB;
  --blue-400: #254FDB;
  --blue-500: #103AC4;
  --blue-600: #042AA7;
  --blue-700: #002087;
  --blue-800: #0121D4;

  /* Gradient Colors */
  --primary-gradient: linear-gradient(to right, #476DEB 0%, #002087 100%);
  --background: linear-gradient(to bottom, #476DEB 0%, #002087 100%);
}

body {
  overflow-x: hidden;
  font-family: "Work Sans", sans-serif !important;
}

.menu-font {
  font-family: "Work Sans", sans-serif !important;
}

/*==================================== Start Typography Styles =======================================*/
/* Base styles for large screens */
.heading-1 {
  font-family: "Work Sans", sans-serif;
  font-size: 4.5rem;
  font-weight: 600;
  line-height: 1.2;
}
.service-heading {
  font-family: "Work Sans", sans-serif;
  font-size: 3.8rem;
  font-weight: 600;
  line-height: 1.2;
}
.heading-2 {
  font-family: "Work Sans", sans-serif;
  font-size: 2.875rem;
  font-weight: 600;
}

.heading-3 {
  font-family: "Work Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 600;
}
.casestudies-heading {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  min-height: 156px;
}
.heading-4 {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
}

/* Medium screens (tablets) */
@media (max-width: 1024px) {
  .heading-1 {
    font-size: 3.5rem;
  }

  .heading-2 {
    font-size: 2.25rem;
  }

  .heading-3 {
    font-size: 1.5rem;
  }

  .heading-4 {
    font-size: 1.5rem;
  }
}

/* Small screens (mobiles) */
@media (max-width: 768px) {
  .heading-1 {
    font-size: 2rem;
  }

  .heading-2 {
    font-size: 2rem;
  }

  .heading-3 {
    font-size: 1.5rem;
  }

  .heading-4 {
    font-size: 1.5rem;
  }
}

/* Extra small screens (phones) */
@media (max-width: 480px) {
  .heading-1 {
    font-size: 2rem;
  }

  .heading-2 {
    font-size: 2rem;
  }

  .heading-3 {
    font-size: 1.5rem;
  }

  .heading-4 {
    font-size: 1.5rem;
  }

  .mobile-padding {
    padding-left: 0.7rem !important;
    padding-right: 0.7rem !important;
  }
}

@media (max-width: 768px) {

  .space,
  .container,
  .row {
    overflow-x: hidden;
  }

  body {
    overflow-x: hidden;
  }

  html,
  body {
    overflow-x: hidden;
    width: 100%;
  }
}

.paragraph-01 {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.small-p {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
}

.large-p {
  font-family: "Work Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 400;
}

.paragraph {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

.special-larg-p {
  font-family: "Work Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 200;
}

@media (max-width: 767px) {
  .paragraph {
    font-family: "Work Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
  }

  .special-larg-p {
    font-family: "Work Sans", sans-serif;
    font-size: 1.25rem;
    font-weight: 200;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

@media (max-width: 1024px) {
  .paragraph {
    font-family: "Work Sans", sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
  }
}

/*==================================== End Typography Styles =======================================*/

/*==================================== Global Header Styling =============================================*/

/* Black header styles */
body.header-black-body .navbar-main {
  background-color: #010101 !important;
}

body.header-black-body .navbar-main .navbar-nav .nav-link,
body.header-black-body .navbar-main .navbar-brand,
body.header-black-body .navbar-main .offcanvas-body .nav-link {
  color: #fff;
}

body.header-black-body .navbar-main .navbar-nav .nav-link:hover,
body.header-black-body .navbar-main .offcanvas-body .nav-link:hover {
  color: #ccc;
}

body.header-black-body .white-btn {
  background-color: #fff;
  color: #010101;
  border: none;
}

/* Prevent overlapping */
body.header-black-body .site>section:first-of-type,
body.header-black-body .site>.content-area:first-of-type {
  padding-top: 100px;
  /* adjust if your navbar is fixed or overlaps */
}

.navbar-main {
  background-color: transparent !important;
  color: white !important;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease !important;
}

.navbar-main.scrolled-navbar {
  background-color: rgba(0, 0, 0, 0.3) !important;
  backdrop-filter: blur(5px) !important;
}

.navbar-brand,
.navbar-nav .nav-link {
  color: white !important;
  font-size: 1rem;
  font-weight: 500;
  font-family: "Work Sans", sans-serif;
}

.navbar-brand:hover,
.navbar-nav .nav-link:hover {
  color: var(--primary-blue) !important;
}

.mega-menu-link :hover {
  color: var(--primary-blue) !important;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children>a.mega-menu-link>span.mega-indicator:after {
  content: '+' !important;
  margin-left: 8px !important;
  font-size: 14px !important;
  display: inline-block !important;
  color: #fff !important;
}

#mega-menu-wrap-primary #mega-menu-primary li.mega-menu-item-has-children>a.mega-menu-link:hover>span.mega-indicator:after {
  color: var(--primary-blue) !important;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link {
  color: white !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  font-family: "Work Sans", sans-serif !important;
}

#mega-menu-wrap-primary #mega-menu-primary>li.mega-menu-item>a.mega-menu-link:hover {
  color: var(--primary-blue) !important;
}

.navbar-nav .nav-link::after {
  content: " +";
  margin-left: 8px;
}

.navbar-toggler,
.navbar-toggler:focus,
.navbar-toggler:hover {
  color: white;
  /* border-color: white; */
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

.offcanvas {
  background: #191919 !important;
  width: 100% !important;
}

.offcanvas-header {
  border-bottom: 1px solid var(--primary-gradient);
  padding: 1rem 1.5rem;
}

.offcanvas-body .navbar-nav {
  width: 100%;
}

.offcanvas-body .nav-link {
  color: #000 !important;
  padding: 0.75rem 1.5rem;
  border-bottom: 1px solid #f5f5f5;
}

.offcanvas-body .dropdown-menu {
  background: var(--primary-gradient);
  border: none;
}

.btn-close {
  font-size: 1.25rem;
  color: #fff !important;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: .25em .25em;
  color: #fff !important;
  /* Optional, used if the icon depends on text color */
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e") center / 1em auto no-repeat;
  border: 0;
  border-radius: .375rem;
  opacity: .8;
}

.offcanvas.offcanvas-end {
  top: 0;
  right: 0;
  height: 100vh !important;
  transform: translateX(100%);
}

/*==================================== Global Header Styling =============================================*/

.primary-blue {
  color: var(--primary-blue) !important;
}

.grey-light {
  color: #8B8B8B;
}

.bg-dark {
  background-color: rgba(97, 97, 97, 0.3) !important;
  /* 30% opacity */
}

.card-body {
  border-radius: 10px !important;
}

/*======================================= Start Footer Styles================================================ */
.footer-logo {
  background-position: center center, center center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  height: auto;
  width: 100%;

}

.contact-list {
  list-style: none;
  /* Removes default list markers */
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  padding: 8px 0;
}

.contact-list a {
  color: white;
  font-weight: 400;
  text-decoration: none;
  font-size: 16px;
  font-family: "Work Sans", sans-serif;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-list a:hover {
  text-decoration: none;
  color: var(--primary-blue);
}

.contact-list i {
  color: white;
  font-size: 18px;
}

.footer-services a {
  text-decoration: none;
  color: #fff;
  font-size: 1rem;
  font-family: "Work Sans", sans-serif;
  padding: 8px 0;
}

.footer-services a:hover {
  text-decoration: none;
  color: var(--primary-blue);
}

.footer-services li {
  padding: 8px 0;
}


.mc4wp-form input[type="email"] {
  padding: 10px 10px 10px 0px;
  border: none;
  width: 270px;
  margin-right: 12px;
  background: transparent;
  border-bottom: 1px solid #686868 !important;
  font-size: 1rem;
  font-family: "Work Sans", sans-serif;
  color: #fff;
}
.mc4wp-form input[type="email"]:focus,
.mc4wp-form input[type="email"]:focus-visible,
.mc4wp-form input[type="email"]:active,
.mc4wp-form input[type="email"]:focus-within {
  border-top: none !important;
  border-right: none !important;
  border-left: none !important;
  border-bottom: 1px solid #686868 !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent;
}
.mc4wp-form {
  align-items: center;
}

.mc4wp-response {
  color: #fff;
  font-size: 1rem;
  font-family: "Work Sans", sans-serif;
}

@media (max-width: 1024px) {
  .mc4wp-form input[type="email"] {
    width: 190px;
  }
}

@media (max-width: 767px) {
  .mc4wp-form input[type="email"] {
    padding: 10px;
    border: none;
    width: 100%;
    text-align: center;
    margin-right: 10px;
    background: transparent;
    border-bottom: 1px solid #fff !important;
  }

  .white-btn {
    display: block;
    width: 100%;
    text-align: center;
    /* optional: center text */
    margin-top: 2rem;
  }

  .footer-heading-1 {
    text-align: center;
  }

}

/*======================================= End Footer Styles================================================ */


/*====================================== Start Button Styles ===========================================*/
.primary-btn {
  padding: 10px 20px;
  border-radius: 14px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: var(--grey);
  background-color: var(--white);
  border: none;
  position: relative;
  z-index: 1;
  box-shadow: 0 3px 5.8px 0 #0121d4;
  /* <- Drop shadow */
  animation: single-border-glow 10s infinite linear;
  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease;
}

@keyframes single-border-glow {
  0% {
    box-shadow:
      /* 0 3px 5.8px 0 #0121d4,       */
      0 -5px 12px rgba(22, 53, 155, 0.8);
    /* Top glow */
  }

  25% {
    box-shadow:
      /* 0 3px 5px 0 #0121d4, */
      5px 0 12px rgba(22, 53, 155, 0.8);
    /* Right glow */
  }

  50% {
    box-shadow:
      /* 0 0px 0px 0 #0121d4, */
      0 5px 12px rgba(22, 53, 155, 0.8);
    /* Bottom glow */
  }

  75% {
    box-shadow:
      /* 0 0px 0x 0 #0121d4, */
      -5px 0 12px rgba(22, 53, 155, 0.8);
    /* Left glow */
  }

  100% {
    box-shadow:
      /* 0 3px 5.8px 0 #0121d4, */
      0 -5px 12px rgba(22, 53, 155, 0.8);
    /* Back to top */
  }
}

.primary-btn:hover {
  background: var(--primary-gradient);
  color: var(--white);
  animation: none;
  box-shadow:
    0 3px 5.8px 0 #0121d4,
    0 0 15px rgba(22, 53, 155, 0.9),
    0 0 30px rgba(22, 53, 155, 0.6),
    0 0 50px rgba(22, 53, 155, 0.3);
}

.primary-btn:active {
  background: var(--primary-gradient);
  transform: translateY(4px);
  animation: none;
}

/* .secondary-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 14px;
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #fff;
  text-decoration: none;
  overflow: hidden;
  z-index: 1;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.06);
  margin-right: 15px;
  margin-bottom: 1rem !important;
  border: 1px solid transparent; 
}


.secondary-btn::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 16px;
  background: linear-gradient(90deg, #535353, #7c97ff, #535353);
  background-size: 200% 200%;
  z-index: -2;
  animation: borderGlow 3s linear infinite;
  opacity: 0.7;
}

.secondary-btn::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 1px;
  right: 1px;
  bottom: 1px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 13px;
  z-index: -1;
}

@keyframes borderGlow {
  0% {
    background-position: 0% 50%;
    opacity: 0.5;
  }
  50% {
    background-position: 100% 50%;
    opacity: 0.9;
  }
  100% {
    background-position: 0% 50%;
    opacity: 0.5;
  }
}

.secondary-btn:hover {
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.16) !important;
}

.secondary-btn:hover::before {
  opacity: 1;
  animation: borderGlow 1.5s linear infinite;
} */


.secondary-btn {
  padding: 12px 20px;
  border-radius: 14px;
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.06);
  /* border: none; */
  position: relative;
  z-index: 1;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  overflow: visible;
  transition: background 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.secondary-btn::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 14px;
  z-index: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-right: rgba(255, 255, 255, 0.06) !important;
  border-left: rgba(255, 255, 255, 0.06) !important;
  border-bottom: rgba(255, 255, 255, 0.06) !important;
  pointer-events: none;
}

.secondary-btn>* {
  position: relative;
  z-index: 2;
}

.secondary-btn>* {
  position: relative;
  z-index: 2;
}

.secondary-btn:hover {
  color: var(--white) !important;
  background-color: rgba(255, 255, 255, 0.16) !important;
}


.secondary-btn:hover::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background-color: rgba(255, 255, 255, 0.16) !important;
  border-radius: 14px !important;
  pointer-events: none !important;
}

.secondary-btn>span {
  position: absolute !important;
  display: block !important;
  border-radius: 14px !important;
}

.secondary-btn>span:nth-child(1) {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 3px !important;
  background: linear-gradient(90deg, transparent, #fff) !important;
  animation: animateTop 3s linear infinite !important;
}

.secondary-btn>span:nth-child(2) {
  top: -100% !important;
  right: 0 !important;
  width: 3px !important;
  height: 100% !important;
  background: linear-gradient(180deg, transparent, #fff) !important;
  animation: animateRight 3s linear infinite !important;
  animation-delay: 0.75s !important;
}

.secondary-btn>span:nth-child(3) {
  bottom: 0 !important;
  right: 0 !important;
  width: 100% !important;
  height: 3px !important;
  background: linear-gradient(270deg, transparent, #fff) !important;
  animation: animateBottom 3s linear infinite !important;
  animation-delay: 1.5s !important;
}

.secondary-btn>span:nth-child(4) {
  bottom: -100% !important;
  left: 0 !important;
  width: 3px !important;
  height: 100% !important;
  background: linear-gradient(360deg, transparent, #ffffff) !important;
  animation: animateLeft 3s linear infinite !important;
  animation-delay: 2.25s !important;
}

@keyframes animateTop {
  0% {
    left: -100% !important;
  }

  50%,
  100% {
    left: 100% !important;
  }
}

@keyframes animateRight {
  0% {
    top: -100% !important;
  }

  50%,
  100% {
    top: 100% !important;
  }
}

@keyframes animateBottom {
  0% {
    right: -100% !important;
  }

  50%,
  100% {
    right: 100% !important;
  }
}

@keyframes animateLeft {
  0% {
    bottom: -100% !important;
  }

  50%,
  100% {
    bottom: 100% !important;
  }
}

.white-btn {
  padding: 12px 20px;
  border-radius: 14px;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: var(--grey);
  background-color: var(--white);
  border: none;
  position: relative;
  z-index: 1;
}

.white-btn:hover {
  background: var(--primary-gradient) !important;
  color: var(--white) !important;
  animation: none;
  box-shadow:
    0 3px 5.8px 0 #0121d4,
    0 0 15px rgba(22, 53, 155, 0.9),
    0 0 30px rgba(22, 53, 155, 0.6),
    0 0 50px rgba(22, 53, 155, 0.3);
}

/* 
.glow-btn {
  position: relative;
  display: inline-block;
  border-radius: 15px;
  padding: 12px 20px;
  overflow: hidden;
}

.test-btn {
  position: relative;
  z-index: 1;
  color: var(--grey, #333);
  background: var(--white, #fff);
  border-radius: 15px;
  padding: 12px 20px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}


.glow-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(rgba(0, 0, 0, 0), #7c97ff, rgba(0, 0, 0, 0) 25%);
  transform: translate(-50%, -50%) rotate(0deg);
  animation: glow 5s linear infinite;
  z-index: 0;
  filter: blur(25px);
}


.glow-btn::after {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background: var(--white, #fff);
  border-radius: 15px;
  z-index: 0;
}

@keyframes glow {
  100% {
    transform: translate(-50%, -50%) rotate(1turn);
  }
}  */

.btn-arrow {
  background-color: #101010;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: transparent;
  font-size: 32px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-arrow:hover {
  background: linear-gradient(to right, #476DEB 0%, #002087 100%) !important;
  color: transparent !important;

}

.btn-arrow i {
  transform: rotate(45deg);
  transition: transform 0.3s ease;

  color: var(--white);
  border: none;
  outline: none;
}

.btn-arrow:hover i {
  transform: rotate(90deg);

}

@media (min-width: 768px) {
  .star {
    width: 30px;
    height: 40px;
  }
}

.social-icons-footer {
  margin: 0 15px;
}

.social-icon-img {
  width: auto;
  height: auto;
}

.btn-carousel {
  background-color: transparent;
  color: #fff !important;
  border-radius: 4px;
  transition: all 0.3s ease;
  width: 44px;
  height: 44px;
}

.btn-carousel i {
  color: var(--white) !important;
}

.btn-carousel:not(.disabled),
.active-carousel-btn {
  background: var(--secondary-blue);
  color: white !important;
}

.btn-carousel.disabled {
  background-color: #686868 !important;
  color: #fff !important;
  cursor: not-allowed;
  border: none !important;
}


.text-height {
  height: 73px;
}

/* .card-body {
  padding: 30px;
} */
/*====================================== End Button Styles ===========================================*/

/* ====================================Start Home Page Styles ==============================================*/
.home-hero {
  background-position: center center, center center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  height: auto;
  min-height: 612px;
  width: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;

}

.rotating-texts-wrapper {
  display: flex;

}

.rotating-texts {
  position: relative;
  margin-left: 20px;
  justify-content: center;
  text-align: center;

}

.rotating-text {
  position: absolute;
  transform: translateX(-50%);
  top: 0;
  opacity: 0;
  white-space: nowrap;
  animation: rotateWords linear infinite;
  text-align: center;
  color: var(--blue-500) !important;
}

@keyframes rotateWords {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  3%,
  17% {
    opacity: 1;
    transform: translateY(0);
  }

  20%,
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}

@keyframes slides {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

@keyframes slides {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.logos {
  overflow: hidden;
  padding: 30px 0;
  white-space: nowrap;
  position: relative;
}

.logo_items {
  display: inline-block;
  animation: slide 15s linear infinite;
}

.logo_items img {
  height: auto;
  padding: 0 30px;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.client-card {
  position: relative;
  overflow: hidden;
  padding: 30px;
}

.client-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0E4597 0%, #1778F2 51%, #2658A3 100%);
  z-index: 1;
}

.client-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  filter: blur(4px);
  z-index: 2;
  pointer-events: none;
}

.client-section {
  position: relative;
  z-index: 2;
}

.client-section {
  background-position: center center center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 600px;
  height: auto;
}

@media (min-width: 768px) {
  .client-section {
    min-height: 1175px;
    /* no need to redefine background-position unless changing */
  }
}

.client-section-mobile {
  background-repeat: no-repeat !important;
  /* background-position: center center !important; */
  background-size: contain !important;
  min-height: 828px !important;
  width: 100% !important;
}

.industries-section-mobile {
  background-repeat: no-repeat !important;
  /* background-position: center center !important; */
  background-size: contain !important;
  min-height: auto !important;
  width: 100% !important;
}


.services-section {
  background-position: center center center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  width: 100% !important;
  min-height: 1322px !important;
  padding: 50px 0 !important;
}


@media (min-width: 768px) {
  .services-section {
    min-height: 1023px;
  }

}

@media (max-width: 1024px) {
  .company-image {
    /* display: none; */
    align-items: center;
  }

  .testimonials-card {
    position: sticky;
    margin: 0 auto;
    top: 0;
    left: 0;
    width: 750px !important;
    height: 541px;
  }

}

/* New Section Style */
body,
html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
  scroll-snap-type: y proximity !important;
}

/* .carousel-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.carousel-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  scroll-snap-type: y mandatory;
}

.carousel-card {
  scroll-snap-align: start;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  background: #f1f1f1;
  border-bottom: 2px solid #ddd;
}

.next-section {
  height: 100vh;
  background: #333;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
} */

.testimonial-scroll-section {
  position: relative;
  height: 107vh;
  overflow: hidden;
  scroll-snap-align: start;
}
@media (max-width: 1024px){
.testimonial-scroll-section{
   height: 70vh;
}
}
@media (max-width: 768px){
.testimonial-scroll-section{
   height: auto;
}
}
.testimonials-section {
  height: 107vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-carousel-wrapper {
  position: relative;
  height: calc(107vh - 200px);
  overflow-y: auto;
  scroll-snap-type: y mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex-grow: 1;
}

.testimonial-cards-container {
  width: 100%;
}

.testimonials-card {
  scroll-snap-align: start;
  width: 1076px;
  height: 541px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.testimonial-footer {
  position: relative;
  width: 100%;
  z-index: 10;
  background: rgba(0, 0, 0, 0.7);
  padding: 20px 0;
}

.testimonial-dots {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 10;
}

.testimonial-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  cursor: pointer;
  display: none;
}

.testimonial-dots .dot.active {
  background: white;
}

.testimonial-carousel-wrapper::-webkit-scrollbar {
  display: none;
}

@media (max-width: 768px) {
  .testomonial-mobile-heading {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    line-height: 1.2;
  }
}

.mobile-testimonials-scroll-section {
  padding: 20px 0;
  /* background-color: #000; */
  overflow: hidden;
  position: relative;
}

.mobile-testimonials-scroll-container {
  width: 100%;
  height: calc(100vh - 180px);
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;

}

.mobile-testimonial-scroll-card {
  width: 330px;
  height: 560px;
  margin: 0 auto 20px;
  background-size: cover;
  background-position: center center center center;
  background-repeat: no-repeat;
  padding: 30px 20px;
  scroll-snap-align: center;
  position: relative;
  border-radius: 4px;
  justify-content: center;
  text-align: center;

}

.mobile-testimonials-scroll-container::-webkit-scrollbar {
  display: none;
}


.mobile-testimonials-scroll-section .btn {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  display: block;
  padding: 12px;
  font-size: 14px;

}

.mobile-testimonials-scroll-container {
    will-change: transform; 
}
@media (min-width: 768px) {
  .mobile-testimonials-scroll-section {
    display: none;
  }

  .industries-hero {
    display: none !important;
  }
}

.industries-section .industry-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}

.industries-section .industry-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.industries-section .industry-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  /* display: flex; */
  justify-content: flex-end;
  background-color: #1a1a1a;
  transition: background-color 0.3s ease-in-out;
  cursor: pointer;
}

.industries-section .industry-card .card-image img {
  width: 100%;
  height: 500px;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.industries-section .industry-card:hover .card-image img {
  filter: blur(18.33px);
  transform: scale(1.05);
  width: 100%;
  height: 500px;
}

/* Default title shown at bottom when not hovering */
.industries-section .industry-card .card-title {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  font-family: "Work Sans", sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin: 0;
  opacity: 1;
  visibility: visible;
  transition: all 0.4s ease;
}

/* On hover, move title to top */
.industries-section .industry-card:hover .card-title {
  top: 30px;
  bottom: auto;
  transform: translateY(-15%);
  transition: transform 0.6s ease, opacity 0.6s ease;

}

/* Overlay content that slides up from bottom on hover */
.industries-section .industry-card .overlay-content {
  position: absolute;
  top: 110px;
  /* Leave space for title */
  left: 20px;
  right: 20px;
  bottom: 100px;
  /* Leave more space for button */
  color: white;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.6s ease, opacity 0.6s ease;
  z-index: 5;
  /* Below the button */
}

/* On hover, slide up overlay content */
.industries-section .industry-card:hover .overlay-content {
  transform: translateY(0);
  opacity: 1;
}

/* Description styling */
.industries-section .industry-card .card-text {
  font-size: 1rem;
  font-weight: 400;
  font-family: "Work Sans", sans-serif;
  margin-bottom: 15px;
  text-align: left;
}

/* Button container */
.industries-section .industry-card .button-industries {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
}

/* Show button container on hover */
.industries-section .industry-card:hover .button-industries {
  opacity: 1;
  visibility: visible;
  /* transition-delay: 0.3s; */
}

/* Button styling */
.industries-section .industry-card .btn {
  background: rgba(255, 255, 255, 0.06) !important;
  /* white @ 6% opacity */
  border: 2px solid rgba(255, 255, 255, 0.07) !important;
  /* white @ 7% opacity */
  border-radius: 14px;
  padding: 10px 15px !important;
  color: white !important;
  font-family: "Work Sans", sans-serif !important;
  font-weight: 500 !important;
  text-decoration: none !important;
  display: inline-block !important;
  cursor: pointer !important;
  overflow: hidden !important;
  position: relative;
}

/* Button hover effect */
.industries-section .industry-card .btn:hover {
  background: rgba(255, 255, 255, 0.16) !important;
}


.services-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat, no-repeat;
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

@media (max-width: 767px) {
  .services-section {
    padding-right: 1rem;
    padding-left: 1rem;
    padding-top: 0rem !important;
  }
}

/* .services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #000;
  z-index: 1;
} */

.services-section .container {
  position: relative;
  z-index: 2;
}

.services-section .service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-section .service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.services-section .card-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.services-section .service-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.services-section .card-description {
  font-size: 1rem;
  color: #ddd;
}

.services-section .btn {
  background-color: #007bff;
  border: none;
  border-radius: 5px;
  padding: 10px 20px;
  transition: background-color 0.3s ease;
}

.services-section .btn:hover {
  background-color: #0056b3;
}

.heading-height {
  height: 88px;
}

.service-height {
  height: 90px;
}

.empowering-section {
  position: relative;
  background-size: cover;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat, no-repeat;
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  min-height: auto;
}

@media (max-width: 767px) {
  .empowering-section {
    padding-right: 1rem;
    padding-left: 1rem;
    min-height: 800px;
  }
}

.empowering-world-image {
  margin-top: -142px;
  z-index: 1;
  position: relative;
}

.empowering-card {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 10px !important;
  color: white;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  min-height: 270px;
}

.col-10.col-sm-6.col-md-4.col-lg-2 {
  display: flex;
}


.empowering-height {
  height: auto;
  min-height: 62px;
  overflow-wrap: break-word;
  word-break: break-word;
}


@media (max-width: 480px) {
  .empowering-height {
    height: auto !important;
  }

  .empowering-world-image {
    margin-top: -65px !important;
    z-index: 1;
    position: relative;
  }

  .empowering-card {
    min-height: 212px !important;
  }

  .empowering-height {
    height: 40px !important;
  }
}

@media (max-width: 767px) {
  .news-section {
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 0rem !important;
  }

  .news-link {
    padding-top: 1rem;
  }

  .news-hero-title {
    font-size: 1rem;
  }

}

@media (max-width: 1024px) {
  .news-section-lg {
    display: none;
  }

  .empowering-section {
    height: auto !important;
  }

  .news-section {
    padding-bottom: 0px !important;
  }
}

.news-card {
  background: transparent;
  border-radius: 10px;
}

.news-img {
  width: 100%;
  border-radius: 10px 10px 0px 0px !important;
}

.text-container {
  display: flex;
  flex-direction: column;
  height: 90px;
  overflow: hidden;
}

.text-container span {
  height: 90px;
  background-image: var(--primary-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: moveUp 18s ease infinite;
}

@keyframes moveUp {

  0%,
  10% {
    transform: translateY(0);
  }

  20%,
  30% {
    transform: translateY(-100%);
  }

  40%,
  50% {
    transform: translateY(-200%);
  }

  60%,
  70% {
    transform: translateY(-300%);
  }

  80%,
  90% {
    transform: translateY(-400%);
  }

  100% {
    transform: translateY(-500%);
  }
}

@media screen and (max-width:768px) {
  .text-container {
    height: 45px !important;
  }

  .text-container span {
    height: 45px !important;
  }

  @keyframes moveUp {

    0%,
    10% {
      transform: translateY(0);
    }

    20%,
    30% {
      transform: translateY(-100%);
    }

    40%,
    50% {
      transform: translateY(-200%);
    }

    60%,
    70% {
      transform: translateY(-300%);
    }

    80%,
    90% {
      transform: translateY(-400%);
    }

    100% {
      transform: translateY(-500%);
    }
  }
}

@media screen and (max-width:1024px) {
  .text-container {
    height: 60px;
  }

  .text-container span {
    height: 60px;
  }

  @keyframes moveUp {

    0%,
    10% {
      transform: translateY(0);
    }

    20%,
    30% {
      transform: translateY(-100%);
    }

    40%,
    50% {
      transform: translateY(-200%);
    }

    60%,
    70% {
      transform: translateY(-300%);
    }

    80%,
    90% {
      transform: translateY(-400%);
    }

    100% {
      transform: translateY(-500%);
    }
  }
}

.navigation-section {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background-color 0.3s ease;
}

.transparent-navbar {
  background-color: transparent;
}

.scrolled-navbar {
  background-color: rgba(0, 0, 0, 0.3);
}

/* ====================================End Home Page Styles ==============================================*/


/*===================================== Start About Us Styles ==============================================*/
.about-hero {
  background-position: center center;
  /* Corrected - center only needs to be stated twice */
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}


.about-hero {
  min-height: 300px;
}

@media (max-width: 576px) {
  .about-hero {
    min-height: 400px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    min-height: 300px;
  }

  .strenghths-mobile {
    padding-top: 0 !important;
  }
}

@media (min-width: 992px) {
  .about-hero {
    min-height: 540px;
  }
}

.hero-desktop,
.hero-mobile {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Show only desktop by default */
.hero-desktop {
  display: block;
}

.hero-mobile {
  display: none;
}

/* Show mobile version under 768px */
@media (max-width: 767px) {
  .hero-desktop {
    display: none;
  }

  .hero-mobile {
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 365px;
    padding-top: 160px !important;
    /* padding-bottom: 60px; */
  }

  .hero-mobile-industries {
    display: block;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 450px;
    padding-top: 100px !important;
  }

  .industries-mobile {
    padding-top: 0 !important;
  }

  .case-studies {
    padding-top: 2rem;
  }
}

/* Show mobile version under 768px */
@media (max-width: 1024px) {
  .case-studies {
    padding-top: 2rem;
  }

  .about-heading {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }
  .about-hero {
    background-size: contain !important;
  }
}
@media (min-width: 768px) {
  .pt-md-20 {
    padding-top: 20px !important;
  }
}

.about-hero-mobile {
  min-height: 300px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.about-hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.about-bg {
  background-position: center center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  height: auto;
  min-height: 2120px;
  width: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.vision-card {
  position: relative;
  background: linear-gradient(to bottom,
      rgba(153, 153, 153, 0.24) 0%,
      rgba(51, 51, 51, 0.24) 100%);
  border-radius: 10px;
  min-height: 311px !important;
  text-align: left;
  /* align-content: center; */
  padding: 2px;
  background-clip: padding-box;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.vision-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(to top, #1778F2 0%, rgba(23, 120, 242, 0.3) 100%);
  z-index: -1;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  filter: blur(30px);
  opacity: 0.7;
}

.mission-card {
  position: relative;
  background: linear-gradient(to bottom,
      rgba(153, 153, 153, 0.24) 0%,
      rgba(51, 51, 51, 0.24) 100%);
  border-radius: 10px;
  min-height: 311px !important;
  text-align: left;
  align-content: center;
  padding: 2px;
  background-clip: padding-box;
  z-index: 1;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mission-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(to bottom, #1778F2 0%, rgba(23, 120, 242, 0.3) 100%);
  z-index: -1;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  filter: blur(30px);
  opacity: 0.7;
}

.nav-pills .nav-link.active {
  background-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.nav-pills .nav-link {
  text-align: left;
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  border-bottom: 2px solid rgba(23, 120, 242, 0.15);
  border-radius: 0px;
}

/*===================================== End About Us Styles ==============================================*/

/*===================================== Start Industries Styles ===========================================*/
.industries-bg {
  background-position: center center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  height: auto;
  /* min-height: 1098px; */
  width: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.it-solutions {
  height: 260px;
  border-radius: 10px;
}

.industries-bg.section-3 {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 1336px;
  width: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.industry-card {
  position: relative;
  border-radius: 10px;
  background: linear-gradient(to bottom,
      rgba(153, 153, 153, 0.24),
      rgba(51, 51, 51, 0.24));
  text-align: left;
  z-index: 1;
  border: none;
  isolation: isolate;

}

.industry-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(to bottom, #000000, #666666);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.industry-card>* {
  position: relative;
  z-index: 1;
}

.industry-card-02 {
  position: relative;
  border-radius: 10px;
  background: linear-gradient(to bottom,
      rgba(153, 153, 153, 0.24),
      rgba(51, 51, 51, 0.24));
  text-align: left;
  z-index: 1;
  border: none;
  isolation: isolate;
  height: 248px !important;
}

.industry-card-02::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 10px;
  padding: 1px;
  background: linear-gradient(to bottom, #000000, #666666);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
}

.industry-card-02>* {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .carousel-item .col-12 {
    max-width: 100% !important;
    flex: 0 0 100% !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .carousel-item .col-md-6 {
    max-width: 50% !important;
    flex: 0 0 50% !important;
  }
}

@media (min-width: 992px) {
  .carousel-item .col-lg-4 {
    max-width: 33.3333% !important;
    flex: 0 0 33.3333% !important;
  }
}


/*===================================== End Industries Styles ===========================================*/


/*===================================== Start Services Styles ===========================================*/
.services-bg {
  background-position: center center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  height: auto;
  min-height: 1454px;
  width: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.top-15 {
  position: relative;
  top: 25px;
}

.top-0 {
  position: relative;
  top: 0;
}

.service-img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  min-height: 372px;
}

.service-card-03 {
  border-radius: 10px;
  min-height: 372px;
  align-content: center;
}

.service-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  border-radius: 10px;
  align-content: center;
  height: 372px !important;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, rgba(233, 233, 233, 0.3) 0%, rgba(131, 131, 131, 0.3) 100%);
  filter: blur(20px);
  z-index: -1;
  border-radius: 10px;
}

.service-card-04 {
  background: linear-gradient(to right,
      rgba(23, 120, 242, 0.3) 0%,
      rgba(1, 33, 212, 0.3) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 10px;
  min-height: 372px;
  align-content: center;
}

.service-card-05 {
  background-color: #E9E9E9;
  border-radius: 10px;
  min-height: 372px;
  min-height: 372px;
  align-content: center;
}

.casestudy-carousel-card {
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .case-study {
    display: none;
  }
}

/*===================================== End Services Styles ===========================================*/

/*================================== Start Contact Us Styles ===========================================*/

/* @media (max-width: 1024px) {
  .contact-us {
padding-top: 0px !important;
  }
} */

.form-control {
  background-color: rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25) !important;
  border-radius: 10px !important;
  padding: 10px !important;
  color: rgba(255, 255, 255, 0.6) !important;
}

.wpcf7 input[type=submit] {
  width: auto !important;
  color: var(--grey) !important;
  background: var(--white) !important;
  font-size: 1rem !important;
  font-family: "Work Sans", sans-serif !important;
  font-weight: 500 !important;
  border-radius: 14px !important;
  padding: 10px 20px !important;
}

.wpcf7 input[type=submit] :hover {
  width: auto !important;
  font-size: 1rem;
  font-family: "Work Sans", sans-serif;
  font-weight: 500;
  border-radius: 14px;
  padding: 10px 20px;
  background: var(--primary-gradient) !important;
  color: var(--white) !important;
  animation: none;
  box-shadow:
    0 3px 5.8px 0 #0121d4,
    0 0 15px rgba(22, 53, 155, 0.9),
    0 0 30px rgba(22, 53, 155, 0.6),
    0 0 50px rgba(22, 53, 155, 0.3);
}

.wpcf7 input[type=submit]:hover {
  background: var(--primary-gradient) !important;
  color: var(--white) !important;
}

.wpcf7-response-output {
  color: var(--white);
}

.contact-form ::placeholder {
  color: var(--white) !important;

}

.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
  color: var(--white) !important;
  font-weight: 500;
}

/* General form styling */
.contact-form input,
.contact-form textarea,
.contact-form select {
  color: #fff !important;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  padding: 12px 16px;
  border-radius: 10px;
  width: 100%;
}

/* Placeholder color */
.contact-form ::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
  font-family: "Work Sans", sans-serif;
}

/* Label and required star */
.form-label {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 6px;
  display: block;
}

.required-star {
  color: #D13838;
  font-weight: bold;
}

/* File input */
.contact-form input[type="file"] {
  color: #fff !important;
  font-family: "Work Sans", sans-serif !important;
  font-size: 1rem !important;
  padding: 12px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
}

/* File upload button (WebKit) */
.contact-form input[type="file"]::-webkit-file-upload-button {
  font-family: "Work Sans", sans-serif !important;
  font-size: 1rem !important;
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* File upload button (Firefox) */
.contact-form input[type="file"]::file-selector-button {
  font-family: "Work Sans", sans-serif !important;
  font-size: 1rem !important;
  color: #fff !important;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  padding: 10px 16px;
  border-radius: 6px;
  cursor: pointer;
}

/* Remove hover effects from file buttons */
.contact-form input[type="file"]::-webkit-file-upload-button:hover,
.contact-form input[type="file"]::file-selector-button:hover {
  background-color: rgba(255, 255, 255, 0.2) !important;
}

select.custom-select {
  color: white;
  background-color: transparent;
}

select.custom-select option {
  color: black;
}

select.custom-select option:first-child {
  color: #000;
}

select.custom-select:invalid {
  color: white;
}

.form-control:focus {
  color: #fff !important;
}

.custom-select-wrapper {
  position: relative;
}

.custom-select-wrapper select.custom-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
  background-color: transparent;
  color: rgba(255, 255, 255, 0.6) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
}


.custom-select-wrapper::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  pointer-events: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.map {
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .wpcf7 {
    max-width: 600px;
    margin: 0 !important;
  }
}

@media (max-width: 768px) {
  .contact-us {
    padding-bottom: 0px !important;
  }

  .careers-detail {
    padding-bottom: 0px !important;
  }
}

@media (max-width: 1024px) {
  .careers-detail {
    padding-bottom: 0px !important;
  }
}

/* .cta-section {
  height: 266px;
} */
/*================================== End Contact Us Styles ===========================================*/


/*================================== Start Casestudies Styles ===========================================*/
.card-casestudy {
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  /* x-offset, y-offset, blur-radius, color */
}

.single-casestudy-hero {
  background-position: center center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  height: auto;
  min-height: auto;
  width: 100%;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-top: 3rem;
}

@media (max-width: 768px) {
  .single-casestudy-hero {
    padding-top: 0rem;
  }
}

.gallery-wrapper {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.gallery-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
}

.gallery-item.large {
  flex: 1 1 50%;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  gap: 16px;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

.gallery-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1 1 30%;
}

.gallery-column .gallery-item {
  flex: 0 0 auto;
  overflow: hidden;
}

.wysiwyg-content {
  font-family: "Work Sans", sans-serif;
}

.wysiwyg-content h2 {
  font-family: "Work Sans", sans-serif;
  font-size: 2.875rem;
  font-weight: 600;
  padding: 1rem 0rem;
}

.wysiwyg-content p {
  font-family: "Work Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}

@media (max-width: 1024px) {
  .case-study-detail {
    margin-top: 30px;
  }

  .wysiwyg-content {
    margin-top: 0;
  }

  .single-casestudy-hero {
    padding-top: 2rem;
  }
}

@media (max-width: 768px) {
  .wysiwyg-content {
    margin-top: 0px !important;
  }
}

/*================================== End Casestudies Styles ===========================================*/

/*================================== Start news Styles ===========================================*/
.news-hero-content {
  bottom: 0;
  left: 0;
  padding: 3rem;
  margin-left: 3rem;
}

.news-hero {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  color: white;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 435px;
}

/* .news-hero {
  min-height: 300px;
} */
.blog-heading {
  line-height: 1.3;
}

@media (max-width: 576px) {
  .news-hero {
    min-height: 120px;
    padding-top: 30px;
  }

  .blog-heading {
    font-size: 2rem;
    justify-content: center;
  }

  .news-hero-content {
    position: static;
    /* optional: reset position if bottom/left was relative/absolute */
    padding: 1rem;
    font-size: 1rem;

    /* Remove specific styles for small screens */
    bottom: auto;
    left: auto;
    margin-left: 0;
  }
}


.news-gallery {
  height: 400px;
  border-radius: 10px;
}

/*================================== End news Styles ===========================================*/

/*============================== Start Careers Styles========================== */
@media (max-width: 1024px) {
  .careers-tab {
    padding-top: 4rem;
  }
}

.careers-card p {
  margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  .careers-bg {
    padding-top: 3rem;
    padding-bottom: 0 !important;
  }
}

@media (max-width: 1024px) {
  .careers-bg {
    padding-top: 3rem;
    padding-bottom: 0 !important;
  }
}

.careers-card {
  background: transparent;
  border-radius: 10px;
  height: 130px !important;
}

@media (max-width: 767px) {
  .careers-card {
    height: auto !important;
  }
}

.careers-card:hover {
  background: rgba(217, 217, 217, 0.3);
  /* 30% opacity */
  border-radius: 10px;
}

.careers-detail {
  background-position: center center;
  background-size: cover, cover;
  background-repeat: no-repeat, no-repeat;
  height: auto;
  min-height: 820px;
  width: 100%;
}

.wpcf7 input[type="file"] {
  color: rgba(255, 255, 255, 0.6);
  background-color: #6A6A6A;
  border: 1px solid #6A6A6A;
  border-radius: 6px;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
}

.wpcf7 input[type="file"]::file-selector-button {
  background-color: #6A6A6A;
  color: rgba(255, 255, 255, 0.6);
  border: none;
  padding: 5px 16px;
  margin-left: 1px;
  margin-top: 1px;
  margin-bottom: 1px;
  border-radius: 4px;
}

.wpcf7 input[type="file"]::file-selector-button :hover {
  background-color: #6A6A6A !important;
  color: rgba(255, 255, 255, 0.6) !important;
  border: none;
  padding: 5px 16px;
  margin-left: 1px;
  margin-top: 1px;
  margin-bottom: 1px;
  border-radius: 4px;

}


/*============================== End Careers Styles========================== */


/*================================== Start Menu Styles================================ */
.ubermenu .ubermenu-item-layout-image_left>.ubermenu-image {
  display: inline-block !important;
  max-width: 100% !important;
  height: auto !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.description-menu {
  font-family: "Work Sans", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #fff;
  position: absolute;
  background: transparent;
  z-index: 10;
  /* margin-bottom: 15px; */
  line-height: 1.5;
}

.ubermenu .ubermenu-submenu-type-stack>.ubermenu-item.ubermenu-column-auto {
  width: 100%;
  display: block;
  float: none;
  min-width: 0;
  /* margin: 20px 0px; */
}


.ubermenu-item {
  box-sizing: border-box !important;
}

.ubermenu .ubermenu-submenu-type-stack>.ubermenu-item-normal>.ubermenu-target {
  background: #191919;
  border-radius: 10px;
  /* height: 90px !important; */
  display: flex !important;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 30px !important;
  gap: 5px;
  text-align: left;
}

.ubermenu-submenu-type-stack {
  display: flex;
  flex-wrap: wrap;
  /* gap: 10px; */
}

.ubermenu-submenu-type-stack>.ubermenu-item-normal {
  flex: 1 1 auto;
  /* margin-bottom: 10px; */
}

.ubermenu .ubermenu-target img {
  max-height: 60px;
  display: block;
  object-fit: contain;
  margin: 0;
}

.ubermenu .ubermenu-target-title {
  display: flex;
  align-items: center;
  line-height: 1.2;
  font-size: 1.125rem;
  color: #fff;
  height: 100%;
}


@media screen and (max-width: 1024px) {

  .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-column,
  .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-column-auto {
    min-width: 100%;
    text-align: left;
  }

  .ubermenu-responsive-default .ubermenu-column * {
    text-align: left !important;
  }

  .ubermenu-target-title {
    font-size: 16px;
  }

  .ubermenu-image {
    width: 40px;
    height: auto;
  }

  .ubermenu .ubermenu-item-type-column>.ubermenu-submenu-type-stack>.ubermenu-item-normal:first-child {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }

  .ubermenu-skin-minimal.ubermenu-horizontal .ubermenu-item-level-0>.ubermenu-submenu-drop {
    border-top: 1px solid #000000;
    padding: 0px 10px;
    background: #121212;
    overflow-y: auto !important;
    max-height: 500px !important;
  }
}

@media (max-width: 768px) {
  .ubermenu-skin-minimal.ubermenu-horizontal .ubermenu-item-level-0>.ubermenu-submenu-drop {
    border-top: 1px solid #000000;
    padding: 0px 10px !important;
    background: #121212;
    display: block !important;
    max-height: 600px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    /* Prevent horizontal scroll */
    /* position: relative; */
  }
}

@media (max-width: 1024px) {
  .ubermenu-skin-minimal.ubermenu-horizontal .ubermenu-item-level-0>.ubermenu-submenu-drop {
    border-top: 1px solid #000000;
    padding: 0px 10px !important;
    background: #121212;
    display: block !important;
    max-height: 600px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    /* Prevent horizontal scroll */
    /* position: relative; */
  }
}

/* @media (max-width: 991.98px) {
  .ubermenu-target.ubermenu-item-layout-default.ubermenu-item-layout-text_only {
    height: 93px !important;
  }
} */


.ubermenu .ubermenu-nav .ubermenu-column-1-3 {
  width: 29.33%;
  padding: 20px 15px;
  box-sizing: border-box;
}

.ubermenu-skin-minimal.ubermenu-horizontal .ubermenu-item-level-0>.ubermenu-submenu-drop {
  border-top: 1px solid #000000;
  background: #121212;
  display: flex;
  flex-direction: row;
  justify-content: center;
}


.ubermenu .ubermenu-item-type-column>.ubermenu-submenu-type-stack>.ubermenu-item-normal:first-child {
  margin-top: 25px;
  margin-bottom: 25px;
  /* padding-top: 10px;
    padding-bottom: 10px; */
}
.ubermenu .ubermenu-item-type-column > .ubermenu-submenu-type-stack > .ubermenu-item-normal:nth-child(3),
.ubermenu .ubermenu-item-type-column > .ubermenu-submenu-type-stack > .ubermenu-item-normal:nth-child(3):hover,
.ubermenu .ubermenu-item-type-column > .ubermenu-submenu-type-stack > .ubermenu-item-normal:nth-child(3):focus,
.ubermenu .ubermenu-item-type-column > .ubermenu-submenu-type-stack > .ubermenu-item-normal:nth-child(3):active {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}
.ubermenu .ubermenu-submenu-type-stack>.ubermenu-item-normal>.ubermenu-target {
  padding-top: 15px;
  padding-bottom: 15px;
  min-height: 100px !important;
}

.ubermenu .ubermenu-submenu-type-stack>.ubermenu-item-normal>.ubermenu-target:hover,
.ubermenu .ubermenu-submenu-type-stack>.ubermenu-item-normal>.ubermenu-target:hover .ubermenu-target-title {
  background: #000 !important;
  color: #1778F2 !important;
}

.ubermenu-item>a.ubermenu-target {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  color: #fff !important;
  text-decoration: none !important;
}

.ubermenu-item img {
  vertical-align: middle !important;
  margin-right: 2px !important;
}

.ubermenu-item .ubermenu-target-text {
  vertical-align: middle !important;
  display: inline-block !important;
  align-items: center !important;
  display: flex !important;
}

@media screen and (max-width: 959px) {
  .ubermenu-responsive-default.ubermenu.ubermenu-responsive .ubermenu-column:nth-of-type(2n+1) {
    clear: both;
  }
}

.ubermenu.ubermenu-disable-submenu-scroll .ubermenu-item>.ubermenu-submenu.ubermenu-submenu-type-mega {
  overflow: hidden;
  margin-top: 0px !important;
}

.ubermenu .ubermenu-item-layout-image_left>.ubermenu-target-text {
  padding-left: 30px !important;
}

/*================================== End Menu Styles================================ */
.accordion {
  --bs-accordion-border-color: transperent !important;
}

.accordion-button {
  background-color: #000 !important;
  transition: background-color 0.3s ease !important;
  color: #fff !important;
  border: none !important;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border-radius: 5px 5px 0px 0px !important;

}

.accordion-button:focus {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.accordion-button {
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");

}

@media (max-width: 768px) {
  .accordion-button::after {
    margin-left: 1.5rem;
  }
}

.accordion-item {
  border: none !important;
  background-color: rgba(255, 255, 255, 0.12) !important;
  color: var(--white) !important;
  margin-bottom: 10px;
  border: none !important;
  border-radius: 5px !important;
}

.accordion-body {
  background-color: rgba(255, 255, 255, 0.12) !important;
  border: none !important;
  border-radius: 0px 0px 5px 5px !important;
}

.casestudy-select {
  padding: 10px 15px;
  border-radius: 10px;
  background-color: #fff;
  color: #333;
  font-size: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fff"><path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  background-color: rgba(217, 217, 217, 0.14);
}

.casestudy-select:focus {
  box-shadow: 0 0 0 2px rgba(0, 115, 170, 0.25);
  outline: none;
}

@media (prefers-color-scheme: dark) {
  .casestudy-select {
    background-color: #222;
    color: #eee;
    border-color: #444;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23fff"><path d="M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z"/></svg>');
  }
}

.transformed-content {
  text-align: left;
}

.bg-image-container {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 8px;
  overflow: hidden;
}

.bg-overlay {
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

@media (max-width: 767px) {
  .bg-image-container {
    background-size: cover !important;
    min-height: 400px !important;
  }

  .transformed-image,
  .transformed-content {
    padding: 1.5rem !important;
  }
}

.transformed-image,
.transformed-content {
  padding: 1.5rem !important;
}

.privacy-policy-bg {
  min-height: auto;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.accordion-button::after {
  margin-right: 2rem;
}