@charset "UTF-8";
/*------------------------------------ Site Wide Starts -----------------------------------*/
body.open-nav .mobile-navigation-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: all 0.3s ease;
}

/*------------------------------------- Site Wide Ends ------------------------------------*/
/*--------------------------------- Header Wrapper Starts ---------------------------------*/
/* --- 2. Main Navigation Container --- */
.navbar {
  position: absolute;
  left: 0;
  right: 0;
  top: 30px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: var(--main-container-width);
  padding: 0 30px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  z-index: 12345;
}
.navbar.scrollBack {
  position: fixed;
  z-index: 123;
  background: rgba(100, 100, 100, 0.78);
  transition: all 0.3s ease;
}
@media all and (max-width: 979px) {
  .navbar {
    padding: 20px;
  }
}
@media all and (max-width: 767px) {
  .navbar {
    top: 25px;
    /* Glassmorphism Effect */
  }
}
.navbar {
  /* --- 4. Navigation Links --- */
}
.navbar .menu {
  display: flex;
  gap: 40px;
  list-style: none;
  height: 100%;
  align-items: center;
}
@media all and (max-width: 1199px) {
  .navbar .menu {
    gap: 20px;
  }
}
@media all and (max-width: 979px) {
  .navbar .menu {
    display: none;
  }
}
@media all and (max-width: 979px) {
  .navbar .common-button {
    display: none;
  }
}
.navbar .burger-nav {
  display: none;
}
.navbar .burger-nav span {
  display: block;
  width: 30px;
  height: 3px;
  background-color: #fff;
}
.navbar .burger-nav span:not(:last-child) {
  margin-bottom: 5px;
}
@media all and (max-width: 767px) {
  .navbar .burger-nav span {
    width: 20px;
    height: 2px;
  }
}
@media all and (max-width: 979px) {
  .navbar .burger-nav {
    display: block;
  }
}
.navbar .menu-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
.navbar .menu-item:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.navbar .menu-item > a {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 36px 10px;
}
@media all and (max-width: 1600px) {
  .navbar .menu-item > a {
    padding: 22px 10px;
  }
}
.navbar .nav-link:hover {
  color: #fff;
}
.navbar {
  /* The Badge (Number 6) */
}
.navbar .badge {
  background-color: #fff;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.navbar {
  /* --- 6. The Dropdown Menu --- */
  /* Hidden by default */
}
.navbar .sub-menu {
  position: absolute;
  top: 95px;
  /* Offset from nav bar */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 620px;
  /* Glassmorphism for Dropdown */
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 30px;
  /* Visibility Transition */
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  z-index: 100;
}
@media all and (max-width: 1600px) {
  .navbar .sub-menu {
    top: 70px;
  }
}
.navbar .sub-menu::before {
  width: 12px;
  height: 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  content: "";
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: transparent transparent rgba(10, 10, 10, 0.8509803922) transparent;
}
.navbar .sub-menu .mega-left {
  border-right: 1px solid #fff;
  margin-right: 40px;
  padding-right: 20px;
  flex: 1;
}
.navbar .sub-menu .mega-left .mega-list li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 35px;
  padding: 0;
}
.navbar .sub-menu .mega-left .mega-list li a:hover {
  color: #fff;
  transition: all 0.3s ease;
}
.navbar .logo-item a {
  display: flex;
}
@media all and (max-width: 1199px) {
  .navbar .logo-item a img {
    width: 145px;
  }
}
.navbar .menu-badge {
  font-size: 14px;
  height: 25px;
  width: 25px;
  border-radius: 50px;
  background: #fff;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 5px;
}
@media all and (max-width: 1199px) {
  .navbar .menu-badge {
    margin-left: 0;
    width: 20px;
    height: 20px;
    font-size: 12px;
  }
}

.mobile-navigation-wrapper {
  position: fixed;
  z-index: 12345;
  background: #000;
  width: 100%;
  height: auto;
  padding: 30px;
  border-radius: 0 0 40px 40px;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-navigation-wrapper .menu li:not(:last-of-type) {
  margin-bottom: 20px;
}
.mobile-navigation-wrapper .menu li a {
  color: #fff;
  font-weight: 500;
  font-size: 20px;
}
.mobile-navigation-wrapper .menu li .sub-menu a {
  font-size: 16px;
}
.mobile-navigation-wrapper .menu .menu-item-has-children {
  position: relative;
}
.mobile-navigation-wrapper .menu .menu-item-has-children:after {
  content: "";
  background-image: url("../img/icons/add.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 12px;
  height: 12px;
  filter: invert(1);
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: all 0.3s ease;
}
.mobile-navigation-wrapper .menu .menu-item-has-children .sub-menu {
  height: 0;
  opacity: 0;
  overflow: hidden;
  transition: 1s 0.1s cubic-bezier(0.71, 0.26, 0.26, 0.88);
  padding-left: 10px;
  padding-top: 10px;
}
.mobile-navigation-wrapper .menu .menu-item-has-children .sub-menu li:not(:last-of-type) {
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid #2a2a2a;
}
.mobile-navigation-wrapper .menu .menu-item-has-children.active .sub-menu {
  height: auto;
  opacity: 1;
}
.mobile-navigation-wrapper .menu .menu-item-has-children.active:after {
  background-image: url("../img/icons//minus.svg");
  transition: all 0.3s ease;
}
.mobile-navigation-wrapper .common-button {
  margin-top: 20px;
}
.mobile-navigation-wrapper .common-button a {
  font-size: 18px;
  height: 56px;
}
@media (max-width: 450px) {
  .mobile-navigation-wrapper .common-button a {
    width: 100%;
  }
}

@media all and (max-width: 979px) {
  .mega-menu-wrap {
    display: none !important;
  }
}

/*--------------------------------- Header Wrapper Starts ---------------------------------*/
/*-------------------------------- Content Wrapper Starts ---------------------------------*/
#content-wrapper #home-page .banner-section {
  position: relative;
  z-index: 1;
  padding-top: 128px;
}
@media all and (max-width: 1600px) {
  #content-wrapper #home-page .banner-section {
    padding-top: 102px;
  }
}
#content-wrapper #home-page .banner-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 600px;
  background: radial-gradient(72.89% 118.85% at 50% -38.1%, rgba(90, 147, 228, 0.4) 0%, rgba(90, 147, 228, 0.4) 20.88%, rgba(1, 46, 151, 0.4) 47.25%, rgba(0, 0, 0, 0) 69.49%);
  z-index: -1;
}
@media all and (max-width: 979px) {
  #content-wrapper #home-page .banner-section {
    padding-top: 90px;
  }
}
@media all and (max-width: 979px) {
  #content-wrapper #home-page .banner-section .gap-5 {
    gap: 20px !important;
  }
}
#content-wrapper #home-page .banner-section .rating-item .star-icon {
  animation: gentleGlow 2s ease-in-out infinite alternate;
  transition: all 0.3s ease;
}
@media all and (max-width: 979px) {
  #content-wrapper #home-page .banner-section .rating-item .star-icon img {
    width: 20px;
  }
}
@keyframes gentleGlow {
  0% {
    filter: brightness(1) drop-shadow(0 0 2px rgba(255, 215, 0, 0.3));
    transform: scale(1);
  }
  100% {
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(255, 215, 0, 0.8));
    transform: scale(1.05);
  }
}
#content-wrapper #home-page .banner-section .rating-item .star-icon:nth-child(1) {
  animation-delay: 0s;
}
#content-wrapper #home-page .banner-section .rating-item .star-icon:nth-child(2) {
  animation-delay: 0.2s;
}
#content-wrapper #home-page .banner-section .rating-item .star-icon:nth-child(3) {
  animation-delay: 0.4s;
}
#content-wrapper #home-page .banner-section .rating-item .star-icon:nth-child(4) {
  animation-delay: 0.6s;
}
#content-wrapper #home-page .banner-section .rating-item .star-icon:nth-child(5) {
  animation-delay: 0.8s;
}
#content-wrapper #home-page .banner-section .person-stacked-item .person-photo {
  margin-right: -10px;
}
#content-wrapper #home-page .banner-section .person-stacked-item .person-photo img {
  width: 30px;
  height: 30px;
  border-radius: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 3px solid #fff;
}
#content-wrapper #home-page .who-we-are-section .main-title {
  max-width: 720px;
}
#content-wrapper #home-page .features-wrapper {
  gap: 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
@media all and (max-width: 767px) {
  #content-wrapper #home-page .features-wrapper {
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 16px;
  }
}
#content-wrapper #home-page .features-wrapper .feature-item {
  background-color: #f8f8f8;
  border-radius: 30px;
  padding: 42px;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
@media all and (max-width: 1199px) {
  #content-wrapper #home-page .features-wrapper .feature-item {
    padding: 28px;
    min-height: 280px;
  }
}
@media all and (max-width: 767px) {
  #content-wrapper #home-page .features-wrapper .feature-item {
    min-height: 180px;
    padding: 18px;
  }
  #content-wrapper #home-page .features-wrapper .feature-item h5 {
    font-size: 16px;
  }
}
#content-wrapper #home-page .features-wrapper .feature-item:hover {
  background-color: #e7e7e7;
  transition: all 0.3s ease;
  transform: scale(1.02);
}
#content-wrapper #home-page .features-wrapper .feature-item .feature-icon {
  width: 60px;
  height: 60px;
}
@media all and (max-width: 1499px) {
  #content-wrapper #home-page .features-wrapper .feature-item .feature-icon {
    width: 45px;
    height: 45px;
  }
}
@media all and (max-width: 767px) {
  #content-wrapper #home-page .features-wrapper .feature-item .feature-icon {
    width: 35px;
    height: 35px;
  }
}
#content-wrapper #home-page .features-wrapper .feature-item .feature-icon img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
#content-wrapper #home-page .partner-section {
  position: relative;
  overflow: hidden;
}
#content-wrapper #home-page .partner-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
#content-wrapper #home-page .partner-section .custom-container {
  position: relative;
  z-index: 2;
}
#content-wrapper #home-page .partner-section .partner-content-wrapper {
  margin: 0 auto;
  max-width: 1464px;
}
#content-wrapper #home-page .partner-section .partner-wrapper {
  border-radius: 50px;
  padding: 80px 60px 74px;
  position: relative;
  overflow: hidden;
}
#content-wrapper #home-page .partner-section .partner-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.02) 100%);
  pointer-events: none;
  z-index: -1;
}
#content-wrapper #home-page .partner-section .partner-wrapper::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg at 50% 50%, transparent 0deg, rgba(255, 255, 255, 0.03) 45deg, transparent 90deg, rgba(255, 255, 255, 0.03) 135deg, transparent 180deg);
  pointer-events: none;
  z-index: -1;
}
#content-wrapper #home-page .partner-section .header-content {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
  gap: 60px;
}
#content-wrapper #home-page .partner-section .content-left {
  flex: 1;
  max-width: 500px;
}
#content-wrapper #home-page .partner-section .content-right {
  flex: 1;
  max-width: 450px;
}
#content-wrapper #home-page .partner-section .section-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  text-transform: lowercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
}
#content-wrapper #home-page .partner-section .section-label::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 30px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), transparent);
}
#content-wrapper #home-page .partner-section .main-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  #content-wrapper #home-page .partner-section .main-title br {
    display: none;
  }
}
#content-wrapper #home-page .partner-section .description-text p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-weight: 300;
}
#content-wrapper #home-page .partner-section .partners-grid-container {
  position: relative;
}
#content-wrapper #home-page .partner-section .partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
#content-wrapper #home-page .partner-section .partner-card {
  position: relative;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#content-wrapper #home-page .partner-section .partner-card:hover {
  transform: translateY(-12px) scale(1.02);
}
#content-wrapper #home-page .partner-section .partner-card:hover .card-inner {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.1);
}
#content-wrapper #home-page .partner-section .partner-card:hover .card-overlay {
  opacity: 1;
}
#content-wrapper #home-page .partner-section .partner-card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1) contrast(1.1);
}
#content-wrapper #home-page .partner-section .card-inner {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px 30px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#content-wrapper #home-page .partner-section .card-inner img {
  max-width: 140px;
  max-height: 60px;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: brightness(0.9) contrast(1.1);
}
#content-wrapper #home-page .partner-section .card-overlay {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: all 0.6s ease;
  pointer-events: none;
}
#content-wrapper #home-page .partner-section .partner-card:hover .card-overlay {
  left: 100%;
  opacity: 1;
}
@media all and (max-width: 767px) {
  #content-wrapper #home-page .masonry-grid .masonry-grid-item {
    width: 100%;
    padding: 0;
  }
  #content-wrapper #home-page .masonry-grid .masonry-grid-item:nth-child(n+4) {
    display: none;
  }
  #content-wrapper #home-page .masonry-grid .masonry-grid-item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
@media (max-width: 1200px) {
  #content-wrapper #home-page .partner-section .partner-wrapper {
    padding: 60px 40px 80px;
  }
  #content-wrapper #home-page .partner-section .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #content-wrapper #home-page .partner-section .header-content {
    gap: 40px;
  }
}
@media (max-width: 968px) {
  #content-wrapper #home-page .partner-section .partner-wrapper {
    border-radius: 40px;
    padding: 50px 30px 60px;
  }
  #content-wrapper #home-page .partner-section .header-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
  }
  #content-wrapper #home-page .partner-section .partners-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  #content-wrapper #home-page .partner-section .card-inner {
    padding: 40px 25px;
    height: 140px;
  }
  #content-wrapper #home-page .partner-section .card-inner img {
    max-width: 120px;
  }
}
@media (max-width: 640px) {
  #content-wrapper #home-page .partner-section .partner-wrapper {
    border-radius: 30px;
    padding: 40px 20px 50px;
  }
  #content-wrapper #home-page .partner-section .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 5px;
  }
  #content-wrapper #home-page .partner-section .card-inner {
    padding: 20px;
    height: 100%;
    border-radius: 10px;
  }
  #content-wrapper #home-page .partner-section .card-inner img {
    max-width: 100%;
    max-height: 22px;
  }
  #content-wrapper #home-page .partner-section .main-title {
    font-size: 2.2rem;
  }
  #content-wrapper #home-page .partner-section .description-text p {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  #content-wrapper #home-page .partner-section .partner-wrapper::after {
    animation: none;
  }
  #content-wrapper #home-page .partner-section .partner-card {
    transition: none;
  }
  #content-wrapper #home-page .partner-section .card-overlay {
    display: none;
  }
}
@media all and (max-width: 767px) {
  #content-wrapper #home-page .why-work-section .flex.pt-5 {
    padding-top: 0px !important;
  }
}
#content-wrapper #about-us-page .about-content-section .text-container {
  max-width: 647px;
}
#content-wrapper #about-us-page .about-cartmade-section .main-title {
  max-width: 555px;
}
#content-wrapper #about-us-page .team-section {
  background-color: #FDFDFD;
}
#content-wrapper #about-us-page .team-section .team-row {
  display: grid;
  gap: 32px;
}
#content-wrapper #about-us-page .team-section .team-row.row-of-3 {
  grid-template-columns: repeat(4, 1fr);
}
#content-wrapper #about-us-page .team-section .team-row.row-of-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 991px) {
  #content-wrapper #about-us-page .team-section .team-row {
    gap: 20px;
  }
}
#content-wrapper #about-us-page .team-section .team-card .member-img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
#content-wrapper #about-us-page .team-section .team-card .member-img-wrapper:after {
  content: "";
  position: absolute;
  background: linear-gradient(180deg, rgba(28, 28, 28, 0) 55.87%, #51514F 85%);
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 100%;
}
#content-wrapper #about-us-page .team-section .team-card .member-img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
#content-wrapper #about-us-page .team-section .team-card .member-img-wrapper:hover img {
  transform: scale(1.08);
}
#content-wrapper #about-us-page .team-section .team-card .member-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 30px 35px 35px;
  z-index: 2;
}
#content-wrapper #about-us-page .team-section .team-card .member-info-overlay .member-name {
  font-weight: 700;
  font-size: 24.6px;
  line-height: 32px;
  letter-spacing: -0.13px;
  color: #F8F8F8;
}
#content-wrapper #about-us-page .team-section .team-card .member-info-overlay .member-designation {
  font-weight: 400;
  font-size: 16.4px;
  line-height: 23px;
  letter-spacing: -0.173px;
  color: #C5C5C5;
}
@media (max-width: 991px) {
  #content-wrapper #about-us-page .team-section .team-card .member-info-overlay {
    padding: 25px 15px 15px;
  }
  #content-wrapper #about-us-page .team-section .team-card .member-info-overlay .member-name {
    font-size: 18px;
    line-height: 24px;
  }
  #content-wrapper #about-us-page .team-section .team-card .member-info-overlay .member-designation {
    font-size: 14px;
    line-height: 21px;
  }
}
@media (max-width: 991px) {
  #content-wrapper #about-us-page .mt-4 {
    margin-top: 20px !important;
  }
  #content-wrapper #about-us-page .team-section .team-row.row-of-3,
  #content-wrapper #about-us-page .team-section .team-row.row-of-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 340px) {
  #content-wrapper #about-us-page .team-section .team-row.row-of-3,
  #content-wrapper #about-us-page .team-section .team-row.row-of-4 {
    grid-template-columns: 1fr;
  }
}
#content-wrapper #collection-list-page .portfolio-content-section {
  padding-top: 130px;
  position: relative;
  background: radial-gradient(72.89% 118.85% at 50% -38.1%, rgba(90, 147, 228, 0.4) 0%, rgba(90, 147, 228, 0.4) 20.88%, rgba(1, 46, 151, 0.4) 47.25%, rgba(0, 0, 0, 0) 69.49%);
}
#content-wrapper #collection-list-page .portfolio-content-section:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 1200px;
  z-index: -1;
  background: radial-gradient(97.29% 148.35% at 50% -42.52%, #000000 49.07%, #04185F 68.8%, #06319C 76.2%, #0C4ACC 78.85%, #4585E0 87.26%, #f8f8f8 93.92%);
}
@media (max-width: 767px) {
  #content-wrapper #collection-list-page .portfolio-content-section {
    padding-top: 80px;
  }
}
#content-wrapper #collection-list-page .portfolio-content-section .text-container {
  max-width: 720px;
}
@media (max-width: 1199px) {
  #content-wrapper #collection-list-page .portfolio-content-section .text-container {
    max-width: 600px;
  }
}
#content-wrapper #collection-list-page .portfolio-collection-list {
  background: #F8F3EF;
  border-radius: 32px 32px 0 0;
}
#content-wrapper #collection-list-page {
  /* Make the button look 'disabled' when it reaches the end */
}
#content-wrapper #collection-list-page #load-more-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
#content-wrapper #collection-list-page {
  /* Optional: Add a smooth fade for the new masonry items */
}
#content-wrapper #collection-list-page .masonry-grid-item {
  box-sizing: border-box !important;
  animation: fadeInUp 0.6s ease forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#content-wrapper #collection-list-page {
  /* Disable transitions while the grid is being rearranged */
}
#content-wrapper #collection-list-page .masonry-grid.resizing .masonry-grid-item {
  transition: none !important;
}
#content-wrapper #projectDetailPage .project-title-section {
  position: relative;
  background: radial-gradient(72.89% 118.85% at 50% -38.1%, rgba(90, 147, 228, 0.4) 0%, rgba(90, 147, 228, 0.4) 20.88%, rgba(1, 46, 151, 0.4) 47.25%, rgba(0, 0, 0, 0) 69.49%);
}
#content-wrapper #projectDetailPage .project-title-section:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 1200px;
  z-index: -1;
  background: radial-gradient(97.29% 148.35% at 50% -42.52%, #000000 49.07%, #04185F 68.8%, #06319C 76.2%, #0C4ACC 78.85%, #4585E0 87.26%, #ffffff 93.92%);
}
@media (max-width: 1399px) {
  #content-wrapper #projectDetailPage .project-title-section:after {
    min-height: 800px;
  }
}
@media (max-width: 767px) {
  #content-wrapper #projectDetailPage .project-title-section:after {
    background: radial-gradient(160.29% 144.35% at 50% -54.52%, #000000 49.07%, #04185F 68.8%, #06319C 76.2%, #0C4ACC 78.85%, #4585E0 87.26%, #ffffff 93.92%);
  }
}
@media (max-width: 767px) {
  #content-wrapper #projectDetailPage .project-specs .text-20 {
    font-size: 16px;
  }
}
#content-wrapper #projectDetailPage .project-specs .project-specs-title,
#content-wrapper #projectDetailPage .project-specs span {
  line-height: 35px;
}
@media (max-width: 989px) {
  #content-wrapper #projectDetailPage .project-specs .project-specs-title,
  #content-wrapper #projectDetailPage .project-specs span {
    line-height: normal;
  }
}
@media (max-width: 1399px) {
  #content-wrapper #projectDetailPage .image-banner-section .custom-container {
    padding-top: 30px;
  }
}
#content-wrapper #projectDetailPage .project-description-section .desc-content {
  max-width: 1336px;
  margin: 0 auto;
}
#content-wrapper #projectDetailPage .project-description-section .project-image-grid .grid-item {
  width: calc(33.33% - 1rem);
  max-width: 450px;
}
@media (max-width: 551px) {
  #content-wrapper #projectDetailPage .project-description-section .project-image-grid .grid-item {
    width: 100%;
  }
}
#content-wrapper #projectDetailPage .project-challenge-section .core-focus-block {
  padding-top: 60px;
}
@media (max-width: 1199px) {
  #content-wrapper #projectDetailPage .project-challenge-section .core-focus-block {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  #content-wrapper #projectDetailPage .project-challenge-section .core-focus-block {
    padding-top: 30px;
  }
}
#content-wrapper #projectDetailPage .project-challenge-section .core-focus-block .focus-static-title {
  max-width: 394px;
  width: 100%;
}
#content-wrapper #projectDetailPage .project-challenge-section .core-focus-block .focus-grid {
  gap: 30px;
}
#content-wrapper #projectDetailPage .project-challenge-section .core-focus-block .focus-grid .focus-item {
  width: calc(50% - 15px);
  background: #fff;
  border-radius: 32px;
  padding: 18px;
}
@media (min-width: 768px) {
  #content-wrapper #projectDetailPage .project-challenge-section .core-focus-block .focus-grid .focus-item:hover {
    background-color: #e3e3e3;
    transition: all 0.3s ease;
    transform: scale(1.02);
    cursor: pointer;
  }
}
@media (max-width: 767px) {
  #content-wrapper #projectDetailPage .project-challenge-section .core-focus-block .focus-grid .focus-item {
    width: 100%;
  }
}
@media (max-width: 767px) {
  #content-wrapper #projectDetailPage .project-result-section .result-list-container {
    flex-wrap: wrap;
  }
}
#content-wrapper #projectDetailPage .project-result-section .result-grid .result-item:not(:last-child) {
  margin-bottom: 0.25rem;
}
@media (max-width: 1199px) {
  #content-wrapper #projectDetailPage .project-result-section .result-grid {
    max-width: 70%;
  }
  #content-wrapper #projectDetailPage .project-result-section .result-grid .text-24 {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  #content-wrapper #projectDetailPage .project-result-section .result-grid {
    max-width: 100%;
  }
}

.faq-section .main-title {
  max-width: 450px;
}
.faq-section .custom-accordion .accordion-item .accordion-body {
  padding-left: 0;
  font-weight: 500;
  font-size: 20px;
  line-height: 31px;
  color: #1e1e1e;
  opacity: 0.4;
  letter-spacing: 0;
}
@media (max-width: 767px) {
  .faq-section .custom-accordion .accordion-item .accordion-body {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
  }
}
.faq-section .custom-accordion .accordion-item:last-child {
  border: 0;
}

.contact-section .contact-detail-inner .single-contact-item:not(:last-of-type) {
  margin-bottom: 35px;
  border-bottom: 1px solid #d9d9d9;
  display: inline-block;
  padding-bottom: 35px;
}
.contact-section .contact-info {
  opacity: 0.6;
}
@media (max-width: 767px) {
  .contact-section .contact-icon {
    width: 25px;
    height: auto;
  }
  .contact-section .contact-icon img {
    width: 100%;
    display: block;
  }
}

/*--------------------------------- Content Wrapper Ends ----------------------------------*/
.common-image-slider .swiper:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 250px;
  height: 100%;
  background: linear-gradient(89.26deg, #ffffff 20.8%, rgba(255, 255, 255, 0) 97.62%);
  z-index: 2;
}
@media all and (max-width: 979px) {
  .common-image-slider .swiper:before {
    width: 170px;
  }
}
@media all and (max-width: 767px) {
  .common-image-slider .swiper:before {
    width: 40px;
  }
}
.common-image-slider .swiper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 250px;
  height: 100%;
  background: linear-gradient(270deg, #ffffff 20%, rgba(255, 255, 255, 0) 97.62%);
  z-index: 1;
}
@media all and (max-width: 979px) {
  .common-image-slider .swiper::after {
    width: 170px;
  }
}
@media all and (max-width: 767px) {
  .common-image-slider .swiper::after {
    width: 80px;
  }
}
.common-image-slider .swiper .swiper-wrapper .swiper-slide {
  height: auto;
}
.common-image-slider .swiper .swiper-wrapper .swiper-slide .image-item {
  height: 100%;
}
.common-image-slider .swiper .swiper-wrapper .swiper-slide .image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}

.clients-marquee-wrapper {
  width: 100%;
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
}
@media (max-width: 979px) {
  .clients-marquee-wrapper {
    box-shadow: none;
  }
}
.clients-marquee-wrapper .clients-marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .clients-marquee-wrapper .clients-marquee {
    margin-bottom: 1rem;
  }
}
.clients-marquee-wrapper .clients-marquee:hover .clients-inner {
  animation-play-state: paused;
}
.clients-marquee-wrapper .clients-marquee:last-child {
  margin-bottom: 0;
}
.clients-marquee-wrapper .clients-marquee .clients-inner {
  display: inline-block;
  animation: marquee-left 60s linear infinite;
  white-space: nowrap;
}
.clients-marquee-wrapper .clients-marquee .clients-inner .clients-item {
  display: inline-block;
  padding: 0 2.5rem;
  vertical-align: middle;
}
@media all and (max-width: 979px) {
  .clients-marquee-wrapper .clients-marquee .clients-inner .clients-item {
    padding: 0 1.5rem;
  }
}
@media all and (max-width: 767px) {
  .clients-marquee-wrapper .clients-marquee .clients-inner .clients-item {
    padding: 0 0.5rem;
  }
}
.clients-marquee-wrapper .clients-marquee .clients-inner .clients-item img {
  height: 70px;
  width: auto;
  max-width: 150px;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%) opacity(0.6) brightness(1.2);
  transition: all 0.4s ease;
}
@media all and (max-width: 979px) {
  .clients-marquee-wrapper .clients-marquee .clients-inner .clients-item img {
    height: 50px;
    max-width: 120px;
  }
}
@media all and (max-width: 767px) {
  .clients-marquee-wrapper .clients-marquee .clients-inner .clients-item img {
    max-width: 75px;
    filter: none;
  }
}
.clients-marquee-wrapper .clients-marquee .clients-inner .clients-item img:hover {
  filter: grayscale(0%) opacity(1) brightness(1);
}
.clients-marquee-wrapper .clients-marquee.opposite .clients-inner {
  animation: marquee-right 60s linear infinite;
}
.clients-marquee-wrapper .clients-marquee.opposite .clients-inner:hover {
  animation-play-state: paused;
}

/* animation */
/* Optimized Base State */
.fade-reveal {
  opacity: 0;
  transform: translateY(30px);
  /* We use var(--delay, 0s) 
       If --delay is not defined in HTML, it defaults to 0s
    */
  transition: opacity 1.2s cubic-bezier(0.2, 1, 0.3, 1) var(--delay, 0s), transform 1.2s cubic-bezier(0.2, 1, 0.3, 1) var(--delay, 0s);
  will-change: opacity, transform;
}

.fade-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Optional: Speed Classes for quick variation */
.fade-fast {
  transition-duration: 0.6s !important;
}

.fade-slow {
  transition-duration: 2s !important;
}

/* Responsive design */
@media (max-width: 768px) {
  .clients-marquee-wrapper {
    padding: 1rem 0;
  }
  .clients-marquee {
    margin-bottom: 2rem;
  }
  .clients-item {
    padding: 0 1.5rem;
  }
  .clients-item img {
    height: 50px;
    max-width: 120px;
  }
  /* Faster animations on mobile */
  .clients-inner {
    animation-duration: 20s;
  }
  .clients-marquee.opposite .clients-inner {
    animation-duration: 25s;
  }
}
@media (max-width: 480px) {
  .clients-item {
    padding: 0 1rem;
  }
  .clients-item img {
    height: 40px;
    max-width: 100px;
  }
}
/* Custom Accordion Styles */
.custom-accordion {
  border: none;
}
.custom-accordion .accordion-item {
  background: transparent;
  border: none;
  border-bottom: 3px solid #e9ecef;
  margin-bottom: 0;
}
.custom-accordion .accordion-item .accordion-header {
  margin-bottom: 0;
}
.custom-accordion .accordion-item .accordion-header .accordion-button {
  background: transparent;
  border: none;
  padding: 1.5rem 0;
  font-size: 1.3rem;
}
@media all and (max-width: 1600px) {
  .custom-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 1.1rem;
  }
}
@media all and (max-width: 1199px) {
  .custom-accordion .accordion-item .accordion-header .accordion-button {
    font-size: 0.9rem;
  }
}
@media all and (max-width: 767px) {
  .custom-accordion .accordion-item .accordion-header .accordion-button {
    padding: 1rem 0;
    font-size: 0.8rem;
  }
}
.custom-accordion .accordion-item .accordion-header .accordion-button {
  color: #495057;
  display: flex;
  align-items: center;
  box-shadow: none;
  transition: all 0.3s ease;
}
.custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
  background: transparent;
  color: #212529;
  box-shadow: none;
}
.custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .accordion-icon {
  color: #212529;
}
.custom-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .accordion-toggle-icon {
  color: #212529;
  transform: rotate(45deg);
}
.custom-accordion .accordion-item .accordion-header .accordion-button:focus {
  box-shadow: none;
  border: none;
}
.custom-accordion .accordion-item .accordion-header .accordion-button::after {
  display: none;
}
.custom-accordion .accordion-item .accordion-header .accordion-button:hover {
  background: transparent;
  color: #212529;
}
.custom-accordion .accordion-item .accordion-header .accordion-button:hover .accordion-icon,
.custom-accordion .accordion-item .accordion-header .accordion-button:hover .accordion-toggle-icon {
  color: #212529;
}
.custom-accordion .accordion-item .accordion-header .accordion-button .accordion-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  color: #6c757d;
  font-size: 1rem;
}
@media all and (max-width: 1399px) {
  .custom-accordion .accordion-item .accordion-header .accordion-button .accordion-icon {
    width: 30px;
    height: 30px;
  }
}
@media all and (max-width: 767px) {
  .custom-accordion .accordion-item .accordion-header .accordion-button .accordion-icon {
    width: 20px;
    height: 20px;
  }
}
.custom-accordion .accordion-item .accordion-header .accordion-button .accordion-icon img {
  width: 100%;
  height: 100%;
}
.custom-accordion .accordion-item .accordion-body {
  padding: 0 0 2rem 65px;
  line-height: 1.6;
  border: none;
}
@media all and (max-width: 767px) {
  .custom-accordion .accordion-item .accordion-body {
    padding: 0 0 1rem 45px;
  }
}
@media (min-width: 980px) {
  .custom-accordion .accordion-item:last-child {
    border-bottom: none;
  }
}
@media (max-width: 979px) {
  .custom-accordion .accordion-item:last-child {
    border-radius: 0;
  }
}
.custom-accordion .accordion-item.active .accordion-button {
  color: #212529;
}
.custom-accordion .accordion-item.active .accordion-icon {
  color: #212529;
}
.custom-accordion .accordion-item.active .accordion-toggle-icon {
  color: #212529;
  transform: rotate(45deg);
}
.custom-accordion .accordion-collapse {
  border: none;
}

/* Accordion Icon Styles */
.accordion-title {
  flex: 1;
  text-align: left;
}

.accordion-toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 1rem;
  transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 991px) {
  .expertise-content {
    padding-right: 0;
    text-align: center;
    margin-bottom: 3rem;
  }
  .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.75rem;
  }
  .custom-accordion .accordion-button {
    padding: 1.5rem 0;
    font-size: 1rem;
  }
  .custom-accordion .accordion-body {
    padding: 0 0 1.5rem 40px;
    font-size: 16px;
  }
}
/*--------------------------------- Footer Wrapper Starts ---------------------------------*/
#footer-wrapper {
  background-color: #0f0f0f;
}
#footer-wrapper .footer-content:not(:first-of-type) {
  padding-left: 60px;
}
@media all and (max-width: 1399px) {
  #footer-wrapper .footer-content:not(:first-of-type) {
    flex: 1;
  }
}
#footer-wrapper .footer-content:last-child {
  max-width: 588px;
}
@media all and (max-width: 979px) {
  #footer-wrapper .footer-content {
    flex: unset !important;
    width: 100%;
    padding-left: 0 !important;
  }
  #footer-wrapper .footer-content:not(:last-of-type) {
    padding-bottom: 30px;
  }
  #footer-wrapper .footer-content .flex {
    flex-wrap: wrap;
  }
  #footer-wrapper .footer-content .flex .office-section {
    width: 100%;
    padding-right: 0 !important;
  }
  #footer-wrapper .footer-content .flex .office-section:not(:last-of-type) {
    padding-bottom: 30px;
  }
  #footer-wrapper .footer-content .flex .office-section .small-title {
    padding-bottom: 12px;
  }
}
@media (max-width: 767px) {
  #footer-wrapper .footer-content .footer-left {
    display: flex;
    flex-direction: column-reverse;
  }
  #footer-wrapper .footer-content .footer-left .footer-description {
    padding-bottom: 0 I !important;
  }
  #footer-wrapper .footer-content .footer-left .common-button {
    padding-top: 17px;
  }
}
#footer-wrapper .footer-content .office-section:not(:last-of-type) {
  padding-right: 40px;
}
#footer-wrapper .footer-content .office-section .name-item {
  padding-bottom: 18px;
  color: #c7c7c7;
  max-width: 290px;
}
#footer-wrapper .footer-content .office-section .name-item.reg-vat {
  border-top: 1px solid #2a2a2a;
  padding-bottom: 0;
  padding-top: 0.4rem;
}
#footer-wrapper .footer-content .office-section .name-item.reg-vat p:not(:last-child) {
  margin-bottom: 0.2rem;
}
@media all and (max-width: 979px) {
  #footer-wrapper .footer-content .office-section .name-item {
    padding-bottom: 12px;
  }
}
#footer-wrapper .footer-content .office-section ul li {
  padding-bottom: 10px;
  color: #c7c7c7;
}
#footer-wrapper .footer-content .office-section ul li a {
  color: #c7c7c7;
}
#footer-wrapper .footer-content .office-section .small-title {
  font-size: 24px;
}
#footer-wrapper .footer-content .nav-section {
  display: flex;
  flex-direction: column;
}
#footer-wrapper .footer-content .nav-section .nav-links li {
  margin-bottom: 20px;
}
@media all and (max-width: 1499px) {
  #footer-wrapper .footer-content .nav-section .nav-links li {
    margin-bottom: 10px;
  }
}
#footer-wrapper .footer-content .nav-section .nav-links li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 28px;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #2a2a2a;
  transition: color 0.3s ease;
}
@media all and (max-width: 1499px) {
  #footer-wrapper .footer-content .nav-section .nav-links li a {
    font-size: 22px;
  }
}
@media all and (max-width: 767px) {
  #footer-wrapper .footer-content .nav-section .nav-links li a {
    font-size: 18px;
  }
}
#footer-wrapper .footer-content .nav-section .nav-links li a:after {
  content: "↗";
  font-size: 24px;
  opacity: 0.8;
}
#footer-wrapper .footer-content .footer-description {
  line-height: 25px;
}
#footer-wrapper .footer-bottom {
  padding-top: 10px;
  margin-top: 40px;
  border-top: 1px solid #2a2a2a;
}
@media all and (max-width: 979px) {
  #footer-wrapper .footer-bottom {
    margin-top: 0;
    border: 0;
  }
}
#footer-wrapper .footer-bottom .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
}
#footer-wrapper .footer-bottom .footer-links {
  display: flex;
  gap: 20px;
}
#footer-wrapper .footer-bottom .footer-links a {
  font-size: 14px;
  color: #c7c7c7;
  font-weight: 400;
  text-decoration: underline;
}
#footer-wrapper .footer-bottom .social-links {
  display: flex;
  gap: 40px;
}
#footer-wrapper .footer-bottom .social-links a {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
}
@media all and (max-width: 979px) {
  #footer-wrapper .footer-bottom .flex {
    flex-wrap: wrap;
  }
  #footer-wrapper .footer-bottom .flex .logo {
    width: 100%;
    order: 2;
    border-top: 2px solid #2a2a2a;
    padding: 20px 0;
    margin-top: 20px;
  }
  #footer-wrapper .footer-bottom .flex .footer-links {
    width: 100%;
    padding-top: 10px;
    order: 3;
  }
  #footer-wrapper .footer-bottom .flex .social-links {
    width: 100%;
    order: 1;
  }
}

/*---------------------------------- Footer Wrapper Ends ----------------------------------*/
/*----------------------------------- Components Starts -----------------------------------*/
.background-after-gradient {
  padding-top: 130px;
  position: relative;
  background: radial-gradient(72.89% 118.85% at 50% -38.1%, rgba(90, 147, 228, 0.4) 0%, rgba(90, 147, 228, 0.4) 20.88%, rgba(1, 46, 151, 0.4) 47.25%, rgba(0, 0, 0, 0) 69.49%);
}
.background-after-gradient:after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  min-height: 1200px;
  z-index: -1;
  background: radial-gradient(97.29% 148.35% at 50% -42.52%, #000000 49.07%, #04185F 68.8%, #06319C 76.2%, #0C4ACC 78.85%, #4585E0 87.26%, #f8f8f8 93.92%);
}
@media (max-width: 767px) {
  .background-after-gradient {
    padding-top: 80px;
  }
}

.masonry-grid {
  width: auto !important;
  /* Use auto to let the negative margins expand the container */
  margin-left: -20px;
  margin-right: -20px;
  display: block;
  transition: height 0.4s ease;
  /* Ensure no flexbox conflicts */
}
@media all and (max-width: 767px) {
  .masonry-grid {
    margin: 0px;
  }
}
.masonry-grid .masonry-grid-item {
  padding: 20px;
  /* This creates the gap */
  box-sizing: border-box;
  float: left;
}
.masonry-grid {
  /* Disable transitions only WHILE dragging the window to prevent lag */
}
.masonry-grid .is-resizing .masonry-grid-item {
  transition: none !important;
}
.masonry-grid .masonry-grid-item {
  width: 33.3333%;
}
@media all and (max-width: 979px) {
  .masonry-grid .masonry-grid-item {
    width: 50%;
  }
}
@media all and (max-width: 767px) {
  .masonry-grid .masonry-grid-item {
    width: 100% !important;
    padding: 10px 0;
    position: relative !important;
    /* Helps override stale absolute positioning */
    top: auto !important;
    left: 0 !important;
    /* Force items to the left edge */
  }
  .masonry-grid .masonry-grid-item:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.masonry-grid .masonry-grid-item:hover .inner-item .image-item img {
  transform: scale(1);
  transition: all 0.6s ease;
}
.masonry-grid .masonry-grid-item:hover .inner-item .image-item::after {
  opacity: 1;
  transition: all 0.6s ease;
}
.masonry-grid .masonry-grid-item:hover .inner-item .image-item .icon-item {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.6s ease;
  z-index: 1;
}
.masonry-grid .masonry-grid-item:hover .inner-item .text-container {
  color: #f88767;
  transition: all 0.6s ease;
}
.masonry-grid .masonry-grid-item .inner-item .image-item {
  overflow: hidden;
  border-radius: 30px;
  position: relative;
}
@media all and (max-width: 767px) {
  .masonry-grid .masonry-grid-item .inner-item .image-item {
    max-height: 450px;
    min-height: 100%;
  }
}
.masonry-grid .masonry-grid-item .inner-item .image-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 30px;
  opacity: 0;
  z-index: 0;
}
.masonry-grid .masonry-grid-item .inner-item .image-item .masonry-image img {
  transform: scale(1.03);
  border-radius: 30px;
  width: 100%;
  transition: all 0.6s ease;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 1199px) {
  .masonry-grid .masonry-grid-item .inner-item .image-item .masonry-image img {
    max-height: 650px;
    min-height: 450px;
  }
}
@media all and (max-width: 767px) {
  .masonry-grid .masonry-grid-item .inner-item .image-item .masonry-image img {
    max-height: 450px;
    min-height: 100%;
  }
}
.masonry-grid .masonry-grid-item .inner-item .image-item .icon-item {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(1.5);
  opacity: 0;
  transition: all 0.6s ease;
}
.masonry-grid .masonry-grid-item .inner-item .text-container {
  padding-top: 34px;
}
@media all and (max-width: 767px) {
  .masonry-grid .masonry-grid-item .inner-item .text-container {
    padding-top: 12px;
  }
}
.masonry-grid .masonry-grid-item .inner-item .text-container .title-item {
  padding-top: 10px;
  max-width: 261px;
}

img:is([sizes=auto i], [sizes^="auto," i]) {
  width: 100%;
}

@media (max-width: 767px) {
  img:is([sizes=auto i], [sizes^="auto," i]) {
    max-height: 450px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.testimonials-section .testimonial-item {
  display: flex;
  align-items: flex-end;
  height: 100%;
}
.testimonials-section .testimonial-item .inner-item {
  background-color: #f1f1f1;
  border-radius: 30px;
  padding: 32px;
  width: 100%;
}
@media (max-width: 767px) {
  .testimonials-section .testimonial-item .inner-item {
    padding: 24px;
  }
  .testimonials-section .testimonial-item .inner-item .client-info {
    font-size: 14px;
  }
}
.testimonials-section .testimonial-item .inner-item .client-detail .client-image img {
  width: 40px;
  height: 40px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 100%;
}
@media (max-width: 767px) {
  .testimonials-section {
    padding-bottom: 30px;
  }
  .testimonials-section .common-button.small-padding button {
    padding: 6px 20px 6px 10px;
  }
  .testimonials-section .client-message-item {
    font-size: 13px;
    line-height: 19px;
  }
  .testimonials-section .star-item img {
    width: 13px;
  }
  .testimonials-section .tag-line {
    font-size: 11px;
  }
  .testimonials-section .date-item {
    font-size: 14px;
  }
}

.small-title {
  text-transform: lowercase;
}

.contact-form-button button {
  background-image: url("data:image/svg+xml,%3Csvg width='15' height='13' viewBox='0 0 15 13' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.6076 0H2.72152C2.25531 0 1.87694 0.336 1.87694 0.75C1.87694 1.164 2.25531 1.5 2.72152 1.5H11.5682L0.247462 11.553C-0.0824873 11.846 -0.0824873 12.321 0.247462 12.614C0.577411 12.907 1.11231 12.907 1.44226 12.614L12.763 2.561V10.417C12.763 10.831 13.1403 11.167 13.6076 11.167C14.0738 11.167 14.4522 10.831 14.4522 10.417V0.75C14.4522 0.336 14.0738 0 13.6076 0Z' fill='white'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: 90% center;
  min-width: 210px;
  text-align: left !important;
  min-height: 46px;
}
@media (min-width: 990px) {
  .contact-form-button {
    padding-left: 30px;
  }
}

.bento-grid-container {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(12, 28px);
  -moz-column-gap: 50px;
       column-gap: 50px;
  row-gap: 30px;
  padding: 70px 0 0;
  align-items: start;
}
.bento-grid-container .bento-item {
  width: 100%;
  height: 100%;
}
.bento-grid-container .bento-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
  display: block;
}
.bento-grid-container .bento-item.item-1 {
  grid-column: 1;
  grid-row: 1/span 12;
}
.bento-grid-container .bento-item.item-2 {
  grid-column: 2;
  grid-row: 1/span 5;
}
.bento-grid-container .bento-item.item-3 {
  grid-column: 2;
  grid-row: 6/span 5;
}
.bento-grid-container .bento-item.item-4 {
  grid-column: 3;
  grid-row: 1/span 11;
}
.bento-grid-container .bento-item.item-5 {
  grid-column: 4;
  grid-row: 1/span 5;
}
.bento-grid-container .bento-item.item-6 {
  grid-column: 4;
  grid-row: 6/span 5;
}
.bento-grid-container .bento-item.item-7 {
  grid-column: 5;
  grid-row: 1/span 12;
}
@media (max-width: 1600px) {
  .bento-grid-container {
    -moz-column-gap: 20px;
         column-gap: 20px;
    row-gap: 20px;
  }
}
@media (max-width: 1399px) {
  .bento-grid-container {
    padding: 40px 0 0;
    grid-template-rows: repeat(12, 18px);
  }
}
.bento-grid-container {
  /* --- TABLET: 2 Columns --- */
}
@media (max-width: 1024px) {
  .bento-grid-container {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .bento-grid-container .bento-item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    height: 350px;
  }
}
@media (max-width: 767px) {
  .bento-grid-container .bento-item {
    height: 260px;
  }
}
.bento-grid-container {
  /* --- MOBILE: 1 Column --- */
}
@media (max-width: 340px) {
  .bento-grid-container {
    grid-template-columns: 1fr;
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 20px;
  }
  .bento-grid-container .bento-item {
    grid-column: span 1 !important;
    height: 280px;
  }
}

.timeline-section {
  background: #041551;
  color: #fff;
}
.timeline-section .timeline-header {
  text-align: center;
  margin-bottom: 100px;
}
.timeline-section .timeline-header .small-title {
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
}
.timeline-section .timeline-header .main-title {
  font-size: 48px;
  margin-top: 15px;
  font-weight: 400;
  line-height: 1.1;
}
.timeline-section .timeline-relative-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 1300px;
}
.timeline-section .timeline-svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: auto;
  z-index: 1;
  overflow: visible;
}
.timeline-section .timeline-event {
  position: absolute;
  z-index: 2;
  width: 280px;
}
.timeline-section .timeline-event .event-num {
  font-size: 16px;
  opacity: 0.3;
  font-style: italic;
  display: block;
  margin-bottom: -10px;
}
.timeline-section .timeline-event .year-text {
  font-size: 56px;
  font-weight: 700;
  margin: 0;
  line-height: 1;
}
.timeline-section .timeline-event .event-desc {
  font-size: 14px;
  opacity: 0.6;
  line-height: 1.5;
  margin-top: 15px;
}
.timeline-section .timeline-event.left {
  text-align: right;
}
.timeline-section .timeline-event.right {
  text-align: left;
}

/*------------------------------------ Components Ends ------------------------------------*/
/*---------------------------------- Slick Slider Starts ----------------------------------*/
/*---------------------------------- Slick Slider Starts ----------------------------------*/
/*----------------------------------- Slick Slider Ends -----------------------------------*/
/*----------------------------------- Slick Slider Ends -----------------------------------*/
/*-------------------------------------- Modal Starts -------------------------------------*/
body.modal-open {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

#freeAudit {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  width: 90%;
  max-width: 1240px;
  max-height: 90%;
  overflow: auto;
  background: #fff;
  border-radius: 33px;
  padding: 25px 60px 25px 25px;
  z-index: 12346;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
#freeAudit.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
#freeAudit .close-modal {
  position: absolute;
  top: 24px;
  right: 24px;
  cursor: pointer;
  font-size: 24px;
  color: #ffffff;
  line-height: 1;
  background: #D9D9D9;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}
#freeAudit .close-modal:hover {
  background: #c9c9c9;
  transition: background 0.2s ease-in;
}
#freeAudit .audit-wrapper {
  gap: 60px;
  align-items: center;
  display: flex;
}
@media (max-width: 1600px) {
  #freeAudit .audit-wrapper {
    gap: 30px;
  }
}
@media (max-width: 1399px) {
  #freeAudit .audit-wrapper {
    align-items: flex-start;
  }
}
#freeAudit .common-item h3 {
  margin-bottom: 10px;
}
#freeAudit .common-item p {
  font-size: 14px;
  line-height: 25px;
  margin-bottom: 10px;
}
@media (max-width: 1399px) {
  #freeAudit .common-item:nth-of-type(1) {
    max-width: 400px;
  }
  #freeAudit .common-item img {
    width: 100%;
  }
  #freeAudit .common-item:nth-of-type(2) {
    flex: 1;
  }
}
@media (max-width: 991px) {
  #freeAudit .common-item:nth-of-type(1) {
    display: none;
  }
}

/*--------------------------------------- Modal Ends --------------------------------------*/
/* Secondary Button (Inside Dropdown) */
.btn-secondary {
  background-color: #fff;
  color: #000;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  align-self: flex-start;
  transition: opacity 0.2s;
}

.btn-secondary:hover {
  opacity: 0.9;
}

/* Arrow Icon Helper Class */
.icon {
  width: 12px;
  height: 12px;
  stroke-width: 2.5;
}

.video-wrapper .video-section {
  position: relative;
  width: 100%;
  margin: 0 auto;
  background-color: #000;
  overflow: hidden;
  border-radius: 35px;
}
@media (max-width: 767px) {
  .video-wrapper .video-section {
    border-radius: 15px;
  }
}
.video-wrapper .video-section video {
  width: 100%;
  height: 100%;
  max-height: 860px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media all and (max-width: 1600px) {
  .video-wrapper .video-section video {
    height: 70vh;
  }
}
@media all and (max-width: 979px) {
  .video-wrapper .video-section video {
    height: 50vh;
  }
}
@media all and (max-width: 767px) {
  .video-wrapper .video-section video {
    height: 30vh;
  }
}
@media all and (max-width: 450px) {
  .video-wrapper .video-section video {
    height: 200px;
  }
}
@media (max-width: 767px) {
  .video-wrapper {
    padding-top: 50px;
  }
}

/* Overlay Container */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  z-index: 20;
  /* High z-index to sit on top */
  transition: opacity 0.3s ease;
  display: flex;
}

/* Overlay Image */
.overlay-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
}

/* --- Shared Button Design (Red Circle) --- */
.circle-btn {
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  color: #a69786;
  border: none;
  border-radius: 50%;
  width: 105px;
  height: 105px;
  font-size: 50px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 30;
  transition: background-color 0.2s;
}
@media all and (max-width: 767px) {
  .circle-btn {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
}

.circle-btn:hover {
  background-color: #ff6b81;
}

/* Position: Play Button (Bottom Right) */
.play-pos {
  bottom: 20px;
  right: 20px;
  transition: transform 0.2s;
  /* Simple scale transition */
}
.play-pos svg {
  margin-left: 10px;
}
@media (max-width: 767px) {
  .play-pos svg {
    margin-left: 5px;
    width: 20px;
    height: 20px;
  }
}

.play-pos:hover {
  transform: scale(1.1);
}

/* Position: Pause Button (Center) */
.pause-pos {
  bottom: 20px;
  right: 20px;
  /* Center alignment + Scale 1 (default) */
  /* Initial State for Hover Logic */
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.2s;
}

/* Hover Interaction: Only show pause button when hovering the section */
.video-section:hover .pause-pos {
  opacity: 1;
}

/* Hover Effect for the button itself (Scale up) */
.pause-pos:hover {
  /* Keep centered + Scale up */
}

/* Mute Button (Top Right) */
.mute-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  z-index: 30;
  transition: opacity 0.3s;
  font-size: 14px;
}

.mute-btn:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* Utility Class to remove elements from flow/view */
.hidden {
  display: none !important;
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.8);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  padding: 4px;
}
@media all and (max-width: 1399px) {
  .scroll-to-top {
    width: 50px;
    height: 50px;
  }
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}
.scroll-to-top .progress-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: conic-gradient(#007bff 0deg, #e9ecef 0deg);
  padding: 3px;
  transition: background 0.1s ease;
}
.scroll-to-top .progress-border::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.scroll-to-top .icon-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  z-index: 2;
  transition: all 0.3s ease;
}
@media all and (max-width: 979px) {
  .scroll-to-top .icon-content svg {
    width: 30px;
    height: 30px;
  }
}
.scroll-to-top:hover .icon-content {
  background: #007bff;
  transform: scale(0.95);
}
.scroll-to-top:hover .icon-content svg path {
  stroke: white;
}

#testimonialModal .modal-dialog {
  max-width: 60%;
}
@media (max-width: 767px) {
  #testimonialModal .modal-dialog {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
#testimonialModal .modal-dialog .modal-body {
  padding: 5px;
}
#testimonialModal .modal-dialog .modal-body .close-item {
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 1;
  background: #fff;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 1px 1px 5px 0px #9d9d9d;
}
#testimonialModal .modal-dialog .modal-body .video-container {
  display: flex;
}
#testimonialModal .modal-dialog .modal-body .video-container video {
  width: 100%;
  border-radius: 8px;
}/*# sourceMappingURL=thestyles.css.map */